From a05f93debd9df80dc62bee6dad21ba18565ae88c Mon Sep 17 00:00:00 2001 From: Romain LE JEUNE Date: Tue, 9 May 2023 08:49:58 +0200 Subject: [PATCH] feat(GODT-2520): Update error message for free users. --- .../bridge-gui/qml/Notifications/Notifications.qml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/internal/frontend/bridge-gui/bridge-gui/qml/Notifications/Notifications.qml b/internal/frontend/bridge-gui/bridge-gui/qml/Notifications/Notifications.qml index 1431aa36..96f13669 100644 --- a/internal/frontend/bridge-gui/bridge-gui/qml/Notifications/Notifications.qml +++ b/internal/frontend/bridge-gui/bridge-gui/qml/Notifications/Notifications.qml @@ -535,11 +535,12 @@ QtObject { } property Notification onlyPaidUsers: Notification { - description: qsTr("Bridge is exclusive to our paid plans. Upgrade your account to use Bridge.") + description: qsTr("Bridge is exclusive to our mail paid plans. Upgrade your account to use Bridge.") brief: qsTr("Upgrade your account") icon: "./icons/ic-exclamation-circle-filled.svg" type: Notification.NotificationType.Danger group: Notifications.Group.Configuration + property var pricingLink: "https://proton.me/mail/pricing" Connections { target: Backend @@ -550,8 +551,9 @@ QtObject { action: [ Action { - text: qsTr("OK") + text: qsTr("Upgrade") onTriggered: { + Qt.openUrlExternally(root.onlyPaidUsers.pricingLink) root.onlyPaidUsers.active = false } }