From e05e1930d8514c852ca26283c1ad81efff608e41 Mon Sep 17 00:00:00 2001 From: "mamonov.ep" Date: Thu, 4 Dec 2025 20:52:32 +0300 Subject: [PATCH] feat(practice): render suggestions as Telegram spoilers () --- bot/handlers/practice.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot/handlers/practice.py b/bot/handlers/practice.py index 537a14f..b41d098 100644 --- a/bot/handlers/practice.py +++ b/bot/handlers/practice.py @@ -112,7 +112,7 @@ async def start_scenario(callback: CallbackQuery, state: FSMContext): ) for suggestion in conversation_start.get('suggestions', []): - text += f"• {suggestion}\n" + text += f"• {suggestion}\n" text += t(ui_lang, 'practice.write_or_stop') @@ -252,7 +252,7 @@ async def handle_conversation(message: Message, state: FSMContext): if suggestions: text += t(ui_lang2, 'practice.hints') + "\n" for suggestion in suggestions[:3]: - text += f"• {suggestion}\n" + text += f"• {suggestion}\n" # Сохраняем перевод под новым индексом translations = data.get('translations', {}) or {}