* Also put the wgGrammarForms from the Wikimedia configuration in here, so everything is in one place. Bonus with this setup is that there will be a little less work for Wikimedia shell operators, as the wgGrammarForms configuration is now accessible to i18n committers. * Header for WikimediaMessages.php, and add myself to extension credits. WARNING to Wikimedia shell operators: the whole section "wgGrammarForms" in InitialiseSettings.php.html should be remove after updating to this version. It will most probably overrule all settings in WikimediaMessages because of "'default' => array()"
21 lines
403 B
PHP
21 lines
403 B
PHP
<?php
|
|
/**
|
|
* Slovak (Slovenčina)
|
|
*
|
|
* @ingroup Language
|
|
*/
|
|
class LanguageSk extends Language {
|
|
function convertPlural( $count, $forms ) {
|
|
if ( !count($forms) ) { return ''; }
|
|
$forms = $this->preConvertPlural( $forms, 3 );
|
|
|
|
if ( $count == 1 ) {
|
|
$index = 0;
|
|
} elseif ( $count == 2 || $count == 3 || $count == 4 ) {
|
|
$index = 1;
|
|
} else {
|
|
$index = 2;
|
|
}
|
|
return $forms[$index];
|
|
}
|
|
}
|