-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (46 loc) · 1.82 KB
/
translate-strings.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: Translate general strings
on:
workflow_dispatch:
permissions:
contents: write
pull-requests: write
jobs:
formatCode:
name: DeepL translation job
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Translate shared/presentation/src/commonMain/composeResources/values/strings.xml to supported languages
run: |
python translator.py \
--api_key $API_KEY \
--output_languages $OUTPUT_LANGUAGES \
--input_folder $INPUT_FOLDER
env:
API_KEY: ${{ secrets.DEEPL_API_KEY }}
OUTPUT_LANGUAGES: "ES,FR,DE,ZH,UK,JA,RU,AR,PT,IT,KO,NL,SV,PL,TR,DA,FI,EL,HU"
INPUT_FOLDER: "./shared/presentation/src/commonMain/composeResources/values"
- name: Translate shared/presentation/src/androidMain/res/values/strings.xml to supported languages
run: |
python translator.py \
--api_key $API_KEY \
--output_languages $OUTPUT_LANGUAGES \
--input_folder $INPUT_FOLDER
env:
API_KEY: ${{ secrets.DEEPL_API_KEY }}
OUTPUT_LANGUAGES: "ES,FR,DE,ZH,UK,JA,RU,AR,PT,IT,KO,NL,SV,PL,TR,DA,FI,EL,HU"
INPUT_FOLDER: "./shared/presentation/src/androidMain/res/values"
- name: Add common strings.xml to Git
run: git add shared/presentation/src/androidMain/res/values*
- name: Commit files
run: |
git config --local user.email ${{ vars.COMMITER_EMAIL }}
git config --local user.name ${{ vars.COMMITER_NAME }}
git commit -a -m "Github Action automatic translation of android specific strings"
- name: GitHub Push
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}