From 95ccbdea4b872ea0424e9815ced22b35dd88023d Mon Sep 17 00:00:00 2001 From: Aaron Franke Date: Mon, 10 Jul 2023 11:52:48 -0500 Subject: [PATCH] Improve text in popup warning, remove "upgrade or downgrade" text --- editor/project_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/project_manager.cpp b/editor/project_manager.cpp index f7480ce9dff3..6df6973a7d37 100644 --- a/editor/project_manager.cpp +++ b/editor/project_manager.cpp @@ -2313,7 +2313,7 @@ void ProjectManager::_open_selected_projects_ask() { unsupported_features.remove_at(i); i--; } else if (_project_feature_looks_like_version(feature)) { - warning_message += vformat(TTR("Warning: This project was built in Godot %s.\nOpening will upgrade or downgrade the project to Godot %s.\n\n"), Variant(feature), Variant(VERSION_BRANCH)); + warning_message += vformat(TTR("Warning: This project was last edited in Godot %s. Opening will change it to Godot %s.\n\n"), Variant(feature), Variant(VERSION_BRANCH)); unsupported_features.remove_at(i); i--; }