mirror of
https://github.com/home-assistant/frontend.git
synced 2025-04-24 13:27:22 +00:00
37 lines
1.1 KiB
Bash
Executable File
37 lines
1.1 KiB
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 [ -z "${LOKALISE_TOKEN-}" ] && [ ! -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
|
|
|
|
# Load token from file if not already in the environment
|
|
[ -z "${LOKALISE_TOKEN-}" ] && LOKALISE_TOKEN="$(<.lokalise_token)"
|
|
|
|
PROJECT_ID="3420425759f6d6d241f598.13594006"
|
|
LOCAL_DIR="$(pwd)/translations"
|
|
FILE_FORMAT=json
|
|
|
|
mkdir -p ${LOCAL_DIR}
|
|
|
|
docker run \
|
|
-v ${LOCAL_DIR}:/opt/dest/locale \
|
|
lokalise/lokalise-cli@sha256:ddf5677f58551261008342df5849731c88bcdc152ab645b133b21819aede8218 lokalise \
|
|
--token ${LOKALISE_TOKEN} \
|
|
export ${PROJECT_ID} \
|
|
--export_empty skip \
|
|
--type json \
|
|
--unzip_to /opt/dest
|