diff --git a/editor/gui/editor_quick_open_dialog.cpp b/editor/gui/editor_quick_open_dialog.cpp index 0aaca70ddd..2cd6d35aa7 100644 --- a/editor/gui/editor_quick_open_dialog.cpp +++ b/editor/gui/editor_quick_open_dialog.cpp @@ -149,7 +149,7 @@ String EditorQuickOpenDialog::get_dialog_title(const Vector &p_base_ return TTR("Select Scene"); } - return TTR("Select") + " " + p_base_types[0]; + return vformat(TTR("Select %s"), p_base_types[0]); } void EditorQuickOpenDialog::popup_dialog(const Vector &p_base_types, const Callable &p_item_selected_callback) {