From 8bc411c598801642d6f39bc9a797c7c547c3c707 Mon Sep 17 00:00:00 2001 From: Ilya Kitaev Date: Mon, 8 Feb 2016 10:12:12 +0300 Subject: [PATCH] wordings and text alignment according to design --- wizard/WizardFinish.qml | 2 ++ wizard/WizardManageWalletUI.qml | 2 ++ wizard/WizardOptions.qml | 4 +++- wizard/WizardPassword.qml | 2 ++ 4 files changed, 9 insertions(+), 1 deletion(-) diff --git a/wizard/WizardFinish.qml b/wizard/WizardFinish.qml index 7902c0b2..62975d8c 100644 --- a/wizard/WizardFinish.qml +++ b/wizard/WizardFinish.qml @@ -94,6 +94,7 @@ Item { font.family: "Arial" font.pixelSize: 28 wrapMode: Text.Wrap + horizontalAlignment: Text.AlignHCenter //renderType: Text.NativeRendering color: "#3F3F3F" text: qsTr("You’re all setup!") @@ -107,6 +108,7 @@ Item { font.pixelSize: 18 wrapMode: Text.Wrap textFormat: Text.RichText + horizontalAlignment: Text.AlignHCenter //renderType: Text.NativeRendering color: "#4A4646" } diff --git a/wizard/WizardManageWalletUI.qml b/wizard/WizardManageWalletUI.qml index a00814a9..651c7081 100644 --- a/wizard/WizardManageWalletUI.qml +++ b/wizard/WizardManageWalletUI.qml @@ -86,6 +86,7 @@ Item { font.family: "Arial" font.pixelSize: 28 wrapMode: Text.Wrap + horizontalAlignment: Text.AlignHCenter //renderType: Text.NativeRendering color: "#3F3F3F" } @@ -96,6 +97,7 @@ Item { font.family: "Arial" font.pixelSize: 18 wrapMode: Text.Wrap + horizontalAlignment: Text.AlignHCenter //renderType: Text.NativeRendering color: "#4A4646" text: qsTr("This is the name of your wallet. You can change it to a different name if you’d like:") diff --git a/wizard/WizardOptions.qml b/wizard/WizardOptions.qml index a6718853..621cac78 100644 --- a/wizard/WizardOptions.qml +++ b/wizard/WizardOptions.qml @@ -58,7 +58,8 @@ Item { //renderType: Text.NativeRendering color: "#3F3F3F" wrapMode: Text.Wrap - text: qsTr("I want") + horizontalAlignment: Text.AlignHCenter + text: qsTr("Welcome to Monero!") } Text { @@ -69,6 +70,7 @@ Item { //renderType: Text.NativeRendering color: "#4A4646" wrapMode: Text.Wrap + horizontalAlignment: Text.AlignHCenter text: qsTr("Please select one of the following options:") } } diff --git a/wizard/WizardPassword.qml b/wizard/WizardPassword.qml index eb9d9c2c..d3d033aa 100644 --- a/wizard/WizardPassword.qml +++ b/wizard/WizardPassword.qml @@ -98,6 +98,7 @@ Item { font.family: "Arial" font.pixelSize: 28 wrapMode: Text.Wrap + horizontalAlignment: Text.AlignHCenter //renderType: Text.NativeRendering color: "#3F3F3F" @@ -111,6 +112,7 @@ Item { wrapMode: Text.Wrap //renderType: Text.NativeRendering color: "#4A4646" + horizontalAlignment: Text.AlignHCenter text: qsTr("Note that this password cannot be recovered, and if forgotten you will need to restore your wallet from the mnemonic seed you were just given

Your password will be used to protect your wallet and to confirm actions, so make sure that your password is sufficiently secure.") }