modules/admin-mini: Improvements in PPPoE/PPTP option descriptions

This commit is contained in:
Steven Barth 2008-07-19 12:38:23 +00:00
parent b0c7b72777
commit e8191406f8
3 changed files with 14 additions and 4 deletions

View file

@ -272,3 +272,7 @@ link = "Link"
frag = "Frag."
rts = "RTS"
bitrate = "Bitrate"
m_n_keepalive = "automatically reconnect"
m_n_dialondemand = "disconnect when idle for"
m_n_pptp_server = "PPTP-Server"

View file

@ -276,4 +276,9 @@ m_n_d_firstaddress = "Erste vergebene Adresse"
m_n_d_numleases = "Anzahl vergebener Adressen"
routingtable = "Routingtabelle"
wlanscan = "WLAN-Scan"
wlanscan = "WLAN-Scan"
m_n_keepalive = "automatisch neu verbinden"
m_n_dialondemand = "trennen bei Inaktivität nach"
m_n_pptp_server = "PPTP-Server"

View file

@ -53,18 +53,19 @@ pwd = s:option(Value, "password", translate("password"))
pwd:depends("proto", "pppoe")
pwd:depends("proto", "pptp")
kea = s:option(Value, "keepalive", "Keep-Alive" .. translate("cbi_optional"))
kea = s:option(Flag, "keepalive", translate("m_n_keepalive"))
kea:depends("proto", "pppoe")
kea:depends("proto", "pptp")
kea.rmempty = true
kea.enabled = "10"
cod = s:option(Value, "demand", "Dial on Demand" .. translate("cbi_optional"))
cod = s:option(Value, "demand", translate("m_n_dialondemand"), "s")
cod:depends("proto", "pppoe")
cod:depends("proto", "pptp")
cod.rmempty = true
srv = s:option(Value, "server", "PPTP-Server")
srv = s:option(Value, "server", translate("m_n_pptp_server"))
srv:depends("proto", "pptp")
srv.rmempty = true