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.
|
|
|
|
|
2021-10-26 17:52:51 +02:00
|
|
|
<b>Description</b>:
|
|
|
|
I <b>do not</b> have access to your messages!
|
|
|
|
I am here to help you with multiple user mentions.
|
2021-10-11 17:20:39 +02:00
|
|
|
|
2021-10-26 17:52:51 +02:00
|
|
|
<b>Usage</b>:
|
|
|
|
Users that joined the group by <code>/join</code> command, can be mentioned after calling <code>/everyone</code> command.
|
2021-10-05 19:20:04 +02:00
|
|
|
|
2021-10-26 17:52:51 +02:00
|
|
|
<b>Commands</b>:
|
2021-10-11 17:20:39 +02:00
|
|
|
<pre>/join {group-name}</pre>
|
2021-10-26 17:52:51 +02:00
|
|
|
Joins (or creates if group did not exist before) group.
|
2021-10-05 19:20:04 +02:00
|
|
|
|
2021-10-11 17:20:39 +02:00
|
|
|
<pre>/leave {group-name}</pre>
|
2021-10-26 17:52:51 +02:00
|
|
|
Leaves (or deletes if no other users are left) the group
|
2021-10-05 19:20:04 +02:00
|
|
|
|
2021-10-11 17:20:39 +02:00
|
|
|
<pre>/everyone {group-name}</pre>
|
2021-10-26 17:52:51 +02:00
|
|
|
Mentions everyone that joined the group.
|
2021-10-05 19:20:04 +02:00
|
|
|
|
2021-10-11 17:20:39 +02:00
|
|
|
<pre>/groups</pre>
|
2021-10-26 17:52:51 +02:00
|
|
|
Show all created groups in this chat.
|
2021-10-05 19:20:04 +02:00
|
|
|
|
2021-10-11 17:20:39 +02:00
|
|
|
<pre>/start</pre>
|
2021-10-26 17:52:51 +02:00
|
|
|
Show start & help text
|
|
|
|
|
|
|
|
<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-26 17:52:51 +02:00
|
|
|
If your chat does have multiple bots <b>I might not receive your command</b> according to <a href="https://core.telegram.org/bots/faq#what-messages-will-my-bot-get">policy of bots with privacy mode enabled</a> - use <code>Inline Mode</code> to avoid this.
|
2021-10-08 15:25:47 +02:00
|
|
|
"""
|