From: Steven Barth Date: Fri, 6 Jun 2008 18:27:59 +0000 (+0000) Subject: * Removed section titles X-Git-Tag: 0.8.0~871 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=8644ff1eab93d067e316eee9f4b567e1bf07ccb3 * Removed section titles --- diff --git a/applications/luci-fw/luasrc/model/cbi/luci_fw/firewall.lua b/applications/luci-fw/luasrc/model/cbi/luci_fw/firewall.lua index c22c37000..6bd7f083d 100644 --- a/applications/luci-fw/luasrc/model/cbi/luci_fw/firewall.lua +++ b/applications/luci-fw/luasrc/model/cbi/luci_fw/firewall.lua @@ -2,7 +2,7 @@ m = Map("luci_fw", "Firewall", [[Mit Hilfe der Firewall können Zugriffe auf das Netzwerk erlaubt, verboten oder umgeleitet werden.]]) -s = m:section(TypedSection, "rule") +s = m:section(TypedSection, "rule", "") s.addremove = true s.anonymous = true diff --git a/applications/luci-fw/luasrc/model/cbi/luci_fw/portfw.lua b/applications/luci-fw/luasrc/model/cbi/luci_fw/portfw.lua index 79868af17..3923886dd 100644 --- a/applications/luci-fw/luasrc/model/cbi/luci_fw/portfw.lua +++ b/applications/luci-fw/luasrc/model/cbi/luci_fw/portfw.lua @@ -3,7 +3,7 @@ require("luci.sys") m = Map("luci_fw", "Portweiterleitung", [[Portweiterleitungen ermöglichen es interne Netzwerkdienste von einem anderen externen Netzwerk aus erreichbar zu machen.]]) -s = m:section(TypedSection, "portfw") +s = m:section(TypedSection, "portfw", "") s.template = "cbi/tblsection" s.addremove = true s.anonymous = true diff --git a/applications/luci-fw/luasrc/model/cbi/luci_fw/routing.lua b/applications/luci-fw/luasrc/model/cbi/luci_fw/routing.lua index 615e7c874..7ecc8224b 100644 --- a/applications/luci-fw/luasrc/model/cbi/luci_fw/routing.lua +++ b/applications/luci-fw/luasrc/model/cbi/luci_fw/routing.lua @@ -6,7 +6,7 @@ betrachtet, d.h. Pakete von aufgebauten oder zugehörigen Verbindungen werden au akzeptiert, auch wenn das Feld "beide Richtungen" nicht explizit gesetzt ist. NAT ermöglicht Adressübersetzung.]]) -s = m:section(TypedSection, "routing") +s = m:section(TypedSection, "routing", "") s.template = "cbi/tblsection" s.addremove = true s.anonymous = true diff --git a/modules/admin-core/luasrc/model/cbi/admin_network/dhcp.lua b/modules/admin-core/luasrc/model/cbi/admin_network/dhcp.lua index 88a8ea597..e02238e39 100644 --- a/modules/admin-core/luasrc/model/cbi/admin_network/dhcp.lua +++ b/modules/admin-core/luasrc/model/cbi/admin_network/dhcp.lua @@ -5,7 +5,7 @@ require("luci.sys") m = Map("dhcp", "DHCP", [[Mit Hilfe von DHCP können Netzteilnehmer automatisch ihre Netzwerkkonfiguration (IP-Adresse, Netzmaske, DNS-Server, DHCP, ...) beziehen.]]) -s = m:section(TypedSection, "dhcp") +s = m:section(TypedSection, "dhcp", "") s.addremove = true s.anonymous = true diff --git a/modules/admin-core/luasrc/model/cbi/admin_network/ifaces.lua b/modules/admin-core/luasrc/model/cbi/admin_network/ifaces.lua index 2dd190957..a0c80f0f9 100644 --- a/modules/admin-core/luasrc/model/cbi/admin_network/ifaces.lua +++ b/modules/admin-core/luasrc/model/cbi/admin_network/ifaces.lua @@ -4,7 +4,7 @@ des Netzwerkes konfiguriert werden. Es können mehrere Schnittstellen zu einer B indem diese durch Leerzeichen getrennt aufgezählt werden und ein entsprechender Haken im Feld Netzwerkbrücke gesetzt wird. Es können VLANs in der Notation SCHNITTSTELLE.VLANNR (z.B.: eth0.1) verwendet werden.]]) -s = m:section(TypedSection, "interface") +s = m:section(TypedSection, "interface", "") s.addremove = true s:exclude("loopback") s:depends("proto", "static") diff --git a/modules/admin-core/luasrc/model/cbi/admin_network/ptp.lua b/modules/admin-core/luasrc/model/cbi/admin_network/ptp.lua index 6a627f268..846bd75c2 100644 --- a/modules/admin-core/luasrc/model/cbi/admin_network/ptp.lua +++ b/modules/admin-core/luasrc/model/cbi/admin_network/ptp.lua @@ -3,7 +3,7 @@ m = Map("network", "Punkt-zu-Punkt Verbindungen", [[Punkt-zu-Punkt Verbindungen über PPPoE oder PPTP werden häufig dazu verwendet, um über DSL o.ä. Techniken eine Verbindung zum Internetgateway eines Internetzugangsanbieters aufzubauen.]]) -s = m:section(TypedSection, "interface") +s = m:section(TypedSection, "interface", "") s.addremove = true s:depends("proto", "pppoe") s:depends("proto", "pptp") diff --git a/modules/admin-core/luasrc/model/cbi/admin_network/routes.lua b/modules/admin-core/luasrc/model/cbi/admin_network/routes.lua index a7af2915d..7882e9afa 100644 --- a/modules/admin-core/luasrc/model/cbi/admin_network/routes.lua +++ b/modules/admin-core/luasrc/model/cbi/admin_network/routes.lua @@ -3,7 +3,7 @@ m = Map("network", "Statische Routen", [[Statische Routen geben an, über welche Schnittstelle und welches Gateway ein bestimmter Host oder ein bestimmtes Netzwerk erreicht werden kann.]]) -s = m:section(TypedSection, "route") +s = m:section(TypedSection, "route", "") s.addremove = true s.anonymous = true s.template = "cbi/tblsection" diff --git a/modules/admin-core/luasrc/model/cbi/admin_network/vlan.lua b/modules/admin-core/luasrc/model/cbi/admin_network/vlan.lua index 7b493643b..08371ea3f 100644 --- a/modules/admin-core/luasrc/model/cbi/admin_network/vlan.lua +++ b/modules/admin-core/luasrc/model/cbi/admin_network/vlan.lua @@ -5,7 +5,7 @@ kommunizieren können. VLANs werden auch häufig dazu genutzt, um Netzwerke vone So ist oftmals eine Schnittstelle als Uplink zu einem größerem Netz, wie dem Internet vorkonfiguriert und die anderen Schnittstellen bilden ein VLAN für das lokale Netzwerk.]]) -s = m:section(TypedSection, "switch", nil, [[Die zu einem VLAN gehörenden Schnittstellen +s = m:section(TypedSection, "switch", "", [[Die zu einem VLAN gehörenden Schnittstellen werden durch Leerzeichen getrennt. Die Schnittstelle mit der höchsten Nummer (meistens 5) bildet in der Regel die Verbindung zur internen Netzschnittstelle des Routers. Bei Geräten mit 5 Schnittstellen ist in der Regel die Schnittstelle mit der niedrigsten Nummer (0) die standardmäßige Uplinkschnittstelle des Routers.]]) diff --git a/modules/admin-core/luasrc/model/cbi/admin_services/dropbear.lua b/modules/admin-core/luasrc/model/cbi/admin_services/dropbear.lua index 6a1cab7a8..558cc9c7a 100644 --- a/modules/admin-core/luasrc/model/cbi/admin_services/dropbear.lua +++ b/modules/admin-core/luasrc/model/cbi/admin_services/dropbear.lua @@ -1,7 +1,7 @@ m = Map("dropbear", "Dropbear SSHd", translate("a_srv_dropbear1", [[Der SSH-Server ermöglicht Shell-Zugriff über das Netzwerk und bietet einen integrierten SCP-Dienst.]])) -s = m:section(TypedSection, "dropbear") +s = m:section(TypedSection, "dropbear", "") s.anonymous = true port = s:option(Value, "Port", translate("port", "Port")) diff --git a/modules/admin-core/luasrc/model/cbi/admin_services/httpd.lua b/modules/admin-core/luasrc/model/cbi/admin_services/httpd.lua index acd36fb0a..083893d48 100644 --- a/modules/admin-core/luasrc/model/cbi/admin_services/httpd.lua +++ b/modules/admin-core/luasrc/model/cbi/admin_services/httpd.lua @@ -1,6 +1,6 @@ m = Map("httpd", "Busybox HTTPd", translate("a_srv_http1", "Ein kleiner Webserver, der für die Bereitstellung von LuCI genutzt werden kann.")) -s = m:section(TypedSection, "httpd") +s = m:section(TypedSection, "httpd", "") s.anonymous = true port = s:option(Value, "port", translate("port", "Port")) diff --git a/modules/admin-core/luasrc/model/cbi/admin_system/hostname.lua b/modules/admin-core/luasrc/model/cbi/admin_system/hostname.lua index 976c2e8a6..b0b799824 100644 --- a/modules/admin-core/luasrc/model/cbi/admin_system/hostname.lua +++ b/modules/admin-core/luasrc/model/cbi/admin_system/hostname.lua @@ -1,7 +1,7 @@ m = Map("system", translate("hostname", "Hostname"), translate("a_s_hostname1", [[Definiert den Hostnamen des Routers. Der Hostname ist eine im Netzwerk eindeutige Kennung, die dieses Gerät identifiziert.]])) -s = m:section(TypedSection, "system") +s = m:section(TypedSection, "system", "") s.anonymous = true s:option(Value, "hostname", translate("hostname", "Hostname")) diff --git a/modules/admin-core/luasrc/model/cbi/admin_wifi/devices.lua b/modules/admin-core/luasrc/model/cbi/admin_wifi/devices.lua index eb126860d..1e5be667f 100644 --- a/modules/admin-core/luasrc/model/cbi/admin_wifi/devices.lua +++ b/modules/admin-core/luasrc/model/cbi/admin_wifi/devices.lua @@ -2,7 +2,7 @@ m = Map("wireless", translate("devices", "Geräte"), translate("a_w_devices1", "An dieser Stelle können eingebaute WLAN-Geräte konfiguriert werden.")) -s = m:section(TypedSection, "wifi-device") +s = m:section(TypedSection, "wifi-device", "") --s.addremove = true en = s:option(Flag, "disabled", translate("enable", "Aktivieren")) diff --git a/modules/admin-core/luasrc/model/cbi/admin_wifi/networks.lua b/modules/admin-core/luasrc/model/cbi/admin_wifi/networks.lua index 542e72a53..4220840a0 100644 --- a/modules/admin-core/luasrc/model/cbi/admin_wifi/networks.lua +++ b/modules/admin-core/luasrc/model/cbi/admin_wifi/networks.lua @@ -4,7 +4,7 @@ Es sollte beachtet werden, dass es hardware- / treiberspezifische Einschränkung So kann pro WLAN-Gerät in der Regel entweder 1 Ad-Hoc-Zugang ODER bis zu 3 Access-Point und 1 Client-Zugang gleichzeitig erstellt werden.]])) -s = m:section(TypedSection, "wifi-iface") +s = m:section(TypedSection, "wifi-iface", "") s.addremove = true s.anonymous = true diff --git a/modules/freifunk/luasrc/model/cbi/freifunk/contact.lua b/modules/freifunk/luasrc/model/cbi/freifunk/contact.lua index 66a1ec4bd..838f401a9 100644 --- a/modules/freifunk/luasrc/model/cbi/freifunk/contact.lua +++ b/modules/freifunk/luasrc/model/cbi/freifunk/contact.lua @@ -5,7 +5,7 @@ Diese Informationen sollten nach der Picopeering Vereinbarung mindestens deine E Damit dein Knoten durch Topographieprogramme erfasst werden kann, gib bitte deine Geokoordinaten oder zumindest deine Straße und Hausnummer unter Standort an.]])) -c = m:section(NamedSection, "contact", "public") +c = m:section(NamedSection, "contact", "public", "") c:option(Value, "nickname", translate("nickname", "Pseudonym")) c:option(Value, "name", translate("name", "Name"))