2023-11-27 10:44:42 +00:00
|
|
|
|
from enum import Enum
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Messaging(Enum):
|
|
|
|
|
WELCOME_GROUP_MESSAGE = "Welcome to the beginning of the "
|
|
|
|
|
CONTACT_REQUEST_SENT = 'Contact Request Sent'
|
|
|
|
|
NO_FRIENDS_ITEM = 'You don’t have any contacts yet'
|
|
|
|
|
NEW_CONTACT_REQUEST = 'New Contact Request'
|
2024-02-19 10:18:14 +00:00
|
|
|
|
MESSAGE_NOTE_IDENTITY_REQUEST = 'Ask a question only they can answer'
|
2024-02-02 10:22:52 +00:00
|
|
|
|
YOU_NEED_TO_BE_A_MEMBER = 'You need to be a member of this group to send messages'
|
2024-03-05 07:22:02 +00:00
|
|
|
|
ID_VERIFICATION_REQUEST_SENT = 'ID verification request sent'
|
|
|
|
|
ID_VERIFICATION_REPLY_SENT = 'ID verification reply sent'
|
2024-05-21 10:55:25 +00:00
|
|
|
|
SHOW_PREVIEWS_TITLE = 'Show link previews?'
|
|
|
|
|
SHOW_PREVIEWS_TEXT = 'A preview of your link will be shown here before you send it'
|