i18n: Avoid using the global logger

See #4414
This commit is contained in:
Bjørn Erik Pedersen 2018-10-28 14:42:41 +01:00
parent 1c7b7b4ef2
commit 95e72f5e8e
No known key found for this signature in database
GPG key ID: 330E6E2BD4859D8F

View file

@ -19,7 +19,6 @@ import (
"github.com/gohugoio/hugo/helpers"
"github.com/nicksnyder/go-i18n/i18n/bundle"
jww "github.com/spf13/jwalterweatherman"
)
var (
@ -62,7 +61,7 @@ func (t Translator) initFuncs(bndl *bundle.Bundle) {
defaultT, err := bndl.Tfunc(defaultContentLanguage)
if err != nil {
jww.WARN.Printf("No translation bundle found for default language %q", defaultContentLanguage)
t.logger.WARN.Printf("No translation bundle found for default language %q", defaultContentLanguage)
}
enableMissingTranslationPlaceholders := t.cfg.GetBool("enableMissingTranslationPlaceholders")
@ -72,7 +71,7 @@ func (t Translator) initFuncs(bndl *bundle.Bundle) {
t.translateFuncs[currentLang] = func(translationID string, args ...interface{}) string {
tFunc, err := bndl.Tfunc(currentLang)
if err != nil {
jww.WARN.Printf("could not load translations for language %q (%s), will use default content language.\n", lang, err)
t.logger.WARN.Printf("could not load translations for language %q (%s), will use default content language.\n", lang, err)
}
translated := tFunc(translationID, args...)