| Locale-Maketext-AutoTranslate documentation | view source | Contained in the Locale-Maketext-AutoTranslate distribution. |
Locale::Maketext::AutoTranslate - Translate L10N messages automatically
use Locale::Maketext::AutoTranslate;
my $t = Locale::Maketext::AutoTranslate->new();
$t->from('en');
$t->to('zh_tw');
$t->translate('en.po' => 'zh_tw.po'); # writes the translations
# into zh_tw.po.
This module can help human translators to translate l10n messages with less effort. It sends messages to Google Translate service and get rough translations. No translation memories need to be set up locally, and translation process would simply become just correcting, correcting, and correcting.
Setting environment variable AUTOTRANSLATE_DEBUG can trace the translation process.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Yung-chung Lin (henearkrxern@gmail.com)
| Locale-Maketext-AutoTranslate documentation | view source | Contained in the Locale-Maketext-AutoTranslate distribution. |