From 004ccf0a6432b1503939b23d88c8f161eead4bbe Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Mon, 1 May 2006 15:10:13 +0000 Subject: [PATCH] * (bug 5780) Thousands and decimal separators for Norwegian --- RELEASE-NOTES | 1 + languages/LanguageNo.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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 ) { -- 2.20.1