Merge pull request #3589 from k0uki/fix_ja_pluralization_rules

pluralizationRules for Japanese translation
This commit is contained in:
Robin Ward 2015-07-07 11:22:16 -04:00
commit 8b79337ca4

View file

@ -1,3 +1,7 @@
//= depend_on 'client.ja.yml' //= depend_on 'client.ja.yml'
//= require locales/i18n //= require locales/i18n
<%= JsLocaleHelper.output_locale(:ja) %> <%= JsLocaleHelper.output_locale(:ja) %>
I18n.pluralizationRules['ja'] = function (n) {
return n === 0 ? ["zero", "none", "other"] : "other";
};