Replaced the post button for post in wall in people buffers

This commit is contained in:
2019-09-15 12:42:01 -05:00
parent 33ab63c1bc
commit 61583447b6
4 changed files with 27 additions and 7 deletions

View File

@@ -265,7 +265,7 @@ class peopleTab(homeTab):
def create_post_buttons(self):
self.postBox = wx.StaticBoxSizer(parent=self, orient=wx.HORIZONTAL, label=_("Actions"))
self.post = wx.Button(self.postBox.GetStaticBox(), -1, _("&Post"))
self.post = wx.Button(self.postBox.GetStaticBox(), -1, _("&Post on user's wall"))
self.new_chat = wx.Button(self.postBox.GetStaticBox(), wx.NewId(), _("Send message"))
self.postBox.Add(self.post, 0, wx.ALL, 5)
self.postBox.Add(self.new_chat, 0, wx.ALL, 5)