diff options
| author | Monzero Build System <builds@monzero.org> | 2026-08-15 21:26:40 +0100 |
|---|---|---|
| committer | Monzero Build System <builds@monzero.org> | 2026-08-15 21:26:40 +0100 |
| commit | dceeb88444ce966caa1a133d2926d5f7213c87ff (patch) | |
| tree | d74c9c7d7e43c2a0d39d656c690c63050cff7f53 /wizard/WizardDaemonSettings.qml | |
| parent | 81f33c7e00bf183823909a02e6d96ce11e41adce (diff) | |
| download | monzero-gui-phase0-20260815.tar.gz monzero-gui-phase0-20260815.tar.xz monzero-gui-phase0-20260815.zip | |
Establish Monzero GUI Phase 0 baselinemonzero-gui-phase0-20260815
Diffstat (limited to 'wizard/WizardDaemonSettings.qml')
| -rw-r--r-- | wizard/WizardDaemonSettings.qml | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/wizard/WizardDaemonSettings.qml b/wizard/WizardDaemonSettings.qml index bada5da3..5a2d5762 100644 --- a/wizard/WizardDaemonSettings.qml +++ b/wizard/WizardDaemonSettings.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2014-2024, The Monero Project +// Copyright (c) 2014-2024, The Monzero Project // // All rights reserved. // @@ -32,7 +32,7 @@ import QtQuick.Layouts 1.2 import QtQuick.Controls 2.0 import "../js/Wizard.js" as Wizard -import "../components" as MoneroComponents +import "../components" as MonzeroComponents ColumnLayout { Layout.fillWidth: true @@ -49,7 +49,7 @@ ColumnLayout { } } - MoneroComponents.RadioButton { + MonzeroComponents.RadioButton { id: localNode Layout.fillWidth: true text: qsTr("Start a node automatically in background (recommended)") + translationManager.emptyString @@ -70,7 +70,7 @@ ColumnLayout { Layout.topMargin: 8 Layout.fillWidth: true - MoneroComponents.LineEdit { + MonzeroComponents.LineEdit { id: blockchainFolder Layout.fillWidth: true @@ -90,7 +90,7 @@ ColumnLayout { text: persistentSettings.blockchainDataDir onLabelLinkActivated: persistentSettings.blockchainDataDir = "" - MoneroComponents.InlineButton { + MonzeroComponents.InlineButton { small: true text: qsTr("Browse") + translationManager.emptyString onClicked: { @@ -104,7 +104,7 @@ ColumnLayout { RowLayout { id: pruningOptionRow - MoneroComponents.CheckBox { + MonzeroComponents.CheckBox { id: pruneBlockchainCheckBox checked: !existingDbWarning.visible ? persistentSettings.pruneBlockchain : false enabled: !existingDbWarning.visible @@ -119,8 +119,8 @@ ColumnLayout { id: existingDbWarning text: "A blockchain database already exists here. Select a new location to start a pruned node" visible: daemonManager ? daemonManager.checkLmdbExists(blockchainFolder.text) : false - color: MoneroComponents.Style.defaultFontColor - font.family: MoneroComponents.Style.fontRegular.name + color: MonzeroComponents.Style.defaultFontColor + font.family: MonzeroComponents.Style.fontRegular.name } } @@ -132,8 +132,8 @@ ColumnLayout { text: qsTr("Bootstrap node") + translationManager.emptyString Layout.topMargin: 10 Layout.fillWidth: true - font.family: MoneroComponents.Style.fontRegular.name - color: MoneroComponents.Style.defaultFontColor + font.family: MonzeroComponents.Style.fontRegular.name + color: MonzeroComponents.Style.defaultFontColor font.pixelSize: { if(wizardController.layoutScale === 2 ){ return 22; @@ -149,12 +149,12 @@ ColumnLayout { } Text { - text: qsTr("Additionally, you may specify a bootstrap node to use Monero immediately.") + translationManager.emptyString + text: qsTr("Additionally, you may specify a bootstrap node to use Monzero immediately.") + translationManager.emptyString Layout.topMargin: 4 Layout.fillWidth: true - font.family: MoneroComponents.Style.fontRegular.name - color: MoneroComponents.Style.dimmedFontColor + font.family: MonzeroComponents.Style.fontRegular.name + color: MonzeroComponents.Style.dimmedFontColor font.pixelSize: { if(wizardController.layoutScale === 2 ){ @@ -175,7 +175,7 @@ ColumnLayout { spacing: 8 Layout.fillWidth: true - MoneroComponents.RemoteNodeEdit { + MonzeroComponents.RemoteNodeEdit { id: bootstrapNodeEdit Layout.minimumWidth: 300 //labelText: qsTr("Bootstrap node (leave blank if not wanted)") + translationManager.emptyString @@ -185,7 +185,7 @@ ColumnLayout { } } - MoneroComponents.RadioButton { + MonzeroComponents.RadioButton { id: remoteNode Layout.fillWidth: true Layout.topMargin: 8 @@ -198,7 +198,7 @@ ColumnLayout { } } - MoneroComponents.RemoteNodeList { + MonzeroComponents.RemoteNodeList { Layout.fillWidth: true Layout.topMargin: 8 visible: remoteNode.checked |
