Fix doxygen docs before REL1_19 branching
[lhc/web/wiklou.git] / languages / classes / LanguageBs.php
index 24f6add..7c13037 100644 (file)
@@ -6,14 +6,21 @@
  */
 class LanguageBs extends Language {
 
+       /**
+        * @param $count int
+        * @param $forms array
+        * @return string
+        */
        function convertPlural( $count, $forms ) {
-               if ( !count($forms) ) { return ''; }
+               if ( !count( $forms ) ) { return ''; }
                $forms = $this->preConvertPlural( $forms, 3 );
 
-               if ($count > 10 && floor(($count % 100) / 10) == 1) {
+               // @todo FIXME: CLDR defines 4 plural forms instead of 3. Plural for decimals is missing.
+               //        http://unicode.org/repos/cldr-tmp/trunk/diff/supplemental/language_plural_rules.html
+               if ( $count > 10 && floor( ( $count % 100 ) / 10 ) == 1 ) {
                        return $forms[2];
                } else {
-                       switch ($count % 10) {
+                       switch ( $count % 10 ) {
                                case 1:  return $forms[0];
                                case 2:
                                case 3:
@@ -23,14 +30,20 @@ class LanguageBs extends Language {
                }
        }
 
-       # Convert from the nominative form of a noun to some other case
-       # Invoked with {{GRAMMAR:case|word}}
        /**
+        * Convert from the nominative form of a noun to some other case
+        * Invoked with {{GRAMMAR:case|word}}
+        *
         * Cases: genitiv, dativ, akuzativ, vokativ, instrumental, lokativ
+        *
+        * @param $word string
+        * @param $case string
+        *
+        * @return string
         */
        function convertGrammar( $word, $case ) {
                global $wgGrammarForms;
-               if ( isset($wgGrammarForms['bs'][$case][$word]) ) {
+               if ( isset( $wgGrammarForms['bs'][$case][$word] ) ) {
                        return $wgGrammarForms['bs'][$case][$word];
                }
                switch ( $case ) {