From 21faab36b76f7bbab8c5c0771de7847c9540ffa9 Mon Sep 17 00:00:00 2001 From: Miguel Freitas Date: Tue, 22 Oct 2013 19:47:50 -0200 Subject: [PATCH] inform the user that database will be rebuilt. without UI, the old message was confusing. --- src/init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init.cpp b/src/init.cpp index 01af14e6..96302dc9 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -738,7 +738,7 @@ bool AppInit2(boost::thread_group& threadGroup) // first suggest a reindex if (!fReset) { /*bool fRet =*/ uiInterface.ThreadSafeMessageBox( - strLoadError + ".\n\n" + _("Do you want to rebuild the block database now?"), + strLoadError + ".\n\n" + _("Do you want to rebuild the block database now? (assuming YES)"), "", CClientUIInterface::MSG_ERROR | CClientUIInterface::BTN_ABORT); if (true /* [MF] fRet*/) { fReindex = true;