Avoid unnecessary translation. Closes #6158

This commit is contained in:
Oke Atime 2016-12-31 01:29:47 +09:00
parent 88b2b26007
commit e89c32685b
No known key found for this signature in database
GPG Key ID: 8DD974E4EE1F2271

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());