Difference between revisions of "Tips for translators"

From Apertium
Jump to navigation Jump to search
m
 
(5 intermediate revisions by one other user not shown)
Line 1: Line 1:
 
This page collects practical tips and tricks for ''using'' apertium as a translator.
 
This page collects practical tips and tricks for ''using'' apertium as a translator.
  +
   
 
{{TOCD}}
 
{{TOCD}}
  +
  +
==General tips==
  +
If you're translating something that is to be published, you'll get the best results if you
  +
* run a spellcheck on the source text before translating, and
  +
* run a spellcheck on the target text after translating
  +
  +
Remember that any machine translated text needs to be [[Post-editing|post-edited]] before publication.
  +
  +
==Are there any graphical user interfaces or apps?==
  +
Other than our web site http://apertium.org, see [[Tools#Tools_for_users_.2F_translators]]
  +
  +
==What do the funny symbols like */#@ mean?==
  +
A star * means a word was unknown to the translator and passed through unchanged. For proper nouns, this is often OK, but other words might need manual correction. (Some times you might see other symbols like #/@, these are [[Apertium stream format|debug symbols]] which indicate a bug in the translator.)
   
 
==How do I make the translator ignore certain strings?==
 
==How do I make the translator ignore certain strings?==
Line 26: Line 40:
 
Avui <a id="foo" href=http://time.org/>la data</a> és March 12è</pre>
 
Avui <a id="foo" href=http://time.org/>la data</a> és March 12è</pre>
   
==How do I use my translation memory (TMX) with Apertium?==
 
See [[Translation memory]].
 
   
 
==See also==
 
==See also==
 
* [[Translation memory]] for translating TMX / .tmx files
  +
* [[Translating QT Linguist TS-files]] for how to translate .ts files
 
* [[Translating gettext]] for how to translate .po files
 
* [[Translating gettext]] for how to translate .po files
  +
* [[Translating JSON]] for how not to translate .json files
 
* [[Translating subtitles]]
 
* [[Translating subtitles]]
 
* [[Translating wikimedia]]
 
* [[Translating wikimedia]]
* [[Format handling]] for a list of supported input/output formats
+
* [[Format handling]] for a list of built-in supported input/output formats
   
   
 
[[Category:Using Apertium]]
 
[[Category:Using Apertium]]
  +
[[Category:Documentation in English]]

Latest revision as of 18:56, 26 September 2016

This page collects practical tips and tricks for using apertium as a translator.


General tips[edit]

If you're translating something that is to be published, you'll get the best results if you

  • run a spellcheck on the source text before translating, and
  • run a spellcheck on the target text after translating

Remember that any machine translated text needs to be post-edited before publication.

Are there any graphical user interfaces or apps?[edit]

Other than our web site http://apertium.org, see Tools#Tools_for_users_.2F_translators

What do the funny symbols like */#@ mean?[edit]

A star * means a word was unknown to the translator and passed through unchanged. For proper nouns, this is often OK, but other words might need manual correction. (Some times you might see other symbols like #/@, these are debug symbols which indicate a bug in the translator.)

How do I make the translator ignore certain strings?[edit]

Use one of the XML based modes, e.g. html and put <apertium-notrans> tags around the text you don't want translated. E.g.

$ echo "Translate me <apertium-notrans>don't translate me</apertium-notrans> but translate me" |apertium en-es -f html
Me traduzco <apertium-notrans>don't translate me</apertium-notrans> pero traducirme

The HTML format adds entities, I want plain (Unicode) symbols[edit]

When using the HTML format, most non-ASCII characters are turned into HTML entities:

$ echo "Today's <a id="foo" href="http://time.org"/>date</a> is March 12th" |apertium -f html en-ca
Avui  <a id="foo" href=http://time.org/>la data</a> és March 12è

This might not be preferable.

You can use the html-noent mode instead to avoid this.


With older versions of apertium you have to use this hack: With have perl and perl-html-parser installed, you can append the following little script to the command:

perl -we 'use HTML::Entities;binmode(STDOUT,":utf8");while(<STDIN>){print decode_entities($_);}'

e.g.

$ echo "Today's <a id="foo" href="http://time.org"/>date</a> is March 12th" |apertium -f html en-ca|perl -we 'use HTML::Entities; binmode(STDOUT, ":utf8");while(<STDIN>) { print decode_entities($_); }'
Avui  <a id="foo" href=http://time.org/>la data</a> és March 12è


See also[edit]