blob: aac943d6ab9f86a0a5fa6d6977ac0178162b12aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
/**
*
* @ingroup Language
*/
class LanguageSe extends Language {
function convertPlural( $count, $forms ) {
if ( !count($forms) ) { return ''; }
// plural forms per http://unicode.org/repos/cldr-tmp/trunk/diff/supplemental/language_plural_rules.html#se
$forms = $this->preConvertPlural( $forms, 3 );
if ( $count == 1 ) {
$index = 0;
} elseif( $count == 2 ) {
$index = 1;
} else {
$index = 2;
}
return $forms[$index];
}
}
|