Fixes "Project Information" is Misleading #11296 - replace project with document (#11367)

* project to document on information, merge, util

* change project to document in unit system dialog

---------

Co-authored-by: WandererFan <WandererFan@gmail.com>
This commit is contained in:
Max Wilfinger
2023-11-20 18:03:22 +01:00
committed by GitHub
parent caaadee0fc
commit 4bf1d1cc81
5 changed files with 25 additions and 25 deletions

View File

@@ -101,7 +101,7 @@ void DlgProjectUtility::tryExtractArchive(const QString& source, const QString&
Gui::Command::runCommand(Gui::Command::App, str.str().c_str());
}
catch (const Base::Exception& e) {
QMessageBox::critical(this, tr("Failed to extract project"), QString::fromLatin1(e.what()));
QMessageBox::critical(this, tr("Failed to extract document"), QString::fromLatin1(e.what()));
}
}
@@ -118,7 +118,7 @@ void DlgProjectUtility::tryCreateArchive(const QString& source, const QString& t
}
}
catch (const Base::Exception& e) {
QMessageBox::critical(this, tr("Failed to create project"), QString::fromLatin1(e.what()));
QMessageBox::critical(this, tr("Failed to create document"), QString::fromLatin1(e.what()));
}
}