mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-29 18:46:23 -05:00
9 lines
232 B
Text
9 lines
232 B
Text
//= depend_on 'client.ro.yml'
|
|
//= require locales/i18n
|
|
<%= JsLocaleHelper.output_locale(:ro) %>
|
|
|
|
I18n.pluralizationRules['ro'] = function (n) {
|
|
if (n == 1) return "one";
|
|
if (n >= 1 && n <= 19) return "few";
|
|
return "other";
|
|
};
|