mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
add pluralization rules in ember for Korean (ko)
This commit is contained in:
parent
af877781b7
commit
00ff3f8953
1 changed files with 3 additions and 0 deletions
|
@ -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";
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue