Already sent message added
This commit is contained in:
parent
64e0d095ce
commit
fc0579f2f6
@ -46,6 +46,7 @@
|
|||||||
"application_status_not_send": "Анкета ще не була відправлена",
|
"application_status_not_send": "Анкета ще не була відправлена",
|
||||||
"contact_invalid": "Надісланий контакт не має розпочатої анкети.",
|
"contact_invalid": "Надісланий контакт не має розпочатої анкети.",
|
||||||
"contact_not_member": "Надісланий контакт не є користувачем Telegram.",
|
"contact_not_member": "Надісланий контакт не є користувачем Telegram.",
|
||||||
|
"already_sent": "Анкету вже надіслано, просто почекай. Тобі одразу повідомлять, яке рішення буде прийнято.",
|
||||||
"question_titles": {
|
"question_titles": {
|
||||||
"question1": "Ім'я/звертання:",
|
"question1": "Ім'я/звертання:",
|
||||||
"question2": "Вік:",
|
"question2": "Вік:",
|
||||||
|
6
main.py
6
main.py
@ -227,6 +227,7 @@ async def callback_query_refuse(app, clb):
|
|||||||
# ==============================================================================================================================
|
# ==============================================================================================================================
|
||||||
|
|
||||||
|
|
||||||
|
# Contact getting ==============================================================================================================
|
||||||
@app.on_message(~ filters.scheduled & filters.contact)
|
@app.on_message(~ filters.scheduled & filters.contact)
|
||||||
async def get_contact(app, msg):
|
async def get_contact(app, msg):
|
||||||
if (msg.from_user.id in configGet("admins")) or (msg.from_user.id == configGet("owner")):
|
if (msg.from_user.id in configGet("admins")) or (msg.from_user.id == configGet("owner")):
|
||||||
@ -253,6 +254,7 @@ async def get_contact(app, msg):
|
|||||||
await msg.reply_text(locale("contact_invalid", "message"))
|
await msg.reply_text(locale("contact_invalid", "message"))
|
||||||
else:
|
else:
|
||||||
await msg.reply_text(locale("contact_not_member", "message"))
|
await msg.reply_text(locale("contact_not_member", "message"))
|
||||||
|
# ==============================================================================================================================
|
||||||
|
|
||||||
|
|
||||||
# Any other input ==============================================================================================================
|
# Any other input ==============================================================================================================
|
||||||
@ -295,10 +297,10 @@ async def any_stage(app, msg):
|
|||||||
#configSet("sent", True, file=str(msg.from_user.id))
|
#configSet("sent", True, file=str(msg.from_user.id))
|
||||||
#configSet("application_date", int(time()), file=str(msg.from_user.id))
|
#configSet("application_date", int(time()), file=str(msg.from_user.id))
|
||||||
else:
|
else:
|
||||||
await msg.reply_text("You are already done, wait!")
|
await msg.reply_text(locale("already_sent", "message"))
|
||||||
else:
|
else:
|
||||||
if not configGet("approved", file=str(msg.from_user.id)) and not configGet("refused", file=str(msg.from_user.id)):
|
if not configGet("approved", file=str(msg.from_user.id)) and not configGet("refused", file=str(msg.from_user.id)):
|
||||||
await msg.reply_text("You are already done, wait!")
|
await msg.reply_text(locale("already_sent", "message"))
|
||||||
# ==============================================================================================================================
|
# ==============================================================================================================================
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user