diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2022-11-06 21:30:07 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2022-11-06 21:30:07 +0300 |
commit | 0cebc9b2a2b4f0c9720c2ed7ef5a3741e46e01ff (patch) | |
tree | 6ca88aa69ac6a70ef5fd937f946ab71c23bd3c67 | |
parent | 1546340f35356c09fd4ccc2d25437735855e703a (diff) |
inverter_bot: slightly update here and there
-rwxr-xr-x | src/inverter_bot.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/inverter_bot.py b/src/inverter_bot.py index 7247995..cd081b4 100755 --- a/src/inverter_bot.py +++ b/src/inverter_bot.py @@ -12,7 +12,6 @@ from typing import Optional, Tuple, Union from home.util import chunks from home.config import config from home.telegram import bot -from home.telegram._botlang import LangStrings from home.inverter import ( wrapper_instance as inverter, beautify_table, @@ -97,7 +96,7 @@ bot.lang.ru( # consumption consumption_msg="Выберите тип:", - consumption_total="Общее", + consumption_total="Домашние приборы", consumption_grid="Со столба", consumption_select_interval='Выберите период:', consumption_request_sent="⏳ Запрос отправлен...", @@ -202,8 +201,8 @@ bot.lang.en( # consumption consumption_msg="Select type:", - consumption_total="Total", - consumption_grid="Grid", + consumption_total="Home appliances", + consumption_grid="Consumed from grid", consumption_select_interval='Select period:', consumption_request_sent="⏳ Request sent...", |