From bbeac2bdf000d919b5d4fffde9a6a78716323ed8 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Sat, 23 Mar 2024 15:15:43 +0530 Subject: [PATCH] [crowdin] Invalidate existing translations when source strings change Don't upload existing translation when syncing with Crowdin. This way, we let the existing translations be invalidated when we change the source string (this was not happening previously since we also upload the (older) translations when we upload the changed source strings). --- .github/workflows/auth-crowdin.yml | 2 +- .github/workflows/mobile-crowdin.yml | 2 +- .github/workflows/web-crowdin.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/auth-crowdin.yml b/.github/workflows/auth-crowdin.yml index f5b6744817..811def9396 100644 --- a/.github/workflows/auth-crowdin.yml +++ b/.github/workflows/auth-crowdin.yml @@ -28,7 +28,7 @@ jobs: base_path: "auth/" config: "auth/crowdin.yml" upload_sources: true - upload_translations: true + upload_translations: false download_translations: true localization_branch_name: crowdin-translations-auth create_pull_request: true diff --git a/.github/workflows/mobile-crowdin.yml b/.github/workflows/mobile-crowdin.yml index 3770098968..5c52b59ad1 100644 --- a/.github/workflows/mobile-crowdin.yml +++ b/.github/workflows/mobile-crowdin.yml @@ -28,7 +28,7 @@ jobs: base_path: "mobile/" config: "mobile/crowdin.yml" upload_sources: true - upload_translations: true + upload_translations: false download_translations: true localization_branch_name: crowdin-translations-mobile create_pull_request: true diff --git a/.github/workflows/web-crowdin.yml b/.github/workflows/web-crowdin.yml index 45a3fa4a59..f834e62f39 100644 --- a/.github/workflows/web-crowdin.yml +++ b/.github/workflows/web-crowdin.yml @@ -34,7 +34,7 @@ jobs: base_path: "web/" config: "web/crowdin.yml" upload_sources: true - upload_translations: true + upload_translations: false download_translations: true localization_branch_name: crowdin-translations-web create_pull_request: true