Subject: | Update plural rules to reflect proper modulus behavior |
http://unicode.org/reports/tr35/#Language_Plural_Rules
Udder “Plural rules syntax”
'mod' (modulus) is a remainder operation as defined in Java; for example, the result of "4.3 mod
3" is 1.3.
And as we all know perl does the other modulus behavior, namely:
$ perl -le 'print 4.3 % 3;'
1
$