diff options
| author | moneromooo.monero <moneromooo.monero@users.noreply.github.com> | 2016-10-16 21:25:19 +0100 |
|---|---|---|
| committer | moneromooo.monero <moneromooo.monero@users.noreply.github.com> | 2016-10-16 21:30:58 +0100 |
| commit | bb2529460bf9bd5fb02033f122370ae11dee306a (patch) | |
| tree | 686d3baf24955dd85d2c21ffdf909514c48a2c20 | |
| parent | 05046a5f21711fc049300b123d2f4b49f185a1d9 (diff) | |
| download | monzero-gui-bb2529460bf9bd5fb02033f122370ae11dee306a.tar.gz monzero-gui-bb2529460bf9bd5fb02033f122370ae11dee306a.tar.xz monzero-gui-bb2529460bf9bd5fb02033f122370ae11dee306a.zip | |
add hint texts to address and payment id fields
| -rw-r--r-- | pages/History.qml | 1 | ||||
| -rw-r--r-- | pages/Receive.qml | 2 | ||||
| -rw-r--r-- | pages/Transfer.qml | 2 |
3 files changed, 4 insertions, 1 deletions
diff --git a/pages/History.qml b/pages/History.qml index f0d991ee..adca6457 100644 --- a/pages/History.qml +++ b/pages/History.qml @@ -111,6 +111,7 @@ Rectangle { anchors.leftMargin: 17 anchors.rightMargin: 17 anchors.topMargin: 5 + placeholderText: qsTr("16 or 64 hexadecimal characters") + translationManager.emptyString } diff --git a/pages/Receive.qml b/pages/Receive.qml index dcb72fd7..eff59629 100644 --- a/pages/Receive.qml +++ b/pages/Receive.qml @@ -146,7 +146,7 @@ Rectangle { LineEdit { id: paymentIdLine fontSize: mainLayout.lineEditFontSize - placeholderText: qsTr("Payment ID here") + translationManager.emptyString; + placeholderText: qsTr("16 or 64 hexadecimal characters") + translationManager.emptyString; readOnly: false width: mainLayout.editWidth diff --git a/pages/Transfer.qml b/pages/Transfer.qml index 3921b1ef..cc2feecc 100644 --- a/pages/Transfer.qml +++ b/pages/Transfer.qml @@ -189,6 +189,7 @@ Rectangle { anchors.leftMargin: 17 anchors.rightMargin: 17 anchors.topMargin: 5 + placeholderText: "4..." // validator: RegExpValidator { regExp: /[0-9A-Fa-f]{95}/g } } @@ -213,6 +214,7 @@ Rectangle { anchors.leftMargin: 17 anchors.rightMargin: 17 anchors.topMargin: 5 + placeholderText: qsTr("16 or 64 hexadecimal characters") + translationManager.emptyString // validator: DoubleValidator { top: 0.0 } } |
