2013-03-02 08:22:53 -05:00
|
|
|
//= depend_on 'client.cs.yml'
|
|
|
|
//= require locales/i18n
|
|
|
|
<%= JsLocaleHelper.output_locale(:cs) %>
|
2013-03-31 13:55:02 -04:00
|
|
|
|
|
|
|
I18n.pluralizationRules['cs'] = function (n) {
|
|
|
|
if (n == 0) return ["zero", "none", "other"];
|
|
|
|
if (n == 1) return "one";
|
|
|
|
if (n >= 2 && n <= 4) return "few";
|
|
|
|
return "other";
|
2014-03-18 21:21:10 -04:00
|
|
|
};
|