You've already forked Travel-Agent
feat: Added travel detail, added proccessing message when changing/setting user location, improvements in messages text
This commit is contained in:
+13
-6
@@ -2,7 +2,7 @@
|
||||
|
||||
MENU = "<b>Menu:</b>"
|
||||
|
||||
TRAVELS = "π <b>Travels:</b>"
|
||||
TRAVELS = "π <b>Travels:</b>\n<i>π - owner</i>"
|
||||
NO_TRAVELS = "No travels yet. You can create one with /create_travel command."
|
||||
CREATE_TRAVEL = (
|
||||
"π§³ Let's create new travel!\n<i>Enter /cancel to cancel creating.</i>"
|
||||
@@ -14,9 +14,14 @@ INPUT_TRAVEL_CALLBACK = (
|
||||
"All right, travel <b>{key}</b> is set to: <b>{value}</b>"
|
||||
)
|
||||
INPUT_TRAVEL_DESCRIPTION = "Enter travel description (enter /skip if you want to skip this step):\n<i>Maximum length: 100 characters</i>"
|
||||
INPUT_TRAVEL_DESCRIPTION_SKIPPED = "Sure. You can always fill it later."
|
||||
INPUT_TRAVEL_DESCRIPTION_SKIPPED = "β
Sure. You can always fill it later."
|
||||
TRAVEL_CREATED = "Travel <b>{title}</b> successfully created! You can now view and edit it in the travels list (/travels command)."
|
||||
ACTION_CANCELED = "β Action canceled"
|
||||
TRAVEL_DETAIL = (
|
||||
"π <b>Travel detail</b>\n\n"
|
||||
"\tTitle: <b>{title}</b>\n"
|
||||
"\tDescription: <b>{description}</b>\n"
|
||||
)
|
||||
|
||||
WELCOME_MESSAGE = "Hello, <b>{name}</b>! Welcome to the βοΈ Travel Agent bot! Let's start our journey by filling out some information about you."
|
||||
WELCOME_AGAIN_MESSAGE = "Hello, <b>{name}</b>! Welcome back to the βοΈ Travel Agent bot! If you get lost, you can always call the /help command for assistance."
|
||||
@@ -39,14 +44,14 @@ INPUT_USERNAME = "Enter your username (this will be used to interact with other
|
||||
INPUT_AGE = "Enter your age:\n<i>Range: 13-120</i>"
|
||||
INPUT_SEX = "Enter your sex:\n<i>Options: Male or Female</i>"
|
||||
INPUT_BIO = "Enter your bio (enter /skip if you want to skip this step):\n<i>Maximum length: 100 characters</i>"
|
||||
INPUT_BIO_SKIPPED = "Sure. You can always fill it later."
|
||||
INPUT_BIO_SKIPPED = "β
Sure. You can always fill it later."
|
||||
INPUT_LOCATION = "Enter your location in this format:\n<i>Format: country, city</i>\n<i>Example: Russia, Moscow</i>"
|
||||
INPUT_CALLBACK = "All right, your <b>{key}</b> is set to: <b>{value}</b>"
|
||||
VALIDATION_ERROR = "Invalid input. Please try again."
|
||||
INPUT_CALLBACK = "β
All right, your <b>{key}</b> is set to: <b>{value}</b>"
|
||||
VALIDATION_ERROR = "β Invalid input. Please try again."
|
||||
CANCEL_CHANGE = "<i>Enter /cancel to cancel change.</i>"
|
||||
|
||||
PROFILE = (
|
||||
"<b>Your profile:</b>\n\n"
|
||||
"<b>π€ Your profile:</b>\n\n"
|
||||
"\tUsername: <b>{username}</b>\n"
|
||||
"\tAge: <b>{age}</b>\n"
|
||||
"\tSex: <b>{sex}</b>\n"
|
||||
@@ -60,3 +65,5 @@ EDIT_USERNAME = "Enter your username:\n<i>Allowed characters: a-z, A-Z, 0-9, _</
|
||||
EDIT_BIO = "Enter your bio (enter /skip if you want to set it to None):\n<i>Maximum length: 100 characters</i>"
|
||||
PROFILE_UPDATED = "β
Profile updated"
|
||||
CHANGE_CANCELED = "β Change canceled"
|
||||
|
||||
PROCCESSING = "βοΈ Processing..."
|
||||
|
||||
Reference in New Issue
Block a user