Skip to content

Commit

Permalink
fix extract_strings_qt.py
Browse files Browse the repository at this point in the history
- a recent pull changed xgettext to gettext, this is reverted here
  • Loading branch information
Philip Kaufmann committed Sep 19, 2013
1 parent d969c2c commit 01cbaeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion share/qt/extract_strings_qt.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit 01cbaeb

Please sign in to comment.