mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-19 04:49:47 -07:00
Fix incorrect seeding time string in WebUI General tab
This commit is contained in:
parent
1e2bf50e66
commit
d19b524d2d
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ window.qBittorrent.PropGeneral = (function() {
|
||||||
let temp;
|
let temp;
|
||||||
// Update Torrent data
|
// Update Torrent data
|
||||||
if (data.seeding_time > 0)
|
if (data.seeding_time > 0)
|
||||||
temp = "QBT_TR(%1 (%2 this session))QBT_TR[CONTEXT=PropertiesWidget]"
|
temp = "QBT_TR(%1 (seeded for %2))QBT_TR[CONTEXT=PropertiesWidget]"
|
||||||
.replace("%1", window.qBittorrent.Misc.friendlyDuration(data.time_elapsed))
|
.replace("%1", window.qBittorrent.Misc.friendlyDuration(data.time_elapsed))
|
||||||
.replace("%2", window.qBittorrent.Misc.friendlyDuration(data.seeding_time));
|
.replace("%2", window.qBittorrent.Misc.friendlyDuration(data.seeding_time));
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue