diff options
Diffstat (limited to 'components')
| -rw-r--r-- | components/HistoryTable.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/HistoryTable.qml b/components/HistoryTable.qml index d5c9879c..0077c4d2 100644 --- a/components/HistoryTable.qml +++ b/components/HistoryTable.qml @@ -151,7 +151,7 @@ ListView { anchors.leftMargin: 18 * scaleRatio font.family: MoneroComponents.Style.fontLight.name font.pixelSize: 14 * scaleRatio - text: isOut ? "Sent" : "Received" + text: isOut ? qsTr("Sent") + translationManager.emptyString : qsTr("Received") + translationManager.emptyString color: "#808080" } @@ -218,7 +218,7 @@ ListView { address = TxUtils.destinationsToAddress(destinations); if(address){ var truncated = TxUtils.addressTruncate(address); - return "To " + truncated; + return qsTr("To ") + translationManager.emptyString + truncated; } else { return "Unknown recipient"; } @@ -293,7 +293,7 @@ ListView { anchors.left: parent.left anchors.leftMargin: 30 * scaleRatio - labelHeader: "Transaction ID" + labelHeader: QsTr("Transaction ID") + translationManager.emptyString labelValue: hash.substring(0, 18) + "..." copyValue: hash } |
