module I18n::Backend::Cache

def translate(locale, key, options = EMPTY_HASH)

def translate(locale, key, options = EMPTY_HASH)
  I18n.perform_caching? ? fetch(cache_key(locale, key, options)) { super } : super
end