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
/
sl.js
blob
a3aafc3b75732d0cecccf7cc97068590dc4ef8eb
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 ) );