@@ -4349,28 +4349,28 @@ ScriptEditor::ScriptEditor(WindowWrapper *p_wrapper) {
43494349
43504350 disk_changed = memnew (ConfirmationDialog);
43514351 {
4352- disk_changed->set_title (TTR (" Files have been modified on disk " ));
4352+ disk_changed->set_title (TTR (" Files have been modified outside Godot " ));
43534353
43544354 VBoxContainer *vbc = memnew (VBoxContainer);
43554355 disk_changed->add_child (vbc);
43564356
43574357 Label *files_are_newer_label = memnew (Label);
4358- files_are_newer_label->set_text (TTR (" The following files are newer on disk. " ));
4358+ files_are_newer_label->set_text (TTR (" The following files are newer on disk: " ));
43594359 vbc->add_child (files_are_newer_label);
43604360
4361- Label *what_action_label = memnew (Label);
4362- what_action_label->set_text (TTR (" What action should be taken?:" ));
4363- vbc->add_child (what_action_label);
4364-
43654361 disk_changed_list = memnew (Tree);
43664362 vbc->add_child (disk_changed_list);
43674363 disk_changed_list->set_auto_translate_mode (AUTO_TRANSLATE_MODE_DISABLED);
43684364 disk_changed_list->set_v_size_flags (SIZE_EXPAND_FILL);
43694365
4366+ Label *what_action_label = memnew (Label);
4367+ what_action_label->set_text (TTR (" What action should be taken?" ));
4368+ vbc->add_child (what_action_label);
4369+
43704370 disk_changed->connect (SceneStringName (confirmed), callable_mp (this , &ScriptEditor::reload_scripts).bind (false ));
4371- disk_changed->set_ok_button_text (TTR (" Discard local changes and reload " ));
4371+ disk_changed->set_ok_button_text (TTR (" Reload from disk " ));
43724372
4373- disk_changed->add_button (TTR (" Keep local changes and overwrite " ), !DisplayServer::get_singleton ()->get_swap_cancel_ok (), " resave" );
4373+ disk_changed->add_button (TTR (" Ignore external changes" ), !DisplayServer::get_singleton ()->get_swap_cancel_ok (), " resave" );
43744374 disk_changed->connect (" custom_action" , callable_mp (this , &ScriptEditor::_resave_scripts));
43754375 }
43764376
0 commit comments