aboutsummaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2013-09-19 14:59:45 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2013-09-19 14:59:45 +0200
commit01cbaeb62fa3c8b046efe6dd1bd2c918f661566a (patch)
tree98d40475902caa2ae4ab180fe326129e510d4cd7 /share
parentd969c2c073d4fe91b22615c90c86b74545bd8b71 (diff)
downloadbitcoin-01cbaeb62fa3c8b046efe6dd1bd2c918f661566a.tar.xz
fix extract_strings_qt.py
- a recent pull changed xgettext to gettext, this is reverted here
Diffstat (limited to 'share')
-rwxr-xr-xshare/qt/extract_strings_qt.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/qt/extract_strings_qt.py b/share/qt/extract_strings_qt.py
index a7bfc1f9fa..c9a96b21fe 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()