qt: Make error message for failed export a little friendlier

Closes #4528.
This commit is contained in:
Whit J 2014-07-14 11:22:35 -07:00 committed by Wladimir J. van der Laan
parent 40d2d69223
commit b9345f7d1c
No known key found for this signature in database
GPG key ID: 74810B012346C9A6

View file

@ -282,7 +282,7 @@ void AddressBookPage::on_exportButton_clicked()
if(!writer.write()) {
QMessageBox::critical(this, tr("Exporting Failed"),
tr("There was an error trying to save the address list to %1.").arg(filename));
tr("There was an error trying to save the address list to %1. Please try again.").arg(filename));
}
}