Files
guacamole-client/guacamole/src/main/webapp/lib/messageformat/locale/lag.js
2015-07-14 13:20:44 -07:00

10 lines
149 B
JavaScript

MessageFormat.locale.lag = function (n) {
if (n === 0) {
return 'zero';
}
if (n > 0 && n < 2) {
return 'one';
}
return 'other';
};