diff --git a/src/dash-cli-res.rc b/src/dash-cli-res.rc index 653d70d306..c464b0a0e5 100644 --- a/src/dash-cli-res.rc +++ b/src/dash-cli-res.rc @@ -17,7 +17,7 @@ BEGIN BLOCK "040904E4" // U.S. English - multilingual (hex) BEGIN VALUE "CompanyName", "Dash" - VALUE "FileDescription", "dash-cli (JSON-RPC client for Dash Core)" + VALUE "FileDescription", "dash-cli (JSON-RPC client for " PACKAGE_NAME ")" VALUE "FileVersion", VER_FILEVERSION_STR VALUE "InternalName", "dash-cli" VALUE "LegalCopyright", COPYRIGHT_STR diff --git a/src/dash-tx-res.rc b/src/dash-tx-res.rc index e492daa2b3..816a35676d 100644 --- a/src/dash-tx-res.rc +++ b/src/dash-tx-res.rc @@ -17,7 +17,7 @@ BEGIN BLOCK "040904E4" // U.S. English - multilingual (hex) BEGIN VALUE "CompanyName", "Dash" - VALUE "FileDescription", "dash-cli (JSON-RPC client for " PACKAGE_NAME ")" + VALUE "FileDescription", "dash-tx (CLI Dash transaction editor utility)" VALUE "FileVersion", VER_FILEVERSION_STR VALUE "InternalName", "dash-tx" VALUE "LegalCopyright", COPYRIGHT_STR diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 392ae8569f..53141719f9 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -440,7 +440,7 @@ void BitcoinGUI::createActions() showHelpMessageAction = new QAction(QApplication::style()->standardIcon(QStyle::SP_MessageBoxInformation), tr("&Command-line options"), this); showHelpMessageAction->setMenuRole(QAction::NoRole); - showHelpMessageAction->setStatusTip(tr("Show the %1 help message to get a list with possible Bitcoin command-line options").arg(tr(PACKAGE_NAME))); + showHelpMessageAction->setStatusTip(tr("Show the %1 help message to get a list with possible Dash command-line options").arg(tr(PACKAGE_NAME))); showPrivateSendHelpAction = new QAction(QApplication::style()->standardIcon(QStyle::SP_MessageBoxInformation), tr("&PrivateSend information"), this); showPrivateSendHelpAction->setMenuRole(QAction::NoRole);