2014-08-28 07:01:14 -04:00
|
|
|
//= depend_on 'client.ro.yml'
|
|
|
|
//= require locales/i18n
|
|
|
|
<%= JsLocaleHelper.output_locale(:ro) %>
|
2016-03-30 15:24:33 -04:00
|
|
|
|
|
|
|
I18n.pluralizationRules['ro'] = function (n) {
|
|
|
|
if (n == 1) return "one";
|
|
|
|
if (n >= 1 && n <= 19) return "few";
|
|
|
|
return "other";
|
|
|
|
};
|