mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 20:51:50 +08:00
10 lines
181 B
JavaScript
10 lines
181 B
JavaScript
|
MessageFormat.locale.shi = function(n) {
|
||
|
if (n >= 0 && n <= 1) {
|
||
|
return 'one';
|
||
|
}
|
||
|
if (n >= 2 && n <= 10 && n == Math.floor(n)) {
|
||
|
return 'few';
|
||
|
}
|
||
|
return 'other';
|
||
|
};
|