From 19289107dd7b945ed0ac48b6b5db69bc63ce6d1a Mon Sep 17 00:00:00 2001 From: Martin Schiller Date: Mon, 1 Jul 2019 06:53:20 +0200 Subject: luci-mod-system: fix flash activity trigger name The former name "Flashmemory write access" is wrong. The triggers also indicate read/erase access to the flash memories. Signed-off-by: Martin Schiller --- modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/luci-mod-system/luasrc/model/cbi') diff --git a/modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua b/modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua index 7644cdd439..525ce71bf9 100644 --- a/modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua +++ b/modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua @@ -55,11 +55,11 @@ for t in triggers:gmatch("[%w-]+") do elseif t == "heartbeat" then trigger:value(t, translatef("Heartbeat interval (%s)", t)) elseif t == "nand-disk" then - trigger:value(t, translatef("Flashmemory write access (%s)", t)) + trigger:value(t, translatef("Flash memory activity (%s)", t)) elseif t == "mtd" then - trigger:value(t, translatef("Flashmemory write access (%s)", t)) + trigger:value(t, translatef("Flash memory activity (%s)", t)) elseif t:match("mmc[0-9]") then - trigger:value(t, translatef("Flashmemory write access (%s)", t)) + trigger:value(t, translatef("Flash memory activity (%s)", t)) elseif t:match("switch[0-9]") then trigger:value(t, translatef("Switchport activity (%s)", t)) elseif t:match("phy[0-9]rx") then -- cgit v1.2.3