Skip to content

Commit

Permalink
Add another variant for Latvian
Browse files Browse the repository at this point in the history
See translate/l10n-guide#61

Signed-off-by: Michal Čihař <[email protected]>
  • Loading branch information
nijel committed Jan 26, 2018
1 parent 955814f commit 4f52eb6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions extraplurals.csv
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ kw;Cornish;4;(n==1) ? 0 : (n==2) ? 1 : (n == 3) ? 2 : 3
lt;Lithuanian;4;n==1 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3
lt;Lithuanian;3;(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)
lv;Latvian;3;n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2
lv;Latvian;3;(n%10==1 && n%100!=11 ? 0 : (n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)
se;Northern Sami;2;(n != 1)
sl;Slovenian;4;(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0)

0 comments on commit 4f52eb6

Please sign in to comment.