Low number of files in queue reminder

This commit is contained in:
Profitroll 2022-10-05 21:36:59 +02:00
parent 46e3665749
commit 8ae50a4f97
3 changed files with 7 additions and 2 deletions

View File

@ -22,7 +22,8 @@
"document_too_large": "File you've sent is too large. Please submit files not bigger than {0} MB",
"mime_not_allowed": "File type not allowed. Please, consider using one of these: {0}",
"post_exception": "Could not send content due to `{exp}`\n\nTraceback:\n```{0}```",
"post_empty": "Could not send content: `Queue folder is empty or contains only unsupported or already sent files.`"
"post_empty": "Could not send content: `Queue folder is empty or contains only unsupported or already sent files.`",
"post_low": "Low amount of content: `There are only {0} files left in the queue.`"
},
"button": {
"sub_yes": "✅ Accept",

View File

@ -22,7 +22,8 @@
"document_too_large": "Надісланий файл завеликий. Будь ласка, надсилайте файли не більше {0} Мб",
"mime_not_allowed": "Тип файлу не дозволений. Розгляньте можливість використання одного з цих: {0}",
"post_exception": "Не вдалося надіслати контент через `{exp}`\n\nTraceback:\n```{0}```",
"post_empty": "Не вдалося надіслати контент: «Папка черги порожня або містить лише непідтримувані або вже надіслані файли»."
"post_empty": "Не вдалося надіслати контент: `Папка черги порожня або містить лише непідтримувані або вже надіслані файли`.",
"post_low": "Мала кількість контенту: `Залишилось всього {0} файлів в черзі.`"
},
"button": {
"sub_yes": "✅ Прийняти",

View File

@ -138,6 +138,9 @@ def send_content():
if len(list_queue) > 0:
candidate_file = choice(list_queue)
candidate = configGet("queue", "locations")+sep+candidate_file
if len(list_queue) <= 10:
if configGet("error", "reports"):
app.send_message(configGet("admin"), locale("post_low", "message", locale=configGet("locale"))) # type: ignore
else:
logWrite(locale("post_empty", "console", locale=configGet("locale_log")))
if configGet("error", "reports"):