[MM-62670] Update cert issue error message (#3286)

This commit is contained in:
Devin Binnie
2025-01-23 09:01:43 -05:00
committed by GitHub
parent 34932dfa06
commit 0bbf4ef595
2 changed files with 2 additions and 2 deletions

View File

@@ -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",

View File

@@ -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: [