* Using , for the decimal point seperator and . for the thousands seperator for
[lhc/web/wiklou.git] / languages / LanguageDa.php
index 613dd86..3891235 100644 (file)
@@ -1168,6 +1168,11 @@ class LanguageDa extends LanguageUtf8 {
                }
        }
 
+       function formatNum( $number ) {
+               global $wgTranslateNumerals;
+               return $wgTranslateNumerals ? strtr($number, '.,', ',.' ) : $number;
+       }
+
 }
 
 ?>