method

translate

translate(key, **options)
public

No documentation available.

# File activesupport/lib/active_support/html_safe_translation.rb, line 7
    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