discourse/lib/freedom_patches/i18n_fallbacks.rb
2015-09-19 23:33:11 +02:00

18 lines
388 B
Ruby

module I18n
module Backend
module Fallbacks
def exists?(locale, key)
I18n.fallbacks[locale].each do |fallback|
begin
return true if super(fallback, key)
rescue I18n::InvalidLocale
# we do nothing when the locale is invalid, as this is a fallback anyways.
end
end
false
end
end
end
end