var fDesc=new Array(); fDesc[0] = "Visual Localizer is an open source plugin for Microsoft Visual Studio. It focuses on advanced manipulation with ResX files and localization of (possibly completed) projects. Basic functions of Visual Localizer include:

- Moving string literals from code to selected resource file, either ad-hoc or batch - all string literals in document (project, solution).
- Inlining of references to resource files back to string literals.
- Smart editor of resource files (tracks number of references to a resource, enables inlining etc.)
- Using Google Translate, Bing or MyMemory to translate string resources in ResX files.
- Localization of C#, VB .NET and ASP .NET projects."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }