summaryrefslogtreecommitdiffstats
path: root/pkg/gui/branches_panel.go
diff options
context:
space:
mode:
authorMark Kopenga <mkopenga@gmail.com>2018-08-15 14:57:20 +0200
committerMark Kopenga <mkopenga@gmail.com>2018-08-15 14:57:20 +0200
commitd00c46a7125180cdac01c5ff643d40fd2b06a293 (patch)
tree67132b634ce6d2f942687c54ee9018784a4a9f82 /pkg/gui/branches_panel.go
parent50b41bfcccf1f56076da487cdbe7994decbb9e6b (diff)
Added all english translations to a file and fixed some typos
Diffstat (limited to 'pkg/gui/branches_panel.go')
-rw-r--r--pkg/gui/branches_panel.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/gui/branches_panel.go b/pkg/gui/branches_panel.go
index 05334894b..b11036d48 100644
--- a/pkg/gui/branches_panel.go
+++ b/pkg/gui/branches_panel.go
@@ -127,7 +127,7 @@ func (gui *Gui) handleBranchSelect(g *gocui.Gui, v *gocui.View) error {
branch := gui.getSelectedBranch(v)
diff, err := gui.GitCommand.GetBranchGraph(branch.Name)
if err != nil && strings.HasPrefix(diff, "fatal: ambiguous argument") {
- diff = gui.Tr.SLocalize("NoTrackingThisRepo", "There is no tracking for this branch")
+ diff = gui.Tr.SLocalize("NoTrackingThisBranch", "There is no tracking for this branch")
}
gui.renderString(g, "main", diff)
}()