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", ], [