1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-23 22:37:55 +02:00

Fix one caption in the source code

This commit is contained in:
Fabrice TIERCELIN
2024-09-22 19:37:15 +02:00
parent 894c88defc
commit 3e0274fde6
15 changed files with 298 additions and 294 deletions

View File

@@ -323,7 +323,7 @@ void FirstLaunchView::extractGogData()
QFile tmpFile(file);
if(!tmpFile.open(QIODevice::ReadOnly))
{
QMessageBox::critical(this, tr("File cannot opened"), tmpFile.errorString());
QMessageBox::critical(this, tr("File cannot be opened"), tmpFile.errorString());
return QString{};
}
QByteArray magicFile = tmpFile.read(magic.length());