mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 19:44:52 +00:00
Fix translating speed units in status tab when a per-torrent limit is
set
This commit is contained in:
parent
a69efdfc56
commit
7c349b1fa9
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ def fpcnt(value):
|
|||
|
||||
def fspeed(value, max_value=-1):
|
||||
if max_value > -1:
|
||||
return "%s [%s _(KiB/s)]" % (deluge.common.fspeed(value), max_value)
|
||||
return "%s [%s %s]" % (deluge.common.fspeed(value), max_value, _("KiB/s"))
|
||||
else:
|
||||
return deluge.common.fspeed(value)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue