mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:16:38 -06:00
4e42759caa
Previously this didn't work because Transifex didn't support "many".
17 lines
370 B
JavaScript
17 lines
370 B
JavaScript
MessageFormat.locale.ru = function (n) {
|
|
var r10 = n % 10, r100 = n % 100;
|
|
|
|
if (r10 == 1 && r100 != 11)
|
|
return 'one';
|
|
|
|
if (r10 >= 2 && r10 <= 4 && (r100 < 12 || r100 > 14) && n == Math.floor(n))
|
|
return 'few';
|
|
|
|
if (r10 === 0 || (r10 >= 5 && r10 <= 9) ||
|
|
(r100 >= 11 && r100 <= 14) && n == Math.floor(n)) {
|
|
return 'many';
|
|
}
|
|
|
|
return 'other';
|
|
};
|