Add Slovak locale

This commit is contained in:
Gerhard Schlager
2015-12-08 18:51:31 +01:00
parent d0bbf5c9a6
commit e56f8fa471
11 changed files with 4047 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
//= depend_on 'client.sk.yml'
//= require locales/i18n
<%= JsLocaleHelper.output_locale(:sk) %>
I18n.pluralizationRules['sk'] = function (n) {
if (n == 1) return "one";
if (n >= 2 && n <= 4) return "few";
return "other";
};