summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Kopenga <mkopenga@gmail.com>2018-08-18 14:03:20 +0200
committerMark Kopenga <mkopenga@gmail.com>2018-08-18 14:03:20 +0200
commit29f2bdbba3b385eeefc84a172f8440bd6ef18f19 (patch)
tree0d0eebc61c44a4a4e7c80303a43f9c98debc6680
parentc90e865e34c8c85298d760e760e23ba4bee8bc63 (diff)
removed logrus logger import
-rw-r--r--pkg/i18n/i18n.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkg/i18n/i18n.go b/pkg/i18n/i18n.go
index eac8dc140..f2bd2839e 100644
--- a/pkg/i18n/i18n.go
+++ b/pkg/i18n/i18n.go
@@ -1,8 +1,6 @@
package i18n
import (
- "log"
-
"github.com/Sirupsen/logrus"
"github.com/cloudfoundry/jibber_jabber"
"github.com/nicksnyder/go-i18n/v2/i18n"
@@ -32,7 +30,7 @@ func NewLocalizer(log *logrus.Logger) (*Localizer, error) {
// create a i18n bundle that can be used to add translations and other things
i18nBundle := &i18n.Bundle{DefaultLanguage: language.English}
- addBundles(i18nBundle)
+ addBundles(log, i18nBundle)
// return the new localizer that can be used to translate text
i18nLocalizer := i18n.NewLocalizer(i18nBundle, userLang)
@@ -80,7 +78,7 @@ func (l *Localizer) GetLanguage() string {
}
// add translation file(s)
-func addBundles(i18nBundle *i18n.Bundle) {
+func addBundles(log *logrus.Logger, i18nBundle *i18n.Bundle) {
err := addPolish(i18nBundle)
if err != nil {
log.Fatal(err)