Skip to contents

When you pass in an English or Chinese sentence, this function will calls the Youdao text translation API for R to return the corresponding type of Chinese or English representation.

Usage

translate(input, from = "auto", to = "auto")

Arguments

input

An English or Chinese sentence.

from

The source language, an optional parameter.

to

The target language, an optional parameter.

Value

The translation results about target language.

Examples

if (FALSE) {
  translate("I like China")
  translate("quarto", from = "en", to = "zh-CHS")
}