mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 22:06:25 +00:00
a4ab8a7a01
Co-authored-by: Anastasiya <82375995+anastasiyaig@users.noreply.github.com>
10 lines
403 B
Python
10 lines
403 B
Python
from enum import Enum
|
|
|
|
|
|
class OnboardingMessages(Enum):
|
|
WRONG_LOGIN_LESS_LETTERS = 'Username must be at least 5 character(s)'
|
|
WRONG_LOGIN_SYMBOLS_NOT_ALLOWED = 'Only letters, numbers, underscores, whitespaces and hyphens allowed'
|
|
WRONG_PASSWORD = 'Password must be at least 10 characters long'
|
|
PASSWORDS_DONT_MATCH = "Passwords don't match"
|
|
PASSWORD_INCORRECT = 'Password incorrect'
|