LanguageHe.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?php
  2. /**
  3. * Hebrew (עברית) specific code.
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along
  16. * with this program; if not, write to the Free Software Foundation, Inc.,
  17. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  18. * http://www.gnu.org/copyleft/gpl.html
  19. *
  20. * @file
  21. * @author Rotem Liss
  22. * @ingroup Language
  23. */
  24. /**
  25. * Hebrew (עברית)
  26. *
  27. * @ingroup Language
  28. */
  29. class LanguageHe extends Language {
  30. /**
  31. * Convert grammar forms of words.
  32. *
  33. * Available cases:
  34. * "prefixed" (or "תחילית") - when the word has a prefix
  35. *
  36. * @param string $word The word to convert
  37. * @param string $case The case
  38. *
  39. * @return string
  40. */
  41. public function convertGrammar( $word, $case ) {
  42. global $wgGrammarForms;
  43. if ( isset( $wgGrammarForms['he'][$case][$word] ) ) {
  44. return $wgGrammarForms['he'][$case][$word];
  45. }
  46. switch ( $case ) {
  47. case 'prefixed':
  48. case 'תחילית':
  49. # Duplicate the "Waw" if prefixed, but not if it is already double.
  50. if ( substr( $word, 0, 2 ) === "ו" && substr( $word, 0, 4 ) !== "וו" ) {
  51. $word = "ו" . $word;
  52. }
  53. # Remove the "He" article if prefixed.
  54. if ( substr( $word, 0, 2 ) === "ה" ) {
  55. $word = substr( $word, 2 );
  56. }
  57. # Add a hyphen (maqaf) before non-Hebrew letters.
  58. if ( substr( $word, 0, 2 ) < "א" || substr( $word, 0, 2 ) > "ת" ) {
  59. $word = "־" . $word;
  60. }
  61. }
  62. return $word;
  63. }
  64. }