MediaWiki  REL1_19
LanguageBh.php
Go to the documentation of this file.
00001 <?php
00007 class LanguageBh extends Language {
00016         function convertPlural( $count, $forms ) {
00017                 if ( !count( $forms ) ) { return ''; }
00018                 $forms = $this->preConvertPlural( $forms, 2 );
00019 
00020                 return ( $count <= 1 ) ? $forms[0] : $forms[1];
00021         }
00022 }