X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=languages%2Fclasses%2FLanguageBs.php;h=de9c7dcec45d5cc8d3875d5d04d0632e82b80ce8;hb=0effd172ce2d3b690814dd1b1af3e39e89550154;hp=3da7711e8f77fffbd715712895e86b396cd43407;hpb=a1a296ac845aa37bfb34f0ca0085de67f9b2e8c4;p=lhc%2Fweb%2Fwiklou.git diff --git a/languages/classes/LanguageBs.php b/languages/classes/LanguageBs.php index 3da7711e8f..de9c7dcec4 100644 --- a/languages/classes/LanguageBs.php +++ b/languages/classes/LanguageBs.php @@ -27,16 +27,14 @@ * @ingroup Language */ class LanguageBs extends Language { - - /** * 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 */ @@ -54,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; } }