We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f959b75 commit 99686b6Copy full SHA for 99686b6
src/qt/addressbookpage.cpp
@@ -309,7 +309,8 @@ void AddressBookPage::on_exportButton_clicked()
309
310
if(!writer.write()) {
311
QMessageBox::critical(this, tr("Exporting Failed"),
312
- tr("There was an error trying to save the address list to %1. Please try again.").arg(filename));
+ //: %1 is a name of the file (e.g., "addrbook.csv") that the bitcoin addresses were exported to.
313
+ tr("There was an error trying to save the address list to %1. Please try again.", "An error message.").arg(filename));
314
}
315
316
0 commit comments