summaryrefslogtreecommitdiffstats
path: root/editor/editor_node.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'editor/editor_node.cpp')
-rw-r--r--editor/editor_node.cpp20
1 files changed, 12 insertions, 8 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp
index 4cd3924a9c..7cff7e1a32 100644
--- a/editor/editor_node.cpp
+++ b/editor/editor_node.cpp
@@ -1514,7 +1514,7 @@ void EditorNode::_dialog_display_load_error(String p_file, Error p_error) {
show_accept(vformat(TTR("Missing file '%s' or one of its dependencies."), p_file.get_file()), TTR("OK"));
} break;
case ERR_FILE_UNRECOGNIZED: {
- show_accept(vformat(TTR("File '%s' is saved in a format that is newer than the formats supported by this version of Godot, so it can't be opened."), p_file.get_file()), TTR("OK"));
+ show_accept(vformat(TTR("File '%s' is saved in a format that is newer than the formats supported by this version of Redot, so it can't be opened."), p_file.get_file()), TTR("OK"));
} break;
default: {
show_accept(vformat(TTR("Error while loading file '%s'."), p_file.get_file()), TTR("OK"));
@@ -3168,17 +3168,17 @@ void EditorNode::_menu_option_confirm(int p_option, bool p_confirmed) {
OS::get_singleton()->shell_open("https://forum.godotengine.org/");
} break;
case HELP_REPORT_A_BUG: {
- OS::get_singleton()->shell_open("https://github.com/godotengine/godot/issues");
+ OS::get_singleton()->shell_open("https://github.com/Redot-Engine/redot-engine/issues");
} break;
case HELP_COPY_SYSTEM_INFO: {
String info = _get_system_info();
DisplayServer::get_singleton()->clipboard_set(info);
} break;
case HELP_SUGGEST_A_FEATURE: {
- OS::get_singleton()->shell_open("https://github.com/godotengine/godot-proposals#readme");
+ OS::get_singleton()->shell_open("https://github.com/Redot-Engine/redot-proposals#readme");
} break;
case HELP_SEND_DOCS_FEEDBACK: {
- OS::get_singleton()->shell_open("https://github.com/godotengine/godot-docs/issues");
+ OS::get_singleton()->shell_open("https://github.com/Redot-Engine/redot-docs/issues");
} break;
case HELP_COMMUNITY: {
OS::get_singleton()->shell_open("https://godotengine.org/community");
@@ -4978,7 +4978,7 @@ String EditorNode::_get_system_info() const {
}
const String distribution_version = OS::get_singleton()->get_version();
- String godot_version = "Godot v" + String(VERSION_FULL_CONFIG);
+ String godot_version = "Redot v" + String(VERSION_FULL_CONFIG);
if (String(VERSION_BUILD) != "official") {
String hash = String(VERSION_HASH);
hash = hash.is_empty() ? String("unknown") : vformat("(%s)", hash.left(9));
@@ -6375,7 +6375,7 @@ bool EditorNode::call_build() {
for (int i = 0; i < build_callback_count && builds_successful; i++) {
if (!build_callbacks[i]()) {
- ERR_PRINT("A Godot Engine build callback failed.");
+ ERR_PRINT("A Redot Engine build callback failed.");
builds_successful = false;
}
}
@@ -7352,9 +7352,13 @@ EditorNode::EditorNode() {
help_menu->add_separator();
if (!global_menu || !OS::get_singleton()->has_feature("macos")) {
// On macOS "Quit" and "About" options are in the "app" menu.
- help_menu->add_icon_shortcut(theme->get_icon(SNAME("Godot"), EditorStringName(EditorIcons)), ED_SHORTCUT_AND_COMMAND("editor/about", TTR("About Godot...")), HELP_ABOUT);
+ help_menu->add_icon_shortcut(theme->get_icon(SNAME("Godot"), EditorStringName(EditorIcons)), ED_SHORTCUT_AND_COMMAND("editor/about", TTR("About Engine...")), HELP_ABOUT);
}
- help_menu->add_icon_shortcut(theme->get_icon(SNAME("Heart"), EditorStringName(EditorIcons)), ED_SHORTCUT_AND_COMMAND("editor/support_development", TTR("Support Godot Development")), HELP_SUPPORT_GODOT_DEVELOPMENT);
+
+ /*
+ TODO: Change to be NOT DONATION focused. Removing for now.
+ help_menu->add_icon_shortcut(theme->get_icon(SNAME("Heart"), EditorStringName(EditorIcons)), ED_SHORTCUT_AND_COMMAND("editor/support_development", TTR("Support Engine Development")), HELP_SUPPORT_GODOT_DEVELOPMENT);
+ */
// Spacer to center 2D / 3D / Script buttons.
Control *right_spacer = memnew(Control);