Skip to content

Commit

Permalink
Merge pull request bitcoin#7218
Browse files Browse the repository at this point in the history
fa5769e [qt] Fix misleading translation (MarcoFalke)
fa8c8d7 torcontrol debug: Change to a blanket message that covers both cases (MarcoFalke)
  • Loading branch information
jonasschnelli authored and codablock committed Sep 5, 2017
1 parent a990049 commit 2a4beff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/qt/locale/dash_en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1371,8 +1371,8 @@
</message>
<message>
<location line="+1"/>
<source>Reset all settings changes made over the GUI</source>
<translation>Reset all settings changes made over the GUI</translation>
<source>Reset all settings changed in the GUI</source>
<translation>Reset all settings changed in the GUI</translation>
</message>
<message>
<location line="+42"/>
Expand Down
2 changes: 1 addition & 1 deletion src/qt/utilitydialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ HelpMessageDialog::HelpMessageDialog(QWidget *parent, HelpMode helpMode) :
strUsage += HelpMessageOpt("-min", tr("Start minimized").toStdString());
strUsage += HelpMessageOpt("-rootcertificates=<file>", tr("Set SSL root certificates for payment request (default: -system-)").toStdString());
strUsage += HelpMessageOpt("-splash", strprintf(tr("Show splash screen on startup (default: %u)").toStdString(), DEFAULT_SPLASHSCREEN));
strUsage += HelpMessageOpt("-resetguisettings", tr("Reset all settings changes made over the GUI").toStdString());
strUsage += HelpMessageOpt("-resetguisettings", tr("Reset all settings changed in the GUI").toStdString());
if (showDebug) {
strUsage += HelpMessageOpt("-uiplatform", strprintf("Select platform to customize UI for (one of windows, macosx, other; default: %s)", BitcoinGUI::DEFAULT_UIPLATFORM));
}
Expand Down

0 comments on commit 2a4beff

Please sign in to comment.