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/view/freifunk/wizard.htm | 22 +++++++++++----------- .../luci-fw/luasrc/model/cbi/luci_fw/firewall.lua | 4 ++-- .../luci-fw/luasrc/model/cbi/luci_fw/portfw.lua | 6 +++--- .../luci-fw/luasrc/model/cbi/luci_fw/routing.lua | 2 +- .../luci-olsr/luasrc/model/cbi/olsr/olsrd.lua | 18 +++++++++--------- .../luasrc/view/status-olsr/error_olsr.htm | 7 +++---- .../luci-olsr/luasrc/view/status-olsr/hna.htm | 6 +++--- .../luci-olsr/luasrc/view/status-olsr/index.htm | 16 ++++++++-------- .../luci-olsr/luasrc/view/status-olsr/mid.htm | 6 +++--- .../luci-olsr/luasrc/view/status-olsr/routes.htm | 10 +++++----- .../luci-olsr/luasrc/view/status-olsr/topology.htm | 6 +++--- applications/luci-qos/luasrc/model/cbi/qos/qos.lua | 10 +++++----- .../luci-splash/luasrc/view/splash/splash.htm | 4 ++-- .../luasrc/view/splash_splash/splash.htm | 4 ++-- 14 files changed, 60 insertions(+), 61 deletions(-) (limited to 'applications') diff --git a/applications/luci-ffwizard-leipzig/luasrc/view/freifunk/wizard.htm b/applications/luci-ffwizard-leipzig/luasrc/view/freifunk/wizard.htm index ab1c3438f..72cdec4f9 100644 --- a/applications/luci-ffwizard-leipzig/luasrc/view/freifunk/wizard.htm +++ b/applications/luci-ffwizard-leipzig/luasrc/view/freifunk/wizard.htm @@ -1,29 +1,29 @@ <%+header%> -

<%:ffwizard Freifunkassistent%>

-

<%:ffwizard1 Dieser Assistent konfiguriert den Router für die Benutzung im Freifunknetz%>

+

<%:ffwizard%>

+

<%:ffwizard1%>


-
<%:ip IP-Adresse%>:  +
<%:ip%>: 
<% for i, k in ipairs(ifaces) do %>
-
<%:wificfg Drahtlosgerät einrichten%>: <%=k%>
+
<%:wificfg%>: <%=k%>
<% end %>
-
<%:cfgolsr OLSR konfigurieren%>
+
<%:cfgolsr%>
-
<%:cfgdhcp Drahtlos DHCP konfigurieren%>
+
<%:cfgdhcp%>
-
<%:cfginternal Erlaube Zugriff von internem Netzwerk%>:
+
<%:cfginternal%>:
-
<%:cfgexternal Erlaube Zugriff auf externes Netzwerk%>:
+
<%:cfgexternal%>:
-
<%:shareinet Internetzugang ankündigen%>
+
<%:shareinet%>

