From cb6bd1135bc669db829758e96479f14c4a883a1f Mon Sep 17 00:00:00 2001 From: Vladless Date: Mon, 2 Dec 2024 04:20:32 +0300 Subject: [PATCH] sale size --- handlers/keys/keys.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/handlers/keys/keys.py b/handlers/keys/keys.py index 2fb994d2..c35bd921 100644 --- a/handlers/keys/keys.py +++ b/handlers/keys/keys.py @@ -298,19 +298,19 @@ async def process_callback_renew_key(callback_query: types.CallbackQuery, sessio ) builder.row( InlineKeyboardButton( - text=f'📅 3 месяца ({RENEWAL_PLANS["3"]["price"]} руб.)', + text=f'📅 3 месяца ({RENEWAL_PLANS["3"]["price"]} руб.) 5% скидка', callback_data=f"renew_plan|3|{client_id}", ) ) builder.row( InlineKeyboardButton( - text=f'📅 6 месяцев ({RENEWAL_PLANS["6"]["price"]} руб.)', + text=f'📅 6 месяцев ({RENEWAL_PLANS["6"]["price"]} руб.) 10% скидка', callback_data=f"renew_plan|6|{client_id}", ) ) builder.row( InlineKeyboardButton( - text=f'📅 12 месяцев ({RENEWAL_PLANS["12"]["price"]} руб.)', + text=f'📅 12 месяцев ({RENEWAL_PLANS["12"]["price"]} руб.) (20% 🔥)', callback_data=f"renew_plan|12|{client_id}", ) )