diff --git a/src/wxUI/dialogs/mastodon/communityTimeline.py b/src/wxUI/dialogs/mastodon/communityTimeline.py index 4a259f71..6f29f0c5 100644 --- a/src/wxUI/dialogs/mastodon/communityTimeline.py +++ b/src/wxUI/dialogs/mastodon/communityTimeline.py @@ -14,8 +14,8 @@ class CommunityTimeline(wx.Dialog): communitySizer.Add(self.url, 0, wx.ALL, 5) actionSizer = wx.BoxSizer(wx.VERTICAL) label2 = wx.StaticText(panel, -1, _(u"Buffer type")) - self.local= wx.RadioButton(panel, -1, _("Local timeline"), style=wx.RB_GROUP) - self.federated= wx.RadioButton(panel, -1, _("Federated Timeline")) + self.local= wx.RadioButton(panel, -1, _("&Local timeline"), style=wx.RB_GROUP) + self.federated= wx.RadioButton(panel, -1, _("&Federated Timeline")) hSizer = wx.BoxSizer(wx.HORIZONTAL) hSizer.Add(label2, 0, wx.ALL, 5) actionSizer.Add(self.local, 0, wx.ALL, 5)