Merge "Don't check namespace in SpecialWantedtemplates"
[lhc/web/wiklou.git] / resources / lib / jquery.i18n / src / languages / sl.js
1 /**
2 * Slovenian (Slovenščina) language functions
3 */
4
5 ( function ( $ ) {
6 'use strict';
7
8 $.i18n.languages.sl = $.extend( {}, $.i18n.languages['default'], {
9 convertGrammar: function ( word, form ) {
10 switch ( form ) {
11 // locative
12 case 'mestnik':
13 word = 'o ' + word;
14
15 break;
16 // instrumental
17 case 'orodnik':
18 word = 'z ' + word;
19
20 break;
21 }
22
23 return word;
24 }
25 } );
26 }( jQuery ) );