discourse/app/assets/javascripts/locales/fa_IR.js.erb
Qasem Hajizadeh cbbe60e66e Add pluralization rule to fa_IR.js.erb
Persian does not distinguish between the singular and plural forms
of nouns in the same way as English does. For numbered elements,
always return the 'other' key from the translation file.
2015-04-07 20:15:30 +04:30

7 lines
175 B
Text

//= depend_on 'client.fa_IR.yml'
//= require locales/i18n
<%= JsLocaleHelper.output_locale(:fa_IR) %>
I18n.pluralizationRules['fa_IR'] = function (n) {
return "other";
};