summaryrefslogtreecommitdiffstats
path: root/pkg/i18n/english.go
diff options
context:
space:
mode:
authorMark Kopenga <mkopenga@gmail.com>2018-08-17 17:22:30 +0200
committerDawid Dziurla <dawidd0811@gmail.com>2018-08-17 20:43:51 +0200
commit0f145093feee545f694c0969819a74d6b223c551 (patch)
tree24d32d51970f38edab38cf20a04c6897b63b64cd /pkg/i18n/english.go
parentbf5f3bb97223b6d199f36d4993c7c28da40d1e33 (diff)
Here i a fix for the error go complain on your pull
Diffstat (limited to 'pkg/i18n/english.go')
-rw-r--r--pkg/i18n/english.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index d67bd9053..46c9bbd03 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -15,9 +15,9 @@ import (
"golang.org/x/text/language"
)
-func addEnglish(i18nObject *i18n.Bundle) {
+func addEnglish(i18nObject *i18n.Bundle) error {
- i18nObject.AddMessages(language.English,
+ return i18nObject.AddMessages(language.English,
&i18n.Message{
ID: "NotEnoughSpace",
Other: "Not enough space to render panels",