* (bug 5780) Thousands and decimal separators for Norwegian
authorNiklas Laxström <nikerabbit@users.mediawiki.org>
Mon, 1 May 2006 15:10:13 +0000 (15:10 +0000)
committerNiklas Laxström <nikerabbit@users.mediawiki.org>
Mon, 1 May 2006 15:10:13 +0000 (15:10 +0000)
RELEASE-NOTES
languages/LanguageNo.php

index 30583d9..5e0ad4d 100644 (file)
@@ -177,6 +177,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * (bug 5696) Add a third parameter, $3, to "rcnote", passing the current time
   formatted according to the current user's settings
 * (bug 218) Redirects do not support named anchors
+* (bug 5780) Thousands and decimal separators for Norwegian
 
 == Compatibility ==
 
index f5f3ddb..1cad0a6 100644 (file)
@@ -93,7 +93,7 @@ class LanguageNo extends LanguageUtf8 {
        }
 
        function separatorTransformTable() {
-               return array(',' => '.', '.' => ',' );
+               return array(',' => "\xc2\xa0", '.' => ',' );
        }
 
        function getMessage( $key ) {