summaryrefslogtreecommitdiffstats
path: root/pkg/i18n/english.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-05-08 12:46:48 +1000
committerJesse Duffield <jessedduffield@gmail.com>2022-05-08 13:24:36 +1000
commitf257740ea7ec52f14da2207b3a261363971cfcbb (patch)
tree32f526e253459f1e3aca8be8b8cf931794cbd927 /pkg/i18n/english.go
parent517e9445df11c160fded2b3b924048e6f1e92c57 (diff)
add tooltip view for showing menu item descriptions
Diffstat (limited to 'pkg/i18n/english.go')
-rw-r--r--pkg/i18n/english.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index 8466a6571..59619d90f 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -108,6 +108,8 @@ type TranslationSet struct {
LcUndo string
LcUndoReflog string
LcRedoReflog string
+ UndoTooltip string
+ RedoTooltip string
LcPop string
LcDrop string
LcApply string
@@ -486,6 +488,7 @@ type TranslationSet struct {
CheckoutPrompt string
HardResetAutostashPrompt string
UpstreamGone string
+ NukeDescription string
Actions Actions
Bisect Bisect
}
@@ -719,6 +722,8 @@ func EnglishTranslationSet() TranslationSet {
LcUndo: "undo",
LcUndoReflog: "undo (via reflog) (experimental)",
LcRedoReflog: "redo (via reflog) (experimental)",
+ UndoTooltip: "The reflog will be used to determine what git command to run to undo the last git command. This does not include changes to the working tree; only commits are taken into consideration.",
+ RedoTooltip: "The reflog will be used to determine what git command to run to redo the last git command. This does not include changes to the working tree; only commits are taken into consideration.",
LcPop: "pop",
LcDrop: "drop",
LcApply: "apply",
@@ -1098,6 +1103,7 @@ func EnglishTranslationSet() TranslationSet {
HardResetAutostashPrompt: "Are you sure you want to hard reset to '%s'? An auto-stash will be performed if necessary.",
CheckoutPrompt: "Are you sure you want to checkout '%s'?",
UpstreamGone: "(upstream gone)",
+ NukeDescription: "If you want to make all the changes in the worktree go away, this is the way to do it. If there are dirty submodule changes this will stash those changes in the submodule(s).",
Actions: Actions{
// TODO: combine this with the original keybinding descriptions (those are all in lowercase atm)
CheckoutCommit: "Checkout commit",