# flake8: noqa
MENU = "Menu:"
WELCOME_MESSAGE = "Hello, {name}! Welcome to the ✈️ Travel Agent bot! Let's start our journey by filling out some information about you."
WELCOME_AGAIN_MESSAGE = "Hello, {name}! Welcome back to the ✈️ Travel Agent bot! If you get lost, you can always call the /help command for assistance."
HELP_MESSAGE = "Help message text."
REGISTERED_MESSAGE = "You have successfully registered. Welcome to the ✈️ Travel Agent bot! \nYou can view and edit your profile using the /profile command."
INPUT_USERNAME = "Enter your username (this will be used to interact with other users):\nAllowed characters: a-z, A-Z, 0-9, _\nLength: 5-20 characters"
INPUT_AGE = "Enter your age:\nRange: 13-120"
INPUT_SEX = "Enter your sex:\nOptions: Male or Female"
INPUT_BIO = "Enter your bio (enter /skip if you want to skip this step):\nMaximum length: 100 characters"
INPUT_BIO_SKIPPED = "Sure. You can always fill it later."
INPUT_LOCATION = "Enter your location in this format:\nFormat: country, city\nExample: Russia, Moscow"
INPUT_CALLBACK = "All right, your {key} is set to: {value}"
VALIDATION_ERROR = "Invalid input. Please try again."
CANCEL_CHANGE = "Enter /cancel to cancel change."
PROFILE = (
"Your profile:\n\n"
"\tUsername: {username}\n"
"\tAge: {age}\n"
"\tSex: {sex}\n"
"\tCountry: {country}\n"
"\tCity: {city}\n"
"\tBio: {bio}\n"
)
NOT_SET = "Not set"
EDIT_USERNAME = "Enter your username:\nAllowed characters: a-z, A-Z, 0-9, _\nLength: 5-20 characters"
EDIT_BIO = "Enter your bio (enter /skip if you want to set it to None):\nMaximum length: 100 characters"
PROFILE_UPDATED = "✅ Profile updated"
CHANGE_CANCELED = "❌ Change canceled"