if I decorate the properties of my ViewModels with attributes like this:
public class Vm
{
[Required]
[StringLength(35)]
public string Name {get;set;}
}
I am going to get english validation messages:
"this field is required"
"The field Name must be a string with a maximum length of 35"
how could I translate them ?