From 0bbf4ef595efd1c24b952aa0bb3b2777fa4a2af6 Mon Sep 17 00:00:00 2001 From: Devin Binnie <52460000+devinbinnie@users.noreply.github.com> Date: Thu, 23 Jan 2025 09:01:43 -0500 Subject: [PATCH] [MM-62670] Update cert issue error message (#3286) --- i18n/en.json | 2 +- src/main/app/app.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/i18n/en.json b/i18n/en.json index 36d21b8a..1bccff51 100644 --- a/i18n/en.json +++ b/i18n/en.json @@ -24,7 +24,7 @@ "main.app.app.handleAppCertificateError.certError.button.cancelConnection": "Cancel Connection", "main.app.app.handleAppCertificateError.certError.button.moreDetails": "More Details", "main.app.app.handleAppCertificateError.certError.dialog.detail": "{extraDetail}origin: {origin}\nError: {error}", - "main.app.app.handleAppCertificateError.certError.dialog.message": "There is a configuration issue with this Mattermost server, or someone is trying to intercept your connection. You also may need to sign into the Wi-Fi you are connected to using your web browser.", + "main.app.app.handleAppCertificateError.certError.dialog.message": "There is a problem with the security certificate for this server or for embedded content in a message. Please contact your Mattermost admin or IT department to resolve this issue.", "main.app.app.handleAppCertificateError.certError.dialog.title": "Certificate Error", "main.app.app.handleAppCertificateError.certNotTrusted.button.cancelConnection": "Cancel Connection", "main.app.app.handleAppCertificateError.certNotTrusted.button.trustInsecureCertificate": "Trust Insecure Certificate", diff --git a/src/main/app/app.ts b/src/main/app/app.ts index 1bb32ffd..5cbf04a6 100644 --- a/src/main/app/app.ts +++ b/src/main/app/app.ts @@ -130,7 +130,7 @@ export async function handleAppCertificateError(event: Event, webContents: WebCo try { let result = await dialog.showMessageBox(mainWindow, { title: localizeMessage('main.app.app.handleAppCertificateError.certError.dialog.title', 'Certificate Error'), - message: localizeMessage('main.app.app.handleAppCertificateError.certError.dialog.message', 'There is a configuration issue with this Mattermost server, or someone is trying to intercept your connection. You also may need to sign into the Wi-Fi you are connected to using your web browser.'), + message: localizeMessage('main.app.app.handleAppCertificateError.certError.dialog.message', 'There is a problem with the security certificate for this server or for embedded content in a message. Please contact your Mattermost admin or IT department to resolve this issue.'), type: 'error', detail, buttons: [