diff --git a/web/service/tgbot.go b/web/service/tgbot.go index 90bfe90f..4703c0ca 100644 --- a/web/service/tgbot.go +++ b/web/service/tgbot.go @@ -198,8 +198,8 @@ func (t *Tgbot) SendAnswer(chatId int64, msg string, isAdmin bool) { ) var numericKeyboardClient = tgbotapi.NewInlineKeyboardMarkup( tgbotapi.NewInlineKeyboardRow( - tgbotapi.NewInlineKeyboardButtonData("حجم", "client_traffic"), - tgbotapi.NewInlineKeyboardButtonData("دستور", "client_commands"), + tgbotapi.NewInlineKeyboardButtonData("Get Usage", "client_traffic"), + tgbotapi.NewInlineKeyboardButtonData("Commands", "client_commands"), ), ) msgConfig := tgbotapi.NewMessage(chatId, msg)