]> wagnertech.de Git - kivitendo-erp.git/commitdiff
Nicht zu viele Quote-Chars behalten.
authorMoritz Bunkus <m.bunkus@linet-services.de>
Thu, 28 Oct 2010 11:25:32 +0000 (13:25 +0200)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 28 Dec 2010 13:41:11 +0000 (14:41 +0100)
scripts/locales.pl

index ff2638b627f9da9c8f873ac8db6f0e66c0a673ae..b26fe892cf6d4bbaa4363e9ad26f281a86d0d517 100755 (executable)
@@ -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) {