summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-qos
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-06-09 10:10:29 +0000
committerSteven Barth <steven@midlink.org>2008-06-09 10:10:29 +0000
commit211c6394a0d145d3215893b827241723bb358a13 (patch)
treedec8e0de5e24fb0476a599f93300f37013bded72 /applications/luci-qos
parent2bf012a40a7a6d0d35b5d61269fd1bafcdf527d6 (diff)
* Prepare german translation cleanup
Diffstat (limited to 'applications/luci-qos')
-rw-r--r--applications/luci-qos/luasrc/model/cbi/qos/qos.lua10
1 files changed, 5 insertions, 5 deletions
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