MediaWiki  REL1_20
LanguageMg.php
Go to the documentation of this file.
00001 <?php
00029 class LanguageMg extends Language {
00038         function convertPlural( $count, $forms ) {
00039                 if ( !count( $forms ) ) { return ''; }
00040                 $forms = $this->preConvertPlural( $forms, 2 );
00041 
00042                 return ( $count <= 1 ) ? $forms[0] : $forms[1];
00043         }
00044 }