Files
I2P_Website/compile-messages.sh
2017-05-16 12:26:51 +00:00

16 lines
311 B
Bash
Executable File

#!/bin/sh
. ./etc/translation.vars
[ -f ./etc/translation.vars.custom ] && . ./etc/translation.vars.custom
export TZ=UTC
if [ $# -ge 1 ]
then
$PYBABEL compile -D $1 -d $TRANSDIR
else
for domain in $(ls $BABELCFG); do
$PYBABEL compile -D $domain -d $TRANSDIR
done
fi
touch ./.pybabel-stamp