diff --git a/src/wxUI/dialogs/mastodon/showUserProfile.py b/src/wxUI/dialogs/mastodon/showUserProfile.py index c40f8035..b79887c8 100644 --- a/src/wxUI/dialogs/mastodon/showUserProfile.py +++ b/src/wxUI/dialogs/mastodon/showUserProfile.py @@ -141,7 +141,7 @@ class ShowUserProfile(wx.Dialog): mainSizer.Add(privateSizer, 0, wx.ALL | wx.CENTER) botSizer = wx.BoxSizer(wx.HORIZONTAL) - botLabel = wx.StaticText(self.panel, label=_("&Bot account: ")) + botLabel = wx.StaticText(self.panel, label=_("B&ot account: ")) botText = self.createTextCtrl(bullSwitch[user.bot], (30, 30)) botSizer.Add(botLabel, wx.SizerFlags().Center()) botSizer.Add(botText, wx.SizerFlags().Center()) @@ -154,7 +154,7 @@ class ShowUserProfile(wx.Dialog): discoverSizer.Add(discoverText, wx.SizerFlags().Center()) mainSizer.Add(discoverSizer, 0, wx.ALL | wx.CENTER) - posts = wx.Button(self.panel, label=_("{} p&osts. Click to open posts timeline").format(user.statuses_count)) + posts = wx.Button(self.panel, label=_("{} pos&ts. Click to open posts timeline").format(user.statuses_count)) # posts.SetToolTip(_("Click to open {}'s posts").format(user.display_name)) posts.Bind(wx.EVT_BUTTON, self.onPost) mainSizer.Add(posts, wx.SizerFlags().Center()) diff --git a/src/wxUI/dialogs/mastodon/updateProfile.py b/src/wxUI/dialogs/mastodon/updateProfile.py index 57852f63..9bbd46ef 100644 --- a/src/wxUI/dialogs/mastodon/updateProfile.py +++ b/src/wxUI/dialogs/mastodon/updateProfile.py @@ -119,7 +119,7 @@ class UpdateProfileDialog(wx.Dialog): self.locked = wx.CheckBox(panel, label=_("&Private account")) self.locked.SetValue(locked) - self.bot = wx.CheckBox(panel, label=_("&Bot account")) + self.bot = wx.CheckBox(panel, label=_("B&ot account")) self.bot.SetValue(bot) self.discoverable = wx.CheckBox(panel, label=_("&Discoverable account")) self.discoverable.SetValue(discoverable)