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
/
dsb.js
blob
cc069ebfb118c1639b4b2466cdd314d4b896053f
1
/**
2
* Lower Sorbian (Dolnoserbski) language functions
3
*/
4
( function ( $ ) {
5
'use strict';
6
7
$.i18n.languages.dsb = $.extend( {}, $.i18n.languages['default'], {
8
convertGrammar: function ( word, form ) {
9
switch ( form ) {
10
case 'instrumental': // instrumental
11
word = 'z ' + word;
12
break;
13
case 'lokatiw': // lokatiw
14
word = 'wo ' + word;
15
break;
16
}
17
18
return word;
19
}
20
} );
21
22
}( jQuery ) );