Language files Visual Studio Extension for EPiServer
As you certainly know, EPiServer localization is based on XML files with a certain structure. Working with translations in code is not hard, but I believe it could be even easier with a small extension, that I am going to introduce to you. This is a Visual Studio 2010 extension that has three main functions:
- Show values of translation keys as a tool-tips.
- Navigate to a line in a language file containing the key.
- Copy to the clipboard an expression with path to the key selected in a language file.
In code editor all recognized translation keys are decorated with a thin border. Tool-tips are shown if you hover a mouse pointer over a decorated translation key. Smart-tags used for navigation can be expanded with left mouse click or by pressing "Ctrl + ." key combination.
The extension can recognize two types of translation references: basic XPath “/admin/settings/heading” and resource binding <%$ Resources: EPiServer, admin.settings.heading %>. Relative paths like Translate(“#heading”) and filtering by attribute value expressions like Translate(“/pagetypes/property[@name=’Description’]”) are not supported for now.
The extension can be installed from Extension Manager in Visual Studio 2010 (select Online gallery and type “EPiServer” in the search request) or alternatively it can be downloaded from this page. The source code for the extension is available here.
This project was born during a series of hack-days that we have here in EPiServer development team and it is not an official EPiServer release. You are very welcome to leave feedback and suggestions here in comments or on extensions page. Bugs can be reported and tracked here.
cool!
Very nice, I have knocked together this macro http://world.episerver.com/Blogs/Lee-Crowe/Dates/2011/6/Language-File-Population-Helper-VS-Macro-v11/ that makes populating the language file much less of a mundane task for large global site builds. It would be useful if you could extend the extension to allow you to select text and easily add it to the language file.
Very cool !
Very neat!
@Croweman I have plans to add something like this in the future
Nice! Installed and works like a charm!
Cool! Good job, I like!
Very nice, will help a lot. Thanks.
This is really a sweet extension!
Will you also upgrade this extension for Visual Studio 2012?
@Thomas Yes, I have started working on the Visual Studio 2012 support.
The extension was updated for Visual Studio 2012
Like!
I have a new request / idea: The language doublesearch.
I quite often need to search like this:
Take some text from a user-provided screenshot, for example "Last ned:"
Search for this text to find the language key "/document/download".
Do a new search to find code that uses the language key.
I would like an extension that allows developers to enter a search text, and then get the language key, and a list of places where the key is used.
Any hopes for an extension upgrade to include this ?
But then maybe I'm the only one doing it this way.
Great tool! Need update for VS 2013