What do I need to install to get the built-in validation messages of mvc be displayed in the current UI culture of the request? Are the resource files maybe a separate download?
e.g. The validation message "The Email field is required." Should be displayed in german when the culture is set to de-DE.
EDIT: Need to be a bit clearer. I've done the complete localisation of custom validation messages allready using attributes with custom messages. The ones I still need to get translated are the out-of-the box ones.
e.g.
[Required]
public string Email {get;set;}
produces the validation message The Email field is required. I'd like to have this in german and italian also, without having to go through every single property. (I am expecting there is language pack or something similar; Google wasn't able to produce anything though..)