i have an asp.net mvc application, and i use data annotations for data validations something like this:
public class Booking
{
[Required(ErrorMessage = "Please enter your name")]
public string Name { get; set; }
...
so this is in my DomainModel and i need to translate the ErrorMessage, and to use the translation in my views
i would like to have just one resource file for each language
anybody knows some solutionus ?