mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-10 23:42:46 -07:00
Replace "seeding_duration" with "finished_duration" everywhere
Closes #10223. PR #13601.
This commit is contained in:
parent
d6fc020ba7
commit
d3bdeaab3f
8 changed files with 7 additions and 15 deletions
|
@ -439,7 +439,7 @@ void PropertiesWidget::loadDynamicData()
|
|||
if (m_torrent->isSeed())
|
||||
elapsedString = tr("%1 (seeded for %2)", "e.g. 4m39s (seeded for 3m10s)")
|
||||
.arg(Utils::Misc::userFriendlyDuration(m_torrent->activeTime())
|
||||
, Utils::Misc::userFriendlyDuration(m_torrent->seedingTime()));
|
||||
, Utils::Misc::userFriendlyDuration(m_torrent->finishedTime()));
|
||||
else
|
||||
elapsedString = Utils::Misc::userFriendlyDuration(m_torrent->activeTime());
|
||||
m_ui->labelElapsedVal->setText(elapsedString);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue