Where are the default validation error messages in Rails 3.0? What is the equivalent of ActiveRecord::Error.default_error_messages[:taken], for example? I have gotten as far as finding that ActiveModel handles the errors rather than ActiveRecord, but I can’t find the errors themselves.
Where are the default validation error messages in Rails 3.0? What is the equivalent
Share
http://github.com/rails/rails/blob/master/activemodel/lib/active_model/locale/en.yml
and
http://github.com/rails/rails/blob/master/activerecord/lib/active_record/locale/en.yml
😀
UPDATE:
Maybe you should try to add your own custom error messages?