applications/luci-qos: clarify kb/s vs. kbit/s
authorJo-Philipp Wich <jow@openwrt.org>
Mon, 10 Jan 2011 00:09:42 +0000 (00:09 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Mon, 10 Jan 2011 00:09:42 +0000 (00:09 +0000)
applications/luci-qos/luasrc/model/cbi/qos/qos.lua
applications/luci-qos/luasrc/model/cbi/qos/qosmini.lua

index 4891dbb..dcce7f1 100644 (file)
@@ -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"
index c775ece..b412089 100644 (file)
@@ -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"