luci-proto-ppp: add translation to ipv6 handling
[project/luci.git] / protocols / luci-proto-ppp / luasrc / model / cbi / admin_network / proto_ppp.lua
index b59f08b..355d9b5 100644 (file)
@@ -1,14 +1,5 @@
---[[
-LuCI - Lua Configuration Interface
-
-Copyright 2011 Jo-Philipp Wich <xm@subsignal.org>
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-]]--
+-- Copyright 2011 Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
 
 local map, section, net = ...
 
@@ -39,12 +30,13 @@ password.password = true
 
 
 if luci.model.network:has_ipv6() then
-
-       ipv6 = section:taboption("advanced", Flag, "ipv6",
+       ipv6 = section:taboption("advanced", ListValue, "ipv6",
+               translate("Obtain IPv6-Address"),
                translate("Enable IPv6 negotiation on the PPP link"))
-
-       ipv6.default = ipv6.disabled
-
+       ipv6:value("auto", translate("Automatic"))
+       ipv6:value("0", translate("Disabled"))
+       ipv6:value("1", translate("Manual"))
+       ipv6.default = "auto"
 end