Skip to content

Commit 1b0407f

Browse files
luke-jrhebasto
authored andcommitted
Bugfix: GUI: transactiondesc: Translate outlier "own address" and "watch-only"
1 parent 170f312 commit 1b0407f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/qt/transactiondesc.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,9 +248,9 @@ QString TransactionDesc::toHTML(interfaces::Node& node, interfaces::Wallet& wall
248248
strHTML += GUIUtil::HtmlEscape(name) + " ";
249249
strHTML += GUIUtil::HtmlEscape(EncodeDestination(address));
250250
if(toSelf == ISMINE_SPENDABLE)
251-
strHTML += " (own address)";
251+
strHTML += " (" + tr("own address") + ")";
252252
else if(toSelf & ISMINE_WATCH_ONLY)
253-
strHTML += " (watch-only)";
253+
strHTML += " (" + tr("watch-only") + ")";
254254
strHTML += "<br>";
255255
}
256256
}

0 commit comments

Comments
 (0)