diff options
| author | langerhans <[email protected]> | 2014-04-13 19:57:08 +0200 |
|---|---|---|
| committer | langerhans <[email protected]> | 2014-04-13 19:57:08 +0200 |
| commit | 552dd35a1424b33fc730d95820b330b3dda801ce (patch) | |
| tree | 2f0085422d98795926b5e32be80dc48c26710ede /src | |
| parent | Merge pull request #451 from rnicoll/1.7-dev-tx-fee (diff) | |
| download | discoin-552dd35a1424b33fc730d95820b330b3dda801ce.tar.xz discoin-552dd35a1424b33fc730d95820b330b3dda801ce.zip | |
s/Bit/Doge in wallet encryption dialog
Diffstat (limited to 'src')
| -rw-r--r-- | src/qt/askpassphrasedialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/askpassphrasedialog.cpp b/src/qt/askpassphrasedialog.cpp index 902131997..6ee255fab 100644 --- a/src/qt/askpassphrasedialog.cpp +++ b/src/qt/askpassphrasedialog.cpp @@ -105,7 +105,7 @@ void AskPassphraseDialog::accept() break; } QMessageBox::StandardButton retval = QMessageBox::question(this, tr("Confirm wallet encryption"), - tr("Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>!") + "<br><br>" + tr("Are you sure you wish to encrypt your wallet?"), + tr("Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>!") + "<br><br>" + tr("Are you sure you wish to encrypt your wallet?"), QMessageBox::Yes|QMessageBox::Cancel, QMessageBox::Cancel); if(retval == QMessageBox::Yes) @@ -118,7 +118,7 @@ void AskPassphraseDialog::accept() "<qt>" + tr("Dogecoin Core will close now to finish the encryption process. " "Remember that encrypting your wallet cannot fully protect " - "your bitcoins from being stolen by malware infecting your computer.") + + "your dogecoins from being stolen by malware infecting your computer.") + "<br><br><b>" + tr("IMPORTANT: Any previous backups you have made of your wallet file " "should be replaced with the newly generated, encrypted wallet file. " |