diff --git a/push-trad-to-zanata.sh b/push-trad-to-zanata.sh new file mode 100644 index 0000000..df7f104 --- /dev/null +++ b/push-trad-to-zanata.sh @@ -0,0 +1,11 @@ +#!/bin/bash +FILE=$1 +if [[ ! -e themes/default/lib/Lutim/I18N/$FILE.po ]] +then + echo "themes/default/lib/Lutim/I18N/$FILE.po does not exist. Exiting." + exit 1 +else + LOCALE=$(echo $FILE | sed -e "s@_@-@g") + zanata-cli -q -B push --push-type trans -l $LOCALE +fi +