How to use Microsoft ASP.Net MVC features?

1

I found this package, but I do not know how to use it:

  

Microsoft ASP.NET MVC English-BR Features

     

Microsoft.AspNet.Mvc.us    link

How do I use the features of this package?

    
asked by anonymous 30.06.2016 / 04:37

1 answer

2

Simply 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>

Once this is done, the framework automated messages should appear in Portuguese, including error messages.

Remembering that this package translates only part of the resources. A good part is here .

    
30.06.2016 / 07:15