From c390ee0c01bb90ab27d5b447f03f21300897b934 Mon Sep 17 00:00:00 2001 From: sepidezare <52865103+sepidezare@users.noreply.github.com> Date: Fri, 28 Apr 2023 23:26:34 +0330 Subject: [PATCH] Update tgbot.go --- web/service/tgbot.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)