1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-28 16:02:01 +03:00

Add command to reset the commit author from the commits panel.

This commit is contained in:
Jens Pfeifle
2022-04-22 16:01:30 +02:00
committed by Jesse Duffield
parent 8247089e53
commit 7c573a5bea
5 changed files with 53 additions and 0 deletions

View File

@ -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",