diff options
| author | Hennadii Stepanov <[email protected]> | 2020-04-11 18:47:17 +0300 |
|---|---|---|
| committer | Hennadii Stepanov <[email protected]> | 2020-05-05 04:45:59 +0300 |
| commit | 917ca93553917251e0fd59717a347c63cdfd8a14 (patch) | |
| tree | 6dd3c84f09109c1da19d1a23e798a32efdafa9a9 /src/index/base.cpp | |
| parent | gui: Add detailed text to BitcoinGUI::message (diff) | |
| download | discoin-917ca93553917251e0fd59717a347c63cdfd8a14.tar.xz discoin-917ca93553917251e0fd59717a347c63cdfd8a14.zip | |
Make ThreadSafe{MessageBox|Question} bilingual
Diffstat (limited to 'src/index/base.cpp')
| -rw-r--r-- | src/index/base.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/index/base.cpp b/src/index/base.cpp index 7bff463f5..74ea421e1 100644 --- a/src/index/base.cpp +++ b/src/index/base.cpp @@ -8,6 +8,7 @@ #include <tinyformat.h> #include <ui_interface.h> #include <util/system.h> +#include <util/translation.h> #include <validation.h> #include <warnings.h> @@ -23,7 +24,7 @@ static void FatalError(const char* fmt, const Args&... args) SetMiscWarning(strMessage); LogPrintf("*** %s\n", strMessage); uiInterface.ThreadSafeMessageBox( - "Error: A fatal internal error occurred, see debug.log for details", + Untranslated("Error: A fatal internal error occurred, see debug.log for details"), "", CClientUIInterface::MSG_ERROR); StartShutdown(); } |