2021-09-18 15:30:56 +02:00
|
|
|
import re
|
|
|
|
|
|
|
|
# These are MarkdownV2 python-telegram-bot specific
|
2021-09-25 16:49:11 +02:00
|
|
|
opted_in = re.escape('You have opted-in for everyone-mentions.')
|
2021-09-18 15:30:56 +02:00
|
|
|
opted_in_failed = re.escape('You already opted-in for everyone-mentions.')
|
2021-09-25 16:49:11 +02:00
|
|
|
opted_off = re.escape('You have opted-off for everyone-mentions.')
|
2021-09-18 15:30:56 +02:00
|
|
|
opted_off_failed = re.escape('You need to opt-in first before processing this command.')
|
|
|
|
mention_failed = re.escape('There are no users to mention.')
|
2021-10-01 10:51:17 +02:00
|
|
|
no_groups = re.escape('There are no groups for this chat.')
|