Skip to content

Commit

Permalink
Enable Crowdin translations
Browse files Browse the repository at this point in the history
  • Loading branch information
rubensworks committed Dec 7, 2024
1 parent 39d47f3 commit 272424a
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/crowdin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: "Crowdin Sync Translations"

on:
schedule:
- cron: '0 7 * * *'
workflow_dispatch:

jobs:
synchronize-with-crowdin:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Crowdin action
uses: crowdin/github-action@v2
with:
upload_sources: true
upload_translations: false
download_translations: true
localization_branch_name: l10n_crowdin_translations
create_pull_request: true
pull_request_title: 'New Translations'
pull_request_body: 'New translations by [Crowdin GitHub Action](https://github.com/crowdin/github-action)'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} # A numeric ID, found at https://crowdin.com/project/<projectName>/tools/api
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
41 changes: 41 additions & 0 deletions crowdin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
project_id_env: CROWDIN_PROJECT_ID
api_token_env: CROWDIN_PERSONAL_TOKEN
base_path: .

preserve_hierarchy: true

files:
- source: loader-common/src/main/resources/assets/cyclopscore/lang/en_us.json
translation: loader-common/src/main/resources/assets/cyclopscore/lang/%locale_with_underscore%.json
languages_mapping:
locale_with_underscore:
af: af_za
ar: ar_sa
ca: ca_es
cs: cs_cz
da: da_dk
de: de_de
el: el_gr
en-US: en_us
es-ES: es_es
fi: fi_fi
fr: fr_fr
he: he_il
hu: hu_hu
it: it_it
ja: ja_jp
ko: ko_kr
nl: nl_nl
no: no_no
pl: pl_pl
pt-BR: pt_br
pt-PT: pt_pt
ro: ro_ro
ru: ru_ru
sr: sr_sp
sv-SE: sv_se
tr: tr_tr
uk: uk_ua
vi: vi_vn
zh-CN: zh_cn
zh-TW: zh_tw

0 comments on commit 272424a

Please sign in to comment.