Merge "(bug 37368) Interlanguage link title for Uzbek is Oʻzbekcha"
[lhc/web/wiklou.git] / languages / classes / LanguageSh.php
1 <?php
2 /**
3 * Serbo-Croatian (Srpskohrvatski / Српскохрватски)
4 *
5 * @ingroup Language
6 */
7 class LanguageSh extends Language {
8
9 /**
10 * @param $count string
11 * @param $forms array
12 * @return string
13 */
14 function convertPlural( $count, $forms ) {
15 if ( !count( $forms ) ) { return ''; }
16
17 // if no number with word, then use $form[0] for singular and $form[1] for plural or zero
18 if ( count( $forms ) === 2 ) return $count == 1 ? $forms[0] : $forms[1];
19
20 // @todo FIXME: CLDR defines 4 plural forms. Form with decimals missing.
21 // See http://unicode.org/repos/cldr-tmp/trunk/diff/supplemental/language_plural_rules.html#sh
22 $forms = $this->preConvertPlural( $forms, 3 );
23
24 if ( $count > 10 && floor( ( $count % 100 ) / 10 ) == 1 ) {
25 return $forms[2];
26 } else {
27 switch ( $count % 10 ) {
28 case 1: return $forms[0];
29 case 2:
30 case 3:
31 case 4: return $forms[1];
32 default: return $forms[2];
33 }
34 }
35 }
36 }