From 98d91fc6267c4282ca5ece6c61d35f7014932389 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Sun, 7 Oct 2012 16:45:58 +0000 Subject: [PATCH] #6086: do not need work around for some tips anymore svn: r20532 --- po/update_po.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/update_po.py b/po/update_po.py index 444b338a6..37a2665b7 100644 --- a/po/update_po.py +++ b/po/update_po.py @@ -132,8 +132,8 @@ def TipsParse(filename, mark): tip = tip.replace("", "") tip = tip.replace('\n<_tip number="%(number)s">' % key.attrib, "") tip = tip.replace("
", "
") - tip = tip.replace("\n\n", "\n") # special case tip 7 - tip = tip.replace("\n", "") # special case tip 18 + #tip = tip.replace("\n\n", "\n") # special case tip 7 + #tip = tip.replace("\n", "") # special case tip 18 tip = tip.replace("\n\n", "") tip = tip.replace('"', '"') tips.write('char *s = N_("%s");\n' % tip)