* (bug 2749)   would appear as a literal in image galleries for Cs, Fr, Fur...
authorÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Thu, 7 Jul 2005 23:59:10 +0000 (23:59 +0000)
committerÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Thu, 7 Jul 2005 23:59:10 +0000 (23:59 +0000)
RELEASE-NOTES
languages/LanguageCs.php
languages/LanguageFr.php
languages/LanguageFur.php
languages/LanguagePl.php
languages/LanguageSv.php

index fe9ae7a..1d96724 100644 (file)
@@ -543,6 +543,7 @@ of MediaWiki:Newpagetext) to &action=edit, if page is new.
 
 * Fix talk page move handling
 * (bug 2721) New language file for Vietnamese with the Vietnamese number notation
+* (bug 2749) &nbsp; would appear as a literal in image galleries for Cs, Fr, Fur, Pl and Sv
 
 === Caveats ===
 
index 6c13242..f23f761 100644 (file)
@@ -1994,7 +1994,7 @@ class LanguageCs extends LanguageUtf8 {
         }
        
        var $digitTransTable = array(
-                       ',' => '&nbsp;',
+                       ',' => "\xa0", // @bug 2749
                        '.' => ','
        );
 
index 16eb641..8724786 100644 (file)
@@ -1419,7 +1419,7 @@ class LanguageFr extends LanguageUtf8 {
        }
 
        var $digitTransTable = array(
-               ',' => '&nbsp;',
+               ',' => "\xa0", // @bug 2749
                '.' => ','
        );
        
index 25889c6..b18a36e 100644 (file)
@@ -324,7 +324,7 @@ class LanguageFur extends LanguageUtf8 {
        }
 
        var $digitTransTable = array(
-               ',' => '&nbsp;',
+               ',' => "\xa0", // @bug 2749
                '.' => ','
        );
        
index 97196ca..8151422 100644 (file)
@@ -7,9 +7,6 @@ require_once("LanguageUtf8.php");
 
 # FIXME: Lots of hardcoded Wikipedia-related text needs to be cleaned up.
 
-# NOTE: To turn off "Current Events" in the sidebar,
-# set "currentevents" => "-"
-
 # The names of the namespaces can be set here, but the numbers
 # are magical, so don't change or move them!  The Namespace class
 # encapsulates some of the magic-ness.
@@ -1078,7 +1075,7 @@ class LanguagePl extends LanguageUtf8 {
        }
 
        var $digitTransTable = array(
-               ',' => '&nbsp;',
+               ',' => "\xa0", // @bug 2749
                '.' => ','
        );
 
index e33d0b6..a33abe5 100644 (file)
@@ -1082,7 +1082,7 @@ class LanguageSv extends LanguageUtf8 {
        }
 
        var $digitTransTable = array(
-               ',' => '&nbsp;',
+               ',' => "\xa0", // @bug 2749
                '.' => ','
        );