[Zanata] Add script to update zanata for one locale

ex: ./push-trad-to-zanata.sh fr_FR
This commit is contained in:
Luc Didry 2018-02-27 17:34:37 +01:00
parent f340fbe046
commit 3637e052d5
1 changed files with 11 additions and 0 deletions

11
push-trad-to-zanata.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
FILE=$1
if [[ ! -e locale/$FILE.json ]]
then
echo "locale/$FILE.json does not exist. Exiting."
exit 1
else
LOCALE=$(echo $FILE | sed -e "s@_@-@g")
json2po -i locale/$FILE.json -t locale/en.json -o po/$FILE.po
zanata-cli -q -B push --push-type trans -l $LOCALE
fi