Files
i2p.www/compile-messages-i2hq.sh

15 lines
237 B
Bash
Raw Normal View History

2013-08-28 23:11:03 +00:00
#!/bin/sh
. ./etc/translation.vars
export TZ=UTC
2013-08-28 23:11:03 +00:00
if [ $# -ge 1 ]
then
pybabel compile -D $1 -d $TRANSDIR
2013-08-28 23:11:03 +00:00
else
for domain in $(ls $BABELCFG); do
pybabel compile -D $domain -d $TRANSDIR
2013-08-28 23:11:03 +00:00
done
fi
2015-10-04 00:22:53 +00:00
touch ./.pybabel-stamp