X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=blobdiff_plain;f=languages%2Fclasses%2FLanguageBs.php;h=de9c7dcec45d5cc8d3875d5d04d0632e82b80ce8;hb=6df9ed1ad68c92b5e7364038ef3932c4739eb86e;hp=072e857ba6aace2fce8d4dfd41ae7ef69645cca3;hpb=4e9b74945c26994f7d4bbfe7d12800a1827a780a;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; } }