mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 21:10:17 +08:00
Updated ro.js.erb to match romanian plurals
This commit is contained in:
parent
809ea42953
commit
07fb0c4106
|
@ -1,3 +1,9 @@
|
|||
//= 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";
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue
Block a user