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
- 译文