aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxiphon <xiphon@protonmail.com>2019-12-05 15:16:11 +0000
committerxiphon <xiphon@protonmail.com>2019-12-05 15:18:15 +0000
commit6ce9a3cba030d7f9242293f9cc413daf0eea51c4 (patch)
tree02dc2a501b6abc53973938c473d4529cae106fb6
parent648b775a259fe2524e662560c0b61c4beede635c (diff)
downloadmonzero-gui-6ce9a3cba030d7f9242293f9cc413daf0eea51c4.tar.gz
monzero-gui-6ce9a3cba030d7f9242293f9cc413daf0eea51c4.tar.xz
monzero-gui-6ce9a3cba030d7f9242293f9cc413daf0eea51c4.zip
History: fix translations
-rw-r--r--pages/History.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/pages/History.qml b/pages/History.qml
index 85a1e5cb..dbca79c3 100644
--- a/pages/History.qml
+++ b/pages/History.qml
@@ -1634,11 +1634,11 @@ Rectangle {
return '<table border="0">'
+ (tx_id ? trStart + qsTr("Tx ID:") + trMiddle + tx_id + trEnd : "")
- + (dateTime ? trStart + qsTr("Date:") + trMiddle + dateTime + trEnd : "")
- + (amount ? trStart + qsTr("Amount:") + trMiddle + amount + trEnd : "")
+ + (dateTime ? trStart + qsTr("Date") + ":" + trMiddle + dateTime + trEnd : "")
+ + (amount ? trStart + qsTr("Amount") + ":" + trMiddle + amount + trEnd : "")
+ (address ? trStart + qsTr("Address:") + trMiddle + address + trEnd : "")
+ (paymentId ? trStart + qsTr("Payment ID:") + trMiddle + paymentId + trEnd : "")
- + (integratedAddress ? trStart + qsTr("Integrated address:") + trMiddle + integratedAddress + trEnd : "")
+ + (integratedAddress ? trStart + qsTr("Integrated address") + ":" + trMiddle + integratedAddress + trEnd : "")
+ (tx_key ? trStart + qsTr("Tx key:") + trMiddle + tx_key + trEnd : "")
+ (tx_note ? trStart + qsTr("Tx note:") + trMiddle + tx_note + trEnd : "")
+ (destinations ? trStart + qsTr("Destinations:") + trMiddle + destinations + trEnd : "")