- - + +
<%+footer%> \ No newline at end of file diff --git a/applications/luci-fw/luasrc/model/cbi/luci_fw/firewall.lua b/applications/luci-fw/luasrc/model/cbi/luci_fw/firewall.lua index b04e0532d..5ed45593b 100644 --- a/applications/luci-fw/luasrc/model/cbi/luci_fw/firewall.lua +++ b/applications/luci-fw/luasrc/model/cbi/luci_fw/firewall.lua @@ -11,7 +11,7 @@ You may obtain a copy of the License at $Id$ ]]-- -m = Map("luci_fw", translate("fw_fw", "Firewall"), translate("fw_fw1")) +m = Map("luci_fw", translate("fw_fw"), translate("fw_fw1")) s = m:section(TypedSection, "rule", "") s.addremove = true @@ -38,7 +38,7 @@ luci.model.uci.foreach("network", "interface", end end) -proto = s:option(ListValue, "proto", translate("protocol", "Protokoll")) +proto = s:option(ListValue, "proto", translate("protocol")) proto.optional = true proto:value("") proto:value("tcp", "TCP") diff --git a/applications/luci-fw/luasrc/model/cbi/luci_fw/portfw.lua b/applications/luci-fw/luasrc/model/cbi/luci_fw/portfw.lua index 655bcccef..72f3d7e1d 100644 --- a/applications/luci-fw/luasrc/model/cbi/luci_fw/portfw.lua +++ b/applications/luci-fw/luasrc/model/cbi/luci_fw/portfw.lua @@ -12,14 +12,14 @@ You may obtain a copy of the License at $Id$ ]]-- require("luci.sys") -m = Map("luci_fw", translate("fw_portfw", "Portweiterleitung"), translate("fw_portfw1")) +m = Map("luci_fw", translate("fw_portfw"), translate("fw_portfw1")) s = m:section(TypedSection, "portfw", "") s.template = "cbi/tblsection" s.addremove = true s.anonymous = true -iface = s:option(ListValue, "iface", translate("interface", "Schnittstelle")) +iface = s:option(ListValue, "iface", translate("interface")) iface.default = "wan" luci.model.uci.foreach("network", "interface", function (section) @@ -28,7 +28,7 @@ luci.model.uci.foreach("network", "interface", end end) -proto = s:option(ListValue, "proto", translate("protocol", "Protokoll")) +proto = s:option(ListValue, "proto", translate("protocol")) proto:value("tcp", "TCP") proto:value("udp", "UDP") proto:value("tcpudp", "TCP + UDP") diff --git a/applications/luci-fw/luasrc/model/cbi/luci_fw/routing.lua b/applications/luci-fw/luasrc/model/cbi/luci_fw/routing.lua index 184fc1830..56f1282c1 100644 --- a/applications/luci-fw/luasrc/model/cbi/luci_fw/routing.lua +++ b/applications/luci-fw/luasrc/model/cbi/luci_fw/routing.lua @@ -11,7 +11,7 @@ You may obtain a copy of the License at $Id$ ]]-- -m = Map("luci_fw", translate("fw_routing", "Routing"), translate("fw_routing1")) +m = Map("luci_fw", translate("fw_routing"), translate("fw_routing1")) s = m:section(TypedSection, "routing", "") s.template = "cbi/tblsection" diff --git a/applications/luci-olsr/luasrc/model/cbi/olsr/olsrd.lua b/applications/luci-olsr/luasrc/model/cbi/olsr/olsrd.lua index c5f86d089..b89fb253d 100644 --- a/applications/luci-olsr/luasrc/model/cbi/olsr/olsrd.lua +++ b/applications/luci-olsr/luasrc/model/cbi/olsr/olsrd.lua @@ -33,16 +33,16 @@ noint.disabled = "no" s:option(Value, "Pollrate") tcr = s:option(ListValue, "TcRedundancy") -tcr:value("0", translate("olsr_general_tcredundancy_0", "MPR-Selektoren")) -tcr:value("1", translate("olsr_general_tcredundancy_1", "MPR-Selektoren und MPR")) -tcr:value("2", translate("olsr_general_tcredundancy_2", "Alle Nachbarn")) +tcr:value("0", translate("olsr_general_tcredundancy_0")) +tcr:value("1", translate("olsr_general_tcredundancy_1")) +tcr:value("2", translate("olsr_general_tcredundancy_2")) s:option(Value, "MprCoverage") lql = s:option(ListValue, "LinkQualityLevel") -lql:value("0", translate("disable", "deaktivieren")) -lql:value("1", translate("olsr_general_linkqualitylevel_1", "MPR-Auswahl")) -lql:value("2", translate("olsr_general_linkqualitylevel_2", "MPR-Auswahl und Routing")) +lql:value("0", translate("disable")) +lql:value("1", translate("olsr_general_linkqualitylevel_1")) +lql:value("2", translate("olsr_general_linkqualitylevel_2")) lqfish = s:option(Flag, "LinkQualityFishEye") @@ -55,12 +55,12 @@ hyst.enabled = "yes" hyst.disabled = "no" -i = m:section(TypedSection, "Interface", translate("interfaces", "Schnittstellen")) +i = m:section(TypedSection, "Interface", translate("interfaces")) i.anonymous = true i.addremove = true i.dynamic = true -network = i:option(ListValue, "Interface", translate("network", "Netzwerk")) +network = i:option(ListValue, "Interface", translate("network")) network:value("") luci.model.uci.foreach("network", "interface", function (section) @@ -83,7 +83,7 @@ p = m:section(TypedSection, "LoadPlugin") p.addremove = true p.dynamic = true -lib = p:option(ListValue, "Library", translate("library", "Bibliothek")) +lib = p:option(ListValue, "Library", translate("library")) lib:value("") for k, v in pairs(luci.fs.dir("/usr/lib")) do if v:sub(1, 6) == "olsrd_" then diff --git a/applications/luci-olsr/luasrc/view/status-olsr/error_olsr.htm b/applications/luci-olsr/luasrc/view/status-olsr/error_olsr.htm index c88ddfc33..94440f617 100644 --- a/applications/luci-olsr/luasrc/view/status-olsr/error_olsr.htm +++ b/applications/luci-olsr/luasrc/view/status-olsr/error_olsr.htm @@ -1,6 +1,5 @@ <%+header%> -

<%:olsr OLSR%>

-

<%:olsr_error1 Es konnte keine Verbindung zum OLSR-Daemon hergestellt werden!%>

-

<%:olsr_error2 Um die Statusinformationen abfragen zu können muss der OLSR-Daemon gestartet -und das Plugin "txtinfo" geladen sein.%>

+

<%:olsr%>

+

<%:olsr_error1%>

+

<%:olsr_error2%>

<%+footer%> \ No newline at end of file diff --git a/applications/luci-olsr/luasrc/view/status-olsr/hna.htm b/applications/luci-olsr/luasrc/view/status-olsr/hna.htm index c13369f42..38430fcf8 100644 --- a/applications/luci-olsr/luasrc/view/status-olsr/hna.htm +++ b/applications/luci-olsr/luasrc/view/status-olsr/hna.htm @@ -1,10 +1,10 @@ <%+header%> -

<%:olsrhna OLSR-HNA%>

+

<%:olsrhna%>


- - + + <% for k, route in ipairs(routes) do %> diff --git a/applications/luci-olsr/luasrc/view/status-olsr/index.htm b/applications/luci-olsr/luasrc/view/status-olsr/index.htm index 8a49232ee..dabacd15a 100644 --- a/applications/luci-olsr/luasrc/view/status-olsr/index.htm +++ b/applications/luci-olsr/luasrc/view/status-olsr/index.htm @@ -1,11 +1,11 @@ <%+header%> -

<%:olsr_links OLSR-Verbindungen%>

-

<%:olsr_links1 Übersicht über aktuell bestehende OLSR-Verbindungen%>

+

<%:olsr_links%>

+

<%:olsr_links1%>


<%:destination Ziel%><%:gateway Gateway%><%:destination%><%:gateway%>
- - + + @@ -34,10 +34,10 @@ <% end %>
<%:destination Ziel%><%:local Lokal%><%:destination%><%:local%> LQ NLQ ETX

-

<%:legend Legende%>:

+

<%:legend%>:

    -
  • LQ: <%:olsrlinks_lq1 Erfolgsquote gesendeter Pakete%>
  • -
  • NLQ: <%:olsrlinks_nlq1 Erfolgsquote empfangener Pakete%>
  • -
  • ETX: <%:olsrlinks_etx1 Zu erwartende Sendeversuche pro Paket%>
  • +
  • LQ: <%:olsrlinks_lq1%>
  • +
  • NLQ: <%:olsrlinks_nlq1%>
  • +
  • ETX: <%:olsrlinks_etx1%>
<%+footer%> \ No newline at end of file diff --git a/applications/luci-olsr/luasrc/view/status-olsr/mid.htm b/applications/luci-olsr/luasrc/view/status-olsr/mid.htm index fb29e7dfa..63b8c25b2 100644 --- a/applications/luci-olsr/luasrc/view/status-olsr/mid.htm +++ b/applications/luci-olsr/luasrc/view/status-olsr/mid.htm @@ -1,10 +1,10 @@ <%+header%> -

<%:olsr_mid OLSR-MID%>

+

<%:olsr_mid%>


- - + + <% for k, mid in ipairs(mids) do %> diff --git a/applications/luci-olsr/luasrc/view/status-olsr/routes.htm b/applications/luci-olsr/luasrc/view/status-olsr/routes.htm index 4840bf655..ae075e8f4 100644 --- a/applications/luci-olsr/luasrc/view/status-olsr/routes.htm +++ b/applications/luci-olsr/luasrc/view/status-olsr/routes.htm @@ -1,12 +1,12 @@ <%+header%> -

<%:olsr_routes OLSR-Routen%>

+

<%:olsr_routes%>


<%:node Knoten%><%:aliases Aliasse%><%:node%><%:aliases%>
- - - - + + + + <% for k, route in ipairs(routes) do diff --git a/applications/luci-olsr/luasrc/view/status-olsr/topology.htm b/applications/luci-olsr/luasrc/view/status-olsr/topology.htm index 129319794..6ad9f5c67 100644 --- a/applications/luci-olsr/luasrc/view/status-olsr/topology.htm +++ b/applications/luci-olsr/luasrc/view/status-olsr/topology.htm @@ -1,10 +1,10 @@ <%+header%> -

<%:olsr_topology OLSR-Topologie%>

+

<%:olsr_topology%>


<%:destination Ziel%><%:gateway Gateway%><%:interface Schnittstelle%><%:metric Metrik%><%:destination%><%:gateway%><%:interface%><%:metric%> ETX
- - + + diff --git a/applications/luci-qos/luasrc/model/cbi/qos/qos.lua b/applications/luci-qos/luasrc/model/cbi/qos/qos.lua index 18f26efb6..ea535cea2 100644 --- a/applications/luci-qos/luasrc/model/cbi/qos/qos.lua +++ b/applications/luci-qos/luasrc/model/cbi/qos/qos.lua @@ -13,10 +13,10 @@ $Id$ ]]-- m = Map("qos") -s = m:section(TypedSection, "interface", translate("interfaces", "Schnittstellen")) +s = m:section(TypedSection, "interface", translate("interfaces")) s.addremove = true -s:option(Flag, "enabled", translate("enable", "aktivieren")) +s:option(Flag, "enabled", translate("enable")) c = s:option(ListValue, "classgroup") c:value("Default", "standard") @@ -46,7 +46,7 @@ s:option(Value, "layer7", "Layer 7").optional = true p2p = s:option(ListValue, "ipp2p", "P2P") p2p:value("") -p2p:value("all", translate("all", "alle")) +p2p:value("all", translate("all")) p2p:value("bit", "BitTorrent") p2p:value("dc", "DirectConnect") p2p:value("edk", "eDonkey") @@ -54,14 +54,14 @@ p2p:value("gnu", "Gnutella") p2p:value("kazaa", "Kazaa") p2p.optional = true -p = s:option(ListValue, "proto", translate("protocol", "Protokoll")) +p = s:option(ListValue, "proto", translate("protocol")) p:value("") p:value("tcp", "TCP") p:value("udp", "UDP") p:value("icmp", "ICMP") p.optional = true -s:option(Value, "ports", translate("port", "Port")).optional = true +s:option(Value, "ports", translate("port")).optional = true s:option(Value, "portrange").optional = true return m \ No newline at end of file diff --git a/applications/luci-splash/luasrc/view/splash/splash.htm b/applications/luci-splash/luasrc/view/splash/splash.htm index c2a2f889a..2731d2350 100644 --- a/applications/luci-splash/luasrc/view/splash/splash.htm +++ b/applications/luci-splash/luasrc/view/splash/splash.htm @@ -1,6 +1,6 @@ <% local c = luci.model.uci.get_all("freifunk", "community") %> -

<%:welcome Willkommen%>!

+

<%:welcome%>!

Du bist jetzt mit dem freien Funknetz <%=c.name%> verbunden.
@@ -28,6 +28,6 @@ Wenn Du unsere Idee gut findest, kannst Du uns unterstützen:

-Mit einem Klick auf <%:accept Annehmen%> kannst du für <%=c.leasetime%> Stunden +Mit einem Klick auf <%:accept%> kannst du für <%=c.leasetime%> Stunden über unser Netz das Internet verwenden. Dann wirst du erneut aufgefordet, diese Bedingungen zu akzeptieren.

\ No newline at end of file diff --git a/applications/luci-splash/luasrc/view/splash_splash/splash.htm b/applications/luci-splash/luasrc/view/splash_splash/splash.htm index 9c165802f..aa3198663 100644 --- a/applications/luci-splash/luasrc/view/splash_splash/splash.htm +++ b/applications/luci-splash/luasrc/view/splash_splash/splash.htm @@ -1,7 +1,7 @@ <%+header%> <%+splash/splash%> - - + + <%+footer%> \ No newline at end of file -- cgit v1.2.3
<%:destination Ziel%><%:olsr_lasthop Letzter Router%><%:destination%><%:olsr_lasthop%> LQ ILQ ETX