diff options
author | Florian Eckert <fe@dev.tdt.de> | 2019-07-01 07:56:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-01 07:56:46 +0200 |
commit | 9a979e6db5de1c268dfd35099e58187439919df9 (patch) | |
tree | e66eb30ce59d0e216d8ee443179e7f84c39e9442 /modules/luci-mod-system/luasrc | |
parent | a04e22e846d0269e63cf6c57cb3cfe4080a1c17d (diff) | |
parent | 19289107dd7b945ed0ac48b6b5db69bc63ce6d1a (diff) |
Merge pull request #2808 from TDT-AG/pr/20190701-luci-mod-system-fix-flash-activity-string
luci-mod-system: fix flash activity trigger name
Diffstat (limited to 'modules/luci-mod-system/luasrc')
-rw-r--r-- | modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua | 6 |
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 |