X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=blobdiff_plain;f=languages%2Fclasses%2FLanguageBs.php;h=de9c7dcec45d5cc8d3875d5d04d0632e82b80ce8;hb=08324f14b457e8c7e8394480df48b82d9a92576d;hp=0929641c8b1fcec2d64d8fd7821ff58e2fe0e50b;hpb=5446238520cceb067792338cdfc83a343b480e15;p=lhc%2Fweb%2Fwiklou.git diff --git a/languages/classes/LanguageBs.php b/languages/classes/LanguageBs.php index 0929641c8b..de9c7dcec4 100644 --- a/languages/classes/LanguageBs.php +++ b/languages/classes/LanguageBs.php @@ -27,39 +27,14 @@ * @ingroup Language */ class LanguageBs extends Language { - - /** - * @param $count int - * @param $forms array - * @return string - */ - function convertPlural( $count, $forms ) { - if ( !count( $forms ) ) { return ''; } - $forms = $this->preConvertPlural( $forms, 3 ); - - // @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 ) { - case 1: return $forms[0]; - case 2: - case 3: - case 4: return $forms[1]; - default: return $forms[2]; - } - } - } - /** * 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 + * @param string $word + * @param string $case * * @return string */ @@ -77,6 +52,8 @@ class LanguageBs extends Language { break; } - return $word; # this will return the original value for 'nominativ' (nominative) and all undefined case values + # this will return the original value for 'nominativ' (nominative) + # and all undefined case values. + return $word; } }