summaryrefslogtreecommitdiffstats
path: root/pkg/gui/commit_message_panel.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2021-04-11 19:35:42 +1000
committerJesse Duffield <jessedduffield@gmail.com>2021-04-11 23:36:34 +1000
commitadee0b8ccbeb8e3b6f77c067312dcf457c0bb5bb (patch)
tree7eb522aa9df554c09dd1f48d25a4ea1cfb57cf85 /pkg/gui/commit_message_panel.go
parent0bebfe454e99264cfab7d97c8f861536e1365c6f (diff)
add spans to i18n
Diffstat (limited to 'pkg/gui/commit_message_panel.go')
-rw-r--r--pkg/gui/commit_message_panel.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/gui/commit_message_panel.go b/pkg/gui/commit_message_panel.go
index 21a5d2cfc..fb04dafb0 100644
--- a/pkg/gui/commit_message_panel.go
+++ b/pkg/gui/commit_message_panel.go
@@ -21,7 +21,7 @@ func (gui *Gui) handleCommitConfirm() error {
}
cmdStr := gui.GitCommand.CommitCmdStr(message, flags)
- gui.OnRunCommand(oscommands.NewCmdLogEntry(cmdStr, "Commit", true))
+ gui.OnRunCommand(oscommands.NewCmdLogEntry(cmdStr, gui.Tr.Spans.Commit, true))
return gui.withGpgHandling(cmdStr, gui.Tr.CommittingStatus, func() error {
_ = gui.returnFromContext()
gui.clearEditorView(gui.Views.CommitMessage)