summaryrefslogtreecommitdiffhomepage
path: root/applications
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2011-01-10 00:09:42 +0000
committerJo-Philipp Wich <jow@openwrt.org>2011-01-10 00:09:42 +0000
commit50cbeae61c7c87df6930b3c0dccc8615f7d2306f (patch)
tree4046720e447366beacb781c00da915b3c24bcbfc /applications
parent12df938e98b2ceb9a6edd50f0cf4febb8aebd45f (diff)
applications/luci-qos: clarify kb/s vs. kbit/s
Diffstat (limited to 'applications')
-rw-r--r--applications/luci-qos/luasrc/model/cbi/qos/qos.lua4
-rw-r--r--applications/luci-qos/luasrc/model/cbi/qos/qosmini.lua4
2 files changed, 4 insertions, 4 deletions
diff --git a/applications/luci-qos/luasrc/model/cbi/qos/qos.lua b/applications/luci-qos/luasrc/model/cbi/qos/qos.lua
index 4891dbbdc..dcce7f12c 100644
--- a/applications/luci-qos/luasrc/model/cbi/qos/qos.lua
+++ b/applications/luci-qos/luasrc/model/cbi/qos/qos.lua
@@ -35,9 +35,9 @@ s:option(Flag, "overhead", translate("Calculate overhead"))
s:option(Flag, "halfduplex", translate("Half-duplex"))
-s:option(Value, "download", translate("Download speed (kb/s)"))
+s:option(Value, "download", translate("Download speed (kbit/s)"))
-s:option(Value, "upload", translate("Upload speed (kb/s)"))
+s:option(Value, "upload", translate("Upload speed (kbit/s)"))
s = m:section(TypedSection, "classify", translate("Classification Rules"))
s.template = "cbi/tblsection"
diff --git a/applications/luci-qos/luasrc/model/cbi/qos/qosmini.lua b/applications/luci-qos/luasrc/model/cbi/qos/qosmini.lua
index c775ece73..b41208957 100644
--- a/applications/luci-qos/luasrc/model/cbi/qos/qosmini.lua
+++ b/applications/luci-qos/luasrc/model/cbi/qos/qosmini.lua
@@ -21,8 +21,8 @@ m = Map("qos")
s = m:section(NamedSection, "wan", "interface", translate("Internet Connection"))
s:option(Flag, "enabled", translate("Quality of Service"))
-s:option(Value, "download", translate("Downlink"), "kb/s")
-s:option(Value, "upload", translate("Uplink"), "kb/s")
+s:option(Value, "download", translate("Downlink"), "kbit/s")
+s:option(Value, "upload", translate("Uplink"), "kbit/s")
s = m:section(TypedSection, "classify")
s.template = "cbi/tblsection"