X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=languages%2Fclasses%2FLanguageBs.php;h=de9c7dcec45d5cc8d3875d5d04d0632e82b80ce8;hb=ceb1eb3e1c93c834040c633b14fc23402eb45a42;hp=072e857ba6aace2fce8d4dfd41ae7ef69645cca3;hpb=e92d87c26c408441d8c229fc1e9c7e0bcd93898a;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; } }