module ActionView::Helpers::TranslationHelper

def localize(object, **options)

for more information.
See https://www.rubydoc.info/github/svenfuchs/i18n/master/I18n/Backend/Base:localize

Delegates to I18n.localize with no additional functionality.
def localize(object, **options)
  I18n.localize(object, **options)
end