diff --git a/editor/gui/editor_quick_open_dialog.cpp b/editor/gui/editor_quick_open_dialog.cpp index 5d26b204ea..05814e2747 100644 --- a/editor/gui/editor_quick_open_dialog.cpp +++ b/editor/gui/editor_quick_open_dialog.cpp @@ -145,7 +145,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) {