10 lines
480 B
Python
Raw Normal View History

2021-09-18 15:30:56 +02:00
import re
# These are MarkdownV2 python-telegram-bot specific
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.')
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.')