Skip to content

Commit 554dc00

Browse files
committed
Merge pull request #85108 from theDrake/pick-main-scene-punctuation
Adjust `pick_main_scene` dialog punctuation
2 parents 7f8b436 + 45e2908 commit 554dc00

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

editor/editor_node.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -5343,7 +5343,7 @@ bool EditorNode::ensure_main_scene(bool p_from_native) {
53435343

53445344
if (main_scene.is_empty()) {
53455345
current_menu_option = -1;
5346-
pick_main_scene->set_text(TTR("No main scene has ever been defined, select one?\nYou can change it later in \"Project Settings\" under the 'application' category."));
5346+
pick_main_scene->set_text(TTR("No main scene has ever been defined. Select one?\nYou can change it later in \"Project Settings\" under the 'application' category."));
53475347
pick_main_scene->popup_centered();
53485348

53495349
if (editor_data.get_edited_scene_root()) {
@@ -5358,14 +5358,14 @@ bool EditorNode::ensure_main_scene(bool p_from_native) {
53585358

53595359
if (!FileAccess::exists(main_scene)) {
53605360
current_menu_option = -1;
5361-
pick_main_scene->set_text(vformat(TTR("Selected scene '%s' does not exist, select a valid one?\nYou can change it later in \"Project Settings\" under the 'application' category."), main_scene));
5361+
pick_main_scene->set_text(vformat(TTR("Selected scene '%s' does not exist. Select a valid one?\nYou can change it later in \"Project Settings\" under the 'application' category."), main_scene));
53625362
pick_main_scene->popup_centered();
53635363
return false;
53645364
}
53655365

53665366
if (ResourceLoader::get_resource_type(main_scene) != "PackedScene") {
53675367
current_menu_option = -1;
5368-
pick_main_scene->set_text(vformat(TTR("Selected scene '%s' is not a scene file, select a valid one?\nYou can change it later in \"Project Settings\" under the 'application' category."), main_scene));
5368+
pick_main_scene->set_text(vformat(TTR("Selected scene '%s' is not a scene file. Select a valid one?\nYou can change it later in \"Project Settings\" under the 'application' category."), main_scene));
53695369
pick_main_scene->popup_centered();
53705370
return false;
53715371
}

0 commit comments

Comments
 (0)