Update docs

This commit is contained in:
Denis Palashevskii
2021-04-21 17:05:57 +04:00
committed by Jesse Duffield
parent 755cc9f8d8
commit b590397dce
9 changed files with 15 additions and 3 deletions

View File

@@ -550,7 +550,7 @@ func (gui *Gui) GetInitialKeybindings() []*Binding {
Contexts: []string{string(LOCAL_BRANCHES_CONTEXT_KEY)},
Key: gui.getKey(config.Branches.ViewPullRequestOptions),
Handler: gui.handleCreatePullRequestMenu,
Description: gui.Tr.LcCreatePullRequest,
Description: gui.Tr.LcCreatePullRequestOptions,
},
{
ViewName: "branches",

View File

@@ -37,7 +37,7 @@ func (gui *Gui) createPullRequestMenu(selectedBranch *models.Branch, checkedOutB
},
})
return gui.createMenu(fmt.Sprintf(gui.Tr.CreatePullRequest), menuItems, createMenuOptions{showCancel: true})
return gui.createMenu(fmt.Sprintf(gui.Tr.CreatePullRequestOptions), menuItems, createMenuOptions{showCancel: true})
}
func createPullRequest(checkedOutBranch *models.Branch, selectedBranch *models.Branch, gui *Gui) error {