1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-02-03 13:21:56 +02:00

fix copy for merge confirmation

This commit is contained in:
Jesse Duffield 2022-03-27 17:29:22 +11:00
parent e011acbab2
commit 860d1e0145
2 changed files with 3 additions and 1 deletions

View File

@ -246,7 +246,7 @@ func (self *MergeAndRebaseHelper) MergeRefIntoCheckedOutBranch(refName string) e
)
return self.c.Ask(types.AskOpts{
Title: self.c.Tr.MergingTitle,
Title: self.c.Tr.MergeConfirmTitle,
Prompt: prompt,
HandleConfirm: func() error {
self.c.LogAction(self.c.Tr.Actions.Merge)

View File

@ -22,6 +22,7 @@ type TranslationSet struct {
MainTitle string
StagingTitle string
MergingTitle string
MergeConfirmTitle string
NormalTitle string
CommitMessage string
CredentialsUsername string
@ -610,6 +611,7 @@ func EnglishTranslationSet() TranslationSet {
UnstagedChanges: `Unstaged Changes`,
StagedChanges: `Staged Changes`,
MainTitle: "Main",
MergeConfirmTitle: "Merge",
StagingTitle: "Main Panel (Staging)",
MergingTitle: "Main Panel (Merging)",
NormalTitle: "Main Panel (Normal)",