mirror of
https://github.com/discourse/discourse.git
synced 2025-01-31 12:19:45 +08:00
Merge pull request #1018 from abbat/patch-1
pluralizationRules for Russian translation
This commit is contained in:
commit
3f03ce3c8c
|
@ -1,3 +1,10 @@
|
||||||
//= depend_on 'client.ru.yml'
|
//= depend_on 'client.ru.yml'
|
||||||
//= require locales/i18n
|
//= require locales/i18n
|
||||||
<%= JsLocaleHelper.output_locale(:ru) %>
|
<%= JsLocaleHelper.output_locale(:ru) %>
|
||||||
|
|
||||||
|
I18n.pluralizationRules['ru'] = function (n) {
|
||||||
|
if (n == 0) return ["zero", "none", "other"];
|
||||||
|
if (n % 10 == 1 && n % 100 != 11) return "one";
|
||||||
|
if (n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20)) return "few";
|
||||||
|
return "many";
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user