wiki.techinc.nl/languages/classes/LanguageSma.php
2011-07-16 11:40:28 +00:00

29 lines
574 B
PHP

<?php
/**
* Southern Sami (Åarjelsaemien)
*
* @ingroup Language
*/
class LanguageSma extends Language {
/**
* @param $count int
* @param $forms array
* @return string
*/
function convertPlural( $count, $forms ) {
if ( !count( $forms ) ) { return ''; }
// plural forms per http://unicode.org/repos/cldr-tmp/trunk/diff/supplemental/language_plural_rules.html#sma
$forms = $this->preConvertPlural( $forms, 3 );
if ( $count == 1 ) {
$index = 0;
} elseif ( $count == 2 ) {
$index = 1;
} else {
$index = 2;
}
return $forms[$index];
}
}