Localisation updates from https://translatewiki.net.
[mediawiki.git] / resources / src / mediawiki.language / languages / sl.js
blob7dc63dc663c4a9fef085bbb310f868a39a40e085
1 /*!
2  * Slovenian (Slovenščina) language functions
3  */
5 mw.language.convertGrammar = function ( word, form ) {
6         const grammarForms = mw.language.getData( 'sl', 'grammarForms' );
7         if ( grammarForms && grammarForms[ form ] ) {
8                 return grammarForms[ form ][ word ];
9         }
10         switch ( form ) {
11                 case 'mestnik': // locative
12                         word = 'o ' + word;
13                         break;
14                 case 'orodnik': // instrumental
15                         word = 'z ' + word;
16                         break;
17         }
18         return word;