mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
9 lines
297 B
Text
9 lines
297 B
Text
//= depend_on 'client.ru.yml'
|
|
//= require locales/i18n
|
|
<%= JsLocaleHelper.output_locale(:ru) %>
|
|
|
|
I18n.pluralizationRules['ru'] = function (n) {
|
|
if (n % 10 == 1 && n % 100 != 11) return "one";
|
|
if (n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) return "few";
|
|
return "other";
|
|
};
|