add pluralization rules in ember for Korean (ko)

This commit is contained in:
Jong Eun Lee 2014-04-23 08:08:39 +09:00
parent af877781b7
commit 00ff3f8953

View file

@ -61,6 +61,9 @@ I18n.pluralizationRules = {
},
"zh_TW": function(n) {
return n === 0 ? ["zero", "none", "other"] : "other";
},
"ko": function(n) {
return n === 0 ? ["zero", "none", "other"] : "other";
}
};