Updated the engine license in the EditorAbout window.

This commit is contained in:
Relintai 2024-09-17 21:13:49 +02:00
parent 10eaa32355
commit 1b06889fe1

View File

@ -170,8 +170,11 @@ EditorAbout::EditorAbout() {
Label *about_text = memnew(Label);
about_text->set_v_size_flags(Control::SIZE_SHRINK_CENTER);
about_text->set_text(String::utf8("\xc2\xa9 2007-2022 Juan Linietsky, Ariel Manzur.\n\xc2\xa9 2014-2022 ") +
TTR("Godot Engine contributors") + String::utf8("\n\xc2\xa9 2022-2023 Péter Magyar.\n"));
about_text->set_text(
String::utf8("\xc2\xa9 2022-present Péter Magyar.\n\xc2\xa9 2014-2022 ") +
TTR("Godot Engine contributors") +
String::utf8(".\n\xc2\xa9 2007-2022 Juan Linietsky, Ariel Manzur."));
version_info_vbc->add_child(about_text);
hbc->add_child(version_info_vbc);