From d60bbe812b37f796d6c6352d0ac57f2c7a4fecc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Sat, 5 Jan 2013 14:36:49 +0000 Subject: [PATCH] new location for tips.xml, typo on path svn: r21004 --- 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 dd1eaefdb..83d08c902 100644 --- a/po/update_po.py +++ b/po/update_po.py @@ -164,7 +164,7 @@ def TipsParse(filename, mark): "Editor." ''' - tips = open('../gramps/tips.xml.in.h', 'w') + tips = open('../data/tips.xml.in.h', 'w') marklist = root.iter(mark) for key in marklist: tip = ElementTree.tostring(key, encoding="UTF-8") @@ -538,8 +538,8 @@ def extract_xml(): files. Own XML files parsing and custom translation marks. """ - TipsParse('../data/tips.xml.in', '_tip') HolidaysParse('../gramps/plugins/lib/holidays.xml.in', '_name') + TipsParse('../data/tips.xml.in', '_tip') XmlParse('../data/gramps.xml.in', '_comment') DesktopParse('../data/gramps.desktop.in') KeyParse('../data/gramps.keys.in', '_description')