diff options
author | Anton Kikin <a.kikin@tano-systems.com> | 2018-10-12 18:18:11 +0300 |
---|---|---|
committer | Anton Kikin <a.kikin@tano-systems.com> | 2018-10-12 18:18:11 +0300 |
commit | 21378547ec859e3054863014a96ff680c2330624 (patch) | |
tree | 7339591a3060c6e9a47d8712bc4b25a6207582d5 /protocols/luci-proto-3g | |
parent | 67fd6b6e5ea6b843a4427bed62a31e96f3ff0a1f (diff) |
luci-proto-3g: add missed option name for IPv6 address obtain mode
Signed-off-by: Anton Kikin <a.kikin@tano-systems.com>
Diffstat (limited to 'protocols/luci-proto-3g')
-rw-r--r-- | protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua b/protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua index 1b2e23cc4..e05e3a47f 100644 --- a/protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua +++ b/protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua @@ -47,7 +47,9 @@ dialnumber.placeholder = "*99***1#" if luci.model.network:has_ipv6() then - ipv6 = section:taboption("advanced", ListValue, "ipv6") + ipv6 = section:taboption("advanced", ListValue, "ipv6", + translate("Obtain IPv6-Address")) + ipv6:value("auto", translate("Automatic")) ipv6:value("0", translate("Disabled")) ipv6:value("1", translate("Manual")) |