X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=languages%2Fclasses%2FLanguageOs.php;h=dbf4cceb3236f58b37571eccb5622af96ca7ae45;hb=755214a5564be292636737186d0140a730377cbd;hp=f37e2d54cd5170e4885958ce258d26dda61bca86;hpb=3f83da1cdbc6339ac20415f09a307d2695fe70ee;p=lhc%2Fweb%2Fwiklou.git diff --git a/languages/classes/LanguageOs.php b/languages/classes/LanguageOs.php index f37e2d54cd..dbf4cceb32 100644 --- a/languages/classes/LanguageOs.php +++ b/languages/classes/LanguageOs.php @@ -49,8 +49,8 @@ class LanguageOs extends Language { * Then result word is: word + 'й' + case ending for cases != allative or comitative * and word + case ending for allative or comitative. Ending of allative case here is 'æ'. * - * @param $word string - * @param $case string + * @param string $word + * @param string $case * @return string */ function convertGrammar( $word, $case ) { @@ -67,7 +67,6 @@ class LanguageOs extends Language { # Variable for ending $ending = ''; - # CHecking if the $word is in plural form if ( preg_match( '/тæ$/u', $word ) ) { $word = mb_substr( $word, 0, -1 );