mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-03-01 09:54:52 -05:00
Fix Romanian pluralization rules (#4151)
This commit is contained in:
parent
44bf69e3a7
commit
95155cda64
1 changed files with 1 additions and 1 deletions
|
@ -4,6 +4,6 @@
|
||||||
|
|
||||||
I18n.pluralizationRules['ro'] = function (n) {
|
I18n.pluralizationRules['ro'] = function (n) {
|
||||||
if (n == 1) return "one";
|
if (n == 1) return "one";
|
||||||
if (n >= 1 && n <= 19) return "few";
|
if (n === 0 || n % 100 >= 1 && n % 100 <= 19) return "few";
|
||||||
return "other";
|
return "other";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue