mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-21 15:00:40 +00:00
Push new localization strings to Crowdin (#30)
* Update crowdin.yml * added github workflows * Update crowdin_push.yml * Update intl_en.arb * Update intl_en.arb
This commit is contained in:
parent
a6d5032c83
commit
824be6c916
3 changed files with 68 additions and 2 deletions
33
.github/workflows/crowdin_pull.yml
vendored
Normal file
33
.github/workflows/crowdin_pull.yml
vendored
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
name: Crowdin pull
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
repository_dispatch:
|
||||||
|
types: [crowdin-webhook]
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
pull-requests: write
|
||||||
|
env:
|
||||||
|
REPO_TOKEN: ${{ secrets.REPO_TOKEN }}
|
||||||
|
CROWDIN_PROJECT_ID: 567473
|
||||||
|
CROWDIN_TOKEN: ${{ secrets.CROWDIN_TOKEN }}
|
||||||
|
jobs:
|
||||||
|
download-translations:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout main branch
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Download
|
||||||
|
uses: crowdin/github-action@1.5.0
|
||||||
|
with:
|
||||||
|
crowdin_branch_name: main
|
||||||
|
upload_sources: false
|
||||||
|
upload_translations: false
|
||||||
|
download_translations: true
|
||||||
|
skip_untranslated_strings: true
|
||||||
|
export_only_approved: true
|
||||||
|
push_translations: true
|
||||||
|
localization_branch_name: main-l10n
|
||||||
|
create_pull_request: true
|
||||||
|
pull_request_base_branch_name: main
|
30
.github/workflows/crowdin_push.yml
vendored
Normal file
30
.github/workflows/crowdin_push.yml
vendored
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
name: Crowdin push
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- crowdin
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
env:
|
||||||
|
REPO_TOKEN: ${{ secrets.REPO_TOKEN }}
|
||||||
|
CROWDIN_PROJECT_ID: 567473
|
||||||
|
CROWDIN_TOKEN: ${{ secrets.CROWDIN_TOKEN }}
|
||||||
|
jobs:
|
||||||
|
upload-files:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout main branch
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Upload
|
||||||
|
uses: crowdin/github-action@1.5.0
|
||||||
|
with:
|
||||||
|
crowdin_branch_name: main
|
||||||
|
upload_sources: true
|
||||||
|
upload_sources_args: "--delete-obsolete"
|
||||||
|
upload_translations: true
|
||||||
|
import_eq_suggestions: true
|
||||||
|
auto_approve_imported: false
|
||||||
|
add_crowdin_branch: main
|
|
@ -1,7 +1,10 @@
|
||||||
|
project_id_env: CROWDIN_PROJECT_ID
|
||||||
|
api_token_env: CROWDIN_TOKEN
|
||||||
base_path: "./lib/l10n"
|
base_path: "./lib/l10n"
|
||||||
|
base_url: "https://api.crowdin.com"
|
||||||
|
|
||||||
preserve_hierarchy: true
|
preserve_hierarchy: true
|
||||||
|
|
||||||
files:
|
files:
|
||||||
- source: /intl_en.arb
|
- source: "/intl_en.arb"
|
||||||
translation: '%original_path%/intl_%two_letters_code%.arb'
|
translation: "%original_path%/intl_%two_letters_code%.arb"
|
Loading…
Reference in a new issue