|
@@ -379,7 +379,7 @@ void FirstLaunchView::copyHeroesData(const QString & path, bool move)
|
|
|
|
|
|
if(dirData.empty())
|
|
|
{
|
|
|
- QMessageBox::critical(this, "Heroes III data not found!", "Failed to detect valid Heroes III data in chosen directory.\nPlease select directory with installed Heroes III data.");
|
|
|
+ QMessageBox::critical(this, tr("Heroes III data not found!"), tr("Failed to detect valid Heroes III data in chosen directory.\nPlease select directory with installed Heroes III data."));
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -393,19 +393,19 @@ void FirstLaunchView::copyHeroesData(const QString & path, bool move)
|
|
|
if (roeFiles.empty())
|
|
|
{
|
|
|
// Directory structure is correct (Data/Maps/Mp3) but no .lod archives that should be present in any install
|
|
|
- QMessageBox::critical(this, "Heroes III data not found!", "Failed to detect valid Heroes III data in chosen directory.\nPlease select directory with installed Heroes III data.");
|
|
|
+ QMessageBox::critical(this, tr("Heroes III data not found!"), tr("Failed to detect valid Heroes III data in chosen directory.\nPlease select directory with installed Heroes III data."));
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
if (!hdFiles.empty())
|
|
|
{
|
|
|
// HD Edition contains only RoE data so we can't use even unmodified files from it
|
|
|
- QMessageBox::critical(this, "Heroes III data not found!", "Heroes III: HD Edition files are not supported by VCMI.\nPlease select directory with Heroes III: Complete Edition or Heroes III: Shadow of Death.");
|
|
|
+ QMessageBox::critical(this, tr("Heroes III data not found!"), tr("Heroes III: HD Edition files are not supported by VCMI.\nPlease select directory with Heroes III: Complete Edition or Heroes III: Shadow of Death."));
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
// RoE or some other unsupported edition. Demo version?
|
|
|
- QMessageBox::critical(this, "Heroes III data not found!", "Unknown or unsupported Heroes III version found.\nPlease select directory with Heroes III: Complete Edition or Heroes III: Shadow of Death.");
|
|
|
+ QMessageBox::critical(this, tr("Heroes III data not found!"), tr("Unknown or unsupported Heroes III version found.\nPlease select directory with Heroes III: Complete Edition or Heroes III: Shadow of Death."));
|
|
|
return;
|
|
|
}
|
|
|
|