Merge pull request #2288 from yomybaby/i18n_plural_ko

add pluralization rules in ember for Korean (ko)
This commit is contained in:
Neil Lalonde 2014-04-23 12:59:56 -04:00
commit 448802f006
1 changed files with 3 additions and 0 deletions

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";
}
};