* Lets you translate text from one language to another *

* *

* For more information about this service, see the API * Documentation *

* * @author Google, Inc. */ class Google_Service_Translate extends Google_Service { public $detections; public $languages; public $translations; /** * Constructs the internal representation of the Translate service. * * @param Google_Client $client */ public function __construct(Google_Client $client) { parent::__construct($client); $this->servicePath = 'language/translate/'; $this->version = 'v2'; $this->serviceName = 'translate'; $this->detections = new Google_Service_Translate_Detections_Resource( $this, $this->serviceName, 'detections', array( 'methods' => array( 'list' => array( 'path' => 'v2/detect', 'httpMethod' => 'GET', 'parameters' => array( 'q' => array( 'location' => 'query', 'type' => 'string', 'repeated' => true, 'required' => true, ), ), ), ) ) ); $this->languages = new Google_Service_Translate_Languages_Resource( $this, $this->serviceName, 'languages', array( 'methods' => array( 'list' => array( 'path' => 'v2/languages', 'httpMethod' => 'GET', 'parameters' => array( 'target' => array( 'location' => 'query', 'type' => 'string', ), ), ), ) ) ); $this->translations = new Google_Service_Translate_Translations_Resource( $this, $this->serviceName, 'translations', array( 'methods' => array( 'list' => array( 'path' => 'v2', 'httpMethod' => 'GET', 'parameters' => array( 'q' => array( 'location' => 'query', 'type' => 'string', 'repeated' => true, 'required' => true, ), 'target' => array( 'location' => 'query', 'type' => 'string', 'required' => true, ), 'source' => array( 'location' => 'query', 'type' => 'string', ), 'format' => array( 'location' => 'query', 'type' => 'string', ), 'cid' => array( 'location' => 'query', 'type' => 'string', 'repeated' => true, ), ), ), ) ) ); } } /** * The "detections" collection of methods. * Typical usage is: * * $translateService = new Google_Service_Translate(...); * $detections = $translateService->detections; * */ class Google_Service_Translate_Detections_Resource extends Google_Service_Resource { /** * Detect the language of text. (detections.listDetections) * * @param string $q * The text to detect * @param array $optParams Optional parameters. * @return Google_Service_Translate_DetectionsListResponse */ public function listDetections($q, $optParams = array()) { $params = array('q' => $q); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_Translate_DetectionsListResponse"); } } /** * The "languages" collection of methods. * Typical usage is: * * $translateService = new Google_Service_Translate(...); * $languages = $translateService->languages; * */ class Google_Service_Translate_Languages_Resource extends Google_Service_Resource { /** * List the source/target languages supported by the API * (languages.listLanguages) * * @param array $optParams Optional parameters. * * @opt_param string target * the language and collation in which the localized results should be returned * @return Google_Service_Translate_LanguagesListResponse */ public function listLanguages($optParams = array()) { $params = array(); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_Translate_LanguagesListResponse"); } } /** * The "translations" collection of methods. * Typical usage is: * * $translateService = new Google_Service_Translate(...); * $translations = $translateService->translations; * */ class Google_Service_Translate_Translations_Resource extends Google_Service_Resource { /** * Returns text translations from one language to another. * (translations.listTranslations) * * @param string $q * The text to translate * @param string $target * The target language into which the text should be translated * @param array $optParams Optional parameters. * * @opt_param string source * The source language of the text * @opt_param string format * The format of the text * @opt_param string cid * The customization id for translate * @return Google_Service_Translate_TranslationsListResponse */ public function listTranslations($q, $target, $optParams = array()) { $params = array('q' => $q, 'target' => $target); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_Translate_TranslationsListResponse"); } } class Google_Service_Translate_DetectionsListResponse extends Google_Collection { protected $detectionsType = 'Google_Service_Translate_DetectionsResourceItems'; protected $detectionsDataType = 'array'; public function setDetections($detections) { $this->detections = $detections; } public function getDetections() { return $this->detections; } } class Google_Service_Translate_DetectionsResourceItems extends Google_Model { public $confidence; public $isReliable; public $language; public function setConfidence($confidence) { $this->confidence = $confidence; } public function getConfidence() { return $this->confidence; } public function setIsReliable($isReliable) { $this->isReliable = $isReliable; } public function getIsReliable() { return $this->isReliable; } public function setLanguage($language) { $this->language = $language; } public function getLanguage() { return $this->language; } } class Google_Service_Translate_LanguagesListResponse extends Google_Collection { protected $languagesType = 'Google_Service_Translate_LanguagesResource'; protected $languagesDataType = 'array'; public function setLanguages($languages) { $this->languages = $languages; } public function getLanguages() { return $this->languages; } } class Google_Service_Translate_LanguagesResource extends Google_Model { public $language; public $name; public function setLanguage($language) { $this->language = $language; } public function getLanguage() { return $this->language; } public function setName($name) { $this->name = $name; } public function getName() { return $this->name; } } class Google_Service_Translate_TranslationsListResponse extends Google_Collection { protected $translationsType = 'Google_Service_Translate_TranslationsResource'; protected $translationsDataType = 'array'; public function setTranslations($translations) { $this->translations = $translations; } public function getTranslations() { return $this->translations; } } class Google_Service_Translate_TranslationsResource extends Google_Model { public $detectedSourceLanguage; public $translatedText; public function setDetectedSourceLanguage($detectedSourceLanguage) { $this->detectedSourceLanguage = $detectedSourceLanguage; } public function getDetectedSourceLanguage() { return $this->detectedSourceLanguage; } public function setTranslatedText($translatedText) { $this->translatedText = $translatedText; } public function getTranslatedText() { return $this->translatedText; } }