I need help with the best practice to localize asp mvc apps, I saw Oxite having a base method named Localize in the BaseController, but is the Localization a task for the view or the Controller? Or should I use resx files / or use db tables?
|
|
Create your own Html helper and use it like Details are in blog post. |
|||||||||
|
|
There is good solution for this available here this article covers all aspects of localization asp.net mvc app |
|||
|
|
|
MVC is really more about using the right view for the right job. Putting everything in a resource file is extremely paintfull. It's good to use resource files for small things, but for larger pages like your description pages, its better to have a view in each culture with a lot of content. For example using the following structure: ~/Views/en-US/Home/Index.aspx ~/Views/pt-BR/Home/Index.aspx or this structure: ~/Views/Home/Index.en-US.aspx ~/Views/Home/Index.en-US.aspx read the blog for how to do it: http://blog.oimae.com/2011/02/20/cultured-view-engine-for-mvc/ |
|||||
|
|
Since this a one year question and I don't know the scope of my answer over here. Recently I faced a situation like this , ie I need to implement the localization for different languages in my mvc site. I considered using Second I consider the Third I considered storing in db. This approach is fine and we have some mechanism to read data from the server. This requires one time effort and client doesn't have any dependable . I override a custom Based on your requirement it should display the view to you. Resource Manager
ViewModel
|
|||
|
|
|
If the string to be localized is generated by the view (eg a label in front of a text field), then its localization should be in the View. If the string is generated by the Controller, its localization should be there as well. |
|||
|
|
|
I would better go for creating a custom MetadataProvider and using a convention for the models. Something like 1 resource file by model namespace and a convention like ModelName.PropertyName -> value For validators, common buttons and so a resource file. For views text i am actually trying to find a good way. Maybe a view pre-process before compilation and a custom Scope for localized texts, so the pre-process can create the resource file for each view with the default language. |
|||
|
|