class I18n::Backend::LazyLoadable

def reload!

Clean up translations and uninitialize all locales.
def reload!
  if lazy_load?
    @initialized_locales = nil
    @translations = nil
  else
    super
  end
end