From: Moritz Bunkus Date: Tue, 28 Nov 2006 10:02:24 +0000 (+0000) Subject: Mehrfache Leerzeichen in HTML-Vorlagen durch ein einzelnes ersetzen, bevor ein Text... X-Git-Tag: release-2.4.0^2~154 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=5b98fc5fa9ec2b4789f46aef2e40f517c440743b;p=kivitendo-erp.git Mehrfache Leerzeichen in HTML-Vorlagen durch ein einzelnes ersetzen, bevor ein Text uebersetzt wird. --- diff --git a/locale/de/locales.pl b/locale/de/locales.pl index 24adc4b62..119dfe92b 100755 --- a/locale/de/locales.pl +++ b/locale/de/locales.pl @@ -477,7 +477,8 @@ sub scanhtmlfile { if ($line =~ m||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||i) { $text .= $`; substr($line, 0, $+[0]) = ""; + $text =~ s/\s+/ /g; $copying = 0; $alllocales{$text} = 1; $htmllocale{$text} = 1;