1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Merge pull request #11138 from NathanWarden/change_cancel_to_done

Changed the text from "Cancel" to "Done" in the "Fix Dependencies" dialog.
This commit is contained in:
Poommetee Ketson
2017-09-12 05:27:25 +07:00
committed by GitHub

View File

@@ -489,6 +489,7 @@ DependencyErrorDialog::DependencyErrorDialog() {
vb->add_margin_child(TTR("Scene failed to load due to missing dependencies:"), files, true); vb->add_margin_child(TTR("Scene failed to load due to missing dependencies:"), files, true);
files->set_v_size_flags(SIZE_EXPAND_FILL); files->set_v_size_flags(SIZE_EXPAND_FILL);
get_ok()->set_text(TTR("Open Anyway")); get_ok()->set_text(TTR("Open Anyway"));
get_cancel()->set_text(TTR("Done"));
text = memnew(Label); text = memnew(Label);
vb->add_child(text); vb->add_child(text);