* Using , for the decimal point seperator and . for the thousands seperator for
[lhc/web/wiklou.git] / languages / LanguageUk.php
index 46800f1..2ff7fc7 100755 (executable)
@@ -1000,6 +1000,12 @@ class LanguageUk extends LanguageUtf8 {
        function fallback8bitEncoding() {
                return "windows-1251";
        }
+
+       function formatNum( $number ) {
+               global $wgTranslateNumerals;
+               return $wgTranslateNumerals ? strtr($number, '.,', ',.' ) : $number;
+       }
+
 }
 
 ?>