module ActiveSupport::HtmlSafeTranslation

def html_escape_translation_options(options)

def html_escape_translation_options(options)
  options.each do |name, value|
    unless i18n_option?(name) || (name == :count && value.is_a?(Numeric))
      options[name] = ERB::Util.html_escape(value.to_s)
    end
  end
end