diff options
| author | chromatic <[email protected]> | 2021-08-13 11:59:09 -0700 |
|---|---|---|
| committer | Patrick Lodder <[email protected]> | 2021-08-14 01:56:07 +0200 |
| commit | c2a0bd289049cb1458fe44fd1563ee3faca8ff7d (patch) | |
| tree | 2c70015a3c371fbe1494468a2595805349fe2d1b /src/qt/utilitydialog.cpp | |
| parent | fix typo (diff) | |
| download | discoin-c2a0bd289049cb1458fe44fd1563ee3faca8ff7d.tar.xz discoin-c2a0bd289049cb1458fe44fd1563ee3faca8ff7d.zip | |
qt: translate more user-exposed strings
Diffstat (limited to 'src/qt/utilitydialog.cpp')
| -rw-r--r-- | src/qt/utilitydialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/utilitydialog.cpp b/src/qt/utilitydialog.cpp index 085523dc0..50c3b3abe 100644 --- a/src/qt/utilitydialog.cpp +++ b/src/qt/utilitydialog.cpp @@ -217,7 +217,7 @@ void PaperWalletDialog::setClientModel(ClientModel *_clientModel) // FIXME: This cannot be the right way of doing something on open if (_clientModel && _clientModel->getNetworkActive()) { - QMessageBox::critical(this, "Warning: Network Activity Detected", tr("It is recommended to disconnect from the internet before printing paper wallets. Even though paper wallets are generated on your local computer, it is still possible to unknowingly have malware that transmits your screen to a remote location. It is also recommended to print to a local printer vs a network printer since that network traffic can be monitored. Some advanced printers also store copies of each printed document. Proceed with caution relative to the amount of value you plan to store on each address."), QMessageBox::Ok, QMessageBox::Ok); + QMessageBox::critical(this, tr("Warning: Network Activity Detected"), tr("It is recommended to disconnect from the internet before printing paper wallets. Even though paper wallets are generated on your local computer, it is still possible to unknowingly have malware that transmits your screen to a remote location. It is also recommended to print to a local printer vs a network printer since that network traffic can be monitored. Some advanced printers also store copies of each printed document. Proceed with caution relative to the amount of value you plan to store on each address."), QMessageBox::Ok, QMessageBox::Ok); } } @@ -361,7 +361,7 @@ void PaperWalletDialog::on_printButton_clicked() QPainter painter; if (!painter.begin(&printer)) { // failed to open file - QMessageBox::critical(this, "Printing Error", tr("failed to open file, is it writable?"), QMessageBox::Ok, QMessageBox::Ok); + QMessageBox::critical(this, tr("Printing Error"), tr("failed to open file, is it writable?"), QMessageBox::Ok, QMessageBox::Ok); return; } |