Merge "Don't check namespace in SpecialWantedtemplates"
[lhc/web/wiklou.git] / resources / lib / jquery.i18n / src / languages / hu.js
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 ) );