Ensure there's a newline at the end of the editing <textarea>, otherwise adding lines...
[mediawiki.git] / languages / classes / LanguagePt_br.php
blob78965ae30f0fd73c17848a0faadb10d58024e2d8
1 <?php
2 /** Brazilian Portugese (Portuguêsi do Brasil)
4 * @addtogroup Language
6 */
8 class LanguagePt_br extends Language {
9 /**
10 * Use singular form for zero (see bug 7309)
12 function convertPlural( $count, $forms ) {
13 if ( !count($forms) ) { return ''; }
14 $forms = $this->preConvertPlural( $forms, 2 );
16 return ($count <= 1) ? $forms[0] : $forms[1];