Add connbytes support to QoS
authorSteven Barth <steven@midlink.org>
Sat, 17 Jan 2009 16:19:43 +0000 (16:19 +0000)
committerSteven Barth <steven@midlink.org>
Sat, 17 Jan 2009 16:19:43 +0000 (16:19 +0000)
applications/luci-qos/luasrc/i18n/qos.de.lua
applications/luci-qos/luasrc/i18n/qos.de.xml
applications/luci-qos/luasrc/i18n/qos.en.lua
applications/luci-qos/luasrc/i18n/qos.en.xml
applications/luci-qos/luasrc/model/cbi/qos/qos.lua
applications/luci-qos/luasrc/model/cbi/qos/qosmini.lua

index 7efb75eda6eb06910cdf90ac436b139c27d11853..1ef5499bdb705127a6efbb9035e0a86474396064 100644 (file)
@@ -14,3 +14,4 @@ qos_bulk = 'niedrig'
 qos_normal = 'normal'
 qos_express = 'express'
 qos_priority = 'priorisiert'
+qos_connbytes = 'Bytes gesendet'
index bfebbf877aeb7f25748a5797f99de24b8de2378b..c64d0f6d43dd62f374ee93172a0965d84229824b 100644 (file)
@@ -18,4 +18,5 @@
 <i18n:msg xml:id="qos_normal">normal</i18n:msg>
 <i18n:msg xml:id="qos_express">express</i18n:msg>
 <i18n:msg xml:id="qos_priority">priorisiert</i18n:msg>
+<i18n:msg xml:id="qos_connbytes">Bytes gesendet</i18n:msg>
 </i18n:msgs>
index 5343b54fadb707590b5d75f9125ede57b8c344a1..67494e71d2d05e5c03cb864b1dfa43cf920a6256 100644 (file)
@@ -15,3 +15,4 @@ qos_bulk = 'low'
 qos_normal = 'normal'
 qos_express = 'express'
 qos_priority = 'priority'
+qos_connbytes = 'Bytes sent'
index df279a20d7e5d1df3e6788cc889d5a69302f12c2..8a5eeca9244d93645ad4585a6b7ac2e1018eba2f 100644 (file)
@@ -19,4 +19,5 @@
 <i18n:msg xml:id="qos_normal">normal</i18n:msg>
 <i18n:msg xml:id="qos_express">express</i18n:msg>
 <i18n:msg xml:id="qos_priority">priority</i18n:msg>
+<i18n:msg xml:id="qos_connbytes">Bytes sent</i18n:msg>
 </i18n:msgs>
index 707d98a7b206c43ff6434aff9d24c68b4b17d9b5..ac5f3b27cb7bfbdf689feb988a55704719cae52c 100644 (file)
@@ -66,11 +66,11 @@ end
 p2p = s:option(ListValue, "ipp2p", "P2P")
 p2p:value("", "-")
 p2p:value("all", translate("all"))
-p2p:value("bit", "BitTorrent")
-p2p:value("dc", "DirectConnect")
-p2p:value("edk", "eDonkey")
-p2p:value("gnu", "Gnutella")
-p2p:value("kazaa", "Kazaa")
+p2p:value("bit", "BIT")
+p2p:value("dc", "DC")
+p2p:value("edk", "EDK")
+p2p:value("gnu", "GNU")
+p2p:value("kazaa", "KAZ")
 p2p.rmempty = true
 
 p = s:option(Value, "proto", translate("protocol"))
@@ -84,4 +84,6 @@ ports = s:option(Value, "ports", translate("ports"))
 ports.rmempty = true
 ports:value("", translate("allf", translate("all")))
 
+bytes = s:option(Value, "connbytes", translate("qos_connbytes"))
+
 return m
index a1825505bedebd18166d9d853c8f886e42dd846b..e80e4e560e8cc0108d3c11d980403224c010f97b 100644 (file)
@@ -59,11 +59,11 @@ end
 p2p = s:option(ListValue, "ipp2p", "P2P")
 p2p:value("", "-")
 p2p:value("all", translate("all"))
-p2p:value("bit", "BitTorrent")
-p2p:value("dc", "DirectConnect")
-p2p:value("edk", "eDonkey")
-p2p:value("gnu", "Gnutella")
-p2p:value("kazaa", "Kazaa")
+p2p:value("bit", "BIT")
+p2p:value("dc", "DC")
+p2p:value("edk", "EDK")
+p2p:value("gnu", "GNU")
+p2p:value("kazaa", "KAZ")
 p2p.rmempty = true
 
 p = s:option(ListValue, "proto", translate("protocol"))
@@ -77,4 +77,6 @@ ports = s:option(Value, "ports", translate("ports"))
 ports.rmempty = true
 ports:value("", translate("allf", translate("all")))
 
+bytes = s:option(Value, "connbytes", translate("qos_connbytes"))
+
 return m