Skip to content

Commit 6f1a2b2

Browse files
committed
fixup! Add merge options menu
1 parent 91667c4 commit 6f1a2b2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pkg/gui/controllers/helpers/working_tree_helper.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,13 +291,13 @@ func (self *WorkingTreeHelper) CreateMergeConflictMenu(selectedFilepaths []strin
291291
Items: []*types.MenuItem{
292292
{
293293
LabelColumns: []string{
294-
self.c.Tr.UseHead,
294+
self.c.Tr.UseCurrent,
295295
cmdColor.Sprint("git merge-file --ours"),
296296
},
297297
OnPress: func() error {
298298
return onMergeStrategySelected("--ours")
299299
},
300-
Key: 'h',
300+
Key: 'c',
301301
},
302302
{
303303
LabelColumns: []string{

pkg/i18n/english.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -901,7 +901,7 @@ type TranslationSet struct {
901901
ViewMergeConflictOptions string
902902
ViewMergeConflictOptionsTooltip string
903903
MergeConflictOptionsTitle string
904-
UseHead string
904+
UseCurrent string
905905
UseIncoming string
906906
UseBoth string
907907
}
@@ -1978,7 +1978,7 @@ func EnglishTranslationSet() *TranslationSet {
19781978
ViewMergeConflictOptions: "View merge conflict options",
19791979
ViewMergeConflictOptionsTooltip: "View options for resolving merge conflicts.",
19801980
MergeConflictOptionsTitle: "Resolve merge conflicts",
1981-
UseHead: "Use current changes",
1981+
UseCurrent: "Use current changes",
19821982
UseIncoming: "Use incoming changes",
19831983
UseBoth: "Use both",
19841984

0 commit comments

Comments
 (0)