summaryrefslogtreecommitdiffstats
path: root/pkg/gui
diff options
context:
space:
mode:
authorAbhishek Keshri <iam2kabhishek@gmail.com>2023-12-17 20:02:53 +0100
committerStefan Haller <stefan@haller-berlin.de>2024-03-11 09:18:40 +0100
commitb1523c3f07e73cc37da1b1aba60442e12dce111e (patch)
treeeddff4292cd07c8bd623e421914b2ab2d32e211d /pkg/gui
parentc3c5753a354d6af5de0b9f4083c637dd310a2793 (diff)
Internationalize the tooltips of the "Amend commit attributes" menu
Diffstat (limited to 'pkg/gui')
-rw-r--r--pkg/gui/controllers/local_commits_controller.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/gui/controllers/local_commits_controller.go b/pkg/gui/controllers/local_commits_controller.go
index 8c99d7586..d6cc26b5b 100644
--- a/pkg/gui/controllers/local_commits_controller.go
+++ b/pkg/gui/controllers/local_commits_controller.go
@@ -680,13 +680,13 @@ func (self *LocalCommitsController) amendAttribute(commit *models.Commit) error
Label: self.c.Tr.ResetAuthor,
OnPress: self.resetAuthor,
Key: 'a',
- Tooltip: "Reset the commit's author to the currently configured user. This will also renew the author timestamp",
+ Tooltip: self.c.Tr.ResetAuthorTooltip,
},
{
Label: self.c.Tr.SetAuthor,
OnPress: self.setAuthor,
Key: 'A',
- Tooltip: "Set the author based on a prompt",
+ Tooltip: self.c.Tr.SetAuthorTooltip,
},
{
Label: self.c.Tr.AddCoAuthor,