X-Git-Url: https://git.archive.openwrt.org/?a=blobdiff_plain;f=modules%2Fadmin-core%2Fluasrc%2Fmodel%2Fcbi%2Fadmin_services%2Fhttpd.lua;h=44beb9c9efdfc34a1ef7389994be547e554e5c3e;hb=4d7c453ea83c749b05d6271a3bdc0c0c057150ed;hp=32c1bab26c3ffbb4b40b7d83c9f94d4fd2e0b52f;hpb=7d03f8ea8a5edf72b708a8a4f45346048274fae6;p=project%2Fluci.git diff --git a/modules/admin-core/luasrc/model/cbi/admin_services/httpd.lua b/modules/admin-core/luasrc/model/cbi/admin_services/httpd.lua index 32c1bab26..44beb9c9e 100644 --- a/modules/admin-core/luasrc/model/cbi/admin_services/httpd.lua +++ b/modules/admin-core/luasrc/model/cbi/admin_services/httpd.lua @@ -11,20 +11,20 @@ You may obtain a copy of the License at $Id$ ]]-- -m = Map("httpd", "Busybox HTTPd", translate("a_srv_http1", "Ein kleiner Webserver, der für die Bereitstellung von LuCI genutzt werden kann.")) +m = Map("httpd", "Busybox HTTPd", translate("a_srv_http1")) s = m:section(TypedSection, "httpd", "") s.anonymous = true -port = s:option(Value, "port", translate("port", "Port")) +port = s:option(Value, "port", translate("port")) port.isinteger = true -s:option(Value, "home", translate("a_srv_http_root", "Wurzelverzeichnis")) +s:option(Value, "home", translate("a_srv_http_root")) -config = s:option(Value, "c_file", translate("configfile", "Konfigurationsdatei"), translate("a_srv_http_config1", "/etc/httpd.conf wenn leer")) +config = s:option(Value, "c_file", translate("configfile"), translate("a_srv_http_config1")) config.rmempty = true -realm = s:option(Value, "realm", translate("a_srv_http_authrealm", "Anmeldeaufforderung"), translate("a_srv_http_authrealm1", "Aufforderungstext zum Anmelden im Administrationsbereich")) +realm = s:option(Value, "realm", translate("a_srv_http_authrealm"), translate("a_srv_http_authrealm1")) realm.rmempty = true return m \ No newline at end of file