NAME

Locale::Maketext::AutoTranslate - Translate L10N messages automatically

SYNOPSIS

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.

DESCRIPTION

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.

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHOR

Yung-chung Lin (henearkrxern@gmail.com)