Shorten column name

This commit is contained in:
Stiliyan Tonev (Bark) 2025-01-13 16:24:58 +02:00
commit aec3d827fc

View file

@ -194,7 +194,7 @@ QVariant TransferListModel::headerData(const int section, const Qt::Orientation
case TR_INFOHASH_V2: return tr("Info Hash v2", "i.e: torrent info hash v2"); case TR_INFOHASH_V2: return tr("Info Hash v2", "i.e: torrent info hash v2");
case TR_REANNOUNCE: return tr("Reannounce In", "Indicates the time until next trackers reannounce"); case TR_REANNOUNCE: return tr("Reannounce In", "Indicates the time until next trackers reannounce");
case TR_PRIVATE: return tr("Private", "Flags private torrents"); case TR_PRIVATE: return tr("Private", "Flags private torrents");
case TR_PERCENT_SELECTED: return tr("% Selected Data", "Percentage of selected data to download."); case TR_PERCENT_SELECTED: return tr("%", "Percentage of selected data to download.");
default: return {}; default: return {};
} }
} }