summaryrefslogtreecommitdiffstats
path: root/editor/project_manager/project_dialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'editor/project_manager/project_dialog.cpp')
-rw-r--r--editor/project_manager/project_dialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/project_manager/project_dialog.cpp b/editor/project_manager/project_dialog.cpp
index afbb223eb5..0efd63fd99 100644
--- a/editor/project_manager/project_dialog.cpp
+++ b/editor/project_manager/project_dialog.cpp
@@ -479,7 +479,7 @@ void ProjectDialog::ok_pressed() {
if (!is_folder_empty) {
ConfirmationDialog *cd = memnew(ConfirmationDialog);
cd->set_title(TTR("Warning: This folder is not empty"));
- cd->set_text(TTR("You are about to create a Godot project in a non-empty folder.\nThe entire contents of this folder will be imported as project resources!\n\nAre you sure you wish to continue?"));
+ cd->set_text(TTR("You are about to create a Redot project in a non-empty folder.\nThe entire contents of this folder will be imported as project resources!\n\nAre you sure you wish to continue?"));
cd->get_ok_button()->connect(SceneStringName(pressed), callable_mp(this, &ProjectDialog::_nonempty_confirmation_ok_pressed));
get_parent()->add_child(cd);
cd->popup_centered();