var fDesc=new Array(); fDesc[0] = "Lingobit Extractor is a new tool for programs localization. The tool solves a huge part of internationalization task by extracting hard-coded strings from source code to resources. Lingobit Extractor extracts hardcoded strings from sources and replaces them with a code template that loads string from resources. This program also creates resource file with extracted text for example, C++ code printf(L"Hello, world!"), will be automatically replaced with printf(_LS(IDS_HELLO)), where _LS is a function that loads string from resources, IDS_HELLO is an automatically generated ID for string that is placed into resource script file."; 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 = ''; } }