module ActiveSupport::HtmlSafeTranslation

def translate(key, **options)

Experimental RBS support (using type sampling data from the type_fusion project).

def translate: (String key, **Hash options) -> (String | ActiveSupport::SafeBuffer)

This signature was generated using 2 samples from 1 application.

def translate(key, **options)
  if html_safe_translation_key?(key)
    html_safe_options = html_escape_translation_options(options)
    translation = I18n.translate(key, **html_safe_options)
    html_safe_translation(translation)
  else
    I18n.translate(key, **options)
  end
end