mirror of
https://github.com/donaldzou/WGDashboard.git
synced 2024-11-22 07:10:09 +01:00
Update verify_locale_files.py
This commit is contained in:
parent
665b0f1484
commit
43f6bd41c9
@ -13,28 +13,12 @@ print("="*(len(welcome) + 4))
|
||||
print()
|
||||
print("Active Languages")
|
||||
|
||||
for al in range(len(active_languages)):
|
||||
print(f"\t[Language #{al + 1}] {active_languages[al]['lang_name']}")
|
||||
status = {}
|
||||
|
||||
k = -1
|
||||
|
||||
m = input("Select the language number you want to verify or enter [q] to exit: ")
|
||||
if m != "q":
|
||||
if m.isdigit():
|
||||
k = int(m) - 1
|
||||
if k < 0 or k > len(active_languages):
|
||||
exit(0)
|
||||
else:
|
||||
exit(0)
|
||||
else:
|
||||
exit(0)
|
||||
|
||||
|
||||
print()
|
||||
print(f"Selected Language: {active_languages[k]['lang_name']}")
|
||||
for k in range(len(active_languages)):
|
||||
print(f"[Language] {active_languages[k]['lang_name']}")
|
||||
if active_languages[k]['lang_id'] != "en":
|
||||
with open(f"{active_languages[k]['lang_id']}.json", "r") as f:
|
||||
|
||||
lang_file = json.loads(f.read())
|
||||
missing_translation = []
|
||||
deprecated_translation = []
|
||||
@ -48,18 +32,19 @@ if active_languages[k]['lang_id'] != "en":
|
||||
deprecated_translation.append(b)
|
||||
|
||||
|
||||
print("\n\t[Missing Translations] Simply copy the JSON below into the locale file and translate them in :)")
|
||||
print("\t[Missing Translations]")
|
||||
if len(missing_translation) > 0:
|
||||
for a in range(len(missing_translation)):
|
||||
print(f'\t\t"{missing_translation[a]}": ""{(',' if a < len(missing_translation) - 1 else '')}')
|
||||
else:
|
||||
print("\t\tNo missing translations ;) You're all good!")
|
||||
print("\t\tNo missing translations")
|
||||
|
||||
|
||||
print("\n\t[Deprecated Translations] Simply remove the translation below :)1")
|
||||
print("\n\t[Deprecated Translations]")
|
||||
if len(deprecated_translation) > 0:
|
||||
for a in range(len(deprecated_translation)):
|
||||
print(f'\t\t"{deprecated_translation[a]}": "{lang_file[deprecated_translation[a]]}"')
|
||||
|
||||
else:
|
||||
print("\t\tNo deprecated9 translations ;) You're all good!")
|
||||
print("\t\tNo deprecated translations")
|
||||
print()
|
Loading…
Reference in New Issue
Block a user