summaryrefslogtreecommitdiffstats
path: root/pkg/gui
diff options
context:
space:
mode:
authorFrancisco Miamoto <francisco@dorayaki.co>2021-09-12 08:48:07 -0300
committerJesse Duffield <jessedduffield@gmail.com>2021-12-26 17:08:31 +1100
commite7a005f44dc0ec82a1de51e8c955a22f08812f74 (patch)
treeb54202d8a9e099c0531ebdf4283785be60f2fe42 /pkg/gui
parent3e58797096af0fc56a473b9c651c75f84dbeeecd (diff)
update translations to match conventions
Diffstat (limited to 'pkg/gui')
-rw-r--r--pkg/gui/commits_panel.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/gui/commits_panel.go b/pkg/gui/commits_panel.go
index edda92f5d..b6f153ac4 100644
--- a/pkg/gui/commits_panel.go
+++ b/pkg/gui/commits_panel.go
@@ -590,12 +590,12 @@ func (gui *Gui) handleTagCommit() error {
func (gui *Gui) createTagMenu(commitSha string) error {
items := []*menuItem{
{
- displayString: gui.Tr.LightweightTag,
+ displayString: gui.Tr.LcLightweightTag,
onPress: func() error {
return gui.handleCreateLightweightTag(commitSha)
}},
{
- displayString: gui.Tr.AnnotatedTag,
+ displayString: gui.Tr.LcAnnotatedTag,
onPress: func() error {
return gui.handleCreateAnnotatedTag(commitSha)
}},