Multiple languages in an ASP.NET MVC application?

前端 未结 6 1878
臣服心动
臣服心动 2020-12-04 12:47

What is the best way to support multiple languages for the interface in an ASP.NET MVC application? I\'ve seen people use resource files for other applications. Is this stil

相关标签:
6条回答
  • 2020-12-04 13:24

    I found this resource to be very helpful

    Its a wrapper round the HttpContext.Current.GetGlobalResourceString and HttpContext.Current.GetLocalResourceString that allows you to call the resources like this...

    // default global resource
    Html.Resource("GlobalResource, ResourceName")
    
    // global resource with optional arguments for formatting
    Html.Resource("GlobalResource, ResourceName", "foo", "bar")
    
    // default local resource
    Html.Resource("ResourceName")
    
    // local resource with optional arguments for formatting
    Html.Resource("ResourceName", "foo", "bar")
    

    The only problem I found is that controllers don't have access to local resouce strings.

    0 讨论(0)
  • 2020-12-04 13:26

    The Orchard project uses a shortcut method called "T" to do all in-page string translations. So you'll see tags with a @T("A String to Translate").

    I intend to look at how this is implemented behind the scenes and potentially use it in future projects. The short name keeps the code cleaner since it will be used a lot.

    What I like about this approach is the original string (english, in this case) is still easily visible in the code, and doesnt require a lookup in a resource tool or some other location to decode what the actual string should be here.

    See http://orchardproject.net for more info.

    0 讨论(0)
  • 2020-12-04 13:33

    Some of the other solutions mentioned as answer do not work for the released version of MVC (they worked with previous versions of alpha/beta).

    Here is a good article describing a way to implement localization that will be strongly-typed and will not break the unit testing of controllers and views: localization guide for MVC v1

    0 讨论(0)
  • 2020-12-04 13:33

    This is another option, and you'll have access to the CurrentUICulture in the controller:

    Check MVC3-multi-language

    0 讨论(0)
  • 2020-12-04 13:42

    If you're using the default view engines, then local resources work in the views. However, if you need to grab resource strings within a controller action, you can't get local resources, and have to use global resources.

    This makes sense when you think about it because local resources are local to an aspx page and in the controller, you haven't even selected your view.

    0 讨论(0)
  • 2020-12-04 13:42

    Yes resources are still the best way to support multiple languages in the .NET environment. Because they are easy to reference and even easier to add new languages.

    Site.resx
    Site.en.resx
    Site.en-US.resx
    Site.fr.resx
    etc...
    

    So you are right still use the resource files.

    0 讨论(0)
提交回复
热议问题