From 9108cc6dc886166a583e2bbfce05869e94ad91ad Mon Sep 17 00:00:00 2001 From: MrMirDan Date: Tue, 23 Dec 2025 16:30:05 +0200 Subject: [PATCH] update: text --- client/ui/qml/Components/PasswordDrawer.qml | 1 - client/ui/qml/Pages2/PageSettingsApiNativeConfigs.qml | 2 +- client/ui/qml/Pages2/PageSettingsAppPassword.qml | 2 +- client/ui/qml/Pages2/PageSettingsAppPasswordConfirm.qml | 2 +- client/ui/qml/Pages2/PageShare.qml | 2 +- 5 files changed, 4 insertions(+), 5 deletions(-) diff --git a/client/ui/qml/Components/PasswordDrawer.qml b/client/ui/qml/Components/PasswordDrawer.qml index 55b8f4e9b..108f95e5a 100644 --- a/client/ui/qml/Components/PasswordDrawer.qml +++ b/client/ui/qml/Components/PasswordDrawer.qml @@ -40,7 +40,6 @@ DrawerType2 { } function onImportSecuredFile() { - // TODO: file name not showing on import root.securedFunc = function() { if (ImportController.extractConfigFromData(SystemController.getDecryptedData(fileName, passwordField.textField.text))) { PageController.goToPage(PageEnum.PageSetupWizardViewConfig) diff --git a/client/ui/qml/Pages2/PageSettingsApiNativeConfigs.qml b/client/ui/qml/Pages2/PageSettingsApiNativeConfigs.qml index 3b5daddc9..17ebcfd9c 100644 --- a/client/ui/qml/Pages2/PageSettingsApiNativeConfigs.qml +++ b/client/ui/qml/Pages2/PageSettingsApiNativeConfigs.qml @@ -67,7 +67,7 @@ PageType { visible: SettingsController.isFileEncryptionEnabled() linkEnabled: true - textString: qsTr("Encryption enabled. Learn more") + textString: qsTr("Encryption enabled.") iconPath: "qrc:/images/controls/lock-locked.svg" } } diff --git a/client/ui/qml/Pages2/PageSettingsAppPassword.qml b/client/ui/qml/Pages2/PageSettingsAppPassword.qml index 75d41a757..95a03f108 100644 --- a/client/ui/qml/Pages2/PageSettingsAppPassword.qml +++ b/client/ui/qml/Pages2/PageSettingsAppPassword.qml @@ -199,7 +199,7 @@ PageType { QtObject { id: hintObject - property string title: qsTr("Hint for password") + property string title: root.isChangingPassword ? qsTr("New hint password (optional)") : qsTr("Password hint") readonly property string placeholderContent: "" property string imageSource: "" property bool hideContent: false diff --git a/client/ui/qml/Pages2/PageSettingsAppPasswordConfirm.qml b/client/ui/qml/Pages2/PageSettingsAppPasswordConfirm.qml index cd282f148..56c38f661 100644 --- a/client/ui/qml/Pages2/PageSettingsAppPasswordConfirm.qml +++ b/client/ui/qml/Pages2/PageSettingsAppPasswordConfirm.qml @@ -76,7 +76,7 @@ PageType { Layout.leftMargin: 16 Layout.rightMargin: 16 - headerText: root.isChangingPassword ? qsTr("Enter new password one more time") : qsTr("Enter password one more time") + headerText: root.isChangingPassword ? qsTr("Re-enter new password") : qsTr("Re-enter password") textField.echoMode: hideContent ? TextInput.Password : TextInput.Normal textField.placeholderText: "" textField.text: textField.text diff --git a/client/ui/qml/Pages2/PageShare.qml b/client/ui/qml/Pages2/PageShare.qml index bacde37d7..a9c166fa3 100644 --- a/client/ui/qml/Pages2/PageShare.qml +++ b/client/ui/qml/Pages2/PageShare.qml @@ -277,7 +277,7 @@ PageType { visible: SettingsController.isFileEncryptionEnabled() linkEnabled: true - textString: qsTr("Encryption enabled. Learn more") + textString: qsTr("Encryption enabled.") iconPath: "qrc:/images/controls/lock-locked.svg" }