luci-0.8: merge r4715
This commit is contained in:
parent
c629629c16
commit
1699850552
3 changed files with 9 additions and 0 deletions
|
@ -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 "bridge interfaces" 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>'
|
||||
|
|
|
@ -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.'
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue