pluralizationRules for Japanese translation

This commit is contained in:
k0uki 2015-07-05 21:07:03 +09:00
parent df55596907
commit 612a318db4

View File

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