Language サービスは、テキストの自動翻訳を計算する方法をスクリプトに提供します。
// The code below will write "Esta es una prueba" to the log. const spanish = LanguageApp.translate('This is a test', 'en', 'es'); Logger.log(spanish);
メソッド
メソッド | 戻り値の型 | 概要 |
---|---|---|
translate(text, sourceLanguage, targetLanguage) | String | 一部のテキストをソース言語からターゲット言語に自動的に翻訳します。 |
translate(text, sourceLanguage, targetLanguage, advancedArgs) | String | 一部のテキストをソース言語からターゲット言語に自動的に翻訳します。 |
詳細なドキュメント
translate(text, sourceLanguage, targetLanguage)
一部のテキストをソース言語からターゲット言語に自動的に翻訳します。
// The code below will write "Esta es una prueba" to the log. const spanish = LanguageApp.translate('This is a test', 'en', 'es'); Logger.log(spanish);
パラメータ
名前 | 型 | 説明 |
---|---|---|
text | String | 翻訳するテキスト |
source | String | テキストが記述されている言語コード。空の文字列に設定すると、ソース言語コードが自動的に検出されます。 |
target | String | テキストを翻訳する言語コード |
戻る
String
- 翻訳されたテキスト
translate(text, sourceLanguage, targetLanguage, advancedArgs)
一部のテキストをソース言語からターゲット言語に自動的に翻訳します。
// The code below will write "Esta es una <strong>prueba</strong>" to the log. const spanish = LanguageApp.translate( 'This is a <strong>test</strong>', 'en', 'es', {contentType: 'html'}, ); Logger.log(spanish);
パラメータ
名前 | 型 | 説明 |
---|---|---|
text | String | 翻訳するテキスト |
source | String | テキストが記述されている言語コード。空の文字列に設定すると、ソース言語コードが自動的に検出されます。 |
target | String | テキストを翻訳する言語コード |
advanced | Object | オプションの JavaScript オブジェクト フィールド |
拡張パラメータ
名前 | 型 | 説明 |
---|---|---|
content | String | テキストのコンテンツ タイプ。サポートされている値は「text」(デフォルト)と「html」です。 |
戻る
String
- 翻訳されたテキスト