10 lines
164 B
Bash
Executable File
10 lines
164 B
Bash
Executable File
#!/bin/sh
|
|
. ./translation.vars
|
|
|
|
if [ $# -ge 1 ]
|
|
then
|
|
TZ=UTC env/bin/pybabel init -i $POTFILE -d $TRANSDIR -l $1
|
|
else
|
|
echo "Usage: ./init-new-po.sh lang"
|
|
fi
|