X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fluci.git;a=blobdiff_plain;f=modules%2Fadmin-full%2Fluasrc%2Fmodel%2Fcbi%2Fadmin_network%2Fvlan.lua;h=f746ce0769ae251b4890307fa3ed3208ddd4ccb0;hp=8cae7f94b81eff2f19a93523a8aa9dc253e88580;hb=7c765875884d6866c53b63757731b079bace2e9b;hpb=97ff4a156ff1aa6a4d2ab65ab13d12b4eb2651e2 diff --git a/modules/admin-full/luasrc/model/cbi/admin_network/vlan.lua b/modules/admin-full/luasrc/model/cbi/admin_network/vlan.lua index 8cae7f94b..f746ce076 100644 --- a/modules/admin-full/luasrc/model/cbi/admin_network/vlan.lua +++ b/modules/admin-full/luasrc/model/cbi/admin_network/vlan.lua @@ -11,12 +11,12 @@ You may obtain a copy of the License at $Id$ ]]-- -m = Map("network", translate("a_n_switch"), translate("a_n_switch1")) +m = Map("network", translate("Switch"), translate("The network ports on your router can be combined to several VLANs in which computers can communicate directly with each other. VLANs are often used to separate different network segments. Often there is by default one Uplink port for a connection to the next greater network like the internet and other ports for a local network.")) s = m:section(TypedSection, "switch", "") for i = 0, 15 do - s:option(Value, "vlan"..i, "vlan"..i).optional = true + s:option(Value, "vlan"..i, "ethX."..i).optional = true end return m \ No newline at end of file