Skip to content

Commit 01cbaeb

Browse files
author
Philip Kaufmann
committed
fix extract_strings_qt.py
- a recent pull changed xgettext to gettext, this is reverted here
1 parent d969c2c commit 01cbaeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

share/qt/extract_strings_qt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def parse_po(text):
5050
files = glob.glob('src/*.cpp') + glob.glob('src/*.h')
5151

5252
# xgettext -n --keyword=_ $FILES
53-
XGETTEXT=os.getenv('XGETTEXT', 'gettext')
53+
XGETTEXT=os.getenv('XGETTEXT', 'xgettext')
5454
child = Popen([XGETTEXT,'--output=-','-n','--keyword=_'] + files, stdout=PIPE)
5555
(out, err) = child.communicate()
5656

0 commit comments

Comments
 (0)