From 01cbaeb62fa3c8b046efe6dd1bd2c918f661566a Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Thu, 19 Sep 2013 14:59:45 +0200 Subject: [PATCH] fix extract_strings_qt.py - a recent pull changed xgettext to gettext, this is reverted here --- share/qt/extract_strings_qt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/qt/extract_strings_qt.py b/share/qt/extract_strings_qt.py index a7bfc1f9f..c9a96b21f 100755 --- a/share/qt/extract_strings_qt.py +++ b/share/qt/extract_strings_qt.py @@ -50,7 +50,7 @@ def parse_po(text): files = glob.glob('src/*.cpp') + glob.glob('src/*.h') # xgettext -n --keyword=_ $FILES -XGETTEXT=os.getenv('XGETTEXT', 'gettext') +XGETTEXT=os.getenv('XGETTEXT', 'xgettext') child = Popen([XGETTEXT,'--output=-','-n','--keyword=_'] + files, stdout=PIPE) (out, err) = child.communicate()