Avoid unnecessary translation. Closes #6158

This commit is contained in:
Oke Atime 2016-12-31 01:29:47 +09:00 committed by sledgehammer999
parent eed3f0559a
commit ae6a82f814
No known key found for this signature in database
GPG key ID: 6E4A2D025B7CC9A2

View file

@ -233,7 +233,7 @@ void CategoryFiltersList::addItem(const QString &category, bool hasTorrent)
++torrentsInCategory;
m_categories.insert(category, torrentsInCategory);
categoryItem->setText(tr("%1 (%2)", "category_name (10)").arg(category).arg(torrentsInCategory));
categoryItem->setText(QString("%1 (%2)").arg(category).arg(torrentsInCategory));
if (exists) return;
Q_ASSERT(count() >= 2);
@ -257,7 +257,7 @@ void CategoryFiltersList::removeItem(const QString &category)
if (row < 2) return;
QListWidgetItem *categoryItem = item(row);
categoryItem->setText(tr("%1 (%2)", "category_name (10)").arg(category).arg(torrentsInCategory));
categoryItem->setText(QString("%1 (%2)").arg(category).arg(torrentsInCategory));
m_categories.insert(category, torrentsInCategory);
}
@ -502,7 +502,7 @@ void TrackerFiltersList::addItem(const QString &tracker, const QString &hash)
return;
}
trackerItem->setText(tr("%1 (%2)", "openbittorrent.com (10)").arg(host).arg(tmp.size()));
trackerItem->setText(QString("%1 (%2)").arg(host).arg(tmp.size()));
if (exists) {
if (currentRow() == rowFromTracker(host))
applyFilter(currentRow());