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?