class I18n::Backend::LazyLoadable

def initialized?

Returns whether the current locale is initialized.
def initialized?
  if lazy_load?
    initialized_locales[I18n.locale]
  else
    super
  end
end