Feat: Localization
This commit is contained in:
parent
096e657558
commit
398f53a510
4 changed files with 52 additions and 3 deletions
42
.github/workflows/crowdin.yml
vendored
Normal file
42
.github/workflows/crowdin.yml
vendored
Normal file
|
@ -0,0 +1,42 @@
|
|||
name: Sync Crowdin
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'main'
|
||||
paths:
|
||||
- 'app/src/main/res/values/strings.xml'
|
||||
- '.github/workflows/crowdin.yml'
|
||||
schedule:
|
||||
- cron: "0 17 * * 6" # "At 17:00 on Saturday."
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
sync-crowdin:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Crowdin
|
||||
uses: crowdin/github-action@1.4.11
|
||||
with:
|
||||
config: crowdin.yml
|
||||
upload_translations: true
|
||||
download_translations: true
|
||||
push_translations: true
|
||||
create_pull_request: false
|
||||
localization_branch_name: l10n
|
||||
commit_message: 'chore(i18n): sync translations'
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_ID }}
|
||||
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_TOKEN }}
|
||||
|
||||
- name: Merge
|
||||
run: |
|
||||
sudo chmod -R ugo+rwX .
|
||||
git checkout main
|
||||
git add *
|
||||
git merge l10n
|
||||
git push
|
Loading…
Add table
Add a link
Reference in a new issue