From 1b3c7d47f66adff9beace91c363527b642d89afc Mon Sep 17 00:00:00 2001 From: mercury Date: Fri, 21 Jul 2023 09:56:38 +0400 Subject: [PATCH] location of the indicators --- app/bot.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/bot.php b/app/bot.php index 2699767..975502a 100644 --- a/app/bot.php +++ b/app/bot.php @@ -1785,11 +1785,11 @@ DNS-over-HTTPS with IP: $data = [ [ [ - 'text' => "{$this->i18n('torrent')} " . $this->i18n(!$bt ? 'on' : 'off'), + 'text' => $this->i18n(!$bt ? 'on' : 'off') . " {$this->i18n('torrent')} ", 'callback_data' => "/switchTorrent $page", ], [ - 'text' => "{$this->i18n('exchange')} " . $this->i18n(!$ex ? 'on' : 'off'), + 'text' => $this->i18n(!$ex ? 'on' : 'off') . " {$this->i18n('exchange')} ", 'callback_data' => "/switchExchange $page", ], [