mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	Merge pull request #1367 from lioncash/plural
game_list: Handle plurals within setFilterResult() better
This commit is contained in:
		
						commit
						cf97d00eb6
					
				@ -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() {
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user