mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-02-17 04:01:29 -05:00
Add Arabic Pluralization Rules for Client
This commit is contained in:
parent
58cb43884d
commit
75f6548710
1 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,12 @@
|
|||
//= depend_on 'client.ar.yml'
|
||||
//= require locales/i18n
|
||||
<%= JsLocaleHelper.output_locale(:ar) %>
|
||||
|
||||
I18n.pluralizationRules['ar'] = function (n) {
|
||||
if (n == 0) return "zero";
|
||||
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";
|
||||
return "other";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue