class I18n::Backend::LazyLoadable

def eager_load!

Eager loading is not supported in the lazy context.
def eager_load!
  if lazy_load?
    raise UnsupportedMethod.new(__method__, self.class, "Cannot eager load translations because backend was configured with lazy_load: true.")
  else
    super
  end
end