var fDesc=new Array(); fDesc[0] = "Olifant is a .NET application that allows you to load or import translation memories in different formats (such as TMX or tab-delimited). You can edit the translation units, their attributes and any other associated data. Olifant allows you to save or export your data in various formats.
The tool provide a table-driven interface to easily navigate through the translation memory. It offers functions such as flagging duplicates, search and replacing text using regular expressions, filtering the entries based on various criteria, merging other TMs into an existing one, exporting part of the TM, and many other utilities."; 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 = ''; } }