diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-10-31 15:54:11 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-10-31 15:54:11 +0000 |
commit | 7c765875884d6866c53b63757731b079bace2e9b (patch) | |
tree | db436df0eaff7de048bca26a7e419aedeb4a08a4 /modules/admin-full/luasrc/model/cbi/admin_services/httpd.lua | |
parent | dc7138e424dfd454951ed5ed4eeddbf842457e87 (diff) |
all: change most translate statements to new format, some need manual cleanup
Diffstat (limited to 'modules/admin-full/luasrc/model/cbi/admin_services/httpd.lua')
-rw-r--r-- | modules/admin-full/luasrc/model/cbi/admin_services/httpd.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/admin-full/luasrc/model/cbi/admin_services/httpd.lua b/modules/admin-full/luasrc/model/cbi/admin_services/httpd.lua index 64a080199..5cd1ae9db 100644 --- a/modules/admin-full/luasrc/model/cbi/admin_services/httpd.lua +++ b/modules/admin-full/luasrc/model/cbi/admin_services/httpd.lua @@ -11,21 +11,21 @@ You may obtain a copy of the License at $Id$ ]]-- -m = Map("httpd", "Busybox HTTPd", translate("a_srv_http1")) +m = Map("httpd", "Busybox HTTPd", translate("A small webserver which can be used to serve <abbr title=\"Lua Configuration Interface\">LuCI</abbr>.")) s = m:section(TypedSection, "httpd", "") s.anonymous = true s.addremove = true -port = s:option(Value, "port", translate("port")) +port = s:option(Value, "port", translate("Port")) port.isinteger = true -s:option(Value, "home", translate("a_srv_http_root")) +s:option(Value, "home", translate("Document root")) -config = s:option(Value, "c_file", translate("configfile"), translate("a_srv_http_config1")) +config = s:option(Value, "c_file", translate("Configuration file"), translate("defaults to <code>/etc/httpd.conf</code>")) config.rmempty = true -realm = s:option(Value, "realm", translate("a_srv_http_authrealm"), translate("a_srv_http_authrealm1")) +realm = s:option(Value, "realm", translate("Authentication Realm"), translate("The realm which will be displayed at the authentication prompt for protected pages.")) realm.rmempty = true return m |