Skip to content

Commit

Permalink
qt: Make error message for failed export a little friendlier
Browse files Browse the repository at this point in the history
Closes #4528.
  • Loading branch information
whitj00 authored and laanwj committed Jul 18, 2014
1 parent 40d2d69 commit b9345f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qt/addressbookpage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}
}

Expand Down

0 comments on commit b9345f7

Please sign in to comment.