1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-22 22:13:35 +02:00

Add tooltip / help for files import

This commit is contained in:
Ivan Savenko 2024-12-06 14:19:47 +00:00
parent 28724c3f1b
commit b2099121cd

View File

@ -209,7 +209,17 @@ void StartGameTab::on_buttonUpdateMods_clicked()
void StartGameTab::on_buttonHelpImportFiles_clicked()
{
QMessageBox::information(this, ui->buttonImportFiles->text(), tr("TODO")); // TODO
QString message = tr(
"This option allows you to import additional data files into your VCMI installation. "
"At the moment, following options are supported:\n\n"
" - Heroes III Maps (.h3m or .vmap).\n"
" - Heroes III Campaigns (.h3c or .vcmp).\n"
" - Heroes III Chronicles using offline backup installer from GOG.com (.exe).\n"
" - VCMI mods in zip format (.zip)\n"
" - VCMI configuration files (.json)\n"
);
QMessageBox::information(this, ui->buttonImportFiles->text(), message);
}
void StartGameTab::on_buttonInstallTranslationHelp_clicked()