I have a Rails 4 app using Paperclip 4.3.2. I have the following specified in my model:
validates_attachment_content_type :avatar, :content_type => /\Aimage\/.*\Z/, :message => "some message"
When I try to load a wrong file I hoped to find the message "some message" but I get the message:
Avatar translation missing: ca.activerecord.errors.models..attributes.avatar.spoofed_media_type
Any idea what's going wrong here?
Good ref
To give you some context as to the
Avatar translation missing
error - this is typically caused by a lack of I18n translations...This should give you some insight.
Finally, "spoofed media type" errors often mean you don't have the
file
(or equivalent) on your system. I can only speak from Windows experience; you need to setfile
up separately if you don't haveDevKit
installed.