mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 14:38:17 +08:00
Merge pull request #4606 from mabras/fix_arabic_pluralization
Fix Arabic Pluralization Rules for Client
This commit is contained in:
commit
6965079108
|
@ -7,6 +7,6 @@ I18n.pluralizationRules['ar'] = function (n) {
|
|||
if (n == 1) return "one";
|
||||
if (n == 2) return "two";
|
||||
if (n%100 >= 3 && n%100 <= 10) return "few";
|
||||
if (n%100 >= 11) return "many";
|
||||
if (n%100 >= 11 && n%100 <= 99) return "many";
|
||||
return "other";
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue
Block a user