From a83825f4be3adfdb655771fbff757cb04e74cfe6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Malfait?= Date: Thu, 24 Jul 2025 14:50:57 +0200 Subject: [PATCH] Remove dead translations (#13409) Add --clean flag to translation extraction to remove old translations automatically --- .github/workflows/i18n-push.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/i18n-push.yaml b/.github/workflows/i18n-push.yaml index 958d8292c..9a40d4878 100644 --- a/.github/workflows/i18n-push.yaml +++ b/.github/workflows/i18n-push.yaml @@ -37,9 +37,9 @@ jobs: - name: Extract translations run: | - npx nx run twenty-server:lingui:extract - npx nx run twenty-emails:lingui:extract - npx nx run twenty-front:lingui:extract + npx nx run twenty-server:lingui:extract --clean + npx nx run twenty-emails:lingui:extract --clean + npx nx run twenty-front:lingui:extract --clean - name: Check and commit extracted files id: check_extract_changes