Localisation updates from http://translatewiki.net.
[lhc/web/wiklou.git] / resources / mediawiki.language / languages / lt.js
1 /**
2 * Lithuanian (Lietuvių) language functions
3 */
4
5 mediaWiki.language.convertPlural = function( count, forms ) {
6 // if the number is not mentioned in message, then use $form[0] for singular and $form[1] for plural or zero
7 if ( forms.length == 2 ) {
8 return count == 1 ? forms[0] : forms[1];
9 }
10 forms = mediaWiki.language.preConvertPlural( forms, 3 );
11 if ( count % 10 == 1 && count % 100 != 11 ) {
12 return forms[0];
13 }
14 if ( count % 10 >= 2 && ( count % 100 < 10 || count % 100 >= 20 ) ) {
15 return forms[1];
16 }
17 return forms[2];
18 };