- Issue created by @D34dMan
Six forms, special cases for one, two, all numbers ending in 02, 03, … 10, all numbers ending in 11 … 99, and others
The header entry would be:
Plural-Forms: nplurals=6; \
plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 \
: n%100>=11 ? 4 : 5;
Languages with this property include:
Afroasiatic family
Arabic
Reference: https://www.gnu.org/software/gettext/manual/html_node/Plural-forms.html
Active
1.0
Code