mirror of
https://github.com/discourse/discourse.git
synced 2025-05-21 18:12:32 +08:00
FIX: use 'other' instead of 'many' for Ukrainian pluralization until translations are fixed
This commit is contained in:
@ -8,7 +8,8 @@ MessageFormat.locale.uk = function (n) {
|
||||
}
|
||||
if ((n % 10) === 0 || ((n % 10) >= 5 && (n % 10) <= 9) ||
|
||||
((n % 100) >= 11 && (n % 100) <= 14) && n == Math.floor(n)) {
|
||||
return 'many';
|
||||
// return 'many';
|
||||
return 'other'; // TODO should be "many" but is not defined in translations
|
||||
}
|
||||
return 'other';
|
||||
};
|
||||
|
Reference in New Issue
Block a user