Difference between revisions of "Translating QT Linguist TS-files"

From Apertium
Jump to navigation Jump to search
 
Line 9: Line 9:
 
==See also==
 
==See also==
 
* [[Format handling]]
 
* [[Format handling]]
  +
* [[Tips for translators]]
 
   
 
[[Category:Tools]]
 
[[Category:Tools]]

Latest revision as of 09:12, 30 May 2014

Virtaal can handle QT Linguist TS-files and uses the Apertium web service. But if you want to do it with a local installation, it should be fairly easily scriptable.

The following command assumes you want to translate the contents of the <translation> part of es.ts from Spanish to Catalan, and produces a file ca.ts with translations from the <source> language (typically English) to Catalan:

paste es.ts <(apertium -u -f html es-ca < es.ts) |  sed '/<translation/s,^.*\t,,' |sed 's/\t.*//' > ca.ts

It also assumes all <translation> elements are one-line.

See also[edit]