File size: 506 Bytes
eefa5fd
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
from pyrogram import *
from pyrogram.types import *

@Client.on_message(filters.command("setlang"))
async def arzlanguage_menu(client, message):
    buttons = InlineKeyboardMarkup([
        [InlineKeyboardButton("🇺🇸 English", callback_data="arzlang_en")],
        [InlineKeyboardButton("🇪🇸 Español", callback_data="arzlang_es")],
        [InlineKeyboardButton("🇫🇷 Français", callback_data="arzlang_fr")]
    ])
    
    await message.reply("Select your language:", reply_markup=buttons)