What file I must to edit?
7.1. Changing the way form fields with errors are displayed
http://guides.rubyonrails.org/activerecord_validations_callbacks.html
ActionView::Base.field_error_proc = Proc.new do |html_tag, instance|
if instance.error_message.kind_of?(Array)
%(#{html_tag}
#{instance.error_message.join(‘,’)})
else
%(#{html_tag}
#{instance.error_message})
end
end