blob: 514ff028c62d45d8e7688871a47a640386616492 (
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
|
<?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];
}
}
|