tests: Update localization key checker script for new language files

This commit is contained in:
WerWolv
2025-08-12 21:07:30 +02:00
parent e1d1c4acca
commit a7d3a916cc

View File

@@ -31,7 +31,7 @@ def get_langs(filepath) -> list[str]:
data = json.loads(file.read())
existing_langs = []
for key, _ in data["translations"].items():
for key, _ in data.items():
existing_langs.append(key)
return existing_langs