* Core translation part 3
[project/luci.git] / modules / admin-core / luasrc / model / cbi / admin_services / httpd.lua
index 3bd49a2..acd36fb 100644 (file)
@@ -1,18 +1,17 @@
--- ToDo: Translate, Add descriptions
-m = Map("httpd", "HTTP-Server", "Der HTTP-Server ist u.a. für die Bereitstellung dieser Obefläche zuständig.")
+m = Map("httpd", "Busybox HTTPd", translate("a_srv_http1", "Ein kleiner Webserver, der für die Bereitstellung von LuCI genutzt werden kann."))
 
 s = m:section(TypedSection, "httpd")
 s.anonymous = true
 
-port = s:option(Value, "port", "Port")
+port = s:option(Value, "port", translate("port", "Port"))
 port.isinteger = true
 
-s:option(Value, "home", "Wurzelverzeichnis")
+s:option(Value, "home", translate("a_srv_http_root", "Wurzelverzeichnis"))
 
-config = s:option(Value, "c_file", "Konfigurationsdatei", "/etc/httpd.conf wenn leer")
+config = s:option(Value, "c_file", translate("configfile", "Konfigurationsdatei"), translate("a_srv_http_config1", "/etc/httpd.conf wenn leer"))
 config.rmempty = true
 
-realm = s:option(Value, "realm", "Anmeldeaufforderung", "Aufforderungstext zum Anmelden im Administrationsbereich")
+realm = s:option(Value, "realm", translate("a_srv_http_authrealm", "Anmeldeaufforderung"), translate("a_srv_http_authrealm1", "Aufforderungstext zum Anmelden im Administrationsbereich"))
 realm.rmempty = true
 
 return m
\ No newline at end of file