15 lines
237 B
Bash
Executable File
15 lines
237 B
Bash
Executable File
#!/bin/sh
|
|
. ./etc/translation.vars
|
|
|
|
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
|