summaryrefslogtreecommitdiffstats
path: root/pkg/i18n
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/i18n')
-rw-r--r--pkg/i18n/dutch.go3
-rw-r--r--pkg/i18n/english.go3
-rw-r--r--pkg/i18n/polish.go3
3 files changed, 9 insertions, 0 deletions
diff --git a/pkg/i18n/dutch.go b/pkg/i18n/dutch.go
index c90bab649..4daa83075 100644
--- a/pkg/i18n/dutch.go
+++ b/pkg/i18n/dutch.go
@@ -670,6 +670,9 @@ func addDutch(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "DisabledForGPG",
Other: "Feature not available for users using GPG",
+ }, &i18n.Message{
+ ID: "CreateRepo",
+ Other: "Not in a git repository. Create a new git repository? (y/n): ",
},
)
}
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index f9b32b86f..b94bbb3ec 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -693,6 +693,9 @@ func addEnglish(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "DisabledForGPG",
Other: "Feature not available for users using GPG",
+ }, &i18n.Message{
+ ID: "CreateRepo",
+ Other: "Not in a git repository. Create a new git repository? (y/n): ",
},
)
}
diff --git a/pkg/i18n/polish.go b/pkg/i18n/polish.go
index 2eaddeff1..b459c6ee3 100644
--- a/pkg/i18n/polish.go
+++ b/pkg/i18n/polish.go
@@ -653,6 +653,9 @@ func addPolish(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "DisabledForGPG",
Other: "Feature not available for users using GPG",
+ }, &i18n.Message{
+ ID: "CreateRepo",
+ Other: "Not in a git repository. Create a new git repository? (y/n): ",
},
)
}