mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-15 01:33:07 -07:00
Fix missing torrent states.
This commit is contained in:
parent
d76a84048b
commit
5ec2af7b5a
4 changed files with 22 additions and 1 deletions
|
@ -123,6 +123,12 @@ void TransferListDelegate::paint(QPainter * painter, const QStyleOptionViewItem
|
|||
case BitTorrent::TorrentState::CheckingUploading:
|
||||
display = tr("Checking", "Torrent local data is being checked");
|
||||
break;
|
||||
case BitTorrent::TorrentState::QueuedForChecking:
|
||||
display = tr("Queued for checking", "i.e. torrent is queued for hash checking");
|
||||
break;
|
||||
case BitTorrent::TorrentState::CheckingResumeData:
|
||||
display = tr("Checking resume data", "used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents.");
|
||||
break;
|
||||
case BitTorrent::TorrentState::PausedDownloading:
|
||||
display = tr("Paused");
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue