mirror of
https://github.com/discourse/discourse.git
synced 2024-12-16 19:35:47 +08:00
10 lines
232 B
Plaintext
10 lines
232 B
Plaintext
//= 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";
|
|
};
|