mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-18 08:19:59 +00:00
Qt/GCMemcardManager: Fix broken export message
This commit is contained in:
parent
e78235943e
commit
8b3358e208
1 changed files with 1 additions and 1 deletions
|
@ -300,7 +300,7 @@ void GCMemcardManager::ExportFiles(bool prompt)
|
||||||
}
|
}
|
||||||
|
|
||||||
QString text = count == 1 ? tr("Successfully exported the save file.") :
|
QString text = count == 1 ? tr("Successfully exported the save file.") :
|
||||||
tr("Successfully exported the %1 save files.");
|
tr("Successfully exported the %1 save files.").arg(count);
|
||||||
QMessageBox::information(this, tr("Success"), text);
|
QMessageBox::information(this, tr("Success"), text);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue