This commit is contained in:
Matthew 2024-09-17 12:51:00 +02:00
parent 421be5b01f
commit e9ce1d99fe
1 changed files with 1 additions and 1 deletions

View File

@ -263,7 +263,7 @@ void MemoryCardConvertDialog::ConvertCard()
if (access(absolutePath.toStdString().c_str(), R_OK | W_OK | X_OK) != 0) if (access(absolutePath.toStdString().c_str(), R_OK | W_OK | X_OK) != 0)
{ {
QMessageBox::critical(this, tr("Cannot Convert Memory Card"), QMessageBox::critical(this, tr("Cannot Convert Memory Card"),
tr("You have insufficient permissions to convert this Memory Card. Please ensure that you have read/write access to the folder \n \"%1\".") tr("You have insufficient permissions to convert this Memory Card. Please ensure that your user owns the directory of your Memory Cards. \n \"%1\".")
.arg(absolutePath)); .arg(absolutePath));
return; return;
} }