X-Git-Url: https://git.cyclocoop.org/?a=blobdiff_plain;f=languages%2Fclasses%2FLanguageHe.php;h=0391988683b3fc5d4ac410455f0376a3ccbf1562;hb=31ba2b8d32249cc2be16a2575816df5b2016f874;hp=22be1dec2534f996ca8cbb50b928781afe045499;hpb=18dc076fa265a4adaa6ecef3c7db6b4fd19eb83f;p=lhc%2Fweb%2Fwiklou.git diff --git a/languages/classes/LanguageHe.php b/languages/classes/LanguageHe.php index 22be1dec25..0391988683 100644 --- a/languages/classes/LanguageHe.php +++ b/languages/classes/LanguageHe.php @@ -49,17 +49,17 @@ class LanguageHe extends Language { switch ( $case ) { case 'prefixed': case 'תחילית': - # Duplicate the "Waw" if prefixed - if ( substr( $word, 0, 2 ) == "ו" && substr( $word, 0, 4 ) != "וו" ) { + # Duplicate the "Waw" if prefixed, but not if it is already double. + if ( substr( $word, 0, 2 ) === "ו" && substr( $word, 0, 4 ) !== "וו" ) { $word = "ו" . $word; } - # Remove the "He" if prefixed - if ( substr( $word, 0, 2 ) == "ה" ) { + # Remove the "He" article if prefixed. + if ( substr( $word, 0, 2 ) === "ה" ) { $word = substr( $word, 2 ); } - # Add a hyphen (maqaf) if non-Hebrew letters + # Add a hyphen (maqaf) before non-Hebrew letters. if ( substr( $word, 0, 2 ) < "א" || substr( $word, 0, 2 ) > "ת" ) { $word = "־" . $word; } @@ -67,24 +67,4 @@ class LanguageHe extends Language { return $word; } - - /** - * Gets a number and uses the suited form of the word. - * - * @param $count Integer: the number of items - * @param $forms Array with 3 items: the three plural forms - * @return String: the suited form of word - */ - function convertPlural( $count, $forms ) { - if ( !count( $forms ) ) { return ''; } - $forms = $this->preConvertPlural( $forms, 3 ); - - if ( $count == 1 ) { - return $forms[0]; // Singular - } elseif ( $count == 2 ) { - return $forms[2]; // Dual or plural if dual is not provided (filled in preConvertPlural) - } else { - return $forms[1]; // Plural - } - } }