Mehrfache Leerzeichen in HTML-Vorlagen durch ein einzelnes ersetzen, bevor ein Text...
authorMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 28 Nov 2006 10:02:24 +0000 (10:02 +0000)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 28 Nov 2006 10:02:24 +0000 (10:02 +0000)
locale/de/locales.pl

index 24adc4b..119dfe9 100755 (executable)
@@ -477,7 +477,8 @@ sub scanhtmlfile {
           if ($line =~ m|</translate>|i) {
             $text .= $`;
             substr($line, 0, $+[0]) = "";
-            
+            $text =~ s/\s+/ /g;
+
             $copying = 0; 
             if ($issubmit) {
   #            $submit{$text} = 1;
@@ -547,6 +548,7 @@ sub converthtmlfile {
         if ($line =~ m|</translate>|i) {
           $text .= $`;
           substr($line, 0, $+[0]) = "";
+          $text =~ s/\s+/ /g;
           $copying = 0;
           $alllocales{$text} = 1;
           $htmllocale{$text} = 1;