|
|
@ -131,14 +131,13 @@ def translate_count(locale : String, key : String, count : Int, format = NumberF
|
|
|
|
|
|
|
|
|
|
|
|
if LOCALES[locale].has_key?(key + singular_suffix)
|
|
|
|
if LOCALES[locale].has_key?(key + singular_suffix)
|
|
|
|
translation = LOCALES[locale][key + singular_suffix].as_s
|
|
|
|
translation = LOCALES[locale][key + singular_suffix].as_s
|
|
|
|
else
|
|
|
|
elsif locale != "en-US"
|
|
|
|
# Try #2: Fallback to english (or return key we're already in english)
|
|
|
|
# Try #2: Fallback to english
|
|
|
|
if locale == "en-US"
|
|
|
|
|
|
|
|
LOGGER.warn("i18n: Missing translation key \"#{key}\"")
|
|
|
|
|
|
|
|
return key
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
translation = translate_count("en-US", key, count)
|
|
|
|
translation = translate_count("en-US", key, count)
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
# Return key if we're already in english, as the tranlation is missing
|
|
|
|
|
|
|
|
LOGGER.warn("i18n: Missing translation key \"#{key}\"")
|
|
|
|
|
|
|
|
return key
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|