diff options
Diffstat (limited to 'pages/settings/SettingsNode.qml')
| -rw-r--r-- | pages/settings/SettingsNode.qml | 66 |
1 files changed, 33 insertions, 33 deletions
diff --git a/pages/settings/SettingsNode.qml b/pages/settings/SettingsNode.qml index 28480419..63902207 100644 --- a/pages/settings/SettingsNode.qml +++ b/pages/settings/SettingsNode.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2014-2024, The Monero Project +// Copyright (c) 2014-2024, The Monzero Project // // All rights reserved. // @@ -31,8 +31,8 @@ import QtQuick.Layouts 1.1 import QtQuick.Controls 2.0 import FontAwesome 1.0 -import "../../components" as MoneroComponents -import "../../components/effects" as MoneroEffects +import "../../components" as MonzeroComponents +import "../../components/effects" as MonzeroEffects Rectangle{ color: "transparent" @@ -64,8 +64,8 @@ Rectangle{ anchors.left: parent.left anchors.right: parent.right height: 1 - color: MoneroComponents.Style.dividerColor - opacity: MoneroComponents.Style.dividerOpacity + color: MonzeroComponents.Style.dividerColor + opacity: MonzeroComponents.Style.dividerOpacity } Rectangle { @@ -93,25 +93,25 @@ Rectangle{ anchors.leftMargin: 16 anchors.verticalCenter: parent.verticalCenter - MoneroComponents.Label { + MonzeroComponents.Label { fontSize: 32 text: FontAwesome.home fontFamily: FontAwesome.fontFamilySolid anchors.centerIn: parent - fontColor: MoneroComponents.Style.defaultFontColor + fontColor: MonzeroComponents.Style.defaultFontColor styleName: "Solid" } } - MoneroComponents.TextPlain { + MonzeroComponents.TextPlain { id: localNodeHeader anchors.left: localNodeIcon.right anchors.leftMargin: 14 anchors.top: parent.top - color: MoneroComponents.Style.defaultFontColor - opacity: MoneroComponents.Style.blackTheme ? 1.0 : 0.8 + color: MonzeroComponents.Style.defaultFontColor + opacity: MonzeroComponents.Style.blackTheme ? 1.0 : 0.8 font.bold: true - font.family: MoneroComponents.Style.fontRegular.name + font.family: MonzeroComponents.Style.fontRegular.name font.pixelSize: 16 text: qsTr("Local node") + translationManager.emptyString } @@ -122,8 +122,8 @@ Rectangle{ anchors.topMargin: 4 anchors.left: localNodeIcon.right anchors.leftMargin: 14 - color: MoneroComponents.Style.dimmedFontColor - font.family: MoneroComponents.Style.fontRegular.name + color: MonzeroComponents.Style.dimmedFontColor + font.family: MonzeroComponents.Style.fontRegular.name font.pixelSize: 15 horizontalAlignment: TextInput.AlignLeft wrapMode: Text.WordWrap; @@ -157,8 +157,8 @@ Rectangle{ anchors.left: parent.left anchors.right: parent.right height: 1 - color: MoneroComponents.Style.dividerColor - opacity: MoneroComponents.Style.dividerOpacity + color: MonzeroComponents.Style.dividerColor + opacity: MonzeroComponents.Style.dividerOpacity } Rectangle { @@ -186,25 +186,25 @@ Rectangle{ anchors.leftMargin: 16 anchors.verticalCenter: parent.verticalCenter - MoneroComponents.Label { + MonzeroComponents.Label { fontSize: 28 text: FontAwesome.cloud fontFamily: FontAwesome.fontFamilySolid styleName: "Solid" anchors.centerIn: parent - fontColor: MoneroComponents.Style.defaultFontColor + fontColor: MonzeroComponents.Style.defaultFontColor } } - MoneroComponents.TextPlain { + MonzeroComponents.TextPlain { id: remoteNodeHeader anchors.left: remoteNodeIcon.right anchors.leftMargin: 14 anchors.top: parent.top - color: MoneroComponents.Style.defaultFontColor - opacity: MoneroComponents.Style.blackTheme ? 1.0 : 0.8 + color: MonzeroComponents.Style.defaultFontColor + opacity: MonzeroComponents.Style.blackTheme ? 1.0 : 0.8 font.bold: true - font.family: MoneroComponents.Style.fontRegular.name + font.family: MonzeroComponents.Style.fontRegular.name font.pixelSize: 16 text: qsTr("Remote node") + translationManager.emptyString } @@ -215,14 +215,14 @@ Rectangle{ anchors.topMargin: 4 anchors.left: remoteNodeIcon.right anchors.leftMargin: 14 - color: MoneroComponents.Style.dimmedFontColor - font.family: MoneroComponents.Style.fontRegular.name + color: MonzeroComponents.Style.dimmedFontColor + font.family: MonzeroComponents.Style.fontRegular.name font.pixelSize: 15 horizontalAlignment: TextInput.AlignLeft wrapMode: Text.WordWrap; leftPadding: 0 topPadding: 0 - text: qsTr("Uses a third-party server to connect to the Monero network. Less secure, but easier on your computer.") + translationManager.emptyString + text: qsTr("Uses a third-party server to connect to the Monzero network. Less secure, but easier on your computer.") + translationManager.emptyString width: parent.width - (remoteNodeIcon.width + remoteNodeIcon.anchors.leftMargin + anchors.leftMargin) } @@ -244,18 +244,18 @@ Rectangle{ anchors.right: parent.right anchors.bottom: parent.bottom height: 1 - color: MoneroComponents.Style.dividerColor - opacity: MoneroComponents.Style.dividerOpacity + color: MonzeroComponents.Style.dividerColor + opacity: MonzeroComponents.Style.dividerOpacity } } - MoneroComponents.WarningBox { + MonzeroComponents.WarningBox { Layout.topMargin: 46 - text: qsTr("To find a remote node, type 'Monero remote node' into your favorite search engine. Please ensure the node is run by a trusted third-party.") + translationManager.emptyString + text: qsTr("To find a remote node, type 'Monzero remote node' into your favorite search engine. Please ensure the node is run by a trusted third-party.") + translationManager.emptyString visible: persistentSettings.useRemoteNode } - MoneroComponents.RemoteNodeList { + MonzeroComponents.RemoteNodeList { Layout.fillWidth: true Layout.topMargin: 26 visible: persistentSettings.useRemoteNode @@ -267,7 +267,7 @@ Rectangle{ Layout.topMargin: 40 visible: !persistentSettings.useRemoteNode - MoneroComponents.StandardButton { + MonzeroComponents.StandardButton { small: true text: (appWindow.daemonRunning ? qsTr("Stop daemon") : qsTr("Start daemon")) + translationManager.emptyString onClicked: { @@ -281,7 +281,7 @@ Rectangle{ } RowLayout { - MoneroComponents.LineEditMulti { + MonzeroComponents.LineEditMulti { id: blockchainFolder Layout.preferredWidth: 200 Layout.fillWidth: true @@ -308,7 +308,7 @@ Rectangle{ } } - MoneroComponents.LineEditMulti { + MonzeroComponents.LineEditMulti { id: daemonFlags Layout.fillWidth: true labelFontSize: 14 @@ -333,7 +333,7 @@ Rectangle{ ColumnLayout { Layout.fillWidth: true - MoneroComponents.RemoteNodeEdit { + MonzeroComponents.RemoteNodeEdit { id: bootstrapNodeEdit Layout.minimumWidth: 100 Layout.bottomMargin: 20 |
