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?"));