From e80d02722731bf768ca85fe9a3c46d12652659df Mon Sep 17 00:00:00 2001 From: Andrii Bodnar Date: Tue, 21 Jun 2022 11:27:10 +0300 Subject: [PATCH 1/2] Setup Crowdin --- .github/workflows/localization.yml | 38 ++++++++++++++++++++++++++++++ crowdin.yml | 30 +++++++++++++++++++++++ 2 files changed, 68 insertions(+) create mode 100644 .github/workflows/localization.yml create mode 100644 crowdin.yml diff --git a/.github/workflows/localization.yml b/.github/workflows/localization.yml new file mode 100644 index 000000000..de769c27e --- /dev/null +++ b/.github/workflows/localization.yml @@ -0,0 +1,38 @@ +# This workflow will run Crowdin Action that will upload new texts to Crowdin, download the newest translations and create a PR +# For more information see: https://github.com/crowdin/github-action + +name: Crowdin Action + +# Controls when the action will run. +on: + schedule: + - cron: '0 */6 * * *' # Every 6 hours - https://crontab.guru/#0_*/6_*_*_* + +jobs: + synchronize-with-crowdin: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: crowdin action + uses: crowdin/github-action@1.4.9 + with: + # Upload sources to Crowdin + upload_sources: true + # Upload translations to Crowdin, only use true at initial run + upload_translations: true + # Make pull request of Crowdin translations + download_translations: true + # To download translations to the specified version branch + localization_branch_name: l10n_crowdin_translations + # Create pull request after pushing to branch + create_pull_request: true + pull_request_title: 'New Crowdin translations' + pull_request_body: 'New Crowdin pull request with translations' + pull_request_base_branch_name: 'mc1.18/dev' + env: + GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} + CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} + CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} diff --git a/crowdin.yml b/crowdin.yml new file mode 100644 index 000000000..dac1ff5ec --- /dev/null +++ b/crowdin.yml @@ -0,0 +1,30 @@ +"project_id_env": "CROWDIN_PROJECT_ID" +"api_token_env": "CROWDIN_PERSONAL_TOKEN" +"base_path": "." + +"preserve_hierarchy": true + +"files": [ + { + "source": "src/generated/resources/assets/create/lang/en_us.json", + "translation": "src/main/resources/assets/create/lang/%locale_with_underscore%.json", + "languages_mapping": { + "locale_with_underscore": { + "de": "de_de", + "es-CL": "es_cl", + "es-ES": "es_es", + "fr": "fr_fr", + "it": "it_it", + "ja": "ja_jp", + "ko": "ko_kr", + "nl": "nl_nl", + "pl": "pl_pl", + "pt-BR": "pt_br", + "ro": "ro_ro", + "ru": "ru_ru", + "zh-CN": "zh_cn", + "zh-TW": "zh_tw", + } + } + } +] From b2d8cbce87eccaf28d58db3fb068487fa1691a17 Mon Sep 17 00:00:00 2001 From: Andrii Bodnar <29282228+andrii-bodnar@users.noreply.github.com> Date: Mon, 4 Jul 2022 15:35:53 +0300 Subject: [PATCH 2/2] Temporary disable cron schedule --- .github/workflows/localization.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/localization.yml b/.github/workflows/localization.yml index de769c27e..bb4813fa5 100644 --- a/.github/workflows/localization.yml +++ b/.github/workflows/localization.yml @@ -4,9 +4,9 @@ name: Crowdin Action # Controls when the action will run. -on: - schedule: - - cron: '0 */6 * * *' # Every 6 hours - https://crontab.guru/#0_*/6_*_*_* +#on: + #schedule: + #- cron: '0 */6 * * *' # Every 6 hours - https://crontab.guru/#0_*/6_*_*_* jobs: synchronize-with-crowdin: