From b9187ad4d492e4b613043de21e600e7d82684cd6 Mon Sep 17 00:00:00 2001 From: taushet Date: Sun, 23 Oct 2016 22:50:22 +0200 Subject: [PATCH 1/2] Update History.qml 2 formatting/grammar edits --- pages/History.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/History.qml b/pages/History.qml index f0d991ee..8432a493 100644 --- a/pages/History.qml +++ b/pages/History.qml @@ -218,7 +218,7 @@ Rectangle { CheckBox { id: advancedFilteringCheckBox - text: qsTr("Advance filtering") + text: qsTr("Advanced filtering") anchors.left: filterButton.right anchors.bottom: filterButton.bottom anchors.leftMargin: 17 @@ -370,7 +370,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 } } From fe9d5d366d7a144e8238ad2fe6021ab75577745f Mon Sep 17 00:00:00 2001 From: taushet Date: Sun, 23 Oct 2016 22:56:44 +0200 Subject: [PATCH 2/2] Update Transfer.qml 1. Lack of consistency. Either all fields should have placeholder text or none of them should. 2. I imagine this would be a slightly controversial edit, but is nevertheless correct, I feel. "Cost" is too non-specific to the new user, and it should be clearly identified that we are referring to transactional costs. --- pages/Transfer.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/Transfer.qml b/pages/Transfer.qml index 3921b1ef..137177ae 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 @@ -160,7 +160,7 @@ Rectangle { anchors.rightMargin: 17 anchors.topMargin: 30 fontSize: 14 - text: qsTr("Cost") + text: qsTr("Transaction cost") }