mirror of
https://github.com/discourse/discourse.git
synced 2025-04-15 18:12:56 +08:00
Merge pull request #2288 from yomybaby/i18n_plural_ko
add pluralization rules in ember for Korean (ko)
This commit is contained in:
commit
448802f006
@ -61,6 +61,9 @@ I18n.pluralizationRules = {
|
|||||||
},
|
},
|
||||||
"zh_TW": function(n) {
|
"zh_TW": function(n) {
|
||||||
return n === 0 ? ["zero", "none", "other"] : "other";
|
return n === 0 ? ["zero", "none", "other"] : "other";
|
||||||
|
},
|
||||||
|
"ko": function(n) {
|
||||||
|
return n === 0 ? ["zero", "none", "other"] : "other";
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user