summaryrefslogtreecommitdiffstats
path: root/editor/plugins/script_editor_plugin.cpp
diff options
context:
space:
mode:
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));