# flake8: noqa MENU = "Menu:" CREATE_LOCATION = "✈️ Lets create new location!" ENTER_LOCATION = "Enter location:" CONFIRM_LOCATION = "Is this location correct: {location}?" CONFIRMATION_REEJECTED = ( "❌ Confirmation rejected. Please re-enter the location." ) ENTER_LOCATION_DATE_START = "Enter location start datetime(in UTC) in this format:\nFormat: YYYY-MM-DD HH:MM\nExample: 2022-01-01 00:00" ENTER_LOCATION_DATE_END = "Enter location end datetime(in UTC) in this format:\nFormat: YYYY-MM-DD HH:MM\nExample: 2022-01-01 00:00" INVALID_DATE_END = "End date can't be earlier or equal to start date." LOCATION_ADDED = "✅ Location added" DELETED_TRAVEL = "✅ Travel deleted" TRAVELS = "📃 Travels:\n👑 - owner" NO_TRAVELS = "No travels yet. You can create one with /create_travel command." CREATE_TRAVEL = ( "🧳 Let's create new travel!\nEnter /cancel to cancel creating." ) TRAVEL_UPDATED = "✅ Travel updated" EDIT_TRAVEL_DESCRIPTION = "Enter travel description (enter /skip if you want to set it to None):\nMaximum length: 100 characters" INPUT_TRAVEL_TITLE = ( "Enter travel title:\nMaximum length: 30 characters" ) INPUT_TRAVEL_CALLBACK = ( "All right, travel {key} is set to: {value}" ) INPUT_TRAVEL_DESCRIPTION = "Enter travel description (enter /skip if you want to skip this step):\nMaximum length: 100 characters" INPUT_TRAVEL_DESCRIPTION_SKIPPED = "✅ Sure. You can always fill it later." TRAVEL_CREATED = "Travel {title} successfully created! You can now view and edit it in the travels list (/travels command)." ACTION_CANCELED = "❌ Action canceled" TRAVEL_DETAIL = ( "📝 Travel detail\n\n" "\tID: {travel_id}\n" "\tTitle: {title}\n" "\tDescription: {description}\n" ) 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 = ( "Welcome to the ✈️ Travel Agent bot! Here is list of commands you can use:\n\n" "/start - Start the bot\n" "/help - Show this message\n" "/menu - Show the main menu\n" "/profile - View and edit your profile\n" "/create_travel - Create new travel\n" "/travels - View and edit your travels\n" "/cancel - Cancel the current action\n\n" "❓ If you have any questions/issues, feel free to contact us via @itq_travel_agent_support_bot on Telegram." ) 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" "\tDate joined: {date_joined} UTC\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" PROCCESSING = "⌛️ Processing..."