From a70a98075a0d258d41c1310553a2337538a1d80c Mon Sep 17 00:00:00 2001 From: Jarol Rodriguez Date: Thu, 23 Sep 2021 20:42:21 -0400 Subject: [PATCH] qt: improve text for open third-party tx url action The text for an open third-party tx URL action is improved by appending the host name with "Show in". This makes it self-explanatory what the action will do. --- src/qt/transactionview.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/qt/transactionview.cpp b/src/qt/transactionview.cpp index 02c0153389..d9e770e2d4 100644 --- a/src/qt/transactionview.cpp +++ b/src/qt/transactionview.cpp @@ -230,7 +230,10 @@ void TransactionView::setModel(WalletModel *_model) { if (i == 0) contextMenu->addSeparator(); - contextMenu->addAction(host, [this, url] { openThirdPartyTxUrl(url); }); + /*: Transactions table context menu action to show the + selected transaction in a third-party block explorer. + %1 is a stand-in argument for the URL of the explorer. */ + contextMenu->addAction(tr("Show in %1").arg(host), [this, url] { openThirdPartyTxUrl(url); }); } } }