From 73a7fcfe732371b7ddfdbec1f2274d6b6e12eb8e Mon Sep 17 00:00:00 2001 From: Megamouse Date: Mon, 11 May 2026 12:18:44 +0200 Subject: [PATCH] Qt: clarify package installation during boot --- rpcs3/rpcs3qt/pkg_install_dialog.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/rpcs3/rpcs3qt/pkg_install_dialog.cpp b/rpcs3/rpcs3qt/pkg_install_dialog.cpp index a1ebb9a8d1..c93b9dec01 100644 --- a/rpcs3/rpcs3qt/pkg_install_dialog.cpp +++ b/rpcs3/rpcs3qt/pkg_install_dialog.cpp @@ -195,8 +195,12 @@ pkg_install_dialog::pkg_install_dialog(const QStringList& paths, bool from_boot, } QLabel* description = new QLabel(m_dir_list->count() == 1 - ? tr("Do you want to install this package?") - : tr("You are about to install multiple packages.\nReorder and/or exclude them if needed, then click \"Install\" to proceed.") + ? from_boot + ? tr("We found a package bundled with the game.\nDo you want to install this package?") + : tr("Do you want to install this package?") + : from_boot + ? tr("We found multiple packages bundled with the game.\nReorder and/or exclude them if needed, then click \"Install\" to proceed.") + : tr("You are about to install multiple packages.\nReorder and/or exclude them if needed, then click \"Install\" to proceed.") ); QLabel* label = new QLabel(tr("Would you like to precompile caches and install shortcuts to the installed software?"));