mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	Revert "Port yuzu/#1367 from yuzu: "game_list: Handle plurals within setFilterResult() better""
This commit is contained in:
		
							parent
							
								
									ea53b0f795
								
							
						
					
					
						commit
						4352c6784b
					
				
					 1 changed files with 9 additions and 1 deletions
				
			
		|  | @ -85,7 +85,15 @@ void GameListSearchField::setFilterResult(int visible, int total) { | |||
|     this->visible = visible; | ||||
|     this->total = total; | ||||
| 
 | ||||
|     label_filter_result->setText(tr("%1 of %n result(s)", "", total).arg(visible)); | ||||
|     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)); | ||||
| } | ||||
| 
 | ||||
| QString GameList::getLastFilterResultItem() { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue