mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 04:27:37 +03:00
31 lines
749 B
Bash
Executable file
31 lines
749 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
download_lang() {
|
|
filename=resources/i18n/"$1".json
|
|
url=$(curl -s -X POST https://poeditor.com/api/ \
|
|
-d api_token="${POEDITOR_APIKEY}" \
|
|
-d action="export" \
|
|
-d id="${POEDITOR_PROJECTID}" \
|
|
-d language="$1" \
|
|
-d type="key_value_json" | jq -r .item)
|
|
if [ -z "$url" ]; then
|
|
echo "Failed to export $1"
|
|
return 1
|
|
fi
|
|
curl -sSL "$url" > poeditor.json
|
|
if [ "$(jq -c . < $filename)" != "$(jq -c . < poeditor.json)" ]; then
|
|
mv poeditor.json "$filename"
|
|
else
|
|
rm poeditor.json
|
|
fi
|
|
}
|
|
|
|
for file in resources/i18n/*.json; do
|
|
name=$(basename "$file")
|
|
code=$(echo "$name" | cut -f1 -d.)
|
|
lang=$(jq -r .languageName < "$file")
|
|
echo "Downloading $lang ($code)"
|
|
download_lang "$code"
|
|
done
|