mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
Fix Romanian pluralization rules (#4151)
This commit is contained in:
committed by
Régis Hanol
parent
44bf69e3a7
commit
95155cda64
@@ -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";
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user