From 10f9f1b1a72d627f7540dd97aeb868b506bc3fe3 Mon Sep 17 00:00:00 2001 From: GeneralFailer Date: Thu, 10 Mar 2016 18:26:57 +0300 Subject: [PATCH] "Wifi" -> "Wi-Fi" --- frontend/ui/networkmgr.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/ui/networkmgr.lua b/frontend/ui/networkmgr.lua index 8bed75ffe..a9b8c330d 100644 --- a/frontend/ui/networkmgr.lua +++ b/frontend/ui/networkmgr.lua @@ -63,7 +63,7 @@ end function NetworkMgr:promptWifiOn() UIManager:show(ConfirmBox:new{ - text = _("Do you want to turn on Wifi?"), + text = _("Do you want to turn on Wi-Fi?"), ok_callback = function() self:turnOnWifi() end, @@ -72,7 +72,7 @@ end function NetworkMgr:promptWifiOff() UIManager:show(ConfirmBox:new{ - text = _("Do you want to turn off Wifi?"), + text = _("Do you want to turn off Wi-Fi?"), ok_callback = function() self:turnOffWifi() end, @@ -97,7 +97,7 @@ end function NetworkMgr:getWifiMenuTable() return { - text = _("Wifi connection"), + text = _("Wi-Fi connection"), enabled_func = function() return Device:isKindle() or Device:isKobo() end, checked_func = function() return NetworkMgr:getWifiStatus() end, callback = function()