Skip to content

Commit 147a7b6

Browse files
committed
Merge #8246: trivial: capitalize BIP32 in option help
a1c92c2 trivial: capitalize BIP32 in option help (Wladimir J. van der Laan)
2 parents 9f1807a + a1c92c2 commit 147a7b6

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

src/qt/bitcoinstrings.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ QT_TRANSLATE_NOOP("bitcoin-core", ""
173173
QT_TRANSLATE_NOOP("bitcoin-core", ""
174174
"Use UPnP to map the listening port (default: 1 when listening and no -proxy)"),
175175
QT_TRANSLATE_NOOP("bitcoin-core", ""
176-
"Use hierarchical deterministic key generation (HD) after bip32. Only has "
176+
"Use hierarchical deterministic key generation (HD) after BIP32. Only has "
177177
"effect during wallet creation/first start"),
178178
QT_TRANSLATE_NOOP("bitcoin-core", ""
179179
"Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: "

src/qt/locale/bitcoin_en.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2417,12 +2417,7 @@
24172417
<translation type="unfinished"></translation>
24182418
</message>
24192419
<message>
2420-
<location line="+2"/>
2421-
<source>Use hierarchical deterministic key generation (HD) after bip32. Only has effect during wallet creation/first start</source>
2422-
<translation type="unfinished"></translation>
2423-
</message>
2424-
<message>
2425-
<location line="+10"/>
2420+
<location line="+12"/>
24262421
<source>WARNING: abnormally high number of blocks generated, %d blocks received in the last %d hours (%d expected)</source>
24272422
<translation type="unfinished"></translation>
24282423
</message>
@@ -2852,7 +2847,12 @@
28522847
<translation type="unfinished"></translation>
28532848
</message>
28542849
<message>
2855-
<location line="+50"/>
2850+
<location line="+18"/>
2851+
<source>Use hierarchical deterministic key generation (HD) after BIP32. Only has effect during wallet creation/first start</source>
2852+
<translation type="unfinished"></translation>
2853+
</message>
2854+
<message>
2855+
<location line="+32"/>
28562856
<source>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</source>
28572857
<translation type="unfinished"></translation>
28582858
</message>

src/wallet/wallet.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3209,7 +3209,7 @@ std::string CWallet::GetWalletHelpString(bool showDebug)
32093209
strUsage += HelpMessageOpt("-sendfreetransactions", strprintf(_("Send transactions as zero-fee transactions if possible (default: %u)"), DEFAULT_SEND_FREE_TRANSACTIONS));
32103210
strUsage += HelpMessageOpt("-spendzeroconfchange", strprintf(_("Spend unconfirmed change when sending transactions (default: %u)"), DEFAULT_SPEND_ZEROCONF_CHANGE));
32113211
strUsage += HelpMessageOpt("-txconfirmtarget=<n>", strprintf(_("If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u)"), DEFAULT_TX_CONFIRM_TARGET));
3212-
strUsage += HelpMessageOpt("-usehd", _("Use hierarchical deterministic key generation (HD) after bip32. Only has effect during wallet creation/first start") + " " + strprintf(_("(default: %u)"), DEFAULT_USE_HD_WALLET));
3212+
strUsage += HelpMessageOpt("-usehd", _("Use hierarchical deterministic key generation (HD) after BIP32. Only has effect during wallet creation/first start") + " " + strprintf(_("(default: %u)"), DEFAULT_USE_HD_WALLET));
32133213
strUsage += HelpMessageOpt("-upgradewallet", _("Upgrade wallet to latest format on startup"));
32143214
strUsage += HelpMessageOpt("-wallet=<file>", _("Specify wallet file (within data directory)") + " " + strprintf(_("(default: %s)"), DEFAULT_WALLET_DAT));
32153215
strUsage += HelpMessageOpt("-walletbroadcast", _("Make the wallet broadcast transactions") + " " + strprintf(_("(default: %u)"), DEFAULT_WALLETBROADCAST));

0 commit comments

Comments
 (0)