applications/luci-qos: clarify kb/s vs. kbit/s
This commit is contained in:
parent
12df938e98
commit
50cbeae61c
2 changed files with 4 additions and 4 deletions
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue