diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2020-01-23 21:11:41 +0200 |
---|---|---|
committer | Hannu Nyman <hannu.nyman@iki.fi> | 2020-01-23 21:11:41 +0200 |
commit | 2a1a9874f5747f7dcb3b117da87dccce6ca2ff49 (patch) | |
tree | 44b3431733c5441d60f6e19e1650d56c0e0d1948 /modules/luci-mod-system/luasrc | |
parent | 7d5884e2b61ccb8ee1a64be348a3f283c2e33d9f (diff) |
luci-mod-system: remove abbreviation from LED config menu item
Remove the abbreviation coding from the menu item, as it does nor work
in menu and seems to prevent translation of the menu item.
(This was the only menu item in LuCI that had abbr logic.)
Reference to #3553
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Diffstat (limited to 'modules/luci-mod-system/luasrc')
-rw-r--r-- | modules/luci-mod-system/luasrc/controller/admin/system.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-mod-system/luasrc/controller/admin/system.lua b/modules/luci-mod-system/luasrc/controller/admin/system.lua index 1e0bebb4f..3563349f2 100644 --- a/modules/luci-mod-system/luasrc/controller/admin/system.lua +++ b/modules/luci-mod-system/luasrc/controller/admin/system.lua @@ -22,7 +22,7 @@ function index() entry({"admin", "system", "mounts"}, view("system/mounts"), _("Mount Points"), 50) .file_depends = { "/sbin/block" } - entry({"admin", "system", "leds"}, view("system/leds"), _("<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"), 60) + entry({"admin", "system", "leds"}, view("system/leds"), _("LED Configuration"), 60) .file_depends = { "/sys/class/leds" } entry({"admin", "system", "flash"}, view("system/flash"), _("Backup / Flash Firmware"), 70) |