diff --git a/lib/i18n/locale_diff.py b/lib/i18n/locale_diff.py index 2572779..65bb929 100644 --- a/lib/i18n/locale_diff.py +++ b/lib/i18n/locale_diff.py @@ -41,5 +41,5 @@ for lang_file in languages: # Save the updated language file with open(lang_file, "w", encoding="utf-8") as f: - json.dump(lang_data, f, ensure_ascii=False, indent=4) + json.dump(lang_data, f, ensure_ascii=False, indent=4, sort_keys=True) f.write("\n")