From eab9836ca2fced74ee6abcac951926481dc9d1c3 Mon Sep 17 00:00:00 2001 From: John Levon Date: Sun, 30 Mar 2003 17:28:24 +0000 Subject: [PATCH] fix quoting of " in .ui files git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6649 a592a061-630c-0410-9148-cb99ea01b6c8 --- po/ChangeLog | 4 ++++ po/Makefile.in.in | 1 + 2 files changed, 5 insertions(+) diff --git a/po/ChangeLog b/po/ChangeLog index 9f126f52e6..23ab5b1502 100644 --- a/po/ChangeLog +++ b/po/ChangeLog @@ -1,3 +1,7 @@ +2003-03-30 John Levon + + * Makefile.in.in: fix escaping of " for qt UI files + 2003-03-10 Michael Schmitt * pocheck.pl: new perl script that checks the consistency of a diff --git a/po/Makefile.in.in b/po/Makefile.in.in index 2802a8808c..3b69603746 100644 --- a/po/Makefile.in.in +++ b/po/Makefile.in.in @@ -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); \ -- 2.39.2