I am about to start on a project which must support a number of European languages. All static content on this site must be translatable between these languages. I have heard of satellite assemblies and have heard that they are used for multi-language sites in .NET but this was a long time ago. Is this still current practice in .NET? I'm using ASP.NET MVC.
|
|
|
If you're using ASP.NET MVC, one option would be to use a different resource for each view. I wrote an article about it, maybe it can be of help: ASP.NET MVC Localization: Generate resource files and localized views using custom templates |
|||||||||||
|
|
Without the satellite part, you can add a App_GlobalResources
In MyResources.resx
In Global.asax.cs (
Then in the Views and PartialViews (e.g. MyView.cshtml).
Optional: The Resources can be added as a link, and use custom namespaces.
mToolNamespace: MyNamespaceHere Then they would be accessible via.
This is a general way to use (normal / linked) resources in ASP.NET MVC. If you use "Add as link" you can have one physical copy in a separate project. Satellite: Some info on satellite assemblies: |
||||
|
|