mirror of
https://github.com/donaldzou/WGDashboard.git
synced 2025-06-29 01:36:56 +00:00
65 lines
2.1 KiB
Python
65 lines
2.1 KiB
Python
|
import json
|
||
|
import os.path
|
||
|
|
||
|
from typing_extensions import deprecated
|
||
|
|
||
|
active_languages = json.loads(open("active_languages.json", "r").read())
|
||
|
language_template = json.loads(open("language_template.json", "r").read())
|
||
|
welcome = "WGDashboard Locale File Verification [by @donaldzou]"
|
||
|
|
||
|
print("="*(len(welcome) + 4))
|
||
|
print(f"| {welcome} |")
|
||
|
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']}")
|
||
|
|
||
|
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']}")
|
||
|
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 = []
|
||
|
|
||
|
for a in language_template.keys():
|
||
|
if a not in lang_file.keys():
|
||
|
missing_translation.append(a)
|
||
|
|
||
|
for b in lang_file.keys():
|
||
|
if b not in language_template.keys():
|
||
|
deprecated_translation.append(b)
|
||
|
|
||
|
|
||
|
print("\n\t[Missing Translations] Simply copy the JSON below into the locale file and translate them in :)")
|
||
|
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("\n\t[Deprecated Translations] Simply remove the translation below :)1")
|
||
|
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!")
|