From b60ecdaa24ff1867c3c7723c2b5f5d0253c0bae8 Mon Sep 17 00:00:00 2001 From: Giorgio Previtera Date: Sun, 7 Jul 2019 21:16:02 +0100 Subject: [PATCH] 472 - Update error message --- pkg/i18n/dutch.go | 2 +- pkg/i18n/english.go | 2 +- pkg/i18n/polish.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/i18n/dutch.go b/pkg/i18n/dutch.go index 7d93b051c..eba4dd972 100644 --- a/pkg/i18n/dutch.go +++ b/pkg/i18n/dutch.go @@ -750,7 +750,7 @@ func addDutch(i18nObject *i18n.Bundle) error { Other: "Stash options", }, &i18n.Message{ ID: "notARepository", - Other: "Error: must be run inside a repository", + Other: "Error: must be run inside a git repository", }, ) } diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go index 50a6e30a6..8768d6d7b 100644 --- a/pkg/i18n/english.go +++ b/pkg/i18n/english.go @@ -773,7 +773,7 @@ func addEnglish(i18nObject *i18n.Bundle) error { Other: "Stash options", }, &i18n.Message{ ID: "notARepository", - Other: "Error: must be run inside a repository", + Other: "Error: must be run inside a git repository", }, ) } diff --git a/pkg/i18n/polish.go b/pkg/i18n/polish.go index 7b32b3eaa..cc2393090 100644 --- a/pkg/i18n/polish.go +++ b/pkg/i18n/polish.go @@ -733,7 +733,7 @@ func addPolish(i18nObject *i18n.Bundle) error { Other: "Stash options", }, &i18n.Message{ ID: "notARepository", - Other: "Error: must be run inside a repository", + Other: "Error: must be run inside a git repository", }, ) }