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/bitcoin.cpp | |
| parent | fix typo (diff) | |
| download | discoin-c2a0bd289049cb1458fe44fd1563ee3faca8ff7d.tar.xz discoin-c2a0bd289049cb1458fe44fd1563ee3faca8ff7d.zip | |
qt: translate more user-exposed strings
Diffstat (limited to 'src/qt/bitcoin.cpp')
| -rw-r--r-- | src/qt/bitcoin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index b16a55f4d..2a4e9c444 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -517,7 +517,7 @@ void BitcoinApplication::shutdownResult(int retval) void BitcoinApplication::handleRunawayException(const QString &message) { - QMessageBox::critical(0, "Runaway exception", BitcoinGUI::tr("A fatal error occurred. Dogecoin can no longer continue safely and will quit.") + QString("\n\n") + message); + QMessageBox::critical(0, BitcoinGUI::tr("Runaway exception"), BitcoinGUI::tr("A fatal error occurred. Dogecoin can no longer continue safely and will quit.") + QString("\n\n") + message); ::exit(EXIT_FAILURE); } |