Autowarmth: Change strings "set" / "unset" to "turn on" / "turn off" where appropriate (#10733)

reviewable/pr10728/r1
hasezoey 10 months ago committed by GitHub
parent 0d40d9c99d
commit d087710140
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

Loading…
Cancel
Save