(bug 28643) Merge Serbian language variant conversion improvements to trunk (r85224...
[lhc/web/wiklou.git] / languages / classes / LanguageLt.php
index 5f1c956..4291e79 100644 (file)
@@ -1,10 +1,9 @@
 <?php
+
 /** Lithuanian (Lietuvių)
  *
- * @addtogroup Language
- *
+ * @ingroup Language
  */
-
 class LanguageLt extends Language {
        /* Word forms (with examples):
                1 - vienas (1) lapas, dvidešimt vienas (21) lapas
@@ -12,15 +11,15 @@ class LanguageLt extends Language {
                3 - penkiolika (15) lapų
        */
        function convertPlural( $count, $forms ) {
-               if ( !count($forms) ) { return ''; }
+               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];
+               // 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];
+               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];
        }
 }