Displaying all the groups with the permission, not only the first defined one, in...
[mediawiki.git] / languages / LanguageEt.php
blob9284340619073411e20d066f87ac4a200b7b0ad3
1 <?php
2 /** Estonian (Eesti)
4 * @package MediaWiki
5 * @subpackage Language
7 */
9 class LanguageEt extends Language {
10 /**
11 * Avoid grouping whole numbers between 0 to 9999
13 function commafy($_) {
14 if (!preg_match('/^\d{1,4}$/',$_)) {
15 return strrev((string)preg_replace('/(\d{3})(?=\d)(?!\d*\.)/','$1,',strrev($_)));
16 } else {
17 return $_;