mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
* po/lyx_pot.py: do not replace \\ by \\\\
this fixes the math panel toolbar problems git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17905 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
a0b235fff6
commit
516b4d9887
@ -49,7 +49,7 @@ def ui_l10n(input_files, output, base):
|
||||
(string,) = Item.match(line).groups()
|
||||
else:
|
||||
continue
|
||||
string = string.replace('\\', '\\\\').replace('"', '')
|
||||
string = string.replace('"', '')
|
||||
if string != "":
|
||||
print >> output, '#: %s:%d\nmsgid "%s"\nmsgstr ""\n' % \
|
||||
(relativePath(src, base), lineno+1, string)
|
||||
|
Loading…
Reference in New Issue
Block a user