From 5c80284dedbf870cc82f8c947c92f62d35fa54fd Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Fri, 5 Jul 2024 22:29:05 +0100 Subject: [PATCH] Update script --- scripts/import-translations.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/import-translations.py b/scripts/import-translations.py index 11af244..5bb2c96 100644 --- a/scripts/import-translations.py +++ b/scripts/import-translations.py @@ -12,6 +12,8 @@ def get_expected_languages(messages_for_anchor): expected_langs = list(messages_for_anchor.keys()) + expected_langs.sort() + # Move en to be the first language. en_index = expected_langs.index('en') en = expected_langs.pop(en_index)