mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
23 lines
414 B
JavaScript
23 lines
414 B
JavaScript
|
/**
|
||
|
* Bosnian (bosanski) language functions
|
||
|
*/
|
||
|
( function ( $ ) {
|
||
|
'use strict';
|
||
|
|
||
|
$.i18n.languages.bs = $.extend( {}, $.i18n.languages[ 'default' ], {
|
||
|
convertGrammar: function ( word, form ) {
|
||
|
switch ( form ) {
|
||
|
case 'instrumental': // instrumental
|
||
|
word = 's ' + word;
|
||
|
break;
|
||
|
case 'lokativ': // locative
|
||
|
word = 'o ' + word;
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
return word;
|
||
|
}
|
||
|
} );
|
||
|
|
||
|
}( jQuery ) );
|