There are many questions (and answers) on stackoverflow and another site about translating default error messages provided by DefaultModelBinder, such as this or this .
All the answers to these questions will mainly be asked to create a ressource (resx) file in App_GlobalResources and put a message for "PropertyValueInvalid".
This is good, but it works, but there is another message (for example, βxxx must be a numberβ), and the big question is: where the hell can I have a list of message keys used to check the model binding, with a description of the context, for which they are used, so can I translate each of them?
source
share