summaryrefslogtreecommitdiffstats
path: root/editor/export/project_export.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'editor/export/project_export.cpp')
-rw-r--r--editor/export/project_export.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/editor/export/project_export.cpp b/editor/export/project_export.cpp
index f9137082d7..235f9f696c 100644
--- a/editor/export/project_export.cpp
+++ b/editor/export/project_export.cpp
@@ -1551,7 +1551,7 @@ ProjectExportDialog::ProjectExportDialog() {
patch_vb->add_margin_child(TTR("Base Packs:"), patches, true);
patch_dialog = memnew(EditorFileDialog);
- patch_dialog->add_filter("*.pck", TTR("Godot Project Pack"));
+ patch_dialog->add_filter("*.pck", TTR("Redot Project Pack"));
patch_dialog->set_access(EditorFileDialog::ACCESS_FILESYSTEM);
patch_dialog->set_file_mode(EditorFileDialog::FILE_MODE_OPEN_FILE);
patch_dialog->connect("file_selected", callable_mp(this, &ProjectExportDialog::_patch_file_selected));
@@ -1670,11 +1670,11 @@ ProjectExportDialog::ProjectExportDialog() {
set_cancel_button_text(TTR("Close"));
set_ok_button_text(TTR("Export PCK/ZIP..."));
- get_ok_button()->set_tooltip_text(TTR("Export the project resources as a PCK or ZIP package. This is not a playable build, only the project data without a Godot executable."));
+ get_ok_button()->set_tooltip_text(TTR("Export the project resources as a PCK or ZIP package. This is not a playable build, only the project data without a Redot executable."));
get_ok_button()->set_disabled(true);
export_button = add_button(TTR("Export Project..."), !DisplayServer::get_singleton()->get_swap_cancel_ok(), "export");
- export_button->set_tooltip_text(TTR("Export the project as a playable build (Godot executable and project data) for the selected preset."));
+ export_button->set_tooltip_text(TTR("Export the project as a playable build (Redot executable and project data) for the selected preset."));
export_button->connect(SceneStringName(pressed), callable_mp(this, &ProjectExportDialog::_export_project));
// Disable initially before we select a valid preset
export_button->set_disabled(true);
@@ -1694,7 +1694,7 @@ ProjectExportDialog::ProjectExportDialog() {
export_pck_zip = memnew(EditorFileDialog);
export_pck_zip->add_filter("*.zip", TTR("ZIP File"));
- export_pck_zip->add_filter("*.pck", TTR("Godot Project Pack"));
+ export_pck_zip->add_filter("*.pck", TTR("Redot Project Pack"));
export_pck_zip->set_access(EditorFileDialog::ACCESS_FILESYSTEM);
export_pck_zip->set_file_mode(EditorFileDialog::FILE_MODE_SAVE_FILE);
add_child(export_pck_zip);