update module to own version
This commit is contained in:
42
gotext.go
42
gotext.go
@@ -1,25 +1,25 @@
|
||||
/*
|
||||
Package gotext implements GNU gettext utilities.
|
||||
|
||||
For quick/simple translations you can use the package level functions directly.
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/leonelquinteros/gotext"
|
||||
)
|
||||
|
||||
func main() {
|
||||
// Configure package
|
||||
gotext.Configure("/path/to/locales/root/dir", "en_UK", "domain-name")
|
||||
|
||||
// Translate text from default domain
|
||||
fmt.Println(gotext.Get("My text on 'domain-name' domain"))
|
||||
|
||||
// Translate text from a different domain without reconfigure
|
||||
fmt.Println(gotext.GetD("domain2", "Another text on a different domain"))
|
||||
}
|
||||
|
||||
*/
|
||||
* Package gotext implements GNU gettext utilities.
|
||||
*
|
||||
* For quick/simple translations you can use the package level functions directly.
|
||||
*
|
||||
* import (
|
||||
* "fmt"
|
||||
* "git.deineagentur.com/DeineAgenturUG/gotext"
|
||||
* )
|
||||
*
|
||||
* func main() {
|
||||
* // Configure package
|
||||
* gotext.Configure("/path/to/locales/root/dir", "en_UK", "domain-name")
|
||||
*
|
||||
* // Translate text from default domain
|
||||
* fmt.Println(gotext.Get("My text on 'domain-name' domain"))
|
||||
*
|
||||
* // Translate text from a different domain without reconfigure
|
||||
* fmt.Println(gotext.GetD("domain2", "Another text on a different domain"))
|
||||
* }
|
||||
*
|
||||
*/
|
||||
package gotext
|
||||
|
||||
import (
|
||||
|
||||
Reference in New Issue
Block a user