mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-05 13:26:21 +00:00
fix quoting of " in .ui files
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6649 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
275d61075f
commit
eab9836ca2
@ -1,3 +1,7 @@
|
||||
2003-03-30 John Levon <levon@movementarian.org>
|
||||
|
||||
* Makefile.in.in: fix escaping of " for qt UI files
|
||||
|
||||
2003-03-10 Michael Schmitt <Michael.Schmitt@teststep.org>
|
||||
|
||||
* pocheck.pl: new perl script that checks the consistency of a
|
||||
|
@ -237,6 +237,7 @@ $(srcdir)/qt_l10n.pot: $(top_srcdir)/src/frontends/qt2/ui/*.ui
|
||||
gsub(/&/, "\\&", line); \
|
||||
gsub(/</, "<", line); \
|
||||
gsub(/>/, ">", line); \
|
||||
gsub(/\"/, "\\\"", line); \
|
||||
if (length(line) > 0) \
|
||||
printf("#: %s:%d\nmsgid \"%s\"\nmsgstr \"\"\n\n",\
|
||||
FILENAME, FNR, line); \
|
||||
|
Loading…
Reference in New Issue
Block a user