Bing::Search::Source::Translation - Translate with Bing


Bing-Search documentation Contained in the Bing-Search distribution.

Index


Code Index:

NAME

Top

Bing::Search::Source::Translation - Translate with Bing

METHODS

Top

Translation_SourceLanguage and Translation_TargetLanguage

These methods describe the source and target langauge for the translation request. The language codes are RFC1766-style

See http://msdn.microsoft.com/en-us/library/dd877907.aspx for a list of valid language codes.

SEE ALSO

Top

* RFC1766 - http://datatracker.ietf.org/doc/rfc1766/

AUTHOR

Top

Dave Houston, dhouston@cpan.org, 2010

LICENSE

Top

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


Bing-Search documentation Contained in the Bing-Search distribution.

package Bing::Search::Source::Translation;
use Moose;
extends 'Bing::Search::Source';

with qw(
Bing::Search::Role::TranslationRequest::SourceLanguage
Bing::Search::Role::TranslationRequest::TargetLanguage
);

sub _build_source_name { 'Translation' }

__PACKAGE__->meta->make_immutable;