Difference between revisions of "Tools for TMX"

From Apertium
Jump to navigation Jump to search
Line 5: Line 5:
 
* sort the file by: line length, language, etc. (<code>tmx-sort</code>)
 
* sort the file by: line length, language, etc. (<code>tmx-sort</code>)
 
* trim the file of dubious TUs (<code>tmx-trim</code>) &mdash; very short translations of long segments, very different punctuation, translations where the translation is exactly the same as the reference, translations which only consist of numbers, etc.
 
* trim the file of dubious TUs (<code>tmx-trim</code>) &mdash; very short translations of long segments, very different punctuation, translations where the translation is exactly the same as the reference, translations which only consist of numbers, etc.
  +
* re-perform language identification of all segments given a number of options (e.g. you know the file is in either Swedish or Danish, but some entries come up as Icelandic).
   
 
==Examples==
 
==Examples==
   
===Good translation units===
+
===tmx-extract===
   
 
<pre>
 
<pre>
  +
$ python tmx-extract.py bitext.tmx en da
 
 
<tu tuid="532" datatype="Text">
 
<tu tuid="532" datatype="Text">
 
<note>norden_org/start/start00a8.html_norden_org/start/start77a6.html</note>
 
<note>norden_org/start/start00a8.html_norden_org/start/start77a6.html</note>
Line 21: Line 22:
 
</tuv>
 
</tuv>
 
</tu>
 
</tu>
  +
...
 
 
</pre>
 
</pre>
 
[[Category:Development]]
 
[[Category:Development]]

Revision as of 10:39, 11 March 2009

As it is now quite easy to make lots of large TMXes with Bitextor and other tools, it would be good to have some tools for processing them. There are various things that it would be useful to do. For example, given a TMX file:

  • strip out translation units for any given two languages (tmx-extract). Bitextor and other tools generate TMX files with many possible combinations of languages, it would be good to be able to say, for a file of "no is en da sv", just give me all TUs which are "en-da".
  • strip out duplicate translation units (tmx-uniq).
  • sort the file by: line length, language, etc. (tmx-sort)
  • trim the file of dubious TUs (tmx-trim) — very short translations of long segments, very different punctuation, translations where the translation is exactly the same as the reference, translations which only consist of numbers, etc.
  • re-perform language identification of all segments given a number of options (e.g. you know the file is in either Swedish or Danish, but some entries come up as Icelandic).

Examples

tmx-extract

$ python tmx-extract.py bitext.tmx en da
  <tu tuid="532" datatype="Text">
    <note>norden_org/start/start00a8.html_norden_org/start/start77a6.html</note>
    <tuv xml:lang="en">
      <seg>Prizes for literature, music, film and the environment.</seg>
    </tuv>
    <tuv xml:lang="da">
      <seg>Priser inden for litteratur, musik, film og miljø.</seg>
    </tuv>
  </tu>
  ...