From 081cd0d4bb4625c75b356ab8474364d922cbc991 Mon Sep 17 00:00:00 2001 From: Evgeny Zinoviev Date: Wed, 31 May 2023 23:19:03 +0300 Subject: save --- src/pump_bot.py | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'src/pump_bot.py') diff --git a/src/pump_bot.py b/src/pump_bot.py index ea39351..5239cfb 100755 --- a/src/pump_bot.py +++ b/src/pump_bot.py @@ -37,11 +37,11 @@ bot.lang.ru( enable="Включить", enable_silently="Включить тихо", - enabled="Включен ✅", + enabled="Насос включен ✅", disable="Выключить", disable_silently="Выключить тихо", - disabled="Выключен ❌", + disabled="Насос выключен ❌", start_watering="Включить полив", stop_watering="Отключить полив", @@ -50,6 +50,8 @@ bot.lang.ru( watering_status="Статус полива", done="Готово 👌", + sent="Команда отправлена", + user_action_notification='Пользователь %s %s насос.', user_watering_notification='Пользователь %s %s полив.', user_action_on="включил", @@ -63,11 +65,11 @@ bot.lang.en( enable="Turn ON", enable_silently="Turn ON silently", - enabled="Turned ON ✅", + enabled="The pump is turned ON ✅", disable="Turn OFF", disable_silently="Turn OFF silently", - disabled="Turned OFF ❌", + disabled="The pump is turned OFF ❌", start_watering="Start watering", stop_watering="Stop watering", @@ -76,6 +78,8 @@ bot.lang.en( watering_status="Watering status", done="Done 👌", + sent="Request sent", + user_action_notification='User %s turned the pump %s.', user_watering_notification='User %s %s the watering.', user_action_on="ON", @@ -114,13 +118,13 @@ def off(ctx: bot.Context, silent=False) -> None: def watering_on(ctx: bot.Context) -> None: mqtt_relay_module.switchpower(mqtt, True, config.get('mqtt_water_relay.secret')) - ctx.reply(ctx.lang('done')) + ctx.reply(ctx.lang('sent')) # notify(ctx.user, UserAction.WATERING_ON) def watering_off(ctx: bot.Context) -> None: mqtt_relay_module.switchpower(mqtt, False, config.get('mqtt_water_relay.secret')) - ctx.reply(ctx.lang('done')) + ctx.reply(ctx.lang('sent')) # notify(ctx.user, UserAction.WATERING_OFF) -- cgit v1.2.3