From b3a7d32d549eb0b05ac8f642ea236e09cd7aaf2e Mon Sep 17 00:00:00 2001 From: zwim <36999612+zwim@users.noreply.github.com> Date: Thu, 5 Jan 2023 13:46:52 +0100 Subject: [PATCH] [AutoWarmth] Simplify translations (#9996) --- plugins/autowarmth.koplugin/main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/autowarmth.koplugin/main.lua b/plugins/autowarmth.koplugin/main.lua index 54ddb3096..3850980b7 100644 --- a/plugins/autowarmth.koplugin/main.lua +++ b/plugins/autowarmth.koplugin/main.lua @@ -1042,7 +1042,7 @@ function AutoWarmth:getWarmthMenu() text_func = function() if Device:hasNaturalLight() then return T(_("Control: %1%2%3"), self.control_warmth and _("warmth") or "", - self.control_warmth and self.control_nightmode and T(_(" %1 "), _("and")) or "", + self.control_warmth and self.control_nightmode and T(" %1 ", _("and")) or "", self.control_nightmode and _("night mode") or "") else return _("Control: night mode")