NAME

Locale::Utils::Autotranslator::ApiMymemoryTranslatedNet - Interface for translated.net

$Id: ApiMymemoryTranslatedNet.pm 614 2015-08-17 10:28:48Z steffenw $

$HeadURL: $

VERSION

1.002

SYNOPSIS

use Locale::Utils::Autotranslator::ApiMymemoryTranslatedNet;

my $obj = Locale::Utils::Autotranslator::ApiMymemoryTranslatedNet->new(
    language                => 'de',
    # all following parameters are optional
    developer_language      => 'en', # en is the default
    before_translation_code => sub {
        my ( $self, $msgid ) = @_;
        ...
        return 1; # true: translate, false: skip translation
    },
    after_translation_code  => sub {
        my ( $self, $msgid, $msgstr ) = @_;
        ...
        return 1; # true: translate, false: skip translation
    },
    user_agent              => $my_user_agent,
);
$identical_obj = $obj->translate(
    'mydir/de.pot',
    'mydir/de.po',
);
my $translation_count = $obj->translation_count;

DESCRIPTION

Interface for translated.net

SUBROUTINES/METHODS

method new

see SYNOPSIS

method translate_text

$translated = $object->translate_text($untranslated);

EXAMPLE

Inside of this distribution is a directory named example. Run the *.pl files.

DIAGNOSTICS

none

CONFIGURATION AND ENVIRONMENT

none

DEPENDENCIES

HTTP::Request::Common

JSON

LWP::UserAgent

Moo

MooX::StrictConstructor

URI

namespace::autoclean

Locale::Utils::Autotranslator

INCOMPATIBILITIES

not known

BUGS AND LIMITATIONS

not known

SEE ALSO

http://en.wikipedia.org/wiki/Gettext

Locale::TextDomain::OO

AUTHOR

Steffen Winkler

LICENSE AND COPYRIGHT

Copyright (c) 2014 - 2017, Steffen Winkler <steffenw at cpan.org>. All rights reserved.

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