From 9d66b23c8e7f08dfd40946dc0e54d62b43d6554f Mon Sep 17 00:00:00 2001 From: Mohamed Date: Fri, 24 May 2024 18:35:35 -0400 Subject: [PATCH] Impoved persons template shortcut --- src/wxUI/dialogs/mastodon/configuration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wxUI/dialogs/mastodon/configuration.py b/src/wxUI/dialogs/mastodon/configuration.py index 86e44972..da411455 100644 --- a/src/wxUI/dialogs/mastodon/configuration.py +++ b/src/wxUI/dialogs/mastodon/configuration.py @@ -54,7 +54,7 @@ class templates(wx.Panel, baseDialog.BaseWXDialog): sizer.Add(self.post, 0, wx.ALL, 5) self.conversation = wx.Button(self, wx.ID_ANY, _("Edit template for &conversations. Current template: {}").format(conversation_template)) sizer.Add(self.conversation, 0, wx.ALL, 5) - self.person = wx.Button(self, wx.ID_ANY, _("Edit template for &persons. Current template: {}").format(person_template)) + self.person = wx.Button(self, wx.ID_ANY, _("Edit template for p&ersons. Current template: {}").format(person_template)) sizer.Add(self.person, 0, wx.ALL, 5) self.SetSizer(sizer)