From 0f19ac0a3fe099a65f9cc0e9f584482adc21f648 Mon Sep 17 00:00:00 2001 From: Mohamed Date: Fri, 29 Nov 2024 13:56:49 -0500 Subject: [PATCH] Missed some spots --- src/wxUI/dialogs/configuration.py | 4 ++-- src/wxUI/dialogs/mastodon/configuration.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wxUI/dialogs/configuration.py b/src/wxUI/dialogs/configuration.py index a3dea1b8..74162c50 100644 --- a/src/wxUI/dialogs/configuration.py +++ b/src/wxUI/dialogs/configuration.py @@ -30,7 +30,7 @@ class general(wx.Panel, baseDialog.BaseWXDialog): self.update_period.SetSize(self.update_period.GetBestSize()) updatePeriodBox.Add(self.update_period, 0, wx.ALL, 5) sizer.Add(updatePeriodBox, 0, wx.ALL, 5) - self.play_ready_sound = wx.CheckBox(self, -1, _(U"P&lay a sound when {0} launches").format(application.name,)) + self.play_ready_sound = wx.CheckBox(self, -1, _(U"Pla&y a sound when {0} launches").format(application.name,)) sizer.Add(self.play_ready_sound, 0, wx.ALL, 5) self.speak_ready_msg = wx.CheckBox(self, -1, _(U"Sp&eak a message when {0} launches").format(application.name,)) sizer.Add(self.speak_ready_msg, 0, wx.ALL, 5) @@ -83,7 +83,7 @@ class proxy(wx.Panel, baseDialog.BaseWXDialog): userBox.Add(lbl, 0, wx.ALL, 5) userBox.Add(self.user, 0, wx.ALL, 5) sizer.Add(userBox, 0, wx.ALL, 5) - lbl = wx.StaticText(self, wx.ID_ANY, _(u"&Password: ")) + lbl = wx.StaticText(self, wx.ID_ANY, _(u"P&assword: ")) self.password = wx.TextCtrl(self, wx.ID_ANY, style=wx.TE_PASSWORD) passwordBox = wx.BoxSizer(wx.HORIZONTAL) passwordBox.Add(lbl, 0, wx.ALL, 5) diff --git a/src/wxUI/dialogs/mastodon/configuration.py b/src/wxUI/dialogs/mastodon/configuration.py index 60c140e0..9138ea63 100644 --- a/src/wxUI/dialogs/mastodon/configuration.py +++ b/src/wxUI/dialogs/mastodon/configuration.py @@ -52,7 +52,7 @@ class templates(wx.Panel, baseDialog.BaseWXDialog): sizer = wx.BoxSizer(wx.VERTICAL) self.post = wx.Button(self, wx.ID_ANY, _("Edit template for &posts. Current template: {}").format(post_template)) 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)) + self.conversation = wx.Button(self, wx.ID_ANY, _("Edit template for c&onversations. Current template: {}").format(conversation_template)) sizer.Add(self.conversation, 0, wx.ALL, 5) 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)