Localisation updates from https://translatewiki.net.
[mediawiki.git] / resources / lib / jquery.i18n / src / languages / bs.js
blob7d9d2de178d74e6671678d448083ab217a60837a
1 /**
2  * Bosnian (bosanski) language functions
3  */
5 ( function ( $ ) {
6         'use strict';
8         $.i18n.languages.bs = $.extend( {}, $.i18n.languages[ 'default' ], {
9                 convertGrammar: function ( word, form ) {
10                         switch ( form ) {
11                                 case 'instrumental': // instrumental
12                                         word = 's ' + word;
13                                         break;
14                                 case 'lokativ': // locative
15                                         word = 'o ' + word;
16                                         break;
17                         }
19                         return word;
20                 }
21         } );
23 }( jQuery ) );