How to translate error messages from validation summary errors asp .net?

2

I do not find a file that brings me the error message strings to be translated, annotation is fine, only those that bring more complex errors, such as

  

Passwords must have at least one digit ('0' - '9').

    
asked by anonymous 21.10.2015 / 17:05

1 answer

2

There is a NuGet package that does this . The details are here .

Or you can reimplement the PasswordValidator of ASP.NET Identity .

EDIT

ASP.NET Identity has its own resources in> to Portuguese . Just install this package and see the globalization options for your web.config that should work.

    
21.10.2015 / 17:55