diff options
| author | Riccardo Spagni <ric@spagni.net> | 2016-12-14 23:42:32 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2016-12-14 23:42:32 +0200 |
| commit | 7737d433d077375ec23e5ae7c2283b61b423b0e4 (patch) | |
| tree | 0b5ad57ad4a045b660841b5cf91082dedbda8aa4 | |
| parent | 8f9a5d2b2e4da1a74fd09383cb4cf9fb892ff851 (diff) | |
| parent | 9d1f242a8aae9a4403baf81c6600174d69f873bb (diff) | |
| download | monzero-gui-7737d433d077375ec23e5ae7c2283b61b423b0e4.tar.gz monzero-gui-7737d433d077375ec23e5ae7c2283b61b423b0e4.tar.xz monzero-gui-7737d433d077375ec23e5ae7c2283b61b423b0e4.zip | |
Merge pull request #278
9d1f242 Update TxKey.qml (xmr-eric)
88df8b7 Improvements to text on 'Verify payment' page (xmr-eric)
| -rw-r--r-- | pages/TxKey.qml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/pages/TxKey.qml b/pages/TxKey.qml index fdb3f03f..fef0f91e 100644 --- a/pages/TxKey.qml +++ b/pages/TxKey.qml @@ -87,23 +87,23 @@ Rectangle { ColumnLayout { 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 } Text { - text: qsTr(" - the recipient address,") + translationManager.emptyString + text: qsTr(" - the recipient address") + translationManager.emptyString wrapMode: Text.Wrap } Text { - text: qsTr(" - the transaction ID,") + translationManager.emptyString + text: qsTr(" - the transaction ID") + translationManager.emptyString wrapMode: Text.Wrap } 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 } 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 Layout.fillWidth: true; } @@ -154,7 +154,7 @@ Rectangle { id: txIdLine fontSize: mainLayout.lineEditFontSize - placeholderText: qsTr("Transaction ID here") + translationManager.emptyString + placeholderText: qsTr("Paste tx ID") + translationManager.emptyString readOnly: false width: mainLayout.editWidth Layout.fillWidth: true @@ -186,7 +186,7 @@ Rectangle { LineEdit { id: txKeyLine fontSize: mainLayout.lineEditFontSize - placeholderText: qsTr("Transaction key here") + translationManager.emptyString; + placeholderText: qsTr("Paste tx key") + translationManager.emptyString; readOnly: false width: mainLayout.editWidth |
