mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-05 20:46:14 +01:00
10 lines
149 B
JavaScript
10 lines
149 B
JavaScript
MessageFormat.locale.lag = function (n) {
|
|
if (n === 0) {
|
|
return 'zero';
|
|
}
|
|
if (n > 0 && n < 2) {
|
|
return 'one';
|
|
}
|
|
return 'other';
|
|
};
|