Underscores in namespaces are useful, thanks to Nikerabbit
[mediawiki.git] / languages / classes / LanguagePt_br.php
blob31574ed8a99b56774214eaa02442102054c3c568
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, $w1, $w2, $w3, $w4, $w5) {
13 return $count <= '1' ? $w1 : $w2;