| Language code |
cs
|
| Aliased language codes |
cz, csy, ces, cze |
| Text direction |
Left to right |
|
Plural: Default plural
27 translations
|
| Number of plurals |
3 |
| Plural type |
One/few/other (Slavic languages) |
| Plurals |
One |
1 |
Few |
2, 3, 4 |
| Other |
0, 5, 6, 7, 8, 9, 10, 11, 12, 13 |
| Plural formula |
(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2 |
|
Plural: stringsdict plural
2 translations
|
| Number of plurals |
4 |
| Plural type |
Zero/one/few/other |
| Plurals |
Zero |
0 |
One |
1 |
| Few |
2, 3, 4 |
| Other |
5, 6, 7, 8, 9, 10, 11, 12, 13, 14 |
| Plural formula |
n==0 ? 0 : (n==1) ? 1 : (n>=2 && n<=4) ? 2 : 3 |