Skip to content
Snippets Groups Projects
Unverified Commit cf97d00e authored by bunnei's avatar bunnei Committed by GitHub
Browse files

Merge pull request #1367 from lioncash/plural

game_list: Handle plurals within setFilterResult() better
parents b0b57c21 e980e90d
No related branches found
No related tags found
No related merge requests found
......@@ -89,15 +89,7 @@ bool GameList::SearchField::KeyReleaseEater::eventFilter(QObject* obj, QEvent* e
}
void GameList::SearchField::setFilterResult(int visible, int total) {
QString result_of_text = tr("of");
QString result_text;
if (total == 1) {
result_text = tr("result");
} else {
result_text = tr("results");
}
label_filter_result->setText(
QString("%1 %2 %3 %4").arg(visible).arg(result_of_text).arg(total).arg(result_text));
label_filter_result->setText(tr("%1 of %n result(s)", "", total).arg(visible));
}
void GameList::SearchField::clear() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment