reintroduce the shortcut evaluation removed in r108403 and r108405
[lhc/web/wiklou.git] / resources / mediawiki.language / languages / lt.js
index 025754f..04964af 100644 (file)
@@ -3,6 +3,10 @@
  */
 
 mediaWiki.language.convertPlural = function( count, forms ) {
+       // if the number is not mentioned in message, then use $form[0] for singular and $form[1] for plural or zero
+       if ( forms.length == 2 ) {
+               return count == 1 ? forms[0] : forms[1];
+       }
        forms = mediaWiki.language.preConvertPlural( forms, 3 );
        if ( count % 10 == 1 && count % 100 != 11 ) {
                return forms[0];