示例#1
0
文件: tran.go 项目: sqp/godock
// Sloc translates the given string using another domain name.
//
func Sloc(domain, str string) string {
	return gettext.DGettext(domain, str)
}
示例#2
0
文件: i18n.go 项目: niemeyer/snapd
// G is the shorthand for Gettext
func G(msgid string) string {
	return gettext.DGettext(TEXTDOMAIN, msgid)
}
示例#3
0
文件: tran.go 项目: sqp/godock
// Splug translates the given string in the applet domain.
//
func Splug(str string) string {
	return gettext.DGettext(cdglobal.GettextPackagePlugins, str)
}