summaryrefslogtreecommitdiffstats
path: root/editor/plugins/script_editor_plugin.cpp
diff options
context:
space:
mode:
authorTrashguy <trashguy@gmail.com>2024-10-11 12:21:42 -0400
committerSpartan322 <Megacake1234@gmail.com>2024-10-13 15:05:24 -0400
commit9901f655fb46bd345770ad5f4a1638c4051b1816 (patch)
treebb22b4881145f122568c8f2e51e912078ad1b4fc /editor/plugins/script_editor_plugin.cpp
parent6699ae7897658e44efc3cfb2cba91c11a8f5aa6a (diff)
downloadredot-engine-9901f655fb46bd345770ad5f4a1638c4051b1816.tar.gz
Rebrand Godot 4.3 to Redot
Diffstat (limited to 'editor/plugins/script_editor_plugin.cpp')
-rw-r--r--editor/plugins/script_editor_plugin.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp
index f7ced2b179..4bf1da6b70 100644
--- a/editor/plugins/script_editor_plugin.cpp
+++ b/editor/plugins/script_editor_plugin.cpp
@@ -2060,12 +2060,12 @@ void ScriptEditor::_update_online_doc() {
}
if (native_class_doc) {
String name = eh->get_class();
- String tooltip = vformat(TTR("Open '%s' in Godot online documentation."), name);
+ String tooltip = vformat(TTR("Open '%s' in Redot online documentation."), name);
site_search->set_text(TTR("Open in Online Docs"));
site_search->set_tooltip_text(tooltip);
} else {
site_search->set_text(TTR("Online Docs"));
- site_search->set_tooltip_text(TTR("Open Godot online documentation."));
+ site_search->set_tooltip_text(TTR("Open Redot online documentation."));
}
}
@@ -4536,7 +4536,7 @@ ScriptEditorPlugin::ScriptEditorPlugin() {
ED_SHORTCUT("script_text_editor/capitalize", TTR("Capitalize"), KeyModifierMask::SHIFT | Key::F6);
window_wrapper = memnew(WindowWrapper);
- window_wrapper->set_window_title(vformat(TTR("%s - Godot Engine"), TTR("Script Editor")));
+ window_wrapper->set_window_title(vformat(TTR("%s - Redot Engine"), TTR("Script Editor")));
window_wrapper->set_margins_enabled(true);
script_editor = memnew(ScriptEditor(window_wrapper));