summaryrefslogtreecommitdiffhomepage
path: root/protocols
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2012-08-22 11:12:14 +0000
committerJo-Philipp Wich <jow@openwrt.org>2012-08-22 11:12:14 +0000
commitdb972d6b089d24b2fd00f9857f46b16627833609 (patch)
treecdf50802721a4e9c1283efd10b9fdfcca6a3b438 /protocols
parent26dcec42ee0116b5a3dfe2a00555f31227a3d9fd (diff)
protocols/3g: rework service type choices
Diffstat (limited to 'protocols')
-rw-r--r--protocols/3g/luasrc/model/cbi/admin_network/proto_3g.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/3g/luasrc/model/cbi/admin_network/proto_3g.lua b/protocols/3g/luasrc/model/cbi/admin_network/proto_3g.lua
index d59d2331d..9c1a76282 100644
--- a/protocols/3g/luasrc/model/cbi/admin_network/proto_3g.lua
+++ b/protocols/3g/luasrc/model/cbi/admin_network/proto_3g.lua
@@ -34,15 +34,15 @@ end
service = section:taboption("general", Value, "service", translate("Service Type"))
service:value("", translate("-- Please choose --"))
service:value("umts", "UMTS/GPRS")
-service:value("cdma", "CDMA")
-service:value("evdo", "EV-DO")
+service:value("umts_only", translate("UMTS only"))
+service:value("gprs_only", translate("GPRS only"))
+service:value("evdo", "CDMA/EV-DO")
apn = section:taboption("general", Value, "apn", translate("APN"))
pincode = section:taboption("general", Value, "pincode", translate("PIN"))
-pincode.datatype = "range(0,9999)"
username = section:taboption("general", Value, "username", translate("PAP/CHAP username"))