mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-15 01:33:07 -07:00
Fix status string for errored torrents.
This commit is contained in:
parent
5b232528cc
commit
bf0319f7b2
4 changed files with 13 additions and 2 deletions
|
@ -135,8 +135,11 @@ void TransferListDelegate::paint(QPainter * painter, const QStyleOptionViewItem
|
|||
case BitTorrent::TorrentState::PausedUploading:
|
||||
display = tr("Completed");
|
||||
break;
|
||||
case BitTorrent::TorrentState::MissingFiles:
|
||||
display = tr("Missing Files");
|
||||
break;
|
||||
case BitTorrent::TorrentState::Error:
|
||||
display = tr("Missing Files");
|
||||
display = tr("Errored", "torrent status, the torrent has an error");
|
||||
break;
|
||||
default:
|
||||
display = "";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue