1
I found this package, but I don’t know how to use it:
Microsoft ASP.NET MVC English Resources
Microsoft.AspNet.Mvc.en https://www.nuget.org/packages/Microsoft.AspNet.Mvc.pt-br/
How to use the resources of this package?
1
I found this package, but I don’t know how to use it:
Microsoft ASP.NET MVC English Resources
Microsoft.AspNet.Mvc.en https://www.nuget.org/packages/Microsoft.AspNet.Mvc.pt-br/
How to use the resources of this package?
3
Just install the package and set your globalization configuration as follows (Web.config
):
<configuration>
<system.web>
...
<globalization culture="pt-BR" uiCulture="pt-BR" enableClientBasedCulture="false" />
...
</system.web>
</configuration>
Done this, the automatic messages of framework should appear in English, including error messages.
Remembering that this package translates only part of the resources. A good part is here.
Browser other questions tagged asp.net-mvc resources nuget portuguese
You are not signed in. Login or sign up in order to post.
Is it possible to show automatically generated messages in en en ? for example " @Html.Actionlink("Details", "Details", new { id=item.Fonrecedorid }) "
– Daniel Santos
This is something else, involving Scaffolding. If you need to, you can ask another question.
– Leonel Sanches da Silva