diff options
Diffstat (limited to 'editor/plugins/script_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/script_editor_plugin.cpp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp index 0b58369917..562a98c44a 100644 --- a/editor/plugins/script_editor_plugin.cpp +++ b/editor/plugins/script_editor_plugin.cpp @@ -2,9 +2,11 @@ /* script_editor_plugin.cpp */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ @@ -2163,12 +2165,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.")); } } @@ -4666,7 +4668,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)); |