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 7967f72cf514e065f703ce3dd88718055ed168b8..65f9b3cef7bc577a235e70cdaf495e3c91397929 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 7bd1ec424852209a0311b95a51982b301bb73dee..a90cca31e4bd60f96c31188c7d8f16f3c4aa373e 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 986c7e36ff4c64d71a9c7e464b8136c73b9a7083..303757334bcbe2cbbb49fa4af1fff2539c61894e 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