luci-mod-system: add "KiB" to translatable strings
[project/luci.git] / modules / luci-mod-system / luasrc / model / cbi / admin_system / system.lua
index c26fd475a4e05afe03eb7c8d5f8fcb01f7c64bf7..33ec027e0d447a3a1c4fbc0f74413bc14994c04b 100644 (file)
@@ -22,6 +22,7 @@ s.addremove = false
 s:tab("general",  translate("General Settings"))
 s:tab("logging",  translate("Logging"))
 s:tab("language", translate("Language and Style"))
+s:tab("advanced", translate("Advanced"))
 if has_zram then s:tab("zram", translate("ZRam Settings")) end
 
 --
@@ -66,7 +67,7 @@ end
 -- Logging
 --
 
-o = s:taboption("logging", Value, "log_size", translate("System log buffer size"), "kiB")
+o = s:taboption("logging", Value, "log_size", translate("System log buffer size"), translate("KiB"))
 o.optional    = true
 o.placeholder = 16
 o.datatype    = "uinteger"
@@ -169,6 +170,28 @@ function o.write(self, section, value)
 end
 
 
+--
+-- Advanced
+--
+
+o = s:taboption("advanced", Value, "_pollinterval",
+       translate("Polling interval"),
+       translate("Polling interval for status queries in seconds"))
+o.datatype = "range(3, 20)"
+o.default = 5
+o:value("3")
+o:value("5")
+o:value("10")
+
+function o.cfgvalue(...)
+       return m.uci:get("luci", "main", "pollinterval")
+end
+
+function o.write(self, section, value)
+       m.uci:set("luci", "main", "pollinterval", value)
+end
+
+
 --
 -- NTP
 --