diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2021-04-15 15:06:16 +0300 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2021-04-20 15:49:46 +0300 |
commit | 99686b65195fe990144be1a6326061e9c6ae506c (patch) | |
tree | 548f440e260d46effa66655dea79ac4bf17f3d9f /src/qt | |
parent | f959b75e8c5964dec59a1dce937ee2244cce33df (diff) |
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.
Diffstat (limited to 'src/qt')
-rw-r--r-- | src/qt/addressbookpage.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qt/addressbookpage.cpp b/src/qt/addressbookpage.cpp index 9927e925ac..059db9de8d 100644 --- a/src/qt/addressbookpage.cpp +++ b/src/qt/addressbookpage.cpp @@ -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)); } } |