From 673c231dd54bbb169af70a66998649666199a641 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Thu, 28 Oct 2010 13:25:32 +0200 Subject: [PATCH] Nicht zu viele Quote-Chars behalten. --- scripts/locales.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/locales.pl b/scripts/locales.pl index ff2638b62..b26fe892c 100755 --- a/scripts/locales.pl +++ b/scripts/locales.pl @@ -283,11 +283,11 @@ sub extract_text_between_parenthesis { } else { if ($quote_next) { + $text .= '\\' unless $cur_char eq "'"; $text .= $cur_char; $quote_next = 0; } elsif ($cur_char eq '\\') { - $text .= $cur_char; $quote_next = 1; } elsif ($cur_char eq $inside_string) { -- 2.20.1