summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2019-11-21 22:09:02 +1100
committerJesse Duffield <jessedduffield@gmail.com>2019-11-21 22:09:02 +1100
commitbad06bb634917d0f4f21c4f54823cf5f2cc3c392 (patch)
tree56ee2997f7a841f0adc9b738d47cc47d88d12e0e
parente18e81f5eb8eebf80f6e597c2d52823bb2c8ff14 (diff)
fix typov0.11.1
-rw-r--r--pkg/gui/keybindings.go2
-rw-r--r--pkg/i18n/english.go4
2 files changed, 3 insertions, 3 deletions
diff --git a/pkg/gui/keybindings.go b/pkg/gui/keybindings.go
index 2dfdedf61..16fe31f0b 100644
--- a/pkg/gui/keybindings.go
+++ b/pkg/gui/keybindings.go
@@ -424,7 +424,7 @@ func (gui *Gui) GetInitialKeybindings() []*Binding {
Key: 'P',
Modifier: gocui.ModNone,
Handler: gui.handlePushTag,
- Description: gui.Tr.SLocalize("pushTags"),
+ Description: gui.Tr.SLocalize("pushTag"),
},
{
ViewName: "branches",
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index e1f53d05b..10e4d209d 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -904,8 +904,8 @@ func addEnglish(i18nObject *i18n.Bundle) error {
ID: "PushTagTitle",
Other: "remote to push tag '{{.tagName}}' to:",
}, &i18n.Message{
- ID: "pushTags",
- Other: "push tags",
+ ID: "pushTag",
+ Other: "push tag",
}, &i18n.Message{
ID: "createTag",
Other: "create tag",