2021-10-11 17:20:39 +02:00
|
|
|
# markdownv2 python-telegram-bot specific
|
2021-10-06 19:44:03 +02:00
|
|
|
joined = '{} joined group `{}`'
|
|
|
|
not_joined = '{} is already in group `{}`'
|
|
|
|
left = '{} left group `{}`'
|
|
|
|
not_left = '{} did not join group `{}` before'
|
|
|
|
mention_failed = 'There are no users to mention'
|
|
|
|
no_groups = 'There are no groups for this chat'
|
2021-09-18 15:30:56 +02:00
|
|
|
|
2021-10-11 17:20:39 +02:00
|
|
|
|
|
|
|
# html python-telegram-bot specific
|
2021-10-06 19:44:03 +02:00
|
|
|
start_text = """
|
2021-10-11 17:20:39 +02:00
|
|
|
Hello!
|
|
|
|
@everyone_mention_bot here.
|
|
|
|
I am here to help you with multiple user mentions.
|
|
|
|
|
|
|
|
Using <code>Inline Mode</code> is recommended because <a href="https://core.telegram.org/bots/faq#what-messages-will-my-bot-get">policy of bots with privacy mode enabled</a> says that command trigger is sent (without mentioning the bot) only to the last mentioned bot. So if you do have multiple bots in current chat, I might not receive your command!
|
|
|
|
|
|
|
|
Available commands:
|
|
|
|
<b>Please note</b>
|
|
|
|
<code>{group-name}</code> is not required, <code>default</code> if not given.
|
2021-10-05 19:20:04 +02:00
|
|
|
|
2021-10-11 17:20:39 +02:00
|
|
|
<b>Join</b>
|
|
|
|
Joins (or creates if group did not exist before) group.
|
|
|
|
<pre>/join {group-name}</pre>
|
2021-10-05 19:20:04 +02:00
|
|
|
|
2021-10-11 17:20:39 +02:00
|
|
|
<b>Leave</b>
|
|
|
|
Leaves (or deletes if no other users are left) the group
|
|
|
|
<pre>/leave {group-name}</pre>
|
2021-10-05 19:20:04 +02:00
|
|
|
|
2021-10-11 17:20:39 +02:00
|
|
|
<b>Everyone</b>
|
|
|
|
Mentions everyone that joined the group.
|
|
|
|
<pre>/everyone {group-name}</pre>
|
2021-10-05 19:20:04 +02:00
|
|
|
|
2021-10-11 17:20:39 +02:00
|
|
|
<b>Groups</b>
|
|
|
|
Show all created groups in this chat.
|
|
|
|
<pre>/groups</pre>
|
2021-10-05 19:20:04 +02:00
|
|
|
|
2021-10-11 17:20:39 +02:00
|
|
|
<b>Start</b>
|
|
|
|
Show start & help text
|
|
|
|
<pre>/start</pre>
|
2021-10-05 19:20:04 +02:00
|
|
|
|
2021-10-11 17:20:39 +02:00
|
|
|
Reach out to <a href="https://t.me/miloszowi">Creator</a> in case of any issues/questions regarding my usage.
|
2021-10-08 15:25:47 +02:00
|
|
|
"""
|