repo.or.cz
/
mediawiki.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Localisation updates from https://translatewiki.net.
[mediawiki.git]
/
resources
/
lib
/
jquery.i18n
/
src
/
languages
/
bs.js
blob
7d9d2de178d74e6671678d448083ab217a60837a
1
/**
2
* Bosnian (bosanski) language functions
3
*/
4
5
( function ( $ ) {
6
'use strict';
7
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
}
18
19
return word;
20
}
21
} );
22
23
}( jQuery ) );