summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-statistics/luasrc/model/cbi/luci_statistics/interface.lua
diff options
context:
space:
mode:
Diffstat (limited to 'applications/luci-statistics/luasrc/model/cbi/luci_statistics/interface.lua')
-rw-r--r--applications/luci-statistics/luasrc/model/cbi/luci_statistics/interface.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-statistics/luasrc/model/cbi/luci_statistics/interface.lua b/applications/luci-statistics/luasrc/model/cbi/luci_statistics/interface.lua
index 8e34e72bed..dbb3e9dc06 100644
--- a/applications/luci-statistics/luasrc/model/cbi/luci_statistics/interface.lua
+++ b/applications/luci-statistics/luasrc/model/cbi/luci_statistics/interface.lua
@@ -31,7 +31,7 @@ enable = s:option( Flag, "enable", translate("Enable this plugin") )
enable.default = 0
-- collectd_interface.interfaces (Interface)
-interfaces = s:option( MultiValue, "Interfaces" )
+interfaces = s:option( MultiValue, "Interfaces", translate("Monitor interfaces") )
interfaces.widget = "select"
interfaces.size = 5
interfaces:depends( "enable", 1 )
@@ -40,7 +40,7 @@ for k, v in pairs(luci.sys.net.devices()) do
end
-- collectd_interface.ignoreselected (IgnoreSelected)
-ignoreselected = s:option( Flag, "IgnoreSelected" )
+ignoreselected = s:option( Flag, "IgnoreSelected", translate("Monitor all except specified") )
ignoreselected.default = 0
ignoreselected:depends( "enable", 1 )