Browse Source

Avoid unnecessary translation. Closes #6158

adaptive-webui-19844
Oke Atime 8 years ago
parent
commit
e89c32685b
No known key found for this signature in database
GPG Key ID: 8DD974E4EE1F2271
  1. 6
      src/gui/transferlistfilterswidget.cpp

6
src/gui/transferlistfilterswidget.cpp

@ -233,7 +233,7 @@ void CategoryFiltersList::addItem(const QString &category, bool hasTorrent)
++torrentsInCategory; ++torrentsInCategory;
m_categories.insert(category, 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; if (exists) return;
Q_ASSERT(count() >= 2); Q_ASSERT(count() >= 2);
@ -257,7 +257,7 @@ void CategoryFiltersList::removeItem(const QString &category)
if (row < 2) return; if (row < 2) return;
QListWidgetItem *categoryItem = item(row); 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); m_categories.insert(category, torrentsInCategory);
} }
@ -502,7 +502,7 @@ void TrackerFiltersList::addItem(const QString &tracker, const QString &hash)
return; 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 (exists) {
if (currentRow() == rowFromTracker(host)) if (currentRow() == rowFromTracker(host))
applyFilter(currentRow()); applyFilter(currentRow());

Loading…
Cancel
Save