diff options
Diffstat (limited to 'languages/classes/LanguageHe.php')
-rw-r--r-- | languages/classes/LanguageHe.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/languages/classes/LanguageHe.php b/languages/classes/LanguageHe.php index 70de3115..e84d45d8 100644 --- a/languages/classes/LanguageHe.php +++ b/languages/classes/LanguageHe.php @@ -52,11 +52,13 @@ class LanguageHe extends Language { * @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 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 */ - public function convertPlural( $count, $w1, $w2, $w3) { + public function convertPlural( $count, $w1, $w2, $w3, $w4, $w5) { if ( $count == '1' ) { return $w1; } elseif ( $count == '2' && $w3 ) { |