Ejemplo n.º 1
0
Archivo: tran.go Proyecto: sqp/godock
// Sloc translates the given string using another domain name.
//
func Sloc(domain, str string) string {
	return gettext.DGettext(domain, str)
}
Ejemplo n.º 2
0
// G is the shorthand for Gettext
func G(msgid string) string {
	return gettext.DGettext(TEXTDOMAIN, msgid)
}
Ejemplo n.º 3
0
Archivo: tran.go Proyecto: sqp/godock
// Splug translates the given string in the applet domain.
//
func Splug(str string) string {
	return gettext.DGettext(cdglobal.GettextPackagePlugins, str)
}