diff --git a/olgram/commands/menu.py b/olgram/commands/menu.py
index d05ba75..e871bd7 100644
--- a/olgram/commands/menu.py
+++ b/olgram/commands/menu.py
@@ -157,7 +157,7 @@ async def send_bot_settings_menu(bot: Bot, call: types.CallbackQuery):
chat=empty))
)
keyboard.insert(
- types.InlineKeyboardButton(text="Дополнительная информация",
+ types.InlineKeyboardButton(text="Данные пользователя",
callback_data=menu_callback.new(level=3, bot_id=bot.id, operation="additional_info",
chat=empty))
)
@@ -171,7 +171,7 @@ async def send_bot_settings_menu(bot: Bot, call: types.CallbackQuery):
info_turn = "включена" if bot.enable_additional_info else "выключена"
text = dedent(f"""
Потоки сообщений: {thread_turn}
- Данные пользователя: {info_turn}
+ Данные пользователя: {info_turn}
""")
await edit_or_create(call, text, reply_markup=keyboard, parse_mode="HTML")