From 7b3756f8c951301e677fcd762e45f72f4bcb039d Mon Sep 17 00:00:00 2001 From: Konstantin Akimov Date: Tue, 20 Feb 2024 17:41:19 +0700 Subject: [PATCH] fix: rename "Mask values" to "Discreet mode" follow-up to PR #5796 --- src/qt/bitcoingui.cpp | 4 ++-- src/qt/overviewpage.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 8d3cb5574372a..eb0accfdb395f 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -462,8 +462,8 @@ void BitcoinGUI::createActions() showCoinJoinHelpAction->setMenuRole(QAction::NoRole); showCoinJoinHelpAction->setStatusTip(tr("Show the %1 basic information").arg(strCoinJoinName)); - m_mask_values_action = new QAction(tr("&Mask values"), this); - m_mask_values_action->setShortcut(QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_M)); + m_mask_values_action = new QAction(tr("&Discreet mode"), this); + m_mask_values_action->setShortcut(QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_D)); m_mask_values_action->setStatusTip(tr("Mask the values in the Overview tab")); m_mask_values_action->setCheckable(true); diff --git a/src/qt/overviewpage.cpp b/src/qt/overviewpage.cpp index dad8cc686c81f..eda70c74c8652 100644 --- a/src/qt/overviewpage.cpp +++ b/src/qt/overviewpage.cpp @@ -193,7 +193,7 @@ void OverviewPage::setPrivacy(bool privacy) ui->listTransactions->setVisible(!m_privacy); - const QString status_tip = m_privacy ? tr("Privacy mode activated for the Overview tab. To unmask the values, uncheck Settings->Mask values.") : ""; + const QString status_tip = m_privacy ? tr("Discreet mode activated for the Overview tab. To unmask the values, uncheck Settings->Discreet mode.") : ""; setStatusTip(status_tip); QStatusTipEvent event(status_tip); QApplication::sendEvent(this, &event);