From 3c955993a47d0cb440d7a43be0d85e7f80217d8c Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Wed, 18 Dec 2013 13:31:25 +0100 Subject: [PATCH] init: add better formating for some command-line options --- src/init.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/init.cpp b/src/init.cpp index c568b1a1c..b5d784dc5 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -226,8 +226,8 @@ std::string HelpMessage(HelpMessageMode hmm) #endif #endif strUsage += " -debug= " + _("Output debugging information (default: 0, supplying is optional)") + "\n"; - strUsage += _("If is not supplied, output all debugging information.") + "\n"; - strUsage += _(" can be:"); + strUsage += " " + _("If is not supplied, output all debugging information.") + "\n"; + strUsage += " " + _(" can be:"); strUsage += " addrman, alert, coindb, db, lock, rand, rpc, selectcoins, mempool, net"; // Don't translate these and qt below if (hmm == HMM_BITCOIN_QT) { @@ -240,8 +240,8 @@ std::string HelpMessage(HelpMessageMode hmm) strUsage += " -logtimestamps " + _("Prepend debug output with timestamp (default: 1)") + "\n"; strUsage += " -shrinkdebugfile " + _("Shrink debug.log file on client startup (default: 1 when no -debug)") + "\n"; strUsage += " -printtoconsole " + _("Send trace/debug info to console instead of debug.log file") + "\n"; - strUsage += " -regtest " + _("Enter regression test mode, which uses a special chain in which blocks can be " - "solved instantly. This is intended for regression testing tools and app development.") + "\n"; + strUsage += " -regtest " + _("Enter regression test mode, which uses a special chain in which blocks can be solved instantly.") + "\n"; + strUsage += " " + _("This is intended for regression testing tools and app development.") + "\n"; if (hmm == HMM_BITCOIN_QT) { strUsage += " -server " + _("Accept command line and JSON-RPC commands") + "\n";