in reply to Re: Google Translator -> wxPerl frontend
in thread Google Translator -> wxPerl frontend

LWP::Online - Does your process have access to the web
  • Comment on Re^2: Google Translator -> wxPerl frontend

Replies are listed 'Best First'.
Re^3: Google Translator -> wxPerl frontend
by Swalif (Scribe) on Oct 08, 2010 at 15:43 UTC
    Since only Lingua::Translate->new( src => $tag_1, dest => $tag_2 ) needs connection... how about:
    my ($message, $trans); my $tag_1 = getTag($self->{origin}->GetValue()); my $tag_2 = getTag($self->{destination}->GetValue()); eval { $object = Lingua::Translate->new( src => $tag_1, dest => $tag_2 ) + or die "Cannot Create an instance"; $message = $self->{origin_text}->GetValue(); $trans = $object->translate($message); }; if ($@){$self->{translated_text}->SetValue("An Error occured : $@ + \n Perhaps your not online."); } else{ $self->{translated_text}->SetValue($trans); }