resources: Upgrade jquery.i18n from 1.0.4 to 1.0.5
[lhc/web/wiklou.git] / resources / lib / jquery.i18n / src / languages / uk.js
index 8e69efc..f5292cf 100644 (file)
@@ -5,31 +5,31 @@
 ( function ( $ ) {
        'use strict';
 
-       $.i18n.languages.uk = $.extend( {}, $.i18n.languages['default'], {
+       $.i18n.languages.uk = $.extend( {}, $.i18n.languages[ 'default' ], {
                convertGrammar: function ( word, form ) {
                        switch ( form ) {
-                       case 'genitive': // родовий відмінок
-                               if ( word.substr( -1 ) === 'ь' ) {
-                                       word = word.substr( 0, word.length - 1 ) + 'я';
-                               } else if ( word.substr( -2 ) === 'ія' ) {
-                                       word = word.substr( 0, word.length - 2 ) + 'ії';
-                               } else if ( word.substr( -2 ) === 'ка' ) {
-                                       word = word.substr( 0, word.length - 2 ) + 'ки';
-                               } else if ( word.substr( -2 ) === 'ти' ) {
-                                       word = word.substr( 0, word.length - 2 ) + 'тей';
-                               } else if ( word.substr( -2 ) === 'ды' ) {
-                                       word = word.substr( 0, word.length - 2 ) + 'дов';
-                               } else if ( word.substr( -3 ) === 'ник' ) {
-                                       word = word.substr( 0, word.length - 3 ) + 'ника';
-                               }
+                               case 'genitive': // родовий відмінок
+                                       if ( word.slice( -1 ) === 'ь' ) {
+                                               word = word.slice( 0, -1 ) + 'я';
+                                       } else if ( word.slice( -2 ) === 'ія' ) {
+                                               word = word.slice( 0, -2 ) + 'ії';
+                                       } else if ( word.slice( -2 ) === 'ка' ) {
+                                               word = word.slice( 0, -2 ) + 'ки';
+                                       } else if ( word.slice( -2 ) === 'ти' ) {
+                                               word = word.slice( 0, -2 ) + 'тей';
+                                       } else if ( word.slice( -2 ) === 'ды' ) {
+                                               word = word.slice( 0, -2 ) + 'дов';
+                                       } else if ( word.slice( -3 ) === 'ник' ) {
+                                               word = word.slice( 0, -3 ) + 'ника';
+                                       }
 
-                               break;
-                       case 'accusative': // знахідний відмінок
-                               if ( word.substr( -2 ) === 'ія' ) {
-                                       word = word.substr( 0, word.length - 2 ) + 'ію';
-                               }
+                                       break;
+                               case 'accusative': // знахідний відмінок
+                                       if ( word.slice( -2 ) === 'ія' ) {
+                                               word = word.slice( 0, -2 ) + 'ію';
+                                       }
 
-                               break;
+                                       break;
                        }
 
                        return word;