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