Click here to Skip to main content
Licence CPOL
First Posted 2 Aug 2011
Views 10,692
Downloads 0
Bookmarked 6 times

ASP.NET MVC Localization: Generate resource files and localized views using custom templates

By | 2 Aug 2011 | Technical Blog
Use ASP.NET MVC T4 custom templates to generate resource files and localized views
A Technical Blog article. View original blog here.[^]

Table of Contents

Overriding ASP.NET MVC Custom Templates

The Add View dialog performs code generation that uses T4 templates behind the scenes. These templates can be modified to customize the generated code from these tools. You can also add custom templates.

Basically you have to copy the default templates to your project. This is the path:

[Visual Studio Install Directory]\Common7\IDE\ItemTemplates\
[CSharp | VisualBasic]\Web\MVC\CodeTemplates\

I have created a custom template that generates resource files (.resx), and I have modified the default templates to use the generated resource files.

Views Templates

You can find more information here:

Understanding .resx File Format

From MSDN [1]:

The .resx resource file format consists of XML entries, which specify objects and strings inside XML tags. One advantage of a .resx file is that when opened with a text editor (such as Notepad or Microsoft Word) it can be written to, parsed, and manipulated.(…) Each entry is described as a name/value pair.(…) When a string is added to a .resx file, the name of the string is embedded in a <data> tag, and the value is enclosed in a <value> tag.

For a resource file like this:

You have the corresponding XML:

I created a custom template that generates the resource file in the specified format.

Creating Resource Files

Add a strongly-typed view using the custom template and the resource file will be generated for you:

This is the generated file:

It’s necessary to edit the generated text. I decided to surround some properties with [[propertie-name]] – this way is easy to replace it using Find-Replace inside a text editor. Don’t forget to set the Access Modifier property to Public.

Set the following properties of the resource file:

Rebuild the Web application and you’re ready to use the generated resource.

Creating Localized Views

Add a strongly-typed view:

This is the generated code. Set the namespace to the same value you used in the resource file properties:

That’s it! The view will reference all the values that were created in the resource file.

English language screenshot

Italian language screenshot

Portuguese language screenshot

References

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Rui Jarimba

Software Developer (Senior)

Ireland Ireland

Member

Follow on Twitter Follow on Twitter
My name is Rui Jarimba and I was born in Madeira island, Portugal and I currently live in Dublin, Ireland.
 
I’m working as a .NET software developer since 2005.
 
Some of my professional interests are:
 
Web development using .NET Framework;
Service Oriented Architecture (SOA);
Database development and modelling;
Web accessibility, usability, and standards;
Software Architecture;
Design Patterns

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 PinmemberHelluin19:27 5 Mar '12  
QuestionLocalize the database PinmemberMember 86253008:33 14 Feb '12  
AnswerRe: Localize the database PinmemberRui Jarimba9:55 14 Feb '12  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120517.1 | Last Updated 2 Aug 2011
Article Copyright 2011 by Rui Jarimba
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid