16 lines
488 B
JavaScript
16 lines
488 B
JavaScript
MessageFormat.locale.uk = function (n) {
|
|
if ((n % 10) == 1 && (n % 100) != 11) {
|
|
return 'one';
|
|
}
|
|
if ((n % 10) >= 2 && (n % 10) <= 4 &&
|
|
((n % 100) < 12 || (n % 100) > 14) && n == Math.floor(n)) {
|
|
return 'few';
|
|
}
|
|
if ((n % 10) === 0 || ((n % 10) >= 5 && (n % 10) <= 9) ||
|
|
((n % 100) >= 11 && (n % 100) <= 14) && n == Math.floor(n)) {
|
|
// return 'many';
|
|
return 'other'; // TODO should be "many" but is not defined in translations
|
|
}
|
|
return 'other';
|
|
};
|