diff --git a/src/qt/transactionview.cpp b/src/qt/transactionview.cpp index 02c0153389f53..d9e770e2d4b8e 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); }); } } }