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
Added release notes for 'ContentHandler::runLegacyHooks' removal
[mediawiki.git]
/
resources
/
lib
/
jquery.i18n
/
src
/
languages
/
hu.js
blob
1177b850f1cb6e20531a0892b1c0f952aec24257
1
/**
2
* Hungarian language functions
3
*
4
* @author Santhosh Thottingal
5
*/
6
( function ( $ ) {
7
'use strict';
8
9
$.i18n.languages.hu = $.extend( {}, $.i18n.languages['default'], {
10
convertGrammar: function ( word, form ) {
11
switch ( form ) {
12
case 'rol':
13
word += 'ról';
14
break;
15
case 'ba':
16
word += 'ba';
17
break;
18
case 'k':
19
word += 'k';
20
break;
21
}
22
23
return word;
24
}
25
} );
26
}( jQuery ) );