Merge pull request #92984 from adamscott/reveal-me

Customize the file manager label for each platform
This commit is contained in:
Thaddeus Crews 2026-03-04 11:20:31 -06:00
commit 371282b28e
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC
11 changed files with 62 additions and 13 deletions

View file

@ -9193,7 +9193,7 @@ EditorNode::EditorNode() {
}
remove_android_build_template = memnew(ConfirmationDialog);
remove_android_build_template->set_ok_button_text(TTR("Show in File Manager"));
remove_android_build_template->set_ok_button_text(OS::get_singleton()->get_platform_string(OS::PLATFORM_STRING_FILE_MANAGER_OPEN));
remove_android_build_template->connect(SceneStringName(confirmed), callable_mp(this, &EditorNode::_android_explore_build_templates));
gui_base->add_child(remove_android_build_template);