X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=languages%2Fclasses%2FLanguageDsb.php;h=2a21307e2f39633335ac16de55c734c7651bcb7e;hb=f4799240ddd6e750968e42da0aee716317b8ca6a;hp=0ae052427799e6ca4722eef3ac25a31ea5a76053;hpb=dd981eb7b5a22dc6c12a1adc5144d63ac0ee9dd1;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; } - }