summaryrefslogtreecommitdiffstats
path: root/pkg/i18n
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2020-07-17 09:02:25 +1000
committerJesse Duffield <jessedduffield@gmail.com>2020-07-17 09:20:50 +1000
commita9cc3219815b7c9de0c7300e1d78f8ae42636990 (patch)
treecc7e033f7385d74552cb7bf06f9d98b654b66252 /pkg/i18n
parent6349214f000fcece292fb7e1176fee833adcdf59 (diff)
prompt to create new branch if branch not found
Diffstat (limited to 'pkg/i18n')
-rw-r--r--pkg/i18n/dutch.go6
-rw-r--r--pkg/i18n/english.go6
-rw-r--r--pkg/i18n/polish.go6
3 files changed, 18 insertions, 0 deletions
diff --git a/pkg/i18n/dutch.go b/pkg/i18n/dutch.go
index f4cecf4c8..01a30a70d 100644
--- a/pkg/i18n/dutch.go
+++ b/pkg/i18n/dutch.go
@@ -769,6 +769,12 @@ func addDutch(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "NoFilesStagedPrompt",
Other: "You have not staged any files. Commit all files?",
+ }, &i18n.Message{
+ ID: "BranchNotFoundTitle",
+ Other: "Branch not found",
+ }, &i18n.Message{
+ ID: "BranchNotFoundPrompt",
+ Other: "Branch not found. Create a new branch named",
},
)
}
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index e7a16484a..27b3fa46f 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -1155,6 +1155,12 @@ func addEnglish(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "NoFilesStagedPrompt",
Other: "You have not staged any files. Commit all files?",
+ }, &i18n.Message{
+ ID: "BranchNotFoundTitle",
+ Other: "Branch not found",
+ }, &i18n.Message{
+ ID: "BranchNotFoundPrompt",
+ Other: "Branch not found. Create a new branch named",
},
)
}
diff --git a/pkg/i18n/polish.go b/pkg/i18n/polish.go
index 54ba3bd2c..f1f893a43 100644
--- a/pkg/i18n/polish.go
+++ b/pkg/i18n/polish.go
@@ -752,6 +752,12 @@ func addPolish(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "NoFilesStagedPrompt",
Other: "You have not staged any files. Commit all files?",
+ }, &i18n.Message{
+ ID: "BranchNotFoundTitle",
+ Other: "Branch not found",
+ }, &i18n.Message{
+ ID: "BranchNotFoundPrompt",
+ Other: "Branch not found. Create a new branch named",
},
)
}