Skip to content

Commit 9e508b5

Browse files
committed
Merge pull request #3439
3c95599 init: add better formating for some command-line options (Philip Kaufmann)
2 parents f498d43 + 3c95599 commit 9e508b5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/init.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -226,8 +226,8 @@ std::string HelpMessage(HelpMessageMode hmm)
226226
#endif
227227
#endif
228228
strUsage += " -debug=<category> " + _("Output debugging information (default: 0, supplying <category> is optional)") + "\n";
229-
strUsage += _("If <category> is not supplied, output all debugging information.") + "\n";
230-
strUsage += _("<category> can be:");
229+
strUsage += " " + _("If <category> is not supplied, output all debugging information.") + "\n";
230+
strUsage += " " + _("<category> can be:");
231231
strUsage += " addrman, alert, coindb, db, lock, rand, rpc, selectcoins, mempool, net"; // Don't translate these and qt below
232232
if (hmm == HMM_BITCOIN_QT)
233233
{
@@ -240,8 +240,8 @@ std::string HelpMessage(HelpMessageMode hmm)
240240
strUsage += " -logtimestamps " + _("Prepend debug output with timestamp (default: 1)") + "\n";
241241
strUsage += " -shrinkdebugfile " + _("Shrink debug.log file on client startup (default: 1 when no -debug)") + "\n";
242242
strUsage += " -printtoconsole " + _("Send trace/debug info to console instead of debug.log file") + "\n";
243-
strUsage += " -regtest " + _("Enter regression test mode, which uses a special chain in which blocks can be "
244-
"solved instantly. This is intended for regression testing tools and app development.") + "\n";
243+
strUsage += " -regtest " + _("Enter regression test mode, which uses a special chain in which blocks can be solved instantly.") + "\n";
244+
strUsage += " " + _("This is intended for regression testing tools and app development.") + "\n";
245245
if (hmm == HMM_BITCOIN_QT)
246246
{
247247
strUsage += " -server " + _("Accept command line and JSON-RPC commands") + "\n";

0 commit comments

Comments
 (0)