mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-07 05:31:22 +00: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';
|
|
};
|