applications/luci-qos: clarify kb/s vs. kbit/s

This commit is contained in:
Jo-Philipp Wich 2011-01-10 00:09:42 +00:00
parent 12df938e98
commit 50cbeae61c
2 changed files with 4 additions and 4 deletions

View file

@ -35,9 +35,9 @@ s:option(Flag, "overhead", translate("Calculate overhead"))
s:option(Flag, "halfduplex", translate("Half-duplex")) 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 = m:section(TypedSection, "classify", translate("Classification Rules"))
s.template = "cbi/tblsection" s.template = "cbi/tblsection"

View file

@ -21,8 +21,8 @@ m = Map("qos")
s = m:section(NamedSection, "wan", "interface", translate("Internet Connection")) s = m:section(NamedSection, "wan", "interface", translate("Internet Connection"))
s:option(Flag, "enabled", translate("Quality of Service")) s:option(Flag, "enabled", translate("Quality of Service"))
s:option(Value, "download", translate("Downlink"), "kb/s") s:option(Value, "download", translate("Downlink"), "kbit/s")
s:option(Value, "upload", translate("Uplink"), "kb/s") s:option(Value, "upload", translate("Uplink"), "kbit/s")
s = m:section(TypedSection, "classify") s = m:section(TypedSection, "classify")
s.template = "cbi/tblsection" s.template = "cbi/tblsection"