From a594e25b26aff323daaca21c580e5163cc2a2a1b Mon Sep 17 00:00:00 2001 From: dEBRUYNE-1 Date: Tue, 28 Jun 2016 22:14:30 +0200 Subject: [PATCH 1/2] Clean up text --- main.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main.qml b/main.qml index 721c69e4..e890a75b 100644 --- a/main.qml +++ b/main.qml @@ -206,10 +206,10 @@ ApplicationWindow { transactionConfirmationPopup.title = qsTr("Confirmation") transactionConfirmationPopup.text = qsTr("Please confirm transaction:\n\n") - + "\naddress: " + address - + "\npayment id: " + paymentId - + "\namount: " + walletManager.displayAmount(transaction.amount) - + "\nfee: " + walletManager.displayAmount(transaction.fee) + + "\nAddress: " + address + + "\nPayment ID: " + paymentId + + "\nAmount: " + walletManager.displayAmount(transaction.amount) + + "\nFee: " + walletManager.displayAmount(transaction.fee) transactionConfirmationPopup.icon = StandardIcon.Question transactionConfirmationPopup.open() // committing transaction From f846935f95abd892b3bcb708632d827a8fb29f7d Mon Sep 17 00:00:00 2001 From: dEBRUYNE-1 Date: Tue, 28 Jun 2016 22:21:02 +0200 Subject: [PATCH 2/2] Fix typo --- pages/Transfer.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/Transfer.qml b/pages/Transfer.qml index 5e683f73..aa79c18f 100644 --- a/pages/Transfer.qml +++ b/pages/Transfer.qml @@ -64,7 +64,7 @@ Rectangle { anchors.topMargin: 17 fontSize: 14 x: (parent.width - 17) / 2 + 17 - text: qsTr("Transaction prority") + text: qsTr("Transaction priority") } Row {