Index: trunk/phase3/languages/messages/MessagesDe.php |
— | — | @@ -60,6 +60,7 @@ |
61 | 61 | 'Bild_Diskussion' => NS_FILE_TALK, |
62 | 62 | ); |
63 | 63 | |
| 64 | + |
64 | 65 | $bookstoreList = array( |
65 | 66 | 'abebooks.de' => 'http://www.abebooks.de/servlet/BookSearchPL?ph=2&isbn=$1', |
66 | 67 | 'amazon.de' => 'http://www.amazon.de/exec/obidos/ISBN=$1', |
— | — | @@ -68,11 +69,7 @@ |
69 | 70 | 'Lehmanns Fachbuchhandlung' => 'http://www.lob.de/cgi-bin/work/suche?flag=new&stich1=$1' |
70 | 71 | ); |
71 | 72 | |
72 | | -$separatorTransformTable = array( |
73 | | - ',' => "\xc2\xa0", # nbsp |
74 | | - '.' => ',' |
75 | | -); |
76 | | - |
| 73 | +$separatorTransformTable = array(',' => '.', '.' => ',' ); |
77 | 74 | $linkTrail = '/^([äöüßa-z]+)(.*)$/sDu'; |
78 | 75 | |
79 | 76 | $specialPageAliases = array( |
Index: trunk/phase3/languages/classes/LanguageDe.php |
— | — | @@ -1,21 +0,0 @@ |
2 | | -<?php |
3 | | -/** German |
4 | | - * |
5 | | - * @ingroup Language |
6 | | - */ |
7 | | -class LanguageDe extends Language { |
8 | | - |
9 | | - /* |
10 | | - * FIXME: Comment is wrong, decimals prevent space suppression |
11 | | - * German numeric format is "12 345,67" but "1234,56" |
12 | | - * Copied from LanguageUk.php |
13 | | - */ |
14 | | - |
15 | | - function commafy($_) { |
16 | | - if (!preg_match('/^\d{1,4}$/',$_)) { |
17 | | - return strrev((string)preg_replace('/(\d{3})(?=\d)(?!\d*\.)/','$1,',strrev($_))); |
18 | | - } else { |
19 | | - return $_; |
20 | | - } |
21 | | - } |
22 | | -} |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -253,7 +253,6 @@ |
254 | 254 | * (bug 18806) Use correct unicode characters in spelling of native Chuvash |
255 | 255 | (Чӑвашла) |
256 | 256 | * (bug 18864) Updated autonym for Zhuang language |
257 | | -* (bug 18957) Updated number formatting for German (de) |
258 | 257 | * (bug 18308) Updated date formatting in Occitan (oc) |
259 | 258 | * (bug 19080) Added ăâîşţșțĂÂÎŞŢȘȚ to Romanion (ro) linktrail |
260 | 259 | * (bug 19286) Correct commafying function in Polish (pl) |