diff options
| author | Riccardo Spagni <ric@spagni.net> | 2016-11-11 12:46:38 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2016-11-11 12:46:38 +0200 |
| commit | a2d24558371d8ffce050b90980259a12846abf09 (patch) | |
| tree | d568953d1ff7140d5c3528d903daa19f7c0f649a | |
| parent | 75608f1772ec999b9513de76773372192c667f16 (diff) | |
| parent | 637d75480cc3485893754f60399c9be8540a5df7 (diff) | |
| download | monzero-gui-a2d24558371d8ffce050b90980259a12846abf09.tar.gz monzero-gui-a2d24558371d8ffce050b90980259a12846abf09.tar.xz monzero-gui-a2d24558371d8ffce050b90980259a12846abf09.zip | |
Merge pull request #146
637d754 rename tab Tx Key -> Verify payment (Jacob Brydolf)
bb85cb4 TxKey: layout width + typos (Jacob Brydolf)
| -rw-r--r-- | LeftPanel.qml | 2 | ||||
| -rw-r--r-- | pages/TxKey.qml | 7 |
2 files changed, 5 insertions, 4 deletions
diff --git a/LeftPanel.qml b/LeftPanel.qml index fb4c7397..008ec0ae 100644 --- a/LeftPanel.qml +++ b/LeftPanel.qml @@ -266,7 +266,7 @@ Rectangle { id: txkeyButton anchors.left: parent.left anchors.right: parent.right - text: qsTr("Tx Key") + translationManager.emptyString + text: qsTr("Verify payment") + translationManager.emptyString symbol: qsTr("K") + translationManager.emptyString dotColor: "#AAFFBB" onClicked: { diff --git a/pages/TxKey.qml b/pages/TxKey.qml index b9188bb9..07af3eb2 100644 --- a/pages/TxKey.qml +++ b/pages/TxKey.qml @@ -83,11 +83,11 @@ Rectangle { property int editWidth: 400 property int lineEditFontSize: 12 - RowLayout { ColumnLayout { + Text { - text: qsTr("You can verify a third party made a payment by supplying:") + translationManager.emptyString + text: qsTr("You can verify that a third party made a payment by supplying:") + translationManager.emptyString wrapMode: Text.Wrap } Text { @@ -103,8 +103,9 @@ Rectangle { wrapMode: Text.Wrap } Text { - text: qsTr("If a payment was made up of several tranactions, each transaction must be checked, and the results added") + translationManager.emptyString + text: qsTr("If a payment was made up of several transactions, each transaction must be checked, and the results added") + translationManager.emptyString wrapMode: Text.Wrap + Layout.fillWidth: true; } } } |
