forked from WeblateOrg/weblate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
These were derived from CLDR back then, but they are not being updated. See translate/translate#786
- Loading branch information
Showing
3 changed files
with
41 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Copyright © Michal Čihař <[email protected]> | ||
# | ||
# SPDX-License-Identifier: GPL-3.0-or-later | ||
|
||
# Generated by Django 4.2.8 on 2023-12-19 11:51 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("lang", "0001_squashed_weblate_5"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="plural", | ||
name="source", | ||
field=models.SmallIntegerField( | ||
choices=[ | ||
(0, "Default plural"), | ||
(1, "gettext plural formula"), | ||
(3, "CLDR plural with zero"), | ||
(4, "CLDR v38+ plural"), | ||
(5, "Android plural"), | ||
(6, "Qt Linguist plural"), | ||
(2, "Manually entered formula"), | ||
], | ||
default=0, | ||
verbose_name="Plural definition source", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters