summaryrefslogtreecommitdiffstats
path: root/pkg/i18n/english.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-05-08 13:24:51 +1000
committerGitHub <noreply@github.com>2022-05-08 13:24:51 +1000
commit8247089e53e851a76147205d72766a264bb00a97 (patch)
tree3aaf91fcecb99742af1aaec54fa6dbf8419bcc64 /pkg/i18n/english.go
parent549409a6f35d86aadc4ee6dd976890dd5e5fc9f1 (diff)
parent22d98249fe2256d7c11b77ad926ba8bb8b67be04 (diff)
Merge pull request #1925 from jesseduffield/details-view
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",