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
Merge "Added release notes for 'ContentHandler::runLegacyHooks' removal"
[mediawiki.git]
/
resources
/
lib
/
jquery.i18n
/
src
/
languages
/
bs.js
blob
5370069ee1cb5412a11ce485ab1c32da8bc5f7b7
1
/**
2
* Bosnian (bosanski) language functions
3
*/
4
( function ( $ ) {
5
'use strict';
6
7
$.i18n.languages.bs = $.extend( {}, $.i18n.languages['default'], {
8
convertGrammar: function ( word, form ) {
9
switch ( form ) {
10
case 'instrumental': // instrumental
11
word = 's ' + word;
12
break;
13
case 'lokativ': // locative
14
word = 'o ' + word;
15
break;
16
}
17
18
return word;
19
}
20
} );
21
22
}( jQuery ) );