Print the whole text instead of having some strange syntax that doesn't work (but...
[mediawiki.git] / languages / classes / LanguageBh.php
blob80119ec7b0289ccd63a570d163cd15670a7e6e07
1 <?php
2 /**
4 * @ingroup Language
5 */
6 class LanguageBh extends Language {
7 /**
8 * Use singular form for zero
9 */
10 function convertPlural( $count, $forms ) {
11 if ( !count($forms) ) { return ''; }
12 $forms = $this->preConvertPlural( $forms, 2 );
14 return ($count <= 1) ? $forms[0] : $forms[1];