summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-mod-system
diff options
context:
space:
mode:
authorMartin Schiller <ms@dev.tdt.de>2019-07-01 06:53:20 +0200
committerMartin Schiller <ms@dev.tdt.de>2019-07-01 07:02:42 +0200
commit19289107dd7b945ed0ac48b6b5db69bc63ce6d1a (patch)
treee66eb30ce59d0e216d8ee443179e7f84c39e9442 /modules/luci-mod-system
parenta04e22e846d0269e63cf6c57cb3cfe4080a1c17d (diff)
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 <ms@dev.tdt.de>
Diffstat (limited to 'modules/luci-mod-system')
-rw-r--r--modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua6
1 files changed, 3 insertions, 3 deletions
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