mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-02 08:53:13 +05:30
i18n: return 'key' if 'key' is not in locales files
This commit is contained in:
parent
bf7952d9c7
commit
2ea0590b03
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user