From d0877101405edfafa00db3c92c50ba93897a848c Mon Sep 17 00:00:00 2001 From: hasezoey Date: Sun, 23 Jul 2023 20:37:50 +0200 Subject: [PATCH] Autowarmth: Change strings "set" / "unset" to "turn on" / "turn off" where appropriate (#10733) --- plugins/autowarmth.koplugin/main.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/autowarmth.koplugin/main.lua b/plugins/autowarmth.koplugin/main.lua index 0199f5a47..71c957286 100644 --- a/plugins/autowarmth.koplugin/main.lua +++ b/plugins/autowarmth.koplugin/main.lua @@ -995,7 +995,7 @@ function AutoWarmth:getWarmthMenu() else UIManager:show(ConfirmBox:new{ text = _("Night mode"), - ok_text = _("Set"), + ok_text = _("Turn on"), ok_callback = function() self.warmth[num] = 110 self.warmth[#self.warmth - num + 1] = 110 @@ -1003,7 +1003,7 @@ function AutoWarmth:getWarmthMenu() self:scheduleMidnightUpdate() if touchmenu_instance then self:updateItems(touchmenu_instance) end end, - cancel_text = _("Unset"), + cancel_text = _("Turn off"), cancel_callback = function() self.warmth[num] = 0 self.warmth[#self.warmth - num + 1] = 0