Iterations on i18n CI (#10093)
This commit is contained in:
9
.github/workflows/i18n-force-pull.yml
vendored
9
.github/workflows/i18n-force-pull.yml
vendored
@ -25,10 +25,16 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
token: ${{ github.token }}
|
||||||
|
ref: ${{ github.head_ref || github.ref_name }}
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
uses: ./.github/workflows/actions/yarn-install
|
uses: ./.github/workflows/actions/yarn-install
|
||||||
|
|
||||||
|
- name: Build twenty-shared
|
||||||
|
run: npx nx build twenty-shared
|
||||||
|
|
||||||
- name: Pull translations from Crowdin
|
- name: Pull translations from Crowdin
|
||||||
uses: crowdin/github-action@v2
|
uses: crowdin/github-action@v2
|
||||||
with:
|
with:
|
||||||
@ -39,13 +45,14 @@ jobs:
|
|||||||
localization_branch_name: chore/translations
|
localization_branch_name: chore/translations
|
||||||
commit_message: 'chore: add translations'
|
commit_message: 'chore: add translations'
|
||||||
pull_request_title: 'chore: add translations'
|
pull_request_title: 'chore: add translations'
|
||||||
|
base_url: 'https://twenty.api.crowdin.com'
|
||||||
|
|
||||||
env:
|
env:
|
||||||
# A classic GitHub Personal Access Token with the 'repo' scope selected (the user should have write access to the repository).
|
# A classic GitHub Personal Access Token with the 'repo' scope selected (the user should have write access to the repository).
|
||||||
GITHUB_TOKEN: ${{ github.token }}
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
|
|
||||||
# A numeric ID, found at https://crowdin.com/project/<projectName>/tools/api
|
# A numeric ID, found at https://crowdin.com/project/<projectName>/tools/api
|
||||||
CROWDIN_PROJECT_ID: 1
|
CROWDIN_PROJECT_ID: '1'
|
||||||
|
|
||||||
# Visit https://crowdin.com/settings#api-key to create this token
|
# Visit https://crowdin.com/settings#api-key to create this token
|
||||||
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
|
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
|
||||||
34
.github/workflows/i18n-pull.yaml
vendored
34
.github/workflows/i18n-pull.yaml
vendored
@ -23,16 +23,23 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
token: ${{ github.token }}
|
||||||
|
ref: ${{ github.head_ref || github.ref_name }}
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
uses: ./.github/workflows/actions/yarn-install
|
uses: ./.github/workflows/actions/yarn-install
|
||||||
|
|
||||||
|
- name: Build twenty-shared
|
||||||
|
run: npx nx build twenty-shared
|
||||||
|
|
||||||
|
# Strict mode fails if there are missing translations.
|
||||||
- name: Compile translations
|
- name: Compile translations
|
||||||
id: compile_translations
|
id: compile_translations
|
||||||
run: |
|
run: |
|
||||||
npx nx run twenty-server:lingui:compile
|
npx nx run twenty-server:lingui:compile --strict
|
||||||
npx nx run twenty-emails:lingui:compile
|
npx nx run twenty-emails:lingui:compile --strict
|
||||||
npx nx run twenty-front:lingui:compile
|
npx nx run twenty-front:lingui:compile --strict
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
|
||||||
- name: Pull translations from Crowdin
|
- name: Pull translations from Crowdin
|
||||||
@ -46,13 +53,22 @@ jobs:
|
|||||||
localization_branch_name: chore/translations
|
localization_branch_name: chore/translations
|
||||||
commit_message: 'chore: add translations'
|
commit_message: 'chore: add translations'
|
||||||
pull_request_title: 'chore: add translations'
|
pull_request_title: 'chore: add translations'
|
||||||
|
base_url: 'https://twenty.api.crowdin.com'
|
||||||
|
auto_approve_imported: false
|
||||||
|
import_eq_suggestions: false
|
||||||
|
download_sources: false
|
||||||
|
push_sources: true
|
||||||
|
skip_untranslated_strings: false
|
||||||
|
skip_untranslated_files: false
|
||||||
|
push_translations: true
|
||||||
|
create_pull_request: true
|
||||||
|
skip_ref_checkout: false
|
||||||
|
dryrun_action: false
|
||||||
|
github_base_url: 'github.com'
|
||||||
|
github_user_name: 'Crowdin Bot'
|
||||||
|
github_user_email: 'support+bot@crowdin.com'
|
||||||
|
|
||||||
env:
|
env:
|
||||||
# A classic GitHub Personal Access Token with the 'repo' scope selected (the user should have write access to the repository).
|
|
||||||
GITHUB_TOKEN: ${{ github.token }}
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
|
CROWDIN_PROJECT_ID: '1'
|
||||||
# A numeric ID, found at https://crowdin.com/project/<projectName>/tools/api
|
|
||||||
CROWDIN_PROJECT_ID: 1
|
|
||||||
|
|
||||||
# Visit https://crowdin.com/settings#api-key to create this token
|
|
||||||
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
|
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
|
||||||
10
.github/workflows/i18n-upload.yml
vendored
10
.github/workflows/i18n-upload.yml
vendored
@ -21,10 +21,14 @@ jobs:
|
|||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
token: ${{ github.token }}
|
token: ${{ github.token }}
|
||||||
|
ref: ${{ github.head_ref || github.ref_name }}
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
uses: ./.github/workflows/actions/yarn-install
|
uses: ./.github/workflows/actions/yarn-install
|
||||||
|
|
||||||
|
- name: Build dependencies
|
||||||
|
run: npx nx build twenty-shared
|
||||||
|
|
||||||
- name: Extract translations
|
- name: Extract translations
|
||||||
run: |
|
run: |
|
||||||
npx nx run twenty-server:lingui:extract
|
npx nx run twenty-server:lingui:extract
|
||||||
@ -36,7 +40,10 @@ jobs:
|
|||||||
git config --global user.name 'github-actions'
|
git config --global user.name 'github-actions'
|
||||||
git config --global user.email 'github-actions@twenty.com'
|
git config --global user.email 'github-actions@twenty.com'
|
||||||
git add .
|
git add .
|
||||||
git diff --staged --quiet --exit-code || (git commit -m "chore: extract translations" && git push)
|
if ! git diff --staged --quiet --exit-code; then
|
||||||
|
git commit -m "chore: extract translations"
|
||||||
|
git push origin HEAD:${{ github.head_ref || github.ref_name }}
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Compile translations
|
- name: Compile translations
|
||||||
id: compile_translations
|
id: compile_translations
|
||||||
@ -54,6 +61,7 @@ jobs:
|
|||||||
upload_translations: true
|
upload_translations: true
|
||||||
download_translations: false
|
download_translations: false
|
||||||
localization_branch_name: chore/translations
|
localization_branch_name: chore/translations
|
||||||
|
base_url: 'https://twenty.api.crowdin.com'
|
||||||
env:
|
env:
|
||||||
# A numeric ID, found at https://crowdin.com/project/<projectName>/tools/api
|
# A numeric ID, found at https://crowdin.com/project/<projectName>/tools/api
|
||||||
CROWDIN_PROJECT_ID: 1
|
CROWDIN_PROJECT_ID: 1
|
||||||
|
|||||||
@ -2245,4 +2245,3 @@ msgstr "X"
|
|||||||
#: src/modules/company/standard-objects/company.workspace-entity.ts:177
|
#: src/modules/company/standard-objects/company.workspace-entity.ts:177
|
||||||
msgid "Your team member responsible for managing the company account"
|
msgid "Your team member responsible for managing the company account"
|
||||||
msgstr "Ihr Teammitglied, das für die Verwaltung des Unternehmenskontos verantwortlich ist"
|
msgstr "Ihr Teammitglied, das für die Verwaltung des Unternehmenskontos verantwortlich ist"
|
||||||
|
|
||||||
|
|||||||
@ -2245,4 +2245,3 @@ msgstr "X"
|
|||||||
#: src/modules/company/standard-objects/company.workspace-entity.ts:177
|
#: src/modules/company/standard-objects/company.workspace-entity.ts:177
|
||||||
msgid "Your team member responsible for managing the company account"
|
msgid "Your team member responsible for managing the company account"
|
||||||
msgstr "Miembro de su equipo responsable de gestionar la cuenta de la empresa"
|
msgstr "Miembro de su equipo responsable de gestionar la cuenta de la empresa"
|
||||||
|
|
||||||
|
|||||||
@ -2245,4 +2245,3 @@ msgstr "X"
|
|||||||
#: src/modules/company/standard-objects/company.workspace-entity.ts:177
|
#: src/modules/company/standard-objects/company.workspace-entity.ts:177
|
||||||
msgid "Your team member responsible for managing the company account"
|
msgid "Your team member responsible for managing the company account"
|
||||||
msgstr "Le membre de votre équipe responsable de la gestion du compte entreprise"
|
msgstr "Le membre de votre équipe responsable de la gestion du compte entreprise"
|
||||||
|
|
||||||
|
|||||||
@ -2245,4 +2245,3 @@ msgstr "X"
|
|||||||
#: src/modules/company/standard-objects/company.workspace-entity.ts:177
|
#: src/modules/company/standard-objects/company.workspace-entity.ts:177
|
||||||
msgid "Your team member responsible for managing the company account"
|
msgid "Your team member responsible for managing the company account"
|
||||||
msgstr "Il membro del team responsabile della gestione dell'account aziendale"
|
msgstr "Il membro del team responsabile della gestione dell'account aziendale"
|
||||||
|
|
||||||
|
|||||||
@ -2245,4 +2245,3 @@ msgstr ""
|
|||||||
#: src/modules/company/standard-objects/company.workspace-entity.ts:177
|
#: src/modules/company/standard-objects/company.workspace-entity.ts:177
|
||||||
msgid "Your team member responsible for managing the company account"
|
msgid "Your team member responsible for managing the company account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -2245,4 +2245,3 @@ msgstr "X"
|
|||||||
#: src/modules/company/standard-objects/company.workspace-entity.ts:177
|
#: src/modules/company/standard-objects/company.workspace-entity.ts:177
|
||||||
msgid "Your team member responsible for managing the company account"
|
msgid "Your team member responsible for managing the company account"
|
||||||
msgstr "회사 계정을 관리하는 팀원"
|
msgstr "회사 계정을 관리하는 팀원"
|
||||||
|
|
||||||
|
|||||||
@ -2245,4 +2245,3 @@ msgstr "X"
|
|||||||
#: src/modules/company/standard-objects/company.workspace-entity.ts:177
|
#: src/modules/company/standard-objects/company.workspace-entity.ts:177
|
||||||
msgid "Your team member responsible for managing the company account"
|
msgid "Your team member responsible for managing the company account"
|
||||||
msgstr "Seu membro da equipe responsável por gerenciar a conta da empresa"
|
msgstr "Seu membro da equipe responsável por gerenciar a conta da empresa"
|
||||||
|
|
||||||
|
|||||||
@ -2245,4 +2245,3 @@ msgstr "X"
|
|||||||
#: src/modules/company/standard-objects/company.workspace-entity.ts:177
|
#: src/modules/company/standard-objects/company.workspace-entity.ts:177
|
||||||
msgid "Your team member responsible for managing the company account"
|
msgid "Your team member responsible for managing the company account"
|
||||||
msgstr "O membro da sua equipa responsável pela gestão da conta da empresa"
|
msgstr "O membro da sua equipa responsável pela gestão da conta da empresa"
|
||||||
|
|
||||||
|
|||||||
@ -2245,4 +2245,3 @@ msgstr "X"
|
|||||||
#: src/modules/company/standard-objects/company.workspace-entity.ts:177
|
#: src/modules/company/standard-objects/company.workspace-entity.ts:177
|
||||||
msgid "Your team member responsible for managing the company account"
|
msgid "Your team member responsible for managing the company account"
|
||||||
msgstr "负责管理公司账户的团队成员"
|
msgstr "负责管理公司账户的团队成员"
|
||||||
|
|
||||||
|
|||||||
@ -2245,4 +2245,3 @@ msgstr "X"
|
|||||||
#: src/modules/company/standard-objects/company.workspace-entity.ts:177
|
#: src/modules/company/standard-objects/company.workspace-entity.ts:177
|
||||||
msgid "Your team member responsible for managing the company account"
|
msgid "Your team member responsible for managing the company account"
|
||||||
msgstr "負責管理公司帳戶的團隊成員"
|
msgstr "負責管理公司帳戶的團隊成員"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user