luci-0.8: merge r4715
authorJo-Philipp Wich <jow@openwrt.org>
Fri, 29 May 2009 22:48:57 +0000 (22:48 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Fri, 29 May 2009 22:48:57 +0000 (22:48 +0000)
i18n/english/luasrc/i18n/admin-core.en.lua
i18n/german/luasrc/i18n/admin-core.de.lua
modules/admin-full/luasrc/model/cbi/admin_network/ifaces.lua

index 7967f72..65f9b3c 100644 (file)
@@ -230,6 +230,8 @@ network_switch_desc = 'Ports belonging to a <abbr title="Virtual Local Area Netw
 a_n_ifaces1 = 'On this page you can configure the network interfaces. You can bridge several interfaces by ticking the &quot;bridge interfaces&quot; field and enter the names of several network interfaces separated by spaces. You can also use <abbr title="Virtual Local Area Network">VLAN</abbr> notation <samp>INTERFACE.VLANNR</samp> (<abbr title="for example">e.g.</abbr>: <samp>eth0.1</samp>).'
 a_n_i_bridge = 'Bridge interfaces'
 a_n_i_bridge1 = 'creates a bridge over specified interface(s)'
+a_n_i_stp = 'Enable <abbr title="Spanning Tree Protocol">STP</abbr>'
+a_n_i_stp1 = 'Enables the Spanning Tree Protocol on this bridge'
 dhcp_desc = 'With <abbr title="Dynamic Host Configuration Protocol">DHCP</abbr> network members can automatically receive their network settings (<abbr title="Internet Protocol">IP</abbr>-address, netmask, <abbr title="Domain Name System">DNS</abbr>-server, ...).'
 dhcp_dhcp_leasetime = 'Leasetime'
 dhcp_dhcp_dynamicdhcp = 'Dynamic <abbr title="Dynamic Host Configuration Protocol">DHCP</abbr>'
index 7bd1ec4..a90cca3 100644 (file)
@@ -14,6 +14,8 @@ a_i_ucicommit1 = 'Beim Anwenden der Konfiguration aus der Oberflächliche heraus
 a_i_ui = 'Benutzeroberfläche'
 a_n_i_bridge = 'Netzwerkbrücke'
 a_n_i_bridge1 = 'überbrückt angegebene Schnittstelle(n)'
+a_n_i_stp = '<abbr title="Spanning Tree Protocol">STP</abbr> aktivieren'
+a_n_i_stp1 = 'Aktiviert das Spanning Tree Protokoll auf dieser Netzwerkbrücke'
 a_n_ifaces1 = 'An dieser Stelle können die einzelnen Schnittstellen des Netzwerkes konfiguriert werden. Es können mehrere Schnittstellen zu einer Brücke zusammengefasst werden, 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.'
 a_n_ptp = 'Punkt-zu-Punkt Verbindungen'
 a_n_ptp1 = '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.'
index 986c7e3..3037573 100644 (file)
@@ -51,6 +51,11 @@ br = s:option(Flag, "type", translate("a_n_i_bridge"), translate("a_n_i_bridge1"
 br.enabled = "bridge"
 br.rmempty = true
 
+stp = s:option(Flag, "stp", translate("a_n_i_stp"),
+       translate("a_n_i_stp1", "Enables the Spanning Tree Protocol on this bridge"))
+stp:depends("type", "bridge")
+stp.rmempty = true
+
 ifname = s:option(Value, "ifname", translate("interface"))
 ifname.rmempty = true
 for i,d in ipairs(luci.sys.net.devices()) do