mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-24 10:17:45 -03:00
qt: Extract translations correctly from UTF-8 formatted source
This commit is contained in:
parent
7b87fca930
commit
55c012d20c
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ if not XGETTEXT:
|
|||
print('Cannot extract strings: xgettext utility is not installed or not configured.',file=sys.stderr)
|
||||
print('Please install package "gettext" and re-run \'./configure\'.',file=sys.stderr)
|
||||
sys.exit(1)
|
||||
child = Popen([XGETTEXT,'--output=-','-n','--keyword=_'] + files, stdout=PIPE)
|
||||
child = Popen([XGETTEXT,'--output=-','--from-code=utf-8','-n','--keyword=_'] + files, stdout=PIPE)
|
||||
(out, err) = child.communicate()
|
||||
|
||||
messages = parse_po(out.decode('utf-8'))
|
||||
|
|
Loading…
Add table
Reference in a new issue