in reply to Language translator and dictionaries

But it does work for Babelfish. Using Lingua::Translate:
#!/usr/bin/perl use strict; use warnings; use Lingua::Translate; my $x18r = Lingua::Translate->new(src => "en", dest => "de") or die "No translation server available for en -> de\n"; my $english = "perlmonks is the best site for Perl!" my $german = $x18r->translate($english); print $german, "\n";

Replies are listed 'Best First'.
Re^2: Language translator and dictionaries
by vit (Friar) on Mar 19, 2011 at 16:34 UTC
    The problem is that on my local server I am with ActiveState perl which does not install "Lingua::Translate".
    If you know by chance how to do that other than
    ppm install Lingua::Translate
    please let me know.

    Another question is how reliable is to use a third party server to do a very big amount of translation queries?