diff options
author | Claire <claire.github-309c@sitedethib.com> | 2023-04-12 15:24:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-12 15:24:30 +0200 |
commit | 7a0a79e6b38afa36020840b3753f47948587861c (patch) | |
tree | b04ff92285f7c27dded4694a99553176a6a50374 | |
parent | 86ad43173f4f2fead5791fe6ae09144cbebee7c1 (diff) |
Fix check-i18n when there are missing strings in other languages than english (#24519)
-rw-r--r-- | .github/workflows/check-i18n.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/check-i18n.yml b/.github/workflows/check-i18n.yml index 134980322..e282e2ab7 100644 --- a/.github/workflows/check-i18n.yml +++ b/.github/workflows/check-i18n.yml @@ -42,8 +42,8 @@ jobs: - name: Check for missing strings in English JSON run: | yarn build:development - yarn manage:translations - git diff --exit-code -- app/javascript/mastodon/locales/defaultMessages.json app/javascript/mastodon/locales/en.json + yarn manage:translations en + git diff --exit-code - name: Check locale file normalization run: bundle exec i18n-tasks check-normalized |