| Bing-Search documentation | Contained in the Bing-Search distribution. |
Bing::Search::Source::Translation - Translate with Bing
Translation_SourceLanguage and Translation_TargetLanguageThese 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.
Dave Houston, dhouston@cpan.org, 2010
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;