instance method generate_message

Ruby on Rails 2.3.18

Since v2.3.18 Last seen in v2.3.18

Signature

generate_message(options = {})

Translates an error message in it’s default scope (activerecord.errrors.messages). Error messages are first looked up in models.MODEL.attributes.ATTRIBUTE.MESSAGE, if it’s not there, it’s looked up in models.MODEL.MESSAGE and if that is not there it returns the translation of the default message (e.g. activerecord.errors.messages.MESSAGE). The translated model name, translated attribute name and the value are available for interpolation.

When using inheritence in your models, it will check all the inherited models too, but only if the model itself hasn’t been found. Say you have class Admin < User; end and you wanted the translation for the :blank error message for the title attribute, it looks for these translations:

<ol> <li>activerecord.errors.models.admin.attributes.title.blank</li> <li>activerecord.errors.models.admin.blank</li> <li>activerecord.errors.models.user.attributes.title.blank</li> <li>activerecord.errors.models.user.blank</li> <li>activerecord.errors.messages.blank</li> <li>any default you provided through the options hash (in the activerecord.errors scope)</li> </ol>

Parameters

options opt = {}
Source
# File activerecord/lib/active_record/validations.rb, line 65
      def generate_message(options = {})
        keys = @base.class.self_and_descendants_from_active_record.map do |klass|
          [ :"models.#{klass.name.underscore}.attributes.#{attribute}.#{@message}",
            :"models.#{klass.name.underscore}.#{@message}" ]
        end.flatten

        keys << options.delete(:default)
        keys << :"messages.#{@message}"
        keys << @message if @message.is_a?(String)
        keys << @type unless @type == @message
        keys.compact!

        options.merge!(:default => keys)
        I18n.translate(keys.shift, options)
      end

Defined in activerecord/lib/active_record/validations.rb line 65 · View on GitHub · Improve this page · Find usages on GitHub

Defined in ActiveRecord::Error

Type at least 2 characters to search.

↑↓ navigate · open · esc close