mirror of
				https://github.com/godotengine/godot.git
				synced 2025-11-04 07:31:16 +00:00 
			
		
		
		
	Merge pull request #79381 from WiseNoodle/fix-wording-of-missing-file-or-dependencies-alert
Add missing word to text of the alert dialog
This commit is contained in:
		
						commit
						60f3b7967c
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -1411,7 +1411,7 @@ void EditorNode::_dialog_display_load_error(String p_file, Error p_error) {
 | 
				
			||||||
				show_accept(vformat(TTR("Scene file '%s' appears to be invalid/corrupt."), p_file.get_file()), TTR("OK"));
 | 
									show_accept(vformat(TTR("Scene file '%s' appears to be invalid/corrupt."), p_file.get_file()), TTR("OK"));
 | 
				
			||||||
			} break;
 | 
								} break;
 | 
				
			||||||
			case ERR_FILE_NOT_FOUND: {
 | 
								case ERR_FILE_NOT_FOUND: {
 | 
				
			||||||
				show_accept(vformat(TTR("Missing file '%s' or one its dependencies."), p_file.get_file()), TTR("OK"));
 | 
									show_accept(vformat(TTR("Missing file '%s' or one of its dependencies."), p_file.get_file()), TTR("OK"));
 | 
				
			||||||
			} break;
 | 
								} break;
 | 
				
			||||||
			default: {
 | 
								default: {
 | 
				
			||||||
				show_accept(vformat(TTR("Error while loading file '%s'."), p_file.get_file()), TTR("OK"));
 | 
									show_accept(vformat(TTR("Error while loading file '%s'."), p_file.get_file()), TTR("OK"));
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue