summaryrefslogtreecommitdiff
path: root/editor/plugins/script_editor_plugin.cpp
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2018-08-29 12:21:33 +0200
committerGitHub <noreply@github.com>2018-08-29 12:21:33 +0200
commit6c8aa939e4a8c770e586a20bfc556431b5b1dad7 (patch)
tree7de8babdf5a04cb3221fbfc194c97ac8e75ea296 /editor/plugins/script_editor_plugin.cpp
parent1f3aa6890ff3ffc308e8aab198ec67c901a5c868 (diff)
parent06e73522dccdd683194bc439a6698ae93b4bbac6 (diff)
Merge pull request #21539 from yurchor/master
Fix minor typos and word puzzles
Diffstat (limited to 'editor/plugins/script_editor_plugin.cpp')
-rw-r--r--editor/plugins/script_editor_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp
index fa034c97c0..70f1789a86 100644
--- a/editor/plugins/script_editor_plugin.cpp
+++ b/editor/plugins/script_editor_plugin.cpp
@@ -862,7 +862,7 @@ void ScriptEditor::_file_dialog_action(String p_file) {
if (extensions.find(p_file.get_extension())) {
Ref<Script> scr = ResourceLoader::load(p_file);
if (!scr.is_valid()) {
- editor->show_warning(TTR("Error could not load file."), TTR("Error!"));
+ editor->show_warning(TTR("Error: could not load file."), TTR("Error!"));
file_dialog_option = -1;
return;
}