mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 21:09:49 +08:00
Fix Arabic Pluralization Rules for Client
This commit is contained in:
parent
81956cb1d6
commit
e20e765afe
|
@ -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