Skip to content

Commit

Permalink
fix(langauges): correct plural rules for Tajik
Browse files Browse the repository at this point in the history
  • Loading branch information
nijel committed Apr 29, 2024
1 parent 67eba9a commit 029b101
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion PLURALS_DIFF.md
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ The Plurals column lists data in languages.csv which is used in Weblate
| teo | Teso | nplurals=2; plural=n != 1; | ✔ | | | |
| ter | Tereno | nplurals=2; plural=n != 1; | | | | |
| tet | Tetum | nplurals=2; plural=n != 1; | | | | |
| tg | Tajik | nplurals=1; plural=0; | | | nplurals=2; plural=(n > 1); | ✔ |
| tg | Tajik | nplurals=2; plural=n > 1; | | | | nplurals=1; plural=0; |
| th | Thai | nplurals=1; plural=0; | ✔ | | ✔ | ✔ |
| ti | Tigrinya | nplurals=2; plural=n > 1; | ✔ | | ✔ | ✔ |
| tig | Tigre | nplurals=2; plural=n != 1; | ✔ | | | |
Expand Down
2 changes: 1 addition & 1 deletion languages.csv
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ tem,Timne,2,n != 1
teo,Teso,2,n != 1
ter,Tereno,2,n != 1
tet,Tetum,2,n != 1
tg,Tajik,1,0
tg,Tajik,2,n > 1
th,Thai,1,0
ti,Tigrinya,2,n > 1
tig,Tigre,2,n != 1
Expand Down
4 changes: 2 additions & 2 deletions weblate_language_data/languages.py
Original file line number Diff line number Diff line change
Expand Up @@ -5818,8 +5818,8 @@
# variant of the language. It could contain a region, age (Old, Middle, ...)
# or other variant.
_("Tajik"),
1,
"0",
2,
"n > 1",
),
(
"th",
Expand Down

0 comments on commit 029b101

Please sign in to comment.