summaryrefslogtreecommitdiff
path: root/components/PasswordDialog.qml
diff options
context:
space:
mode:
Diffstat (limited to 'components/PasswordDialog.qml')
-rw-r--r--components/PasswordDialog.qml38
1 files changed, 19 insertions, 19 deletions
diff --git a/components/PasswordDialog.qml b/components/PasswordDialog.qml
index f369593b..706b79d2 100644
--- a/components/PasswordDialog.qml
+++ b/components/PasswordDialog.qml
@@ -1,4 +1,4 @@
-// Copyright (c) 2014-2024, The Monero Project
+// Copyright (c) 2014-2024, The Monzero Project
//
// All rights reserved.
//
@@ -34,8 +34,8 @@ import QtQuick.Controls.Styles 1.4
import QtQuick.Window 2.0
import FontAwesome 1.0
-import "." as MoneroComponents
-import "effects/" as MoneroEffects
+import "." as MonzeroComponents
+import "effects/" as MonzeroEffects
import "../js/Utils.js" as Utils
FocusScope {
@@ -172,9 +172,9 @@ FocusScope {
Layout.fillWidth: true
font.pixelSize: 16
- font.family: MoneroComponents.Style.fontLight.name
+ font.family: MonzeroComponents.Style.fontLight.name
- color: MoneroComponents.Style.defaultFontColor
+ color: MonzeroComponents.Style.defaultFontColor
}
Label {
@@ -184,17 +184,17 @@ FocusScope {
wrapMode: Text.Wrap
font.pixelSize: 14
- font.family: MoneroComponents.Style.fontLight.name
+ font.family: MonzeroComponents.Style.fontLight.name
- color: MoneroComponents.Style.warningColor
+ color: MonzeroComponents.Style.warningColor
}
Label {
id: errorTextLabel
visible: root.errorText || text !== ""
- color: MoneroComponents.Style.errorColor
+ color: MonzeroComponents.Style.errorColor
font.pixelSize: 16
- font.family: MoneroComponents.Style.fontLight.name
+ font.family: MonzeroComponents.Style.fontLight.name
Layout.fillWidth: true
wrapMode: Text.Wrap
}
@@ -202,15 +202,15 @@ FocusScope {
Label {
id: capsLockTextLabel
visible: false
- color: MoneroComponents.Style.errorColor
+ color: MonzeroComponents.Style.errorColor
font.pixelSize: 16
- font.family: MoneroComponents.Style.fontLight.name
+ font.family: MonzeroComponents.Style.fontLight.name
Layout.fillWidth: true
wrapMode: Text.Wrap
text: qsTr("CAPS LOCK IS ON.") + translationManager.emptyString;
}
- MoneroComponents.LineEdit {
+ MonzeroComponents.LineEdit {
id: passwordInput1
password: true
input.focus: root.visible && (appWindow.active || Qt.application.state === Qt.ApplicationActive)
@@ -247,12 +247,12 @@ FocusScope {
Layout.fillWidth: true
font.pixelSize: 16
- font.family: MoneroComponents.Style.fontLight.name
+ font.family: MonzeroComponents.Style.fontLight.name
- color: MoneroComponents.Style.defaultFontColor
+ color: MonzeroComponents.Style.defaultFontColor
}
- MoneroComponents.LineEdit {
+ MonzeroComponents.LineEdit {
id: passwordInput2
passwordLinked: passwordInput1
visible: !passwordDialogMode
@@ -284,7 +284,7 @@ FocusScope {
Layout.topMargin: 16
Layout.alignment: Qt.AlignRight
- MoneroComponents.StandardButton {
+ MonzeroComponents.StandardButton {
id: cancelButton
primary: false
small: true
@@ -293,7 +293,7 @@ FocusScope {
onClicked: onCancel()
}
- MoneroComponents.StandardButton {
+ MonzeroComponents.StandardButton {
id: okButton
fontAwesomeIcon: true
rightIcon: okButtonIcon
@@ -311,10 +311,10 @@ FocusScope {
Layout.fillWidth: true
font.pixelSize: 14
- font.family: MoneroComponents.Style.fontLight.name
+ font.family: MonzeroComponents.Style.fontLight.name
font.italic: true
- color: MoneroComponents.Style.defaultFontColor
+ color: MonzeroComponents.Style.defaultFontColor
}
}
}