This repository was archived by the owner on Feb 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathphrases.py
More file actions
85 lines (53 loc) · 4.84 KB
/
phrases.py
File metadata and controls
85 lines (53 loc) · 4.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
from decouple import config
default_taco_amount = config('DEFAULT_TACOS', default=25, cast=int)
taco_emoji = '\U0001F32E'
start_phrase = '<b>Hello, my name is TacoBot and my sole purpose is to help you spread appreciation, celebrate, and' \
' have a little fun.</b>\n\nSimply add me to your group and you’ll be giving tacos in no time! You can' \
' also send me /help to read about my abilities :^)'
help_phrase = '<b>This is what i can do now:</b>\n\n/tacotop - <code>shows top-5 Taco\'ers in current chat (only' \
' in groups)</code>\n\n/mytacos - <code>shows your taco-balance (only in groups)</code>\n\nKicking ' \
'me from group will erase all taco-data for chat. That\'s because i can\'t forgive such a' \
' betrayal !!'
new_group_phrase = '<b>Sup, chat!</b>\n\nThanks for adding me :3 You can find out more about my functions by' \
' contacting me in private.\nNow the person that added me ({}) needs to send /inittaco in order to' \
' allow me to work with this group.\n\n<code>P.S. Don\'t forget to give me admin rights, so that I' \
' will be able to access messages and count tacos for you</code>\U00002764'
data_deleted_phrase = '<b>I got kicked from {}, so data about user\'s tacos got deleted!</b>\n\nHuge thanks for' \
' having me in your chat - feel free to add me again later.'
chat_enabled_phrase = '<b>Thanks!</b>\n\nFrom this moment I\'m counting <i> all </i> tacos for <i> all </i> members' \
' in this chat. You can share tacos by replying to other user\'s messages with taco-emoji' \
' ({}) or by mentioning user(@username) in a message with taco.\n<b>Every user gets</b>' \
'<code> {} </code><b>tacos.</b>\n\n{}\n\n<code>P.S. Again, only if you gave me access to' \
' messages</code>\U00002764'.format(taco_emoji,
default_taco_amount,
help_phrase)
no_bots_allowed_phrase = '<b>Sorry, but bots can\'t receive your tacos :(</b>\n<code>I don\'t even think, that they' \
' can eat human-food yet \U0001F914\U0001F914\U0001F914</code>'
self_tacoing_phrase = '<b>Why would you want to send these delicious tacos to yourself?..</b>\n<code>You are a' \
' really weird person \U0001F610</code>'
balance_low_phrase = '<b>Whoops... You don\'t have enough tacos!</b>\n<code>You can probably start some crowdfunding' \
' page to get some tacos from your friends and other participants \U0001F643</code>'
balance_phrase = '{}<b> has</b> <code>{}</code> <b>tacos on their taco-balance.</b>\n<code>{}</code>' #TODO
balance_comment_low = 'Where did all your tacos go?!! \U0001F47F\U0001F47F\U0001F47F'
balance_comment_medium = 'I guess, you dont gift much of your tacos... and so do your neighbours \U0001F62A'
balance_comment_high = 'WoW, I\'m impressed! How did you earn so many tacos? Are you trading crypto or what?\U0001F640'
taco_transfer_phrase = '<a href="{}">{}</a> <b>gave</b> <code>{}</code> <b>tacos to</b> <a href="{}">{}</a><b>!</b>\n<code>{}</code>'
taco_transfer_comment_low = 'Why didn\'t you share more tacos tho?\U0001F634'
taco_transfer_comment_medium = 'They must be a good person! \U0001F63D'
taco_transfer_comment_high = 'Do you owe him lots of money or what? \U0001F639'
taco_top_phrase = '<b>Here are the top-{} taco-owners of this chat!</b>\n{}'
empty_top_phrase = '<b>Omg, there are no taco-lovers in this group!\U0001F47A\U0001F47A\U0001F47A</b>\n<code>Go ahead' \
' and reply to someone\'s message with {} ASAP!!!!</code>'.format(taco_emoji)
only_one_receiver_phrase = '<b>Sorry, but there can be only one taco-receiver.</b>\n<code>Why not to split ' \
'this into two separate taco-transactions? \U0001F914</code>'
user_not_present_phrase = '<b>Am I a joke to you?</b>\n<code>This person is not a member of this chat (if this is a' \
' real person in first place)!</code>\U0001F927'
delete_message_fail_phrase = 'Only initiator or admins can delete this message.'
admins_only_phrase = '<b>Sorry, but only admins can use this command :(</b>'
silenced_mode_on_phrase = '<b>Silenced mode has been turned ON.</b>'
silenced_mode_off_phrase = '<b>Silenced mode has been turned OFF.</b>'
autohide_on_phrase = '<b>AutoHide mode has been turned ON.</b>'
autohide_off_phrase = '<b>AutoHide mode has been turned OFF.</b>'
autohide_delay_set_phrase = '<b>AutoHide delay has been set to {} minutes.</b>'
autohide_delay_wrong_value_phrase = '<b>I can only accept values between 1 and 120 minutes as AutoHide delay.</b>\n' \
'Please, correct your query and try again.'