a_i_i_admin1 = [[This is the administration area of <abbr title="Lua Configuration Interface">LuCI</abbr>.]]
a_i_i_admin2 = [[<abbr title="Lua Configuration Interface">LuCI</abbr> is a free, flexible, and user friendly graphical interface for configuring OpenWRT Kamikaze.]]
a_i_i_admin3 = [[On the following pages you can adjust all important settings of your router.]]
-a_i_i_admin4 = [[Notice: In <abbr title="Lua Configuration Interface">LuCI</abbr> changes have to be confirmed by clicking Changes - Apply before being applied.]]
+a_i_i_admin4 = [[Notice: In <abbr title="Lua Configuration Interface">LuCI</abbr> changes have to be confirmed by clicking Changes - Save & Apply before being applied.]]
a_i_i_admin5 = [[As we are always want to improve this interface we are looking forward to your feedback and suggestions.]]
a_i_i_admin6 = [[And now have fun with your router!]]
a_i_i_team = [[The <abbr title="Lua Configuration Interface">LuCI</abbr> Team]]
a_i_i_admin1 = [[Dies ist der Administrationsbereich von LuCI.]]
a_i_i_admin2 = [[LuCI ist eine freie, flexible und benutzerfreundliche grafische Oberfläche zur Konfiguration von OpenWRT Kamikaze.]]
a_i_i_admin3 = [[Auf den folgenden Seiten können alle wichtigen Einstellungen des Routers vorgenommen werden.]]
-a_i_i_admin4 = [[Hinweis: In LuCI werden getätigte Änderungen erst nach einem Klick auf Änderungen - Anwenden gespeichert.]]
+a_i_i_admin4 = [[Hinweis: In LuCI werden getätigte Änderungen erst nach einem Klick auf Änderungen - Speichern & Anwenden angewandt.]]
a_i_i_admin5 = [[Wir sind natürlich stets darum bemüht, diese Oberfläche
noch besser und intuitiver zu Gestalten und freuen uns über jegliche Art von Feedback oder Verbesserungsvorschlägen.]]
a_i_i_admin6 = [[Und nun wünschen wir viel Spaß mit dem Router!]]
protocol = s:option(DummyValue, "_mode", translate("protocol"))
function protocol.cfgvalue(self, section)
- return "802." .. wireless[self.map:get(section, "device")].mode
+ local mode = wireless[self.map:get(section, "device")].mode
+ return mode and "802." .. mode
end
mode = s:option(DummyValue, "mode", translate("mode"))
$Id$
]]--
-require("luci.sys")
-require("luci.tools.webadmin")
-
-w = Template("mini/index")
-
-f = SimpleForm("main", translate("system"))
-f.reset = false
-f.submit = false
-
-local system, model, memtotal, memcached, membuffers, memfree = luci.sys.sysinfo()
-local uptime = luci.sys.uptime()
-f:field(DummyValue, "_system", translate("system")).value = system
-f:field(DummyValue, "_cpu", translate("m_i_processor")).value = model
-
-local load1, load5, load15 = luci.sys.loadavg()
-f:field(DummyValue, "_la", translate("load")).value =
- string.format("%.2f, %.2f, %.2f", load1, load5, load15)
-
-f:field(DummyValue, "_memtotal", translate("m_i_memory")).value =
- string.format("%.2f MB (%.0f%% %s, %.0f%% %s, %.0f%% %s)",
- tonumber(memtotal) / 1024,
- 100 * memcached / memtotal,
- translate("mem_cached") or "",
- 100 * membuffers / memtotal,
- translate("mem_buffered") or "",
- 100 * memfree / memtotal,
- translate("mem_free") or "")
-
-f:field(DummyValue, "_systime", translate("m_i_systemtime")).value =
- os.date("%c")
-
-f:field(DummyValue, "_uptime", translate("m_i_uptime")).value =
- luci.tools.webadmin.date_format(tonumber(uptime))
-
-return w, f
\ No newline at end of file
+return Template("mini/index")
$Id$
]]--
+require("luci.tools.webadmin")
+require("luci.sys")
+
m0 = Map("network", translate("network"))
m0.stateful = true
local netstat = luci.sys.net.deviceinfo()
$Id$
]]--
require("luci.http.protocol.date")
+require("luci.sys")
+require("luci.tools.webadmin")
+
m = Map("system", translate("system"), translate("a_s_desc"))
s = m:section(TypedSection, "system", "")
s.anonymous = true
+
+
+local system, model, memtotal, memcached, membuffers, memfree = luci.sys.sysinfo()
+local uptime = luci.sys.uptime()
+
+s:option(DummyValue, "_system", translate("system")).value = system
+s:option(DummyValue, "_cpu", translate("m_i_processor")).value = model
+
+local load1, load5, load15 = luci.sys.loadavg()
+s:option(DummyValue, "_la", translate("load")).value =
+ string.format("%.2f, %.2f, %.2f", load1, load5, load15)
+
+s:option(DummyValue, "_memtotal", translate("m_i_memory")).value =
+ string.format("%.2f MB (%.0f%% %s, %.0f%% %s, %.0f%% %s)",
+ tonumber(memtotal) / 1024,
+ 100 * memcached / memtotal,
+ translate("mem_cached") or "",
+ 100 * membuffers / memtotal,
+ translate("mem_buffered") or "",
+ 100 * memfree / memtotal,
+ translate("mem_free") or "")
+
+s:option(DummyValue, "_systime", translate("m_i_systemtime")).value =
+ os.date("%c")
+
+s:option(DummyValue, "_uptime", translate("m_i_uptime")).value =
+ luci.tools.webadmin.date_format(tonumber(uptime))
+
+
+
+
+
s:option(Value, "hostname", translate("hostname"))
tz = s:option(ListValue, "timezone", translate("timezone"))
protocol = s:option(DummyValue, "_mode", translate("protocol"))
function protocol.cfgvalue(self, section)
- return "802." .. wireless[self.map:get(section, "device")].mode
+ local mode = wireless[self.map:get(section, "device")].mode
+ return mode and "802." .. mode
end
mode = s:option(DummyValue, "mode", translate("mode"))
<p><%:a_i_i_admin1%></p>
<p><%:a_i_i_admin2%><br />
<%:a_i_i_admin3%></p>
+<p><%:a_i_i_admin4%></p>
+<p><%:a_i_i_admin5%></p>
<p><%:a_i_i_admin6%></p>
-<p><em><strong><a href="<%=controller%>/about"><%:a_i_i_team%></a></strong></em></p>
-<br />
\ No newline at end of file
+<p><em><strong><a href="<%=controller%>/about"><%:a_i_i_team%></a></strong></em></p>
\ No newline at end of file