From 17b27c8f2d950c3aa5abb7a67e23ad1e40722abc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Wed, 14 Mar 2012 11:28:40 +0000 Subject: [PATCH] start to test Rob's command for updating without Makefile and specific class for distutils svn: r19061 --- po/update_po.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/po/update_po.py b/po/update_po.py index f8166b65f..685c72310 100644 --- a/po/update_po.py +++ b/po/update_po.py @@ -42,6 +42,11 @@ def main(): if options.all: print('Not implemented yet') + + try: + os.system('''intltool-update -g gramps -o gramps.pot -p''') + except: + continue for po in args: os.system('''msgmerge --no-wrap %s gramps.pot -o update.po''' % po)