Merge "Don't check namespace in SpecialWantedtemplates"
[lhc/web/wiklou.git] / resources / lib / jquery.i18n / src / languages / hsb.js
1 /**
2 * Upper Sorbian (Hornjoserbsce) language functions
3 */
4 ( function ( $ ) {
5 'use strict';
6
7 $.i18n.languages.hsb = $.extend( {}, $.i18n.languages['default'], {
8 convertGrammar: function ( word, form ) {
9 switch ( form ) {
10 case 'instrumental': // instrumental
11 word = 'z ' + word;
12 break;
13 case 'lokatiw': // lokatiw
14 word = 'wo ' + word;
15 break;
16 }
17
18 return word;
19 }
20 } );
21 }( jQuery ) );