0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-08 10:31:50 -05:00

qt [experimental]: Add a translation comment and a disambiguation string

The goal is to see the way the Transifex presents the added items to
translators using an intermediate XLIFF translation file.
This commit is contained in:
Hennadii Stepanov 2021-04-15 15:06:16 +03:00
parent f959b75e8c
commit 99686b6519
No known key found for this signature in database
GPG key ID: 410108112E7EA81F

View file

@ -309,7 +309,8 @@ 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. Please try again.").arg(filename));
//: %1 is a name of the file (e.g., "addrbook.csv") that the bitcoin addresses were exported to.
tr("There was an error trying to save the address list to %1. Please try again.", "An error message.").arg(filename));
}
}