Open
Description
func main() {
value := gtranslate.Translate{
Text: "这是第一句话。 这是第二句话。",
From: "zh-cn",
To: "en",
}
translated, err := gtranslate.Translator(value)
if err != nil {
panic(err)
}
fmt.Printf("%#v\n", translated.Text)
// Output: "This is the first sentence."
}
Correct output should be: "This is the first sentence. This is the second sentence."
Metadata
Assignees
Labels
No labels
Activity