summaryrefslogtreecommitdiffstats
path: root/pkg/i18n/i18n.go
blob: ffd77fde616abcd3e61a5f1177fc83e881ebe468 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package lang

import (
	"github.com/cloudfoundry/jibber_jabber"
	"github.com/nicksnyder/go-i18n/v2/i18n"
	"golang.org/x/text/language"
)

// the function to setup the localizer
func getlocalizer() *i18n.Localizer {

	userLang, _ := jibber_jabber.DetectLanguage()
	var i18nObject = &i18n.Bundle{DefaultLanguage: language.English}

	// add translation file(s)
	i18nObject = addDutch(i18nObject)

	return i18n.NewLocalizer(i18nObject, userLang)
}

// setup the localizer for later use
var localizer = getlocalizer()

// Localize handels the translations
// expects i18n.LocalizeConfig as input: https://godoc.org/github.com/nicksnyder/go-i18n/v2/i18n#Localizer.MustLocalize
// output: translated string
func Localize(config *i18n.LocalizeConfig) string {
	return localizer.MustLocalize(config)
}

// SLocalize (short localize) is for 1 line localizations
// ID: The id that is used in the .toml translation files
// Other: the default message it needs to return if there is no translation found or the system is english
func SLocalize(ID string, Other string) string {
	return Localize(&i18n.LocalizeConfig{
		DefaultMessage: &i18n.Message{
			ID:    ID,
			Other: Other,
		},
	})
}