* Store current translations in git * Handle empty strings in translation downloads * Use more consice filtering * Skip empty keys on translation download
32 lines
946 B
Bash
Executable File
32 lines
946 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Safe bash settings
|
|
# -e Exit on command fail
|
|
# -u Exit on unset variable
|
|
# -o pipefail Exit if piped command has error code
|
|
set -eu -o pipefail
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
if [ ! -f .lokalise_token ] ; then
|
|
echo "Lokalise API token is required to download the latest set of" \
|
|
"translations. Please create an account by using the following link:" \
|
|
"https://lokalise.co/signup/3420425759f6d6d241f598.13594006/all/" \
|
|
"Place your token in a new file \".lokalise_token\" in the repo" \
|
|
"root directory."
|
|
exit 1
|
|
fi
|
|
|
|
API_TOKEN="$(<.lokalise_token)"
|
|
PROJECT_ID="3420425759f6d6d241f598.13594006"
|
|
LOCAL_FILE="$(pwd)/src/translations/en.json"
|
|
LANG_ISO=en
|
|
|
|
docker run \
|
|
-v ${LOCAL_FILE}:/opt/src/${LOCAL_FILE} \
|
|
lokalise/lokalise-cli lokalise \
|
|
--token ${API_TOKEN} \
|
|
import ${PROJECT_ID} \
|
|
--file /opt/src/${LOCAL_FILE} \
|
|
--lang_iso ${LANG_ISO}
|