text=_("{username} has posted: {status}").format(username=user,status=",".join(compose_post(notification.status,db,settings,relative_times,show_screen_names,safe=safe)))
elifnotification.type=="mention":
text=_("{username} has mentioned you: {status}").format(username=user,status=",".join(compose_post(notification.status,db,settings,relative_times,show_screen_names,safe=safe)))
elifnotification.type=="reblog":
text=_("{username} has boosted: {status}").format(username=user,status=",".join(compose_post(notification.status,db,settings,relative_times,show_screen_names,safe=safe)))
elifnotification.type=="favourite":
text=_("{username} has added to favorites: {status}").format(username=user,status=",".join(compose_post(notification.status,db,settings,relative_times,show_screen_names,safe=safe)))
elifnotification.type=="follow":
text=_("{username} has followed you.").format(username=user)
elifnotification.type=="admin.sign_up":
text=_("{username} has joined the instance.").format(username=user)
elifnotification.type=="poll":
text=_("A poll in which you have voted has expired: {status}").format(status=",".join(compose_post(notification.status,db,settings,relative_times,show_screen_names,safe=safe)))
elifnotification.type=="follow_request":
text=_("{username} wants to follow you.").format(username=user)