Skip to content

Commit a1c185b

Browse files
committed
Merge pull request bitcoin#7218
fa5769e [qt] Fix misleading translation (MarcoFalke) fa8c8d7 torcontrol debug: Change to a blanket message that covers both cases (MarcoFalke)
2 parents 595f939 + fa5769e commit a1c185b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/qt/locale/bitcoin_en.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1153,7 +1153,7 @@
11531153
</message>
11541154
<message>
11551155
<location line="+1"/>
1156-
<source>Reset all settings changes made over the GUI</source>
1156+
<source>Reset all settings changed in the GUI</source>
11571157
<translation type="unfinished"></translation>
11581158
</message>
11591159
</context>

src/qt/utilitydialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ HelpMessageDialog::HelpMessageDialog(QWidget *parent, bool about) :
8484
strUsage += HelpMessageOpt("-min", tr("Start minimized").toStdString());
8585
strUsage += HelpMessageOpt("-rootcertificates=<file>", tr("Set SSL root certificates for payment request (default: -system-)").toStdString());
8686
strUsage += HelpMessageOpt("-splash", strprintf(tr("Show splash screen on startup (default: %u)").toStdString(), DEFAULT_SPLASHSCREEN));
87-
strUsage += HelpMessageOpt("-resetguisettings", tr("Reset all settings changes made over the GUI").toStdString());
87+
strUsage += HelpMessageOpt("-resetguisettings", tr("Reset all settings changed in the GUI").toStdString());
8888
if (showDebug) {
8989
strUsage += HelpMessageOpt("-uiplatform", strprintf("Select platform to customize UI for (one of windows, macosx, other; default: %s)", BitcoinGUI::DEFAULT_UIPLATFORM));
9090
}

src/torcontrol.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ void TorController::disconnected_cb(TorControlConnection& conn)
618618
if (!reconnect)
619619
return;
620620

621-
LogPrint("tor", "tor: Disconnected from Tor control port %s, trying to reconnect\n", target);
621+
LogPrint("tor", "tor: Not connected to Tor control port %s, trying to reconnect\n", target);
622622

623623
// Single-shot timer for reconnect. Use exponential backoff.
624624
struct timeval time = MillisToTimeval(int64_t(reconnect_timeout * 1000.0));

0 commit comments

Comments
 (0)