wiki.techinc.nl/languages/classes/LanguageHe.php
Alexandre Emsenhuber 087a9f70c5 WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>

Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage

One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00

72 lines
1.7 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* Hebrew (עברית)
*
* @ingroup Language
*
* @author Rotem Liss
*/
class LanguageHe extends Language {
/**
* Convert grammar forms of words.
*
* Available cases:
* "prefixed" (or "תחילית") - when the word has a prefix
*
* @param string the word to convert
* @param string the case
*/
public function convertGrammar( $word, $case ) {
global $wgGrammarForms;
if ( isset($wgGrammarForms['he'][$case][$word]) ) {
return $wgGrammarForms['he'][$case][$word];
}
switch ( $case ) {
case 'prefixed':
case 'תחילית':
# Duplicate the "Waw" if prefixed
if ( substr( $word, 0, 2 ) == "ו" && substr( $word, 0, 4 ) != "וו" ) {
$word = "ו".$word;
}
# Remove the "He" if prefixed
if ( substr( $word, 0, 2 ) == "ה" ) {
$word = substr( $word, 2 );
}
# Add a hyphen if non-Hebrew letters
if ( substr( $word, 0, 2 ) < "א" || substr( $word, 0, 2 ) > "ת" ) {
$word = "־".$word;
}
}
return $word;
}
/**
* Gets a number and uses the suited form of the word.
*
* @param integer the number of items
* @param string the first form (singular)
* @param string the second form (plural)
* @param string the third form (2 items, plural is used if not applicable and not specified
* @param not used (for compatibility with ancestor)
* @param not used (for compatibility with ancestor)
*
* @return string of the suited form of word
*/
function convertPlural( $count, $forms ) {
if ( !count($forms) ) { return ''; }
$forms = $this->preConvertPlural( $forms, 3 );
if ( $count == '1' ) {
return $forms[0];
} elseif ( $count == '2' && isset($forms[2]) ) {
return $forms[2];
} else {
return $forms[1];
}
}
}