Language code |
mt
|
Aliased language codes |
mlt |
Text direction |
Left to right |
Number of speakers |
457,267 |
Plural: Default plural
0 translations
|
Number of plurals |
4 |
Plural type |
One/few/many/other |
Plurals |
One |
1 |
Few |
0, 2, 3, 4, 5, 6, 7, 8, 9, 10 |
Many |
11, 12, 13, 14, 15, 16, 17, 18, 19, 111 |
Other |
20, 21, 22, 23, 24, 25, 26, 27, 28, 29 |
Plural formula |
n==1 ? 0 : n==0 || ( n%100>1 && n%100<11) ? 1 : (n%100>10 && n%100<20 ) ? 2 : 3 |
Plural: CLDR v38+ plural
0 translations
|
Number of plurals |
5 |
Plural type |
One/two/few/many/other |
Plurals |
One |
1 |
Two |
2 |
Few |
0, 3, 4, 5, 6, 7, 8, 9, 10, 103 |
Many |
11, 12, 13, 14, 15, 16, 17, 18, 19, 111 |
Other |
20, 21, 22, 23, 24, 25, 26, 27, 28, 29 |
Plural formula |
(n == 1) ? 0 : ((n == 2) ? 1 : ((n == 0 || n % 100 >= 3 && n % 100 <= 10) ? 2 : ((n % 100 >= 11 && n % 100 <= 19) ? 3 : 4))) |