diff --git a/src/init.cpp b/src/init.cpp --- a/src/init.cpp +++ b/src/init.cpp @@ -545,9 +545,10 @@ _("Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) " "or CIDR notated network (e.g. 1.2.3.0/24). Can be specified " "multiple times.") + - " " + _("Whitelisted peers cannot be DoS banned and their " - "transactions are always relayed, even if they are already " - "in the mempool, useful e.g. for a gateway")); + " " + + _("Whitelisted peers cannot be DoS banned and their " + "transactions are always relayed, even if they are already " + "in the mempool, useful e.g. for a gateway")); strUsage += HelpMessageOpt( "-whitelistrelay", strprintf(_("Accept relayed transactions received from whitelisted " @@ -666,8 +667,9 @@ strprintf(_("Output debugging information (default: %u, supplying " " is optional)"), 0) + - ". " + _("If is not supplied or if = 1, " - "output all debugging information.") + + ". " + + _("If is not supplied or if = 1, " + "output all debugging information.") + _(" can be:") + " " + debugCategories + "."); if (showDebug) strUsage += HelpMessageOpt( @@ -858,8 +860,9 @@ } std::string LicenseInfo() { - const std::string URL_SOURCE_CODE = ""; - const std::string URL_WEBSITE = ""; + const std::string URL_SOURCE_CODE = + ""; + const std::string URL_WEBSITE = ""; return CopyrightHolders( strprintf(_("Copyright (C) %i-%i"), 2009, COPYRIGHT_YEAR) + @@ -868,8 +871,9 @@ strprintf(_("Please contribute if you find %s useful. " "Visit %s for further information about the software."), PACKAGE_NAME, URL_WEBSITE) + - "\n" + strprintf(_("The source code is available from %s."), - URL_SOURCE_CODE) + + "\n" + + strprintf(_("The source code is available from %s."), + URL_SOURCE_CODE) + "\n" + "\n" + _("This is experimental software.") + "\n" + strprintf(_("Distributed under the MIT software license, see the " "accompanying file %s or %s"), @@ -1181,7 +1185,7 @@ int nUserMaxConnections; int nFD; ServiceFlags nLocalServices = NODE_NETWORK; -} +} // namespace [[noreturn]] static void new_handler_terminate() { // Rather than throwing std::bad-alloc if allocation fails, terminate @@ -1991,9 +1995,8 @@ } uiInterface.InitMessage(_("Verifying blocks...")); - if (fHavePruned && - GetArg("-checkblocks", DEFAULT_CHECKBLOCKS) > - MIN_BLOCKS_TO_KEEP) { + if (fHavePruned && GetArg("-checkblocks", DEFAULT_CHECKBLOCKS) > + MIN_BLOCKS_TO_KEEP) { LogPrintf("Prune: pruned datadir may not have more than %d " "blocks; only checking available blocks", MIN_BLOCKS_TO_KEEP); @@ -2039,8 +2042,9 @@ _("Do you want to rebuild the block database now?"), strLoadError + ".\nPlease restart with -reindex or " "-reindex-chainstate to recover.", - "", CClientUIInterface::MSG_ERROR | - CClientUIInterface::BTN_ABORT); + "", + CClientUIInterface::MSG_ERROR | + CClientUIInterface::BTN_ABORT); if (fRet) { fReindex = true; fRequestShutdown = false;