From 211c6394a0d145d3215893b827241723bb358a13 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Mon, 9 Jun 2008 10:10:29 +0000 Subject: * Prepare german translation cleanup --- .../luasrc/model/cbi/admin_index/luci.lua | 19 ++++----- .../luasrc/model/cbi/admin_network/dhcp.lua | 10 ++--- .../luasrc/model/cbi/admin_network/ifaces.lua | 18 ++++----- .../luasrc/model/cbi/admin_network/ptp.lua | 8 ++-- .../luasrc/model/cbi/admin_network/routes.lua | 8 ++-- .../luasrc/model/cbi/admin_network/vlan.lua | 2 +- .../luasrc/model/cbi/admin_services/dnsmasq.lua | 2 +- .../luasrc/model/cbi/admin_services/dropbear.lua | 7 ++-- .../luasrc/model/cbi/admin_services/httpd.lua | 10 ++--- .../luasrc/model/cbi/admin_system/fstab.lua | 24 +++++------ .../luasrc/model/cbi/admin_system/hostname.lua | 5 +-- .../luasrc/model/cbi/admin_wifi/devices.lua | 24 +++++------ .../luasrc/model/cbi/admin_wifi/networks.lua | 31 +++++++-------- modules/admin-core/luasrc/view/about.htm | 13 +++--- .../admin-core/luasrc/view/admin_index/index.htm | 17 ++++---- .../admin-core/luasrc/view/admin_network/index.htm | 15 +++---- .../luasrc/view/admin_services/index.htm | 7 ++-- .../admin-core/luasrc/view/admin_status/index.htm | 8 ++-- .../admin-core/luasrc/view/admin_status/iwscan.htm | 18 ++++----- .../admin-core/luasrc/view/admin_status/routes.htm | 12 +++--- .../admin-core/luasrc/view/admin_status/syslog.htm | 4 +- .../admin-core/luasrc/view/admin_system/editor.htm | 10 ++--- .../admin-core/luasrc/view/admin_system/index.htm | 11 ++---- .../admin-core/luasrc/view/admin_system/ipkg.htm | 14 +++---- .../luasrc/view/admin_system/packages.htm | 46 +++++++++++----------- .../admin-core/luasrc/view/admin_system/passwd.htm | 20 +++++----- .../admin-core/luasrc/view/admin_system/reboot.htm | 10 ++--- .../luasrc/view/admin_system/sshkeys.htm | 13 +++--- .../luasrc/view/admin_system/upgrade.htm | 19 +++++---- modules/admin-core/luasrc/view/admin_uci/apply.htm | 4 +- .../admin-core/luasrc/view/admin_uci/changes.htm | 8 ++-- .../admin-core/luasrc/view/admin_uci/revert.htm | 4 +- .../admin-core/luasrc/view/admin_wifi/index.htm | 11 ++---- 33 files changed, 202 insertions(+), 230 deletions(-) (limited to 'modules/admin-core/luasrc') diff --git a/modules/admin-core/luasrc/model/cbi/admin_index/luci.lua b/modules/admin-core/luasrc/model/cbi/admin_index/luci.lua index 6d495eaab..f7616610b 100644 --- a/modules/admin-core/luasrc/model/cbi/admin_index/luci.lua +++ b/modules/admin-core/luasrc/model/cbi/admin_index/luci.lua @@ -12,34 +12,31 @@ You may obtain a copy of the License at $Id$ ]]-- require("luci.config") -m = Map("luci", translate("webui", "Oberfläche"), translate("a_i_luci1", +m = Map("luci", translate("webui"), translate("a_i_luci1", "Hier können Eigenschaften und die Funktionalität der Oberfläche angepasst werden.")) -c = m:section(NamedSection, "main", "core", translate("general", "Allgemein")) +c = m:section(NamedSection, "main", "core", translate("general")) -l = c:option(ListValue, "lang", translate("language", "Sprache")) +l = c:option(ListValue, "lang", translate("language")) for k, v in pairs(luci.config.languages) do if k:sub(1, 1) ~= "." then l:value(k, v) end end -t = c:option(ListValue, "mediaurlbase", translate("design", "Design")) +t = c:option(ListValue, "mediaurlbase", translate("design")) for k, v in pairs(luci.config.themes) do if k:sub(1, 1) ~= "." then t:value(v, k) end end -u = m:section(NamedSection, "uci_oncommit", "event", translate("a_i_ucicommit", "UCI-Befehle beim Anwenden"), - translate("a_i_ucicommit1", [[Beim Anwenden -der Konfiguration aus der Oberflächliche heraus können automatisch die relevanten Dienste neugestart werden, -sodass Änderungen sofort nach dem Anwenden aktiv werden und der Router nicht erst neugestartet werden muss.]])) +u = m:section(NamedSection, "uci_oncommit", "event", translate("a_i_ucicommit"), + translate("a_i_ucicommit1")) u.dynamic = true -f = m:section(NamedSection, "flash_keep", "extern", translate("a_i_keepflash", "Zu übernehmende Dateien bei Firmwareupgrade"), - translate("a_i_keepflash1", [[Die folgenden Dateien und Verzeichnisse werden beim Aktualisieren der Firmware -über die Oberfläche automatisch in die neue Firmware übernommen.]])) +f = m:section(NamedSection, "flash_keep", "extern", translate("a_i_keepflash"), + translate("a_i_keepflash1")) f.dynamic = true return m \ No newline at end of file diff --git a/modules/admin-core/luasrc/model/cbi/admin_network/dhcp.lua b/modules/admin-core/luasrc/model/cbi/admin_network/dhcp.lua index 32e73a79b..b22f7354a 100644 --- a/modules/admin-core/luasrc/model/cbi/admin_network/dhcp.lua +++ b/modules/admin-core/luasrc/model/cbi/admin_network/dhcp.lua @@ -20,7 +20,7 @@ s = m:section(TypedSection, "dhcp", "") s.addremove = true s.anonymous = true -iface = s:option(ListValue, "interface", translate("interface", "Schnittstelle")) +iface = s:option(ListValue, "interface", translate("interface")) luci.model.uci.foreach("network", "interface", function (section) if section[".name"] ~= "loopback" then @@ -29,19 +29,19 @@ luci.model.uci.foreach("network", "interface", end end) -s:option(Value, "start", translate("start", "Start")).rmempty = true +s:option(Value, "start", translate("start")).rmempty = true -s:option(Value, "limit", translate("limit", "Limit")).rmempty = true +s:option(Value, "limit", translate("limit")).rmempty = true s:option(Value, "leasetime").rmempty = true s:option(Flag, "dynamicdhcp").rmempty = true -s:option(Value, "name", translate("name", "Name")).optional = true +s:option(Value, "name", translate("name")).optional = true s:option(Flag, "ignore").optional = true -s:option(Value, "netmask", translate("netmask", "Netzmaske")).optional = true +s:option(Value, "netmask", translate("netmask")).optional = true s:option(Flag, "force").optional = true diff --git a/modules/admin-core/luasrc/model/cbi/admin_network/ifaces.lua b/modules/admin-core/luasrc/model/cbi/admin_network/ifaces.lua index d44206ed8..2851f3ad5 100644 --- a/modules/admin-core/luasrc/model/cbi/admin_network/ifaces.lua +++ b/modules/admin-core/luasrc/model/cbi/admin_network/ifaces.lua @@ -11,7 +11,7 @@ You may obtain a copy of the License at $Id$ ]]-- -m = Map("network", translate("interfaces", "Schnittstellen"), translate("a_n_ifaces1")) +m = Map("network", translate("interfaces"), translate("a_n_ifaces1")) s = m:section(TypedSection, "interface", "") s.addremove = true @@ -19,8 +19,8 @@ s:exclude("loopback") s:depends("proto", "static") s:depends("proto", "dhcp") -p = s:option(ListValue, "proto", translate("protocol", "Protokoll")) -p:value("static", translate("static", "statisch")) +p = s:option(ListValue, "proto", translate("protocol")) +p:value("static", translate("static")) p:value("dhcp", "DHCP") p.default = "static" @@ -28,17 +28,17 @@ br = s:option(Flag, "type", translate("a_n_i_bridge"), translate("a_n_i_bridge1" br.enabled = "bridge" br.rmempty = true -s:option(Value, "ifname", translate("interface", "Schnittstelle")) +s:option(Value, "ifname", translate("interface")) -s:option(Value, "ipaddr", translate("ipaddress", "IP-Adresse")) +s:option(Value, "ipaddr", translate("ipaddress")) -s:option(Value, "netmask", translate("netmask", "Netzmaske")):depends("proto", "static") +s:option(Value, "netmask", translate("netmask")):depends("proto", "static") -gw = s:option(Value, "gateway", translate("gateway", "Gateway")) +gw = s:option(Value, "gateway", translate("gateway")) gw:depends("proto", "static") gw.rmempty = true -dns = s:option(Value, "dns", translate("dnsserver", "DNS-Server")) +dns = s:option(Value, "dns", translate("dnsserver")) dns:depends("proto", "static") dns.optional = true @@ -46,7 +46,7 @@ mtu = s:option(Value, "mtu", "MTU") mtu.optional = true mtu.isinteger = true -mac = s:option(Value, "macaddr", translate("macaddress", "MAC-Adresse")) +mac = s:option(Value, "macaddr", translate("macaddress")) mac.optional = true return m \ No newline at end of file diff --git a/modules/admin-core/luasrc/model/cbi/admin_network/ptp.lua b/modules/admin-core/luasrc/model/cbi/admin_network/ptp.lua index 956e234f2..565edb7fd 100644 --- a/modules/admin-core/luasrc/model/cbi/admin_network/ptp.lua +++ b/modules/admin-core/luasrc/model/cbi/admin_network/ptp.lua @@ -18,15 +18,15 @@ s.addremove = true s:depends("proto", "pppoe") s:depends("proto", "pptp") -p = s:option(ListValue, "proto", translate("protocol", "Protokoll")) +p = s:option(ListValue, "proto", translate("protocol")) p:value("pppoe", "PPPoE") p:value("pptp", "PPTP") p.default = "pppoe" -s:option(Value, "ifname", translate("interface", "Schnittstelle")) +s:option(Value, "ifname", translate("interface")) -s:option(Value, "username", translate("username", "Benutzername")) -s:option(Value, "password", translate("password", "Passwort")) +s:option(Value, "username", translate("username")) +s:option(Value, "password", translate("password")) s:option(Value, "keepalive").optional = true diff --git a/modules/admin-core/luasrc/model/cbi/admin_network/routes.lua b/modules/admin-core/luasrc/model/cbi/admin_network/routes.lua index a261c1020..15f994c16 100644 --- a/modules/admin-core/luasrc/model/cbi/admin_network/routes.lua +++ b/modules/admin-core/luasrc/model/cbi/admin_network/routes.lua @@ -18,7 +18,7 @@ s.addremove = true s.anonymous = true s.template = "cbi/tblsection" -iface = s:option(ListValue, "interface", translate("interface", "Schnittstelle")) +iface = s:option(ListValue, "interface", translate("interface")) luci.model.uci.foreach("network", "interface", function (section) if section[".name"] ~= "loopback" then @@ -26,10 +26,10 @@ luci.model.uci.foreach("network", "interface", end end) -s:option(Value, "target", translate("target", "Ziel"), translate("a_n_r_target1")) +s:option(Value, "target", translate("target"), translate("a_n_r_target1")) -s:option(Value, "netmask", translate("netmask", "Netzmaske"), translate("a_n_r_netmask1")).rmemepty = true +s:option(Value, "netmask", translate("netmask"), translate("a_n_r_netmask1")).rmemepty = true -s:option(Value, "gateway", translate("gateway", "Gateway")) +s:option(Value, "gateway", translate("gateway")) return m \ No newline at end of file diff --git a/modules/admin-core/luasrc/model/cbi/admin_network/vlan.lua b/modules/admin-core/luasrc/model/cbi/admin_network/vlan.lua index 7f5255594..8cae7f94b 100644 --- a/modules/admin-core/luasrc/model/cbi/admin_network/vlan.lua +++ b/modules/admin-core/luasrc/model/cbi/admin_network/vlan.lua @@ -11,7 +11,7 @@ You may obtain a copy of the License at $Id$ ]]-- -m = Map("network", translate("a_n_switch", "Switch"), translate("a_n_switch1")) +m = Map("network", translate("a_n_switch"), translate("a_n_switch1")) s = m:section(TypedSection, "switch", "") diff --git a/modules/admin-core/luasrc/model/cbi/admin_services/dnsmasq.lua b/modules/admin-core/luasrc/model/cbi/admin_services/dnsmasq.lua index ab18035ef..e85306471 100644 --- a/modules/admin-core/luasrc/model/cbi/admin_services/dnsmasq.lua +++ b/modules/admin-core/luasrc/model/cbi/admin_services/dnsmasq.lua @@ -13,7 +13,7 @@ $Id$ ]]-- m = Map("dhcp", "Dnsmasq") -s = m:section(TypedSection, "dnsmasq", translate("settings", "Einstellungen")) +s = m:section(TypedSection, "dnsmasq", translate("settings")) s.anonymous = true s:option(Flag, "domainneeded") diff --git a/modules/admin-core/luasrc/model/cbi/admin_services/dropbear.lua b/modules/admin-core/luasrc/model/cbi/admin_services/dropbear.lua index 991f8852a..a8ce2694a 100644 --- a/modules/admin-core/luasrc/model/cbi/admin_services/dropbear.lua +++ b/modules/admin-core/luasrc/model/cbi/admin_services/dropbear.lua @@ -11,16 +11,15 @@ You may obtain a copy of the License at $Id$ ]]-- -m = Map("dropbear", "Dropbear SSHd", translate("a_srv_dropbear1", [[Der SSH-Server ermöglicht Shell-Zugriff -über das Netzwerk und bietet einen integrierten SCP-Dienst.]])) +m = Map("dropbear", "Dropbear SSHd", translate("a_srv_dropbear1")) s = m:section(TypedSection, "dropbear", "") s.anonymous = true -port = s:option(Value, "Port", translate("port", "Port")) +port = s:option(Value, "Port", translate("port")) port.isinteger = true -pwauth = s:option(Flag, "PasswordAuth", translate("a_srv_d_pwauth", "Passwortanmeldung"), translate("a_srv_d_pwauth1", "Erlaube Anmeldung per Passwort")) +pwauth = s:option(Flag, "PasswordAuth", translate("a_srv_d_pwauth"), translate("a_srv_d_pwauth1")) pwauth.enabled = 'on' pwauth.disabled = 'off' 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 diff --git a/modules/admin-core/luasrc/model/cbi/admin_system/fstab.lua b/modules/admin-core/luasrc/model/cbi/admin_system/fstab.lua index 8370bee52..be2562ca0 100644 --- a/modules/admin-core/luasrc/model/cbi/admin_system/fstab.lua +++ b/modules/admin-core/luasrc/model/cbi/admin_system/fstab.lua @@ -11,28 +11,24 @@ You may obtain a copy of the License at $Id$ ]]-- -m = Map("fstab", translate("a_s_fstab", "Einhängepunkte")) +m = Map("fstab", translate("a_s_fstab")) -mount = m:section(TypedSection, "mount", translate("a_s_fstab_mountpoints", "Einhängepunkte"), translate("a_s_fstab_mountpoints1", [[Einhängepunkte bestimmen, an welcher Stelle des Dateisystems -bestimmte Laufwerke und Speicher zur Verwendung eingebunden werden.]])) +mount = m:section(TypedSection, "mount", translate("a_s_fstab_mountpoints"), translate("a_s_fstab_mountpoints1")) mount.anonymous = true mount.addremove = true -mount:option(Flag, "enabled", translate("enable", "aktivieren")) -mount:option(Value, "device", translate("device", "Gerät"), translate("a_s_fstab_device1", "Die Gerätedatei des Speichers oder der Partition (z.B.: /dev/sda)")) -mount:option(Value, "target", translate("a_s_fstab_mountpoint", "Einhängepunkt")) -mount:option(Value, "fstype", translate("filesystem", "Dateisystem"), translate("a_s_fstab_fs1", "Das Dateisystem mit dem der Speicher formatiert ist (z.B.: ext3)")) -mount:option(Value, "options", translate("options", "Optionen"), translatef("manpage", "siehe '%s' manpage", "mount")) +mount:option(Flag, "enabled", translate("enable")) +mount:option(Value, "device", translate("device"), translate("a_s_fstab_device1")) +mount:option(Value, "target", translate("a_s_fstab_mountpoint")) +mount:option(Value, "fstype", translate("filesystem"), translate("a_s_fstab_fs1")) +mount:option(Value, "options", translate("options"), translatef("manpage", "siehe '%s' manpage", "mount")) -swap = m:section(TypedSection, "swap", "SWAP", translate("a_s_fstab_swap1", [[Falls der Arbeitsspeicher des Routers nicht ausreicht, -kann dieser nicht benutzte Daten zeitweise auf einem SWAP-Laufwerk auslagern um so die -effektive Größe des Arbeitsspeichers zu erhöhen. Die Auslagerung der Daten ist natürlich bedeutend langsamer -als direkte Arbeitsspeicherzugriffe.]])) +swap = m:section(TypedSection, "swap", "SWAP", translate("a_s_fstab_swap1")) swap.anonymous = true swap.addremove = true -swap:option(Flag, "enabled", translate("enable", "aktivieren")) -swap:option(Value, "device", translate("device", "Gerät"), translate("a_s_fstab_device1", "Die Gerätedatei des Speichers oder der Partition (z.B.: /dev/sda)")) +swap:option(Flag, "enabled", translate("enable")) +swap:option(Value, "device", translate("device"), translate("a_s_fstab_device1")) return m diff --git a/modules/admin-core/luasrc/model/cbi/admin_system/hostname.lua b/modules/admin-core/luasrc/model/cbi/admin_system/hostname.lua index ad678f707..1c74d90d7 100644 --- a/modules/admin-core/luasrc/model/cbi/admin_system/hostname.lua +++ b/modules/admin-core/luasrc/model/cbi/admin_system/hostname.lua @@ -11,12 +11,11 @@ You may obtain a copy of the License at $Id$ ]]-- -m = Map("system", translate("hostname", "Hostname"), translate("a_s_hostname1", [[Definiert den Hostnamen des Routers. -Der Hostname ist eine im Netzwerk eindeutige Kennung, die dieses Gerät identifiziert.]])) +m = Map("system", translate("hostname"), translate("a_s_hostname1")) s = m:section(TypedSection, "system", "") s.anonymous = true -s:option(Value, "hostname", translate("hostname", "Hostname")) +s:option(Value, "hostname", translate("hostname")) return m \ No newline at end of file diff --git a/modules/admin-core/luasrc/model/cbi/admin_wifi/devices.lua b/modules/admin-core/luasrc/model/cbi/admin_wifi/devices.lua index 158322204..b4e0e2915 100644 --- a/modules/admin-core/luasrc/model/cbi/admin_wifi/devices.lua +++ b/modules/admin-core/luasrc/model/cbi/admin_wifi/devices.lua @@ -11,17 +11,17 @@ You may obtain a copy of the License at $Id$ ]]-- -m = Map("wireless", translate("devices", "Geräte"), translate("a_w_devices1", +m = Map("wireless", translate("devices"), translate("a_w_devices1", "An dieser Stelle können eingebaute WLAN-Geräte konfiguriert werden.")) s = m:section(TypedSection, "wifi-device", "") --s.addremove = true -en = s:option(Flag, "disabled", translate("enable", "Aktivieren")) +en = s:option(Flag, "disabled", translate("enable")) en.enabled = "0" en.disabled = "1" -t = s:option(ListValue, "type", translate("type", "Typ")) +t = s:option(ListValue, "type", translate("type")) t:value("broadcom") t:value("atheros") t:value("mac80211") @@ -34,7 +34,7 @@ for driver in luci.sys.execl(c)[1]:gmatch("[^ ]+") do end ]]-- -mode = s:option(ListValue, "mode", translate("mode", "Modus")) +mode = s:option(ListValue, "mode", translate("mode")) mode:value("", "standard") mode:value("11b", "802.11b") mode:value("11g", "802.11g") @@ -42,22 +42,22 @@ mode:value("11a", "802.11a") mode:value("11bg", "802.11b+g") mode.rmempty = true -s:option(Value, "channel", translate("a_w_channel", "Funkkanal")) +s:option(Value, "channel", translate("a_w_channel")) -s:option(Value, "txantenna", translate("a_w_txantenna", "Sendeantenne")).rmempty = true +s:option(Value, "txantenna", translate("a_w_txantenna")).rmempty = true -s:option(Value, "rxantenna", translate("a_w_rxantenna", "Empfangsantenne")).rmempty = true +s:option(Value, "rxantenna", translate("a_w_rxantenna")).rmempty = true -s:option(Value, "distance", translate("distance", "Distanz"), - translate("a_w_distance1", "Distanz zum am weitesten entfernten Funkpartner (m)")).rmempty = true +s:option(Value, "distance", translate("distance"), + translate("a_w_distance1")).rmempty = true -s:option(Value, "diversity", translate("a_w_diversity", "Diversität")):depends("type", "atheros") +s:option(Value, "diversity", translate("a_w_diversity")):depends("type", "atheros") -country = s:option(Value, "country", translate("a_w_countrycode", "Ländercode")) +country = s:option(Value, "country", translate("a_w_countrycode")) country.optional = true country:depends("type", "broadcom") -maxassoc = s:option(Value, "maxassoc", translate("a_w_connlimit", "Verbindungslimit")) +maxassoc = s:option(Value, "maxassoc", translate("a_w_connlimit")) maxassoc:depends("type", "broadcom") maxassoc.optional = true diff --git a/modules/admin-core/luasrc/model/cbi/admin_wifi/networks.lua b/modules/admin-core/luasrc/model/cbi/admin_wifi/networks.lua index 19aa0e1c4..f0379b370 100644 --- a/modules/admin-core/luasrc/model/cbi/admin_wifi/networks.lua +++ b/modules/admin-core/luasrc/model/cbi/admin_wifi/networks.lua @@ -11,24 +11,21 @@ You may obtain a copy of the License at $Id$ ]]-- -m = Map("wireless", translate("networks", "Netze"), translate("a_w_networks1", [[Pro WLAN-Gerät können mehrere Netze bereitgestellt werden. -Es sollte beachtet werden, dass es hardware- / treiberspezifische Einschränkungen gibt. -So kann pro WLAN-Gerät in der Regel entweder 1 Ad-Hoc-Zugang ODER bis zu 3 Access-Point und 1 Client-Zugang -gleichzeitig erstellt werden.]])) +m = Map("wireless", translate("networks"), translate("a_w_networks1")) s = m:section(TypedSection, "wifi-iface", "") s.addremove = true s.anonymous = true -s:option(Value, "ssid", translate("a_w_netid", "Netzkennung (ESSID)")).maxlength = 32 +s:option(Value, "ssid", translate("a_w_netid")).maxlength = 32 -device = s:option(ListValue, "device", translate("device", "Gerät")) +device = s:option(ListValue, "device", translate("device")) luci.model.uci.foreach("wireless", "wifi-device", function (section) device:value(section[".name"]) end) -network = s:option(ListValue, "network", translate("network", "Netzwerk"), translate("a_w_network1", "WLAN-Netz zu Netzwerk hinzufügen")) +network = s:option(ListValue, "network", translate("network"), translate("a_w_network1")) network:value("") luci.model.uci.foreach("network", "interface", function (section) @@ -37,7 +34,7 @@ luci.model.uci.foreach("network", "interface", end end) -mode = s:option(ListValue, "mode", translate("mode", "Modus")) +mode = s:option(ListValue, "mode", translate("mode")) mode:value("ap", "Access Point") mode:value("adhoc", "Ad-Hoc") mode:value("sta", "Client") @@ -45,13 +42,13 @@ mode:value("wds", "WDS") s:option(Value, "bssid", "BSSID").optional = true -s:option(Value, "txpower", translate("a_w_txpwr", "Sendeleistung"), "dbm").rmempty = true +s:option(Value, "txpower", translate("a_w_txpwr"), "dbm").rmempty = true -s:option(Flag, "frameburst", translate("a_w_brcmburst", "Broadcom-Frameburst")).optional = true -s:option(Flag, "bursting", translate("a_w_athburst", "Atheros-Frameburst")).optional = true +s:option(Flag, "frameburst", translate("a_w_brcmburst")).optional = true +s:option(Flag, "bursting", translate("a_w_athburst")).optional = true -encr = s:option(ListValue, "encryption", translate("encryption", "Verschlüsselung")) +encr = s:option(ListValue, "encryption", translate("encryption")) encr:value("none", "keine") encr:value("wep", "WEP") encr:value("psk", "WPA-PSK") @@ -59,7 +56,7 @@ encr:value("wpa", "WPA-Radius") encr:value("psk2", "WPA2-PSK") encr:value("wpa2", "WPA2-Radius") -key = s:option(Value, "key", translate("key", "Schlüssel")) +key = s:option(Value, "key", translate("key")) key:depends("encryption", "wep") key:depends("encryption", "psk") key:depends("encryption", "wpa") @@ -67,19 +64,19 @@ key:depends("encryption", "psk2") key:depends("encryption", "wpa2") key.rmempty = true -server = s:option(Value, "server", translate("a_w_radiussrv", "Radius-Server")) +server = s:option(Value, "server", translate("a_w_radiussrv")) server:depends("encryption", "wpa") server:depends("encryption", "wpa2") server.rmempty = true -port = s:option(Value, "port", translate("a_w_radiusport", "Radius-Port")) +port = s:option(Value, "port", translate("a_w_radiusport")) port:depends("encryption", "wpa") port:depends("encryption", "wpa2") port.rmempty = true -s:option(Flag, "isolate", translate("a_w_apisolation", "AP-Isolation"), translate("a_w_apisolation1", "Unterbindet Client-Client-Verkehr")).optional = true +s:option(Flag, "isolate", translate("a_w_apisolation"), translate("a_w_apisolation1")).optional = true -s:option(Flag, "hidden", translate("a_w_hideessid", "ESSID verstecken")).optional = true +s:option(Flag, "hidden", translate("a_w_hideessid")).optional = true diff --git a/modules/admin-core/luasrc/view/about.htm b/modules/admin-core/luasrc/view/about.htm index 1046d8023..84b26db1d 100644 --- a/modules/admin-core/luasrc/view/about.htm +++ b/modules/admin-core/luasrc/view/about.htm @@ -1,12 +1,11 @@ <%+header%> -

<%:about Über%> LuCI

-

<%:c_lucidesc LuCI ist eine freie Lua-Bibliothek mit integriertem MVC-Webframework und Weboberfläche für eingebettete Geräte, -speziell Netzwerkrouter unter OpenWRT. Luci steht unter der Apache-Lizenz.%>

+

<%:about%> LuCI

+

<%:c_lucidesc%>

-

<%:c_projecthome Projekt-Homepage%>: luci.freifunk-halle.net

+

<%:c_projecthome%>: luci.freifunk-halle.net


-

<%:c_leaddev Leitende Entwicklung%>

+

<%:c_leaddev%>


-

<%:c_contributors Mitwirkende Entwickler%>

+

<%:c_contributors%>


-

<%:c_thanksto Dank an%>

+

<%:c_thanksto%>