Pasting lines typo in r80025
[lhc/web/wiklou.git] / languages / classes / LanguageLt.php
index 14031fe..4291e79 100644 (file)
@@ -1,22 +1,25 @@
 <?php
+
 /** Lithuanian (Lietuvių)
  *
- * @package MediaWiki
- * @subpackage Language
- *
+ * @ingroup Language
  */
-
 class LanguageLt extends Language {
        /* Word forms (with examples):
                1 - vienas (1) lapas, dvidešimt vienas (21) lapas
                2 - trys (3) lapai
                3 - penkiolika (15) lapų
        */
-       function convertPlural( $count, $wordform1, $wordform2, $wordform3, $w4, $w5) {
-               if ($count%10==1 && $count%100!=11) return $wordform1;
-               if ($count%10>=2 && ($count%100<10 || $count%100>=20)) return $wordform2;
-               //if third form not specified, then use second form
-               return empty($wordform3)?$wordform2:$wordform3;
+       function convertPlural( $count, $forms ) {
+               if ( !count( $forms ) ) { return ''; }
+
+               // if no number with word, 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 );
+
+               if ( $count % 10 == 1 && $count % 100 != 11 ) return $forms[0];
+               if ( $count % 10 >= 2 && ( $count % 100 < 10 || $count % 100 >= 20 ) ) return $forms[1];
+               return $forms[2];
        }
 }
-?>