onboarding: Change default reply message of welcome bot.

The reply given by welcome bot when it does not understand a message,
sent by the user is changed, so that the bot is more clear to the user.

Fixes part of #30049.
This commit is contained in:
codewithnick
2024-06-25 05:26:24 +05:30
committed by Tim Abbott
parent e41fda78d4
commit 4b79a77427
2 changed files with 3 additions and 3 deletions

View File

@@ -187,8 +187,8 @@ or browse the [Help center](/help/) to learn more!
""").format(bot_commands=bot_commands(no_help_command=True))
else:
return _("""
Im sorry, I did not understand your message. Please try
one of the following commands: {bot_commands}
You can chat with me as much as you like! To
get help, try one of the following messages: {bot_commands}
""").format(bot_commands=bot_commands())

View File

@@ -167,7 +167,7 @@ class TutorialTests(ZulipTestCase):
for content in messages:
self.send_personal_message(user, bot, content)
expected_response = (
"Im sorry, I did not understand your message. Please try one of the following commands: "
"You can chat with me as much as you like! To get help, try one of the following messages: "
"`apps`, `profile`, `theme`, `channels`, "
"`topics`, `message formatting`, `keyboard shortcuts`, `help`."
)