summaryrefslogtreecommitdiffstats
path: root/pkg/i18n/english.go
diff options
context:
space:
mode:
authorJens Pfeifle <jens@pfeifle.tech>2022-04-22 16:01:30 +0200
committerJesse Duffield <jessedduffield@gmail.com>2022-05-08 13:29:56 +1000
commit7c573a5bea37cefd4ab036ac23d9dd45cd4059bd (patch)
treef1fe6f4dceeb1f14a7add963dacf0e969b4c4ef7 /pkg/i18n/english.go
parent8247089e53e851a76147205d72766a264bb00a97 (diff)
Add command to reset the commit author from the commits panel.
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 59619d90f..43fe36e02 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -98,6 +98,8 @@ type TranslationSet struct {
LcMoveUpCommit string
LcEditCommit string
LcAmendToCommit string
+ LcResetCommitAuthor string
+ SureResetCommitAuthor string
LcRenameCommitEditor string
NoCommitsThisBranch string
Error string
@@ -529,6 +531,7 @@ type Actions struct {
DropCommit string
EditCommit string
AmendCommit string
+ ResetCommitAuthor string
RevertCommit string
CreateFixupCommit string
SquashAllAboveFixupCommits string
@@ -713,6 +716,8 @@ func EnglishTranslationSet() TranslationSet {
LcMoveUpCommit: "move commit up one",
LcEditCommit: "edit commit",
LcAmendToCommit: "amend commit with staged changes",
+ LcResetCommitAuthor: "reset commit author",
+ SureResetCommitAuthor: "Are you sure you want to reset the author of this commit?",
LcRenameCommitEditor: "reword commit with editor",
Error: "Error",
LcSelectHunk: "select hunk",
@@ -1125,6 +1130,7 @@ func EnglishTranslationSet() TranslationSet {
DropCommit: "Drop commit",
EditCommit: "Edit commit",
AmendCommit: "Amend commit",
+ ResetCommitAuthor: "Reset commit author",
RevertCommit: "Revert commit",
CreateFixupCommit: "Create fixup commit",
SquashAllAboveFixupCommits: "Squash all above fixup commits",