Customizing errors

Hello fellow Rails devs,

I had a slight problem with validation messages. I had a Post AR model that has an :author_name attribute.

Now if a validation goes wrong, I would like the message to say: "Name of author can't be blank" as opposed to "author name can't be blank".

I have tried looking into the Rails Guides for I18n #5 but it seems error.full_messages does not call human_attribute_name on the attribute before rendering the message. So I created a workaround which I have shared http://igbanam.wordpress.com/2011/10/25/customizing-error-messages-in-rails/

Comments and constructive criticisms please.

error.full_messages does indeed call human_attribute_name.

Did you check the source for that method in the link you posted?

http://ar.rubyonrails.org/classes/ActiveRecord/Errors.html#M000311

full_messages << @base.class.human_attribute_name(attr) + " " + msg