X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=languages%2Fclasses%2FLanguageDsb.php;h=2a21307e2f39633335ac16de55c734c7651bcb7e;hb=976e9e44a73ddedab055a7876bda65f72cd5f147;hp=0ae052427799e6ca4722eef3ac25a31ea5a76053;hpb=df3e7a01136596b32c0d542bfdf29b0b475c0b0a;p=lhc%2Fweb%2Fwiklou.git diff --git a/languages/classes/LanguageDsb.php b/languages/classes/LanguageDsb.php index 0ae0524277..2a21307e2f 100644 --- a/languages/classes/LanguageDsb.php +++ b/languages/classes/LanguageDsb.php @@ -28,13 +28,12 @@ * @ingroup Language */ class LanguageDsb extends Language { - /** * Convert from the nominative form of a noun to some other case * Invoked with {{grammar:case|word}} * - * @param $word string - * @param $case string + * @param string $word + * @param string $case * @return string */ function convertGrammar( $word, $case ) { @@ -51,7 +50,8 @@ class LanguageDsb extends Language { break; } - return $word; # this will return the original value for 'nominatiw' (nominativ) and all undefined case values + # this will return the original value for 'nominatiw' (nominativ) and + # all undefined case values. + return $word; } - }