12 lines
290 B
Bash
12 lines
290 B
Bash
#! /bin/sh
|
|
|
|
XGETTEXT_FLAGS_PYTHON="\
|
|
--copyright-holder=Juraj_Oravec \
|
|
--msgid-bugs-address=https://github.com/SGOrava/Unloader/issues \
|
|
--from-code=UTF-8 \
|
|
-L Python \
|
|
-ki18n:1 -ki18np:1,2 \
|
|
"
|
|
|
|
$XGETTEXT_PROGRAM $XGETTEXT_FLAGS_PYTHON `find ./unloader -name '*.py'` -o $podir/unloader.pot
|