i18n: return 'key' if 'key' is not in locales files

This commit is contained in:
Samantaz Fox 2021-11-25 19:46:34 +01:00
parent bf7952d9c7
commit 2ea0590b03
No known key found for this signature in database
GPG Key ID: F42821059186176E
1 changed files with 3 additions and 1 deletions

View File

@ -65,9 +65,11 @@ def load_all_locales
end
def translate(locale : String?, key : String, text : String | Nil = nil) : String
# Log a warning if "key" doesn't exist in en-US locale
# Log a warning if "key" doesn't exist in en-US locale and return
# that key as the text, so this is more or less transparent to the user.
if !LOCALES["en-US"].has_key?(key)
LOGGER.warn("i18n: Missing translation key \"#{key}\"")
return key
end
# Default to english, whenever the locale doesn't exist,