我需要更改错误消息
我的模型代码是:
class Resume < ActiveRecord::Base
attr_accessible :key_skills, :resume_category, :about_myself, :year_experience, :month_experience, :current_salary, :education_details, :jobs_preference, :resume_title,:avatar,:avatar_file_name,:avatar_content_type
has_attached_file :avatar,
:storage => :dropbox,
:dropbox_credentials => "#{Rails.root}/config/dropbox.yml",
:dropbox_options => {
:unique_filename => true
}
validates_format_of :avatar_file_name, :with => %r{\.(docx|doc|pdf)$}i,:message => "Accept only doc and pdf"
但提交表单上显示的错误消息是:“头像文件名仅接受 doc 和 pdf”
我需要错误消息:“只接受 doc 和 pdf”