aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortaushet <alexanderlott@gmail.com>2016-10-23 22:56:44 +0200
committerGitHub <noreply@github.com>2016-10-23 22:56:44 +0200
commitfe9d5d366d7a144e8238ad2fe6021ab75577745f (patch)
tree2fb576ce580074704a0467c459ae7618302e2db3
parentb9187ad4d492e4b613043de21e600e7d82684cd6 (diff)
downloadmonzero-gui-fe9d5d366d7a144e8238ad2fe6021ab75577745f.tar.gz
monzero-gui-fe9d5d366d7a144e8238ad2fe6021ab75577745f.tar.xz
monzero-gui-fe9d5d366d7a144e8238ad2fe6021ab75577745f.zip
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.
-rw-r--r--pages/Transfer.qml4
1 files 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")
}