1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-01 00:54:58 +02:00

Changed some other names

This commit is contained in:
mjarkk
2018-12-10 08:04:22 +01:00
parent 61c2778de1
commit 8e3f5e19e0
5 changed files with 10 additions and 10 deletions

View File

@ -58,10 +58,10 @@ func (gui *Gui) waitForPassUname(g *gocui.Gui, currentView *gocui.View, passOrUn
gui.credentials = make(chan string)
credentialsView, _ := g.View("credentials")
if passOrUname == "username" {
credentialsView.Title = gui.Tr.SLocalize("PushUsername")
credentialsView.Title = gui.Tr.SLocalize("CredentialsUsername")
credentialsView.Mask = 0
} else {
credentialsView.Title = gui.Tr.SLocalize("PushPassword")
credentialsView.Title = gui.Tr.SLocalize("CredentialsPassword")
credentialsView.Mask = '*'
}
g.Update(func(g *gocui.Gui) error {