Skip to content

Commit 45e2908

Browse files
committed
Adjust pick_main_scene punctuation
1 parent 80de898 commit 45e2908

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
@@ -5517,7 +5517,7 @@ bool EditorNode::ensure_main_scene(bool p_from_native) {
55175517

55185518
if (main_scene.is_empty()) {
55195519
current_menu_option = -1;
5520-
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."));
5520+
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."));
55215521
pick_main_scene->popup_centered();
55225522

55235523
if (editor_data.get_edited_scene_root()) {
@@ -5532,14 +5532,14 @@ bool EditorNode::ensure_main_scene(bool p_from_native) {
55325532

55335533
if (!FileAccess::exists(main_scene)) {
55345534
current_menu_option = -1;
5535-
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));
5535+
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));
55365536
pick_main_scene->popup_centered();
55375537
return false;
55385538
}
55395539

55405540
if (ResourceLoader::get_resource_type(main_scene) != "PackedScene") {
55415541
current_menu_option = -1;
5542-
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));
5542+
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));
55435543
pick_main_scene->popup_centered();
55445544
return false;
55455545
}

0 commit comments

Comments
 (0)