I have a template like this:
[Display(Name = "Protocolos Abertos")]
public int ProtocolosId { get; set; }
I use in a SelectList as value
, when I will submit a form the validation message is returned in different languages for localhost and for the approval server.
-Localhost:
aweb.config
isset:
<globalizationculture="pt-BR" uiCulture="pt-BR" />
Is there any other settings in the application to be made to effect this change from English to Portuguese?
OBS: I know you can create custom error messages for the fields, but the default message is very useful.