diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2018-11-06 11:25:07 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2018-11-06 11:25:07 -0600 |
| commit | 19082461e89c226127e5f077f8fddd20ead91958 (patch) | |
| tree | 083b99abd0a01039c83847ac3727699747afd0a0 /components | |
| parent | 2641eda20a94ee13901ac3ee09068a636608307a (diff) | |
| parent | d32dabfd7f80219ccb918ba7d49873101d704035 (diff) | |
| download | monzero-gui-19082461e89c226127e5f077f8fddd20ead91958.tar.gz monzero-gui-19082461e89c226127e5f077f8fddd20ead91958.tar.xz monzero-gui-19082461e89c226127e5f077f8fddd20ead91958.zip | |
Merge pull request #1664
6dcd2b7 fix strings not marked as translatable (erciccione)
d32dabf syn and add unpicked strings in language files (erciccione)
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 } |
