File size: 900 Bytes
16bfc87 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
broadcast_command = '/broadcast'
broadcast_no_access = "Sorry, you don't have access to this function."
broadcast_wrong_format = f'To send message to all your users,' \
f' type {broadcast_command} command with text separated by space.\n' \
f'For example:\n' \
f'{broadcast_command} Hello, my users! This <b>bold text</b> is for you, ' \
f'as well as this <i>italic text.</i>\n\n' \
f'Examples of using <code>HTML</code> style you can found <a href="https://core.telegram.org/bots/api#html-style">here</a>.'
confirm_broadcast = "Confirm β
"
decline_broadcast = "Decline β"
message_is_sent = "Message is sent β
"
declined_message_broadcasting = "Message broadcasting is declined β"
error_with_html = "Can't parse your text in <code>HTML</code> style. Reason: \n{reason}"
|