mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-03 14:24:23 +01: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';
|
|
};
|