diff options
Diffstat (limited to 'src/qt')
-rw-r--r-- | src/qt/transactionview.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
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); }); } } } |