summaryrefslogtreecommitdiffhomepage
path: root/modules/admin-full/luasrc/model/cbi
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2012-06-26 21:49:21 +0000
committerJo-Philipp Wich <jow@openwrt.org>2012-06-26 21:49:21 +0000
commitd52859b37ea6b2ab92de9cf5cfa3882b5ee3ff11 (patch)
tree9b8c820b008a920bccc986f744d6241a46415c82 /modules/admin-full/luasrc/model/cbi
parent2e924f7aa5d7c5c8ac2cc8f3490dfadf6fbfcccf (diff)
modules/admin-full: remove notice about iface exclusiveness when adding new networks
Diffstat (limited to 'modules/admin-full/luasrc/model/cbi')
-rw-r--r--modules/admin-full/luasrc/model/cbi/admin_network/iface_add.lua6
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/admin-full/luasrc/model/cbi/admin_network/iface_add.lua b/modules/admin-full/luasrc/model/cbi/admin_network/iface_add.lua
index 0e62ee88c..92026b157 100644
--- a/modules/admin-full/luasrc/model/cbi/admin_network/iface_add.lua
+++ b/modules/admin-full/luasrc/model/cbi/admin_network/iface_add.lua
@@ -36,16 +36,14 @@ newproto = m:field(ListValue, "_netproto", translate("Protocol of the new interf
netbridge = m:field(Flag, "_bridge", translate("Create a bridge over multiple interfaces"))
-sifname = m:field(Value, "_ifname", translate("Cover the following interface"),
- translate("Note: If you choose an interface here which is part of another network, it will be moved into this network."))
+sifname = m:field(Value, "_ifname", translate("Cover the following interface"))
sifname.widget = "radio"
sifname.template = "cbi/network_ifacelist"
sifname.nobridges = true
-mifname = m:field(Value, "_ifnames", translate("Cover the following interfaces"),
- translate("Note: If you choose an interface here which is part of another network, it will be moved into this network."))
+mifname = m:field(Value, "_ifnames", translate("Cover the following interfaces"))
mifname.widget = "checkbox"
mifname.template = "cbi/network_ifacelist"