mirror of https://github.com/BOINC/boinc.git
web: for network up/down limit preferences, use K=1024 like the manager
This commit is contained in:
parent
f3c9a7e2b4
commit
7a0ea63597
|
@ -195,13 +195,13 @@ $net_prefs = array(
|
||||||
tra("Limit download rate to"),
|
tra("Limit download rate to"),
|
||||||
tra("Limit the download rate of file transfers."),
|
tra("Limit the download rate of file transfers."),
|
||||||
"max_bytes_sec_down",
|
"max_bytes_sec_down",
|
||||||
new NUM_SPEC(tra("KB/second"), 0, 9999999, 0, 1000, 100)
|
new NUM_SPEC(tra("KB/second"), 0, 9999999, 0, 1024, 100)
|
||||||
),
|
),
|
||||||
new PREF_OPT_NUM(
|
new PREF_OPT_NUM(
|
||||||
tra("Limit upload rate to"),
|
tra("Limit upload rate to"),
|
||||||
tra("Limit the upload rate of file transfers."),
|
tra("Limit the upload rate of file transfers."),
|
||||||
"max_bytes_sec_up",
|
"max_bytes_sec_up",
|
||||||
new NUM_SPEC(tra("KB/second"), 0, 9999999, 0, 1000, 100)
|
new NUM_SPEC(tra("KB/second"), 0, 9999999, 0, 1024, 100)
|
||||||
),
|
),
|
||||||
new PREF_NUM2(
|
new PREF_NUM2(
|
||||||
tra("Limit usage to"),
|
tra("Limit usage to"),
|
||||||
|
|
Loading…
Reference in New Issue