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)