From: Niklas Laxström Date: Mon, 1 May 2006 15:10:13 +0000 (+0000) Subject: * (bug 5780) Thousands and decimal separators for Norwegian X-Git-Tag: 1.31.0-rc.0~57291 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=004ccf0a6432b1503939b23d88c8f161eead4bbe;p=lhc%2Fweb%2Fwiklou.git * (bug 5780) Thousands and decimal separators for Norwegian --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 30583d9cb2..5e0ad4d806 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -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 == diff --git a/languages/LanguageNo.php b/languages/LanguageNo.php index f5f3ddbc28..1cad0a6443 100644 --- a/languages/LanguageNo.php +++ b/languages/LanguageNo.php @@ -93,7 +93,7 @@ class LanguageNo extends LanguageUtf8 { } function separatorTransformTable() { - return array(',' => '.', '.' => ',' ); + return array(',' => "\xc2\xa0", '.' => ',' ); } function getMessage( $key ) {