mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 10:20:58 -06:00
11 lines
254 B
JavaScript
11 lines
254 B
JavaScript
MessageFormat.locale.bs = 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';
|
|
}
|
|
return 'other';
|
|
};
|