From d0986297caaec606d5d4d0442e14aa426d3ad523 Mon Sep 17 00:00:00 2001 From: jagannatharjun Date: Wed, 28 Oct 2020 10:28:20 +0530 Subject: [PATCH] Rename TR_PROGRESS header in TransferList Closes #13665 --- src/gui/transferlistmodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/transferlistmodel.cpp b/src/gui/transferlistmodel.cpp index a5c887a67..17e115e25 100644 --- a/src/gui/transferlistmodel.cpp +++ b/src/gui/transferlistmodel.cpp @@ -166,7 +166,7 @@ QVariant TransferListModel::headerData(int section, Qt::Orientation orientation, case TR_QUEUE_POSITION: return QChar('#'); case TR_NAME: return tr("Name", "i.e: torrent name"); case TR_SIZE: return tr("Size", "i.e: torrent size"); - case TR_PROGRESS: return tr("Done", "% Done"); + case TR_PROGRESS: return tr("Progress", "% Done"); case TR_STATUS: return tr("Status", "Torrent status (e.g. downloading, seeding, paused)"); case TR_SEEDS: return tr("Seeds", "i.e. full sources (often untranslated)"); case TR_PEERS: return tr("Peers", "i.e. partial sources (often untranslated)");