1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Fix vformat(), minor typos and word puzzles

This commit is contained in:
Yuri Chornoivan
2018-08-28 21:15:04 +03:00
parent d42807371c
commit 06e73522dc
6 changed files with 11 additions and 11 deletions

View File

@@ -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;
}