Browse Source

qt: Make error message for failed export a little friendlier

Closes #4528.
0.10
Whit J 11 years ago committed by Wladimir J. van der Laan
parent
commit
b9345f7d1c
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 2
      src/qt/addressbookpage.cpp

2
src/qt/addressbookpage.cpp

@ -282,7 +282,7 @@ void AddressBookPage::on_exportButton_clicked()
if(!writer.write()) { if(!writer.write()) {
QMessageBox::critical(this, tr("Exporting Failed"), 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));
} }
} }

Loading…
Cancel
Save