Skip to content

Commit f5ad8e0

Browse files
committed
Bugfix: GUI: transactiondesc: Translate outlier "own address" and "watch-only"
1 parent 3ad7643 commit f5ad8e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/qt/transactiondesc.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -220,9 +220,9 @@ QString TransactionDesc::toHTML(interfaces::Node& node, interfaces::Wallet& wall
220220
strHTML += GUIUtil::HtmlEscape(name) + " ";
221221
strHTML += GUIUtil::HtmlEscape(EncodeDestination(address));
222222
if(toSelf == ISMINE_SPENDABLE)
223-
strHTML += " (own address)";
223+
strHTML += " (" + tr("own address") + ")";
224224
else if(toSelf & ISMINE_WATCH_ONLY)
225-
strHTML += " (watch-only)";
225+
strHTML += " (" + tr("watch-only") + ")";
226226
strHTML += "<br>";
227227
}
228228
}

0 commit comments

Comments
 (0)