reintroduce the shortcut evaluation removed in r108403 and r108405
authorSanthosh Thottingal <santhosh@users.mediawiki.org>
Mon, 16 Jan 2012 10:05:48 +0000 (10:05 +0000)
committerSanthosh Thottingal <santhosh@users.mediawiki.org>
Mon, 16 Jan 2012 10:05:48 +0000 (10:05 +0000)
languages/classes/LanguageLt.php
resources/mediawiki.language/languages/lt.js

index 9b46342..af38b6a 100644 (file)
@@ -20,6 +20,10 @@ class LanguageLt extends Language {
         */
        function convertPlural( $count, $forms ) {
                if ( !count( $forms ) ) { return ''; }
+
+               // if the number is not mentioned in message, then use $form[0] for singular and $form[1] for plural or zero
+               if ( count( $forms ) === 2 ) return $count == 1 ? $forms[0] : $forms[1];
+
                $forms = $this->preConvertPlural( $forms, 3 );
                // Form[0] if n mod 10 is 1 and n mod 100 not in 11..19;
                if ( $count % 10 == 1 && $count % 100 != 11 ) return $forms[0];
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];