mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 06:55:09 +00:00
Remove unnecessary localization
This commit is contained in:
parent
806c9230cd
commit
8f3eff293d
4 changed files with 5 additions and 5 deletions
|
|
@ -1082,7 +1082,7 @@ void patch_manager_dialog::dropEvent(QDropEvent* event)
|
|||
QString message = tr("Errors were found in the patch file.");
|
||||
QMessageBox* mb = new QMessageBox(QMessageBox::Icon::Critical, tr("Validation failed"), message, QMessageBox::Ok, this);
|
||||
mb->setInformativeText(tr("To see the error log, please click \"Show Details\"."));
|
||||
mb->setDetailedText(tr("%0").arg(summary));
|
||||
mb->setDetailedText(summary);
|
||||
mb->setAttribute(Qt::WA_DeleteOnClose);
|
||||
|
||||
// Smartass hack to make the unresizeable message box wide enough for the changelog
|
||||
|
|
@ -1304,7 +1304,7 @@ bool patch_manager_dialog::handle_json(const QByteArray& data)
|
|||
QString message = tr("Errors were found in the downloaded patch file.");
|
||||
QMessageBox* mb = new QMessageBox(QMessageBox::Icon::Critical, tr("Validation failed"), message, QMessageBox::Ok, this);
|
||||
mb->setInformativeText(tr("To see the error log, please click \"Show Details\"."));
|
||||
mb->setDetailedText(tr("%0").arg(summary));
|
||||
mb->setDetailedText(summary);
|
||||
mb->setAttribute(Qt::WA_DeleteOnClose);
|
||||
|
||||
// Smartass hack to make the unresizeable message box wide enough for the changelog
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue