applications/luci-statistics: fix translations of cbi models and controller
[project/luci.git] / applications / luci-statistics / luasrc / model / cbi / luci_statistics / load.lua
index a58c3ec79a1ce62009a59d84ad2dcf952ebcb0c4..e59a4b8f7e8e37eff2513e786c260cbd02f9e06f 100644 (file)
@@ -13,13 +13,17 @@ $Id$
 
 ]]--
 
-m = Map("luci_statistics")
+m = Map("luci_statistics",
+       translate("Load Plugin Configuration"),
+       translate(
+               "The load plugin collects statistics about the general system load."
+       ))
 
 -- collectd_wireless config section
 s = m:section( NamedSection, "collectd_load", "luci_statistics" )
 
 -- collectd_wireless.enable
-enable = s:option( Flag, "enable" )
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
 enable.default = 0
 
 return m