mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 00:07:51 +00:00
Merge pull request #278
9d1f242
Update TxKey.qml (xmr-eric)88df8b7
Improvements to text on 'Verify payment' page (xmr-eric)
This commit is contained in:
commit
7737d433d0
1 changed files with 7 additions and 7 deletions
|
@ -87,23 +87,23 @@ Rectangle {
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
text: qsTr("You can verify that a third party made a payment by supplying:") + translationManager.emptyString
|
text: qsTr("Verify that a third party made a payment by supplying:") + translationManager.emptyString
|
||||||
wrapMode: Text.Wrap
|
wrapMode: Text.Wrap
|
||||||
}
|
}
|
||||||
Text {
|
Text {
|
||||||
text: qsTr(" - the recipient address,") + translationManager.emptyString
|
text: qsTr(" - the recipient address") + translationManager.emptyString
|
||||||
wrapMode: Text.Wrap
|
wrapMode: Text.Wrap
|
||||||
}
|
}
|
||||||
Text {
|
Text {
|
||||||
text: qsTr(" - the transaction ID,") + translationManager.emptyString
|
text: qsTr(" - the transaction ID") + translationManager.emptyString
|
||||||
wrapMode: Text.Wrap
|
wrapMode: Text.Wrap
|
||||||
}
|
}
|
||||||
Text {
|
Text {
|
||||||
text: qsTr(" - the tx secret key supplied by the sender") + translationManager.emptyString
|
text: qsTr(" - the secret transaction key supplied by the sender") + translationManager.emptyString
|
||||||
wrapMode: Text.Wrap
|
wrapMode: Text.Wrap
|
||||||
}
|
}
|
||||||
Text {
|
Text {
|
||||||
text: qsTr("If a payment was made up of several transactions, each transaction must be checked, and the results added") + translationManager.emptyString
|
text: qsTr("If a payment had several transactions then each must must be checked and the results combined.") + translationManager.emptyString
|
||||||
wrapMode: Text.Wrap
|
wrapMode: Text.Wrap
|
||||||
Layout.fillWidth: true;
|
Layout.fillWidth: true;
|
||||||
}
|
}
|
||||||
|
@ -154,7 +154,7 @@ Rectangle {
|
||||||
|
|
||||||
id: txIdLine
|
id: txIdLine
|
||||||
fontSize: mainLayout.lineEditFontSize
|
fontSize: mainLayout.lineEditFontSize
|
||||||
placeholderText: qsTr("Transaction ID here") + translationManager.emptyString
|
placeholderText: qsTr("Paste tx ID") + translationManager.emptyString
|
||||||
readOnly: false
|
readOnly: false
|
||||||
width: mainLayout.editWidth
|
width: mainLayout.editWidth
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
|
@ -186,7 +186,7 @@ Rectangle {
|
||||||
LineEdit {
|
LineEdit {
|
||||||
id: txKeyLine
|
id: txKeyLine
|
||||||
fontSize: mainLayout.lineEditFontSize
|
fontSize: mainLayout.lineEditFontSize
|
||||||
placeholderText: qsTr("Transaction key here") + translationManager.emptyString;
|
placeholderText: qsTr("Paste tx key") + translationManager.emptyString;
|
||||||
readOnly: false
|
readOnly: false
|
||||||
|
|
||||||
width: mainLayout.editWidth
|
width: mainLayout.editWidth
|
||||||
|
|
Loading…
Reference in a new issue