// Sloc translates the given string using another domain name. // func Sloc(domain, str string) string { return gettext.DGettext(domain, str) }
// G is the shorthand for Gettext func G(msgid string) string { return gettext.DGettext(TEXTDOMAIN, msgid) }
// Splug translates the given string in the applet domain. // func Splug(str string) string { return gettext.DGettext(cdglobal.GettextPackagePlugins, str) }