summaryrefslogtreecommitdiffstats
path: root/pkg/i18n
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-05-08 21:05:01 +1000
committerJesse Duffield <jessedduffield@gmail.com>2022-06-09 19:12:20 +1000
commit9591cc381a2d065781e6b45fb52ef2ee6aa29d20 (patch)
treeb54e09afc349a7b39673cdd25a940560379d8772 /pkg/i18n
parent901ab3ac1bc576bf9a334e32978e1b3ded5d8fc6 (diff)
support setting the author of a commit
update copy
Diffstat (limited to 'pkg/i18n')
-rw-r--r--pkg/i18n/english.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index 3eea542c6..975cc9285 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -101,6 +101,7 @@ type TranslationSet struct {
LcEditCommit string
LcAmendToCommit string
LcResetCommitAuthor string
+ SetAuthorPromptTitle string
SureResetCommitAuthor string
LcRenameCommitEditor string
NoCommitsThisBranch string
@@ -537,6 +538,7 @@ type Actions struct {
EditCommit string
AmendCommit string
ResetCommitAuthor string
+ SetCommitAuthor string
RevertCommit string
CreateFixupCommit string
SquashAllAboveFixupCommits string
@@ -725,6 +727,7 @@ func EnglishTranslationSet() TranslationSet {
LcEditCommit: "edit commit",
LcAmendToCommit: "amend commit with staged changes",
LcResetCommitAuthor: "reset commit author",
+ SetAuthorPromptTitle: "Set author (must look like 'Name <Email>')",
SureResetCommitAuthor: "The author field of this commit will be updated to match the configured user. This also renews the author timestamp. Continue?",
LcRenameCommitEditor: "reword commit with editor",
Error: "Error",
@@ -1142,6 +1145,7 @@ func EnglishTranslationSet() TranslationSet {
EditCommit: "Edit commit",
AmendCommit: "Amend commit",
ResetCommitAuthor: "Reset commit author",
+ SetCommitAuthor: "Set commit author",
RevertCommit: "Revert commit",
CreateFixupCommit: "Create fixup commit",
SquashAllAboveFixupCommits: "Squash all above fixup commits",