diff --git a/program/extra.py b/program/extra.py index f17eda0..5509d55 100644 --- a/program/extra.py +++ b/program/extra.py @@ -89,7 +89,7 @@ async def broadcast_message_pin(c: Client, message: Message): except Exception: pass await message.reply_text( - f"āœ… Broadcast complete in {sent} Group.\nšŸ“Œ With the {pin} pins." + f"āœ… Broadcast complete in {sent} Group.\nšŸ“Œ Sent with {pin} chat pins." ) return if len(message.command) < 2: @@ -117,7 +117,7 @@ async def broadcast_message_pin(c: Client, message: Message): except Exception: pass await message.reply_text( - f"āœ… Broadcast complete in {sent} Group.\nšŸ“Œ With the {pin} pins." + f"āœ… Broadcast complete in {sent} Group.\nšŸ“Œ Sent with {pin} chat pins." ) @@ -127,7 +127,7 @@ async def bot_statistic(c: Client, message: Message): chat_id = message.chat.id user_id = message.from_user.id msg = await c.send_message( - chat_id, "šŸ”„ Calculate..." + chat_id, "ā– Collecting Stats..." ) served_chats = len(await get_served_chats()) served_users = len(await get_served_users()) @@ -177,6 +177,6 @@ async def active_calls(c: Client, message: Message): await message.reply_text("āŒ no active group calls") else: await message.reply_text( - f"āœļø **Active video chats list:**\n\n{text}", + f"āœļø **Active Group Call list:**\n\n{text}\n\nā– This is the list of all current active group call in my database.", disable_web_page_preview=True, )