From 013b2c5be05115c9a9e899184b9841a3be27e816 Mon Sep 17 00:00:00 2001 From: Georg Baum Date: Mon, 21 Mar 2011 19:11:53 +0000 Subject: [PATCH] small preparation for the layout translation fix git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37985 a592a061-630c-0410-9148-cb99ea01b6c8 --- po/lyx_pot.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/po/lyx_pot.py b/po/lyx_pot.py index 88d35a9921..a6637a5617 100755 --- a/po/lyx_pot.py +++ b/po/lyx_pot.py @@ -96,7 +96,7 @@ def layouts_l10n(input_files, output, base): CiteFormat = re.compile(r'\s*CiteFormat') KeyVal = re.compile(r'^\s*_\w+\s+(.*)$') End = re.compile(r'\s*End') - + for src in input_files: readingDescription = False readingI18nPreamble = False @@ -137,10 +137,7 @@ def layouts_l10n(input_files, output, base): res = NameRE.search(line) if res != None: string = res.group(1) - string = string.replace('\\', '\\\\').replace('"', '') - if string != "": - print >> out, '#: %s:%d\nmsgid "%s"\nmsgstr ""\n' % \ - (relativePath(src, base), lineno + 1, string) + writeString(out, src, base, lineno + 1, string) continue res = Style.search(line) if res != None: -- 2.39.2