Changeset 7018
- Timestamp:
- 05/03/11 23:22:26 (2 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
luci/trunk/modules/admin-full/luasrc/model/cbi/admin_network/dhcp.lua
r7017 r7018 15 15 local sys = require "luci.sys" 16 16 17 m = Map("dhcp", translate("DHCP Server"),17 m = Map("dhcp", translate("DHCP and DNS"), 18 18 translate("Dnsmasq is a combined <abbr title=\"Dynamic Host Configuration Protocol" .. 19 19 "\">DHCP</abbr>-Server and <abbr title=\"Domain Name System\">DNS</abbr>-" .. … … 21 21 "firewalls")) 22 22 23 s = m:section(TypedSection, "dnsmasq", translate("Se ttings"))23 s = m:section(TypedSection, "dnsmasq", translate("Server Settings")) 24 24 s.anonymous = true 25 25 s.addremove = false … … 208 208 209 209 210 m2 = Map("dhcp", translate("DHCP Leases"), 210 m:section(SimpleSection).template = "admin_network/lease_status" 211 212 s = m:section(TypedSection, "host", translate("Static Leases"), 211 213 translate("Static leases are used to assign fixed IP addresses and symbolic hostnames to " .. 212 214 "DHCP clients. They are also required for non-dynamic interface configurations where " .. 213 "only hosts with a corresponding lease are served.")) 214 215 m2:section(SimpleSection).template = "admin_network/lease_status" 216 217 s = m2:section(TypedSection, "host", translate("Static Leases"), 215 "only hosts with a corresponding lease are served.") .. "<br />" .. 218 216 translate("Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</em> " .. 219 217 "indentifies the host, the <em>IPv4-Address</em> specifies to the fixed address to " .. … … 243 241 244 242 245 return m , m2243 return m
