Add digitgrade legs tool

This commit is contained in:
989onan
2024-07-24 17:41:17 -04:00
parent 97e44f7420
commit ce7c6aa664
4 changed files with 132 additions and 2 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ def load_translations() -> None:
print("Default translation file 'en_US.json' not found.")
def t(phrase: str, *args, **kwargs) -> str:
output: str = dictionary.get(phrase)
output: str = dictionary.get(phrase, None)
if output is None:
if verbose:
print('Warning: Unknown phrase: ' + phrase)