diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2022-05-15 21:50:07 +0000 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2023-03-31 12:22:00 +0100 |
commit | 96989599d6c7264022c188babdcd9cacac9ab69f (patch) | |
tree | 19756df74c4b2394e0f200ca2b24537574cf7b9c /src/qt/walletmodel.cpp | |
parent | 08b8b287d3762dd6d4be09fad0b71c4cacfe6658 (diff) |
GUI: Make messages for copying unsigned PSBTs translatable
Diffstat (limited to 'src/qt/walletmodel.cpp')
-rw-r--r-- | src/qt/walletmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp index 3c69d46b7e..61172d1625 100644 --- a/src/qt/walletmodel.cpp +++ b/src/qt/walletmodel.cpp @@ -548,7 +548,7 @@ bool WalletModel::bumpFee(uint256 hash, uint256& new_hash) CDataStream ssTx(SER_NETWORK, PROTOCOL_VERSION); ssTx << psbtx; GUIUtil::setClipboard(EncodeBase64(ssTx.str()).c_str()); - Q_EMIT message(tr("PSBT copied"), "Copied to clipboard", CClientUIInterface::MSG_INFORMATION); + Q_EMIT message(tr("PSBT copied"), tr("Copied to clipboard", "Fee-bump PSBT saved"), CClientUIInterface::MSG_INFORMATION); return true; } |