summaryrefslogtreecommitdiffstats
path: root/pkg/i18n
diff options
context:
space:
mode:
authorFrancisco Miamoto <francisco@dorayaki.co>2021-09-11 19:19:25 -0300
committerJesse Duffield <jessedduffield@gmail.com>2021-12-26 17:08:31 +1100
commitb1d6ccddfb7ebcfc44cbfa315d27961b98d48951 (patch)
treed6f4c756916ff159e45a62d9f21246d07d797b3e /pkg/i18n
parent4df003cc4455adc7004c5da4bbcbc4a8b69d47c3 (diff)
support creating annotated tags
Diffstat (limited to 'pkg/i18n')
-rw-r--r--pkg/i18n/english.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index a35e9bc47..57d42f430 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -299,7 +299,11 @@ type TranslationSet struct {
SetUpstreamMessage string
LcEditRemote string
LcTagCommit string
+ TagMenuTitle string
TagNameTitle string
+ TagMessageTitle string
+ LightweightTag string
+ AnnotatedTag string
LcDeleteTag string
DeleteTagTitle string
DeleteTagPrompt string
@@ -523,6 +527,7 @@ type Spans struct {
BulkDeinitialiseSubmodules string
UpdateSubmodule string
CreateLightweightTag string
+ CreateAnnotatedTag string
DeleteTag string
PushTag string
NukeWorkingTree string
@@ -842,7 +847,11 @@ func englishTranslationSet() TranslationSet {
SetUpstreamMessage: "Are you sure you want to set the upstream branch of '{{.checkedOut}}' to '{{.selected}}'",
LcEditRemote: "edit remote",
LcTagCommit: "tag commit",
+ TagMenuTitle: "create tag",
TagNameTitle: "Tag name:",
+ TagMessageTitle: "Tag message: ",
+ AnnotatedTag: "annotated tag",
+ LightweightTag: "lightweight tag",
LcDeleteTag: "delete tag",
DeleteTagTitle: "Delete tag",
DeleteTagPrompt: "Are you sure you want to delete tag '{{.tagName}}'?",
@@ -1018,6 +1027,7 @@ func englishTranslationSet() TranslationSet {
CreateFixupCommit: "Create fixup commit",
SquashAllAboveFixupCommits: "Squash all above fixup commits",
CreateLightweightTag: "Create lightweight tag",
+ CreateAnnotatedTag: "Create annotated tag",
CopyCommitMessageToClipboard: "Copy commit message to clipboard",
MoveCommitUp: "Move commit up",
MoveCommitDown: "Move commit down",