X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=languages%2Fclasses%2FLanguageBs.php;h=de9c7dcec45d5cc8d3875d5d04d0632e82b80ce8;hb=029efe3eff7e04518e98e48aed5f8ac3c28a4085;hp=072e857ba6aace2fce8d4dfd41ae7ef69645cca3;hpb=e0d92d376b3c326c2a3c25b2956f1b53939007af;p=lhc%2Fweb%2Fwiklou.git diff --git a/languages/classes/LanguageBs.php b/languages/classes/LanguageBs.php index 072e857ba6..de9c7dcec4 100644 --- a/languages/classes/LanguageBs.php +++ b/languages/classes/LanguageBs.php @@ -27,15 +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 */ @@ -53,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; } }