Qt: clarify package installation during boot

This commit is contained in:
Megamouse 2026-05-11 12:18:44 +02:00
parent 72ab6a53bc
commit 73a7fcfe73

View File

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