summaryrefslogtreecommitdiffstats
path: root/pkg/i18n/english.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-01-02 10:34:33 +1100
committerJesse Duffield <jessedduffield@gmail.com>2022-01-09 14:09:53 +1100
commitf503ff1ecbfda00dfa4e68e38d41aceaf9b4400c (patch)
treee113663684406ca893ebb9c223d1fddbc65abea9 /pkg/i18n/english.go
parent4a1d23dc27f61e936fb3b582f02e2bba473c3b19 (diff)
start breaking up git struct
Diffstat (limited to 'pkg/i18n/english.go')
-rw-r--r--pkg/i18n/english.go10
1 files changed, 4 insertions, 6 deletions
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index 7ab71465f..7cf9d17b8 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -93,8 +93,8 @@ type TranslationSet struct {
Squash string
LcPickCommit string
LcRevertCommit string
- OnlyRenameTopCommit string
- LcRenameCommit string
+ OnlyRewordTopCommit string
+ LcRewordCommit string
LcDeleteCommit string
LcMoveDownCommit string
LcMoveUpCommit string
@@ -120,7 +120,6 @@ type TranslationSet struct {
SurePopStashEntry string
StashApply string
SureApplyStashEntry string
- NoStashTo string
NoTrackedStagedFilesStash string
StashChanges string
MergeAborted string
@@ -646,8 +645,8 @@ func EnglishTranslationSet() TranslationSet {
Squash: "Squash",
LcPickCommit: "pick commit (when mid-rebase)",
LcRevertCommit: "revert commit",
- OnlyRenameTopCommit: "Can only reword topmost commit from within lazygit. Use shift+R instead",
- LcRenameCommit: "reword commit",
+ OnlyRewordTopCommit: "Can only reword topmost commit from within lazygit. Use shift+R instead",
+ LcRewordCommit: "reword commit",
LcDeleteCommit: "delete commit",
LcMoveDownCommit: "move commit down one",
LcMoveUpCommit: "move commit up one",
@@ -672,7 +671,6 @@ func EnglishTranslationSet() TranslationSet {
SurePopStashEntry: "Are you sure you want to pop this stash entry?",
StashApply: "Stash apply",
SureApplyStashEntry: "Are you sure you want to apply this stash entry?",
- NoStashTo: "No stash to {{.method}}",
NoTrackedStagedFilesStash: "You have no tracked/staged files to stash",
StashChanges: "Stash changes",
MergeAborted: "Merge aborted",