acb73101c0
- Consolidated and simplified code formatting by removing unnecessary line breaks and improving readability in various functions. - Updated the handling of backup file sending in backup.py for better clarity. - Streamlined error handling and logging messages in several handlers to enhance consistency. - Adjusted the Makefile to exclude specific files during Ruff checks and formatting. - Made minor adjustments to function signatures and parameter handling for improved clarity and consistency. This commit enhances code maintainability and readability without altering functionality.
13 lines
754 B
Python
13 lines
754 B
Python
PAY = "Пополнить"
|
|
PAY_2 = "Оплатить"
|
|
BACK = "⬅️ Назад"
|
|
CUSTOM_SUM = "💰 Ввести свою сумму"
|
|
PROFILE = "👤 Личный кабинет"
|
|
KEY_CREATION_PAYMENT_MESSAGE = (
|
|
"Вы выбрали пополнение на {amount} рублей для создания нового ключа. Перейдите по ссылке для оплаты:"
|
|
)
|
|
KEY_RENEWAL_PAYMENT_MESSAGE = (
|
|
"Вы выбрали пополнение на {amount} рублей для продления ключа. Перейдите по ссылке для оплаты:"
|
|
)
|
|
DEFAULT_PAYMENT_MESSAGE = "Вы выбрали пополнение на {amount} рублей. Перейдите по ссылке для оплаты:"
|