amateur
amateur

Reputation: 44635

Multilingual App Toolkit for web applications

I have come across this very interesting tool for Visual Studio 2012 development of windows apps called Multilingual App Toolkit - further information here

This is very clever how it generates resources based on selected languages etc.

Being a web application developer who develops multi lingual applications, I would love something similar, with same functionality available. For example, I am currently developing an MVC4 application for a client who has a requirement to support multiple languages. Is such a tool available to assist me with this? Or is there away to use the Multilingual App Toolkit for such web sites? Any other similar tools available?

Upvotes: 5

Views: 1605

Answers (2)

Cameron
Cameron

Reputation: 111

The Multilingual App Toolkit v3.0 now supports ASP.NET MVC projects. See the blog announcement: http://blogs.msdn.com/b/matdev/archive/2014/04/14/announcing-multilingual-app-toolkit-v3-0.aspx

Upvotes: 4

Sebazzz
Sebazzz

Reputation: 1373

You simply need to do what the Visual Studio extension would otherwise do for you in a Windows Phone / Windows Store project. The extension puts some MSBuild imports in your project file and sets-up your existing resource files so the are generated by the use of the XLIFF files.

For details, please see: http://damsteen.nl/blog/using-the-microsoft-multilingual-app-toolkit-with-asp.net-mvc-or-any-other-.net-project-type

Upvotes: 1

Related Questions