UNPKG

316 Bapplication/x-shView Raw
1#!/bin/bash
2FILE=$1
3if [[ ! -e static/l10n/$FILE.json ]]
4then
5 echo "static/l10n/$FILE.json does not exist. Exiting."
6 exit 1
7else
8 LOCALE=$(echo $FILE | sed -e "s@_@-@g")
9 json2po -i static/l10n/$FILE.json -t static/l10n/en.json -o po/$FILE.po
10 zanata-cli -q -B push --push-type trans -l $LOCALE
11fi
12