1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-30 03:23:08 +03:00

remove capitalization of keybindings descriptions

This commit is contained in:
Dawid Dziurla
2018-09-03 18:16:54 +02:00
parent c49e4dc287
commit 230a5afa4c
6 changed files with 15 additions and 15 deletions

View File

@ -88,7 +88,7 @@ func (gui *Gui) GetKeybindings() []Binding {
Key: 'u',
Modifier: gocui.ModNone,
Handler: gui.handleCheckForUpdate,
Description: gui.Tr.SLocalize("CheckForUpdate"),
Description: gui.Tr.SLocalize("checkForUpdate"),
}, {
ViewName: "files",
Key: 'c',
@ -284,13 +284,13 @@ func (gui *Gui) GetKeybindings() []Binding {
Key: 'r',
Modifier: gocui.ModNone,
Handler: gui.handleRenameCommit,
Description: gui.Tr.SLocalize("RenameCommit"),
Description: gui.Tr.SLocalize("renameCommit"),
}, {
ViewName: "commits",
Key: 'R',
Modifier: gocui.ModNone,
Handler: gui.handleRenameCommitEditor,
Description: gui.Tr.SLocalize("RenameCommitEditor"),
Description: gui.Tr.SLocalize("renameCommitEditor"),
}, {
ViewName: "commits",
Key: 'g',