Invite users to the socializer's group during the first start. This will be done only if the user is not already a member

This commit is contained in:
2019-01-11 11:20:09 -06:00
parent ff4496be24
commit 1545bf39ee
4 changed files with 23 additions and 2 deletions

View File

@@ -39,4 +39,10 @@ def updated_status():
return wx.MessageDialog(None, _("Your status message has been successfully updated."), _("Success")).ShowModal()
def remove_post():
return wx.MessageDialog(None, _("Do you really want to delete this post?"), _("Attention"), style=wx.ICON_QUESTION|wx.YES_NO).ShowModal()
return wx.MessageDialog(None, _("Do you really want to delete this post?"), _("Attention"), style=wx.ICON_QUESTION|wx.YES_NO).ShowModal()
def join_group():
return wx.MessageDialog(None, _("If you like socializer, you can join or community from where you can ask for help, give us your feedback and help other users of the application. New releases are posted in the group too. Would you like to join the Socializer community?"), _("Attention"), style=wx.ICON_QUESTION|wx.YES_NO).ShowModal()
def group_joined():
return wx.MessageDialog(None, _("You have joined the Socializer community."), _("Success")).ShowModal()