-
Notifications
You must be signed in to change notification settings - Fork 1
/
speaking.py
244 lines (199 loc) · 8.93 KB
/
speaking.py
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
tg_languages_dict = {
'en': 'eng',
'ru': 'rus'
}
languages_dict = {
'eng': 'english',
'rus': 'russian'
}
speaking_dict = {
'greeting_message': {
'eng': '👋\n'
'\n'
'Welcome to the TON Foundation Support\.\n'
'\n'
'We have a small team, and there are a lot of requests, so we cannot respond quickly or sometimes respond at all\.\n'
'\n'
'Please consider supporting us by sending some Toncoins\. You can send a check in this chat using [@CryptoBot](http://t.me/CryptoBot?start=r-2951) or @wallet, or ask for a Toncoin\-wallet address for donation\.\n'
'\n'
'To contact us just write \(edit\) your messages here as in an ordinary chat\.\n'
'\n'
'You can use English and Russian languages\.\n',
# 'rus': '👋\n'
# '\n'
# 'Приветствуем вас в поддержке TON Foundation.\n'
# '\n'
# 'У нас маленькая команда, а обращений много, поэтому мы не всегда можем ответить быстро или вовсе ответить. Пожалуйста постарайтесь сохранить наше время решив свою проблему самостоятельно.\n'
# '\n'
# 'Пожалуйста рассмотрите возможность поддержать нас отправив немного тонкойнов. Вы можете отправить в этом чате чек используя @CryptoBot или @wallet, или попросить адрес Toncoin-кошелька для пожертвования.\n'
# '\n'
# 'Чтобы изменить язык общения введите /lang.\n'
# '\n'
# 'Чтобы связаться с нами просто напишите свои сообщения.\n'
},
'lang_command': {
'eng': 'your current language: english\n'
'\n'
'change your language:',
# 'rus': 'ваш текущий язык: русский\n'
# '\n'
# 'поменять язык:'
},
'language_was_changed': {
'eng': '✅ language was changed',
# 'rus': '✅ язык был изменен'
},
'you_enter_the_same_language': {
'eng': 'ℹ you enter the same language',
# 'rus': 'ℹ вы ввели тот же язык'
},
'you_sent_unsupported_message': {
'eng': 'ℹ you sent unsupported message, message will not be delivered',
# 'rus': 'ℹ вы прислали не поддерживаемое сообщение, сообщение не будет доставлено'
},
'bad_entered_command': {
'eng': 'ℹ bad entered command',
# 'rus': 'ℹ неверно введенная команда'
},
'you_have_taken_this_user': {
'eng': '✅ you have taken this user',
# 'rus': '✅ вы взяли этого юзера'
},
'this_user_is_already_taken_by_you': {
'eng': 'ℹ this user is already taken by you',
# 'rus': 'ℹ вы уже взяли этого юзера'
},
'this_user_is_already_taken': {
'eng': 'ℹ this user is already taken',
# 'rus': 'ℹ этот юзер уже взят'
},
'this_user_is_not_open': {
'eng': 'ℹ this user is not open',
# 'rus': 'ℹ этот юзер не открыт'
},
'you_have_dropped_this_user': {
'eng': '✅ you have dropped this user',
# 'rus': '✅ вы сбросили этого юзера'
},
'this_user_is_not_taken_by_you': {
'eng': 'ℹ this user is not taken by you',
# 'rus': 'ℹ этот юзер не взят вами'
},
'user_have_been_closed': {
'eng': '✅ user have been closed',
# 'rus': '✅ юзер был закрыт'
},
'user_have_been_opened': {
'eng': '✅ user have been opened',
# 'rus': '✅ юзер был открыт'
},
'user_already_open': {
'eng': 'ℹ user already is open',
# 'rus': 'ℹ юзер уже открыт'
},
'user_have_been_muted_forever': {
'eng': '✅ user have been muted forever',
# 'rus': '✅ юзер был замучен навсегда'
},
'user_have_been_muted_until': {
'eng': '✅ user have been muted until ',
# 'rus': '✅ юзер был замучен до '
},
'user_already_muted_forever': {
'eng': 'ℹ user is already muted forever',
# 'rus': 'ℹ юзер уже замучен навсегда'
},
'user_already_muted_until': {
'eng': 'ℹ user is already muted until ',
# 'rus': 'ℹ юзер уже замучен до '
},
'mute_value_must_be_in_range': {
'eng': 'ℹ mute value must be in 1..365 range',
# 'rus': 'ℹ значение мута должно быть в диапазоне 1..365'
},
'user_have_been_unmuted': {
'eng': '✅ user have been unmuted',
# 'rus': '✅ юзер был размучен'
},
'user_not_muted': {
'eng': 'ℹ user in not muted',
# 'rus': 'ℹ юзер не замучен'
},
'message_deleted': {
'eng': '✅ message deleted',
# 'rus': '✅ сообщение удалено'
},
'message_not_deleted_because': {
'eng': 'ℹ message not deleted because ',
# 'rus': 'ℹ сообщение не удалено потому что '
},
'message_not_deleted_because_not_found_in_bot_db': {
'eng': 'ℹ message not deleted because not found in bot db',
# 'rus': 'ℹ сообщение не удалено потому что не найдено в базе данных бота'
},
'use_reply_with_del_command': {
'eng': 'ℹ use reply with del command',
# 'rus': 'ℹ используйте reply с этой командой'
},
'flood_control_caution': {
'eng': '❗ Flood-control. You send messages too often. Please do not send messages so often. If you continue you will be muted.',
# 'rus': '❗ Флуд-контроль. Вы шлете сообщения слишком часто. Пожалуйста не шлите сообщения так часто. Если вы продолжите вы будете замучены.'
},
'flood_control_mute': {
'eng': '🚫 Flood-control. You are muted.',
# 'rus': '🚫 Флуд-контроль. Вы замучены.'
},
'channel_post_is_inactive': {
'eng': '❌ this channel post is inactive',
# 'rus': '❌ этот пост не активный'
},
'dont_use_reply_in_comments': {
'eng': '🙅 don\'t use reply in comments',
# 'rus': '🙅 не используйте reply в комментариях'
},
'dont_send_messages_outside_comments': {
'eng': 'ℹ don\'t send messages outside comments',
# 'rus': 'ℹ не отправляйте сообщения вне комментариев'
},
'I_dont_know_this_command': {
'eng': 'ℹ I don\'t know this command',
# 'rus': 'ℹ Я не знаю такой комманды'
},
'bot_was_blocked_by_the_user': {
'eng': '🚫 bot was blocked by the user',
# 'rus': '🚫 бот был заблокирован юзером'
},
'mistake': {
'eng': '🛑 Some mistake. Your message is not handled correctly.',
# 'rus': '🛑 Какая-то ошибка. Ваше сообщение не обработано должным образом.'
},
#
# '': {
# 'eng': '',
# 'rus': ''
# },
#
}
################################################################
list_of_languages = '\n'
for key in languages_dict:
list_of_languages += '{}: /lang_{}\n'.format(languages_dict[key], key)
for i in speaking_dict['lang_command']:
speaking_dict['lang_command'][i] = speaking_dict['lang_command'][i] + list_of_languages
################################################################
# checks
for key_of_speaking_map in speaking_dict:
if key_of_speaking_map[0].isspace() or key_of_speaking_map[-1].isspace():
report = f'check fail\n' \
f'\n' \
f'key_of_speaking_map: "{key_of_speaking_map}"\n'
raise Exception(report)
for key_of_speaking_map in speaking_dict:
dict_of_phrase = speaking_dict[key_of_speaking_map]
for lang in dict_of_phrase:
if lang not in languages_dict:
report = f'check fail\n' \
f'\n' \
f'key_of_speaking_map: "{key_of_speaking_map}"\n' \
f'lang: "{lang}"\n'
raise Exception(report)