From: Georg Baum Date: Mon, 21 Mar 2011 19:11:53 +0000 (+0000) Subject: small preparation for the layout translation fix X-Git-Tag: 2.0.0~468 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=013b2c5be05115c9a9e899184b9841a3be27e816;p=features.git small preparation for the layout translation fix git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37985 a592a061-630c-0410-9148-cb99ea01b6c8 --- 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: