From 5b98fc5fa9ec2b4789f46aef2e40f517c440743b Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Tue, 28 Nov 2006 10:02:24 +0000 Subject: [PATCH] Mehrfache Leerzeichen in HTML-Vorlagen durch ein einzelnes ersetzen, bevor ein Text uebersetzt wird. --- locale/de/locales.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; -- 2.20.1