2 * Lithuanian (Lietuvių) language functions
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];
10 forms = mediaWiki.language.preConvertPlural( forms, 3 );
11 if ( count % 10 == 1 && count % 100 != 11 ) {
14 if ( count % 10 >= 2 && ( count % 100 < 10 || count % 100 >= 20 ) ) {