summaryrefslogtreecommitdiff
path: root/languages/classes/LanguageAr.php
blob: c88248140fb26632a10d9f702eb8091961defbf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/** Arabic (العربية)
 *
 * @addtogroup Language
 *
 * @author Niklas Laxström
 */
class LanguageAr extends Language {

	function convertPlural( $count, $w1, $w2, $w3, $w4, $w5) {
		$forms = array($w1, $w2, $w3, $w4, $w5);
		if ( $count == 1 ) {
			$index = 0;
		} elseif( $count == 2 ) {
			$index = 1;
		} elseif( $count < 11 && $count > 2 ) {
			$index = 2;
		} elseif( $count % 100 == 0) {
			$index = 3;
		} else {
			$index = 4;
		}
		return $forms[$index];
	}

}

?>