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:
John Levon 2003-03-30 17:28:24 +00:00
parent 275d61075f
commit eab9836ca2
2 changed files with 5 additions and 0 deletions

View File

@ -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

View File

@ -237,6 +237,7 @@ $(srcdir)/qt_l10n.pot: $(top_srcdir)/src/frontends/qt2/ui/*.ui
gsub(/&amp;/, "\\&", line); \
gsub(/&lt;/, "<", line); \
gsub(/&gt;/, ">", line); \
gsub(/\"/, "\\\"", line); \
if (length(line) > 0) \
printf("#: %s:%d\nmsgid \"%s\"\nmsgstr \"\"\n\n",\
FILENAME, FNR, line); \