Merge pull request #3921 from gschlager/locale-sk

Add Slovak locale
This commit is contained in:
Régis Hanol
2016-01-20 15:38:48 +01:00
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";
};