summaryrefslogtreecommitdiffstats
path: root/pkg/i18n
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2019-03-16 12:45:38 +1100
committerJesse Duffield <jessedduffield@gmail.com>2019-03-16 12:51:48 +1100
commite583cc251984deead48c062f19c3d88d88236eda (patch)
tree1ba9dbef96e90dc561c11efb42609d392d515cf9 /pkg/i18n
parent0d208b7957faa098f9f462cfe076ed90e5bf05dd (diff)
allow autostashing changes when checking out a branch
Diffstat (limited to 'pkg/i18n')
-rw-r--r--pkg/i18n/dutch.go9
-rw-r--r--pkg/i18n/english.go9
-rw-r--r--pkg/i18n/polish.go9
3 files changed, 27 insertions, 0 deletions
diff --git a/pkg/i18n/dutch.go b/pkg/i18n/dutch.go
index 4daa83075..74bf39a97 100644
--- a/pkg/i18n/dutch.go
+++ b/pkg/i18n/dutch.go
@@ -673,6 +673,15 @@ func addDutch(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "CreateRepo",
Other: "Not in a git repository. Create a new git repository? (y/n): ",
+ }, &i18n.Message{
+ ID: "AutoStashTitle",
+ Other: "Autostash?",
+ }, &i18n.Message{
+ ID: "AutoStashPrompt",
+ Other: "You must stash and pop your changes to bring them across. Do this automatically? (enter/esc)",
+ }, &i18n.Message{
+ ID: "StashPrefix",
+ Other: "Auto-stashing changes for ",
},
)
}
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index b94bbb3ec..9280c0bbd 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -696,6 +696,15 @@ func addEnglish(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "CreateRepo",
Other: "Not in a git repository. Create a new git repository? (y/n): ",
+ }, &i18n.Message{
+ ID: "AutoStashTitle",
+ Other: "Autostash?",
+ }, &i18n.Message{
+ ID: "AutoStashPrompt",
+ Other: "You must stash and pop your changes to bring them across. Do this automatically? (enter/esc)",
+ }, &i18n.Message{
+ ID: "StashPrefix",
+ Other: "Auto-stashing changes for ",
},
)
}
diff --git a/pkg/i18n/polish.go b/pkg/i18n/polish.go
index b459c6ee3..753ef882c 100644
--- a/pkg/i18n/polish.go
+++ b/pkg/i18n/polish.go
@@ -656,6 +656,15 @@ func addPolish(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "CreateRepo",
Other: "Not in a git repository. Create a new git repository? (y/n): ",
+ }, &i18n.Message{
+ ID: "AutoStashTitle",
+ Other: "Autostash?",
+ }, &i18n.Message{
+ ID: "AutoStashPrompt",
+ Other: "You must stash and pop your changes to bring them across. Do this automatically? (enter/esc)",
+ }, &i18n.Message{
+ ID: "StashPrefix",
+ Other: "Auto-stashing changes for ",
},
)
}