mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-14 19:20:37 +03:00
Add job to create translations PRs
This commit is contained in:
parent
e2ea5eba8c
commit
9f684e5a69
26
.github/workflows/update-translations.yml
vendored
Normal file
26
.github/workflows/update-translations.yml
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
name: Update Translations
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
schedule:
|
||||||
|
- cron: '0 10 * * *'
|
||||||
|
jobs:
|
||||||
|
update-dep:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Get updated translations
|
||||||
|
env:
|
||||||
|
POEDITOR_PROJECTID: ${{ secrets.POEDITOR_PROJECTID }}
|
||||||
|
POEDITOR_APIKEY: ${{ secrets.POEDITOR_APIKEY }}
|
||||||
|
run: |
|
||||||
|
./update-translations.sh
|
||||||
|
npm install
|
||||||
|
- name: Create Pull Request
|
||||||
|
uses: peter-evans/create-pull-request@v4
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.PAT }}
|
||||||
|
commit-message: Update translations
|
||||||
|
title: Update translations
|
||||||
|
body: |
|
||||||
|
- Update translations with latest from POEditor
|
||||||
|
branch: update-translations
|
25
update-translations.sh
Executable file
25
update-translations.sh
Executable file
@ -0,0 +1,25 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
download_lang() {
|
||||||
|
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" > resources/i18n/"$1".json
|
||||||
|
}
|
||||||
|
|
||||||
|
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
|
Loading…
x
Reference in New Issue
Block a user