语言服务为脚本提供了一种计算文本自动翻译的方法。
// The code below will write "Esta es una prueba" to the log. var 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. var spanish = LanguageApp.translate('This is a test', 'en', 'es'); Logger.log(spanish);
参数
名称 | 类型 | 说明 |
---|---|---|
text | String | 要翻译的文本 |
sourceLanguage | String | 书写文本的语言代码。如果设为 字符串,系统会自动检测源语言代码 |
targetLanguage | String | 应将文本翻译成的语言代码 |
返回
String
- 译文
translate(text, sourceLanguage, targetLanguage, advancedArgs)
自动将某些文本从源语言翻译成目标语言。
// The code below will write "Esta es una <strong>prueba</strong>" to the log. var spanish = LanguageApp.translate('This is a <strong>test</strong>', 'en', 'es', {contentType: 'html'}); Logger.log(spanish);
参数
名称 | 类型 | 说明 |
---|---|---|
text | String | 要翻译的文本 |
sourceLanguage | String | 书写文本的语言代码。如果设为 字符串,系统会自动检测源语言代码 |
targetLanguage | String | 应将文本翻译成的语言代码 |
advancedArgs | Object | 可选的 JavaScript 对象字段 |
高级参数
名称 | 类型 | 说明 |
---|---|---|
contentType | String | 文字的内容类型;支持的值为“text” (默认)和“html” |
返回
String
- 译文