mirror of
https://github.com/dashpay/dash.git
synced 2024-12-24 11:32:46 +01:00
autotools: teach extract_strings_qt.py to respect the XGETTEXT env variable
This commit is contained in:
parent
f286aa1611
commit
f3f09462cd
@ -6,6 +6,7 @@ they can be picked up by Qt linguist.
|
||||
from subprocess import Popen, PIPE
|
||||
import glob
|
||||
import operator
|
||||
import os
|
||||
|
||||
OUT_CPP="src/qt/bitcoinstrings.cpp"
|
||||
EMPTY=['""']
|
||||
@ -49,7 +50,8 @@ def parse_po(text):
|
||||
files = glob.glob('src/*.cpp') + glob.glob('src/*.h')
|
||||
|
||||
# xgettext -n --keyword=_ $FILES
|
||||
child = Popen(['xgettext','--output=-','-n','--keyword=_'] + files, stdout=PIPE)
|
||||
XGETTEXT=os.getenv('XGETTEXT', 'gettext')
|
||||
child = Popen([XGETTEXT,'--output=-','-n','--keyword=_'] + files, stdout=PIPE)
|
||||
(out, err) = child.communicate()
|
||||
|
||||
messages = parse_po(out)
|
||||
|
Loading…
Reference in New Issue
Block a user