diff options
| author | WiseNoodle <wisenoodle21@gmail.com> | 2023-07-12 10:36:35 -0400 |
|---|---|---|
| committer | WiseNoodle <wisenoodle21@gmail> | 2023-07-12 11:53:31 -0400 |
| commit | d1c70cf7d41d406578010dfbe811eac8fb260f7a (patch) | |
| tree | 556fbd13238cbca5105ea8f15ffe7a3c16d61019 | |
| parent | d676246647b848dbe341f83676eab087864a6c74 (diff) | |
| download | redot-engine-d1c70cf7d41d406578010dfbe811eac8fb260f7a.tar.gz | |
Add missing word to text of the alert dialog
| -rw-r--r-- | editor/editor_node.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index f3c35e80fc..358356adf5 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -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")); } break; 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; default: { show_accept(vformat(TTR("Error while loading file '%s'."), p_file.get_file()), TTR("OK")); |
