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

10 lines
158 B
JavaScript

MessageFormat.locale.cs = function (n) {
if (n == 1) {
return 'one';
}
if (n == 2 || n == 3 || n == 4) {
return 'few';
}
return 'other';
};