if key doesnt exist in en.json and is used as a fallback return missing key

This commit is contained in:
WhatDidYouExpect 2025-07-07 12:24:08 +02:00
parent 365c60be31
commit 6ff4e49dfb
2 changed files with 5 additions and 1 deletions

View file

@ -1,4 +1,5 @@
from main import _
print(_("hello_key"))
print(_("fallback_key"))
print(_("fallback_key"))
print(_("thisdoesntexist"))