diff --git a/pages/History.qml b/pages/History.qml index adca6457..f6233678 100644 --- a/pages/History.qml +++ b/pages/History.qml @@ -219,7 +219,7 @@ Rectangle { CheckBox { id: advancedFilteringCheckBox - text: qsTr("Advance filtering") + text: qsTr("Advanced filtering") anchors.left: filterButton.right anchors.bottom: filterButton.bottom anchors.leftMargin: 17 @@ -371,7 +371,7 @@ Rectangle { ListElement { columnName: "Payment ID"; columnWidth: 127 } ListElement { columnName: "Date"; columnWidth: 100 } - ListElement { columnName: "BlockHeight"; columnWidth: 150 } + ListElement { columnName: "Block height"; columnWidth: 150 } ListElement { columnName: "Amount"; columnWidth: 148 } // ListElement { columnName: "Description"; columnWidth: 148 } } diff --git a/pages/Transfer.qml b/pages/Transfer.qml index 0345b384..ef46d39e 100644 --- a/pages/Transfer.qml +++ b/pages/Transfer.qml @@ -87,7 +87,7 @@ Rectangle { // Amount input LineEdit { id: amountLine - placeholderText: qsTr("Amount...") + translationManager.emptyString + placeholderText: qsTr("") + translationManager.emptyString width: parent.width - 37 - 17 validator: DoubleValidator { bottom: 0.0 @@ -162,7 +162,7 @@ Rectangle { anchors.rightMargin: 17 anchors.topMargin: 30 fontSize: 14 - text: qsTr("Cost") + text: qsTr("Transaction cost") }