Golang : Translate language with language package example
Just a simple example on how to use the language
package to do language translation. Not a google translate type of translation engine.... still need to provide exact match for each translation to work.
Putting this here for my own future reference.
Here you go!
package main
import (
//"fmt" -- replace with message package in this example
"golang.org/x/text/language"
"golang.org/x/text/language/display"
"golang.org/x/text/message"
)
func main() {
// define a direct translation from English to Dutch
message.SetString(language.Dutch, "In %v people speak %v.", "In %v spreekt men %v.")
fr := language.French
region, _ := fr.Region()
for _, tag := range []string{"en", "nl"} {
p := message.NewPrinter(language.Make(tag))
p.Printf("In %v people speak %v.", display.Region(region), display.Language(fr))
p.Println()
}
// define a direct translation from English to Chinese
message.SetString(language.Chinese, "In %v people speak %v.", "在%v说%v.") // * Must match for translation to work
zh := language.Chinese
region, _ = zh.Region()
for _, tag := range []string{"en", "zh"} {
p := message.NewPrinter(language.Make(tag))
p.Printf("In %v people speak %v.", display.Region(region), display.Language(zh)) // * Must match for translation to work
p.Println()
}
// define a direct translation from English to Malay
message.SetString(language.Malay, "In %v people speak %v.", "Orang %v berbahasa %v.")
msmy := language.Malay
region, _ = msmy.Region()
for _, tag := range []string{"en", "ms"} {
p := message.NewPrinter(language.Make(tag))
p.Printf("In %v people speak %v.", display.Region(region), display.Language(msmy))
p.Println()
}
}
Output:
In France people speak French.
In Frankrijk spreekt men Frans.
In China people speak Chinese.
在中国说中文.
In Malaysia people speak Malay.
Orang Malaysia berbahasa Melayu.
References:
https://godoc.org/golang.org/x/text/message
https://godoc.org/golang.org/x/text/language/display#Dictionary.Languages
See also : Golang : Gargish-English language translator
By Adam Ng(黃武俊)
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+7.8k Golang : Test if an input is an Armstrong number example
+17.5k Golang : Check if IP address is version 4 or 6
+29.5k Golang : Save map/struct to JSON or XML file
+23.6k Golang : Check if element exist in map
+23k Golang : untar or extract tar ball archive example
+10.7k Golang : Select region of interest with mouse click and crop from image
+13.6k Golang : Verify token from Google Authenticator App
+12.4k Golang : Display list of countries and ISO codes
+11.5k Golang : Delay or limit HTTP requests example
+5.6k Clean up Visual Studio For Mac installation failed disk full problem
+5.3k Golang : Customize scanner.Scanner to treat dash as part of identifier
+8k Golang : How to feed or take banana with Gorilla Web Toolkit Session package