This commit is contained in:
Ftps
2023-04-15 00:10:04 +09:00
parent e3eaa51008
commit 40dafd9c42
45 changed files with 5129 additions and 2833 deletions

View File

@@ -31,7 +31,9 @@ for lang_file in languages:
del lang_data[key]
# Sort the keys of the language file to match the order of the standard file
lang_data = OrderedDict(sorted(lang_data.items(), key=lambda x: list(standard_data.keys()).index(x[0])))
lang_data = OrderedDict(
sorted(lang_data.items(), key=lambda x: list(standard_data.keys()).index(x[0]))
)
# Save the updated language file
with open(lang_file, "w", encoding="utf-8") as f: