up to date with volta

This commit is contained in:
WhatDidYouExpect 2025-07-07 00:09:26 +02:00
parent a5ee9f09f5
commit 86d88e5462

View file

@ -91,7 +91,7 @@ def get_translation(lang: str, key: str):
if key in lang_translations:
return lang_translations[key]
fallback = translations.get("en", {}).get(key, key)
#print(f"{RED}Missing key: '{key}' in language '{lang}', falling back to: '{fallback}'{RESET}")
print(f"{RED}Missing key: '{key}' in language '{lang}', falling back to: '{fallback}'{RESET}") # yeah probably print this
return fallback
def _(key: str) -> str: