mirror of
https://github.com/discourse/discourse.git
synced 2025-02-20 18:58:10 +00:00
Fix Romanian pluralization rules (#4151)
This commit is contained in:
parent
44bf69e3a7
commit
95155cda64
@ -4,6 +4,6 @@
|
||||
|
||||
I18n.pluralizationRules['ro'] = function (n) {
|
||||
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";
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user