aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2013-12-20 15:47:34 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2013-12-20 15:57:37 +0100
commit9e508b55885ba747dce2e3fd5ef4c05572cda0b0 (patch)
tree18100e05c1f928f1b5ab4d5fd70963bdd8c69740 /src
parentf498d43ee2ebc1507ca0d649af6bffd1b3182646 (diff)
parent3c955993a47d0cb440d7a43be0d85e7f80217d8c (diff)
downloadbitcoin-9e508b55885ba747dce2e3fd5ef4c05572cda0b0.tar.xz
Merge pull request #3439
3c95599 init: add better formating for some command-line options (Philip Kaufmann)
Diffstat (limited to 'src')
-rw-r--r--src/init.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/init.cpp b/src/init.cpp
index c568b1a1c2..b5d784dc58 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -226,8 +226,8 @@ std::string HelpMessage(HelpMessageMode hmm)
#endif
#endif
strUsage += " -debug=<category> " + _("Output debugging information (default: 0, supplying <category> is optional)") + "\n";
- strUsage += _("If <category> is not supplied, output all debugging information.") + "\n";
- strUsage += _("<category> can be:");
+ strUsage += " " + _("If <category> is not supplied, output all debugging information.") + "\n";
+ strUsage += " " + _("<category> 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";