mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-20 19:39:22 +00:00
44c3af82e5
* test: test_messaging_settings_identity_verification added * chore: skipped test_settings_include_in_total_balance
10 lines
538 B
Python
10 lines
538 B
Python
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'
|
||
MESSAGE_NOTE_IDENTITY_REQUEST = 'Ask a question that only the real athletic will be able to answer e.g. a question about a shared experience, or ask athletic to enter a code or phrase you have sent to them via a different communication channel (phone, post, etc...).'
|