diff options
| author | Riccardo Spagni <ric@spagni.net> | 2017-03-11 20:31:02 +0100 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2017-03-11 20:31:02 +0100 |
| commit | b0d0974561ad8bf4aa574ca03e299090103ae5d5 (patch) | |
| tree | 99fb650f02edc61223d494e78d9c96d3ce837431 /wizard | |
| parent | fd4619628cf0e87cc6e06b44b6a9193fb8af2218 (diff) | |
| parent | c45cc3de416858a0674af36975003e3dee53afe3 (diff) | |
| download | monzero-gui-b0d0974561ad8bf4aa574ca03e299090103ae5d5.tar.gz monzero-gui-b0d0974561ad8bf4aa574ca03e299090103ae5d5.tar.xz monzero-gui-b0d0974561ad8bf4aa574ca03e299090103ae5d5.zip | |
Merge pull request #550
c45cc3d enabled translations in some places (kenshi84)
6364530 updated Japanese translation (kenshi84)
Diffstat (limited to 'wizard')
| -rw-r--r-- | wizard/WizardManageWalletUI.qml | 8 | ||||
| -rw-r--r-- | wizard/WizardMemoTextInput.qml | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/wizard/WizardManageWalletUI.qml b/wizard/WizardManageWalletUI.qml index f3d25aeb..7c15f4d5 100644 --- a/wizard/WizardManageWalletUI.qml +++ b/wizard/WizardManageWalletUI.qml @@ -200,7 +200,7 @@ ColumnLayout { id: addressLine Layout.maximumWidth: 600 Layout.minimumWidth: 200 - placeholderText: qsTr("Account address (public)") + placeholderText: qsTr("Account address (public)") + translationManager.emptyString onTextUpdated: checkNextButton() } LineEdit { @@ -208,7 +208,7 @@ ColumnLayout { id: viewKeyLine Layout.maximumWidth: 600 Layout.minimumWidth: 200 - placeholderText: qsTr("View key (private)") + placeholderText: qsTr("View key (private)") + translationManager.emptyString onTextUpdated: checkNextButton() } @@ -217,7 +217,7 @@ ColumnLayout { Layout.maximumWidth: 600 Layout.minimumWidth: 200 id: spendKeyLine - placeholderText: qsTr("Spend key (private)") + placeholderText: qsTr("Spend key (private)") + translationManager.emptyString onTextUpdated: checkNextButton() } } @@ -229,7 +229,7 @@ ColumnLayout { Layout.fillWidth: true Layout.maximumWidth: 600 Layout.minimumWidth: 200 - placeholderText: qsTr("Restore height (optional)") + placeholderText: qsTr("Restore height (optional)") + translationManager.emptyString validator: IntValidator { bottom:0 } diff --git a/wizard/WizardMemoTextInput.qml b/wizard/WizardMemoTextInput.qml index dba96ada..e9fbfdc9 100644 --- a/wizard/WizardMemoTextInput.qml +++ b/wizard/WizardMemoTextInput.qml @@ -41,7 +41,7 @@ Column { font.pixelSize: 16 anchors.margins: 8 font.bold:true - text: qsTr("Enter your 25 word mnemonic seed") + text: qsTr("Enter your 25 word mnemonic seed") + translationManager.emptyString color: "#BABABA" visible: !memoTextInput.text/* && !parent.focus*/ } |
