From 2d3937920179ea5885abf049061b03ea9537272d Mon Sep 17 00:00:00 2001 From: Jean Brito Date: Fri, 12 Jul 2024 14:44:01 -0300 Subject: [PATCH] fix: Set the default option to NO in the not trusted certificate dialog (#2916) * improve not trusted certificate message * make NO the default to not trusted certificates dialog --- src/i18n/en.i18n.json | 2 +- src/i18n/pt-BR.i18n.json | 2 +- src/ui/main/dialogs.ts | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/i18n/en.i18n.json b/src/i18n/en.i18n.json index 0a1832205..7033b1be0 100644 --- a/src/i18n/en.i18n.json +++ b/src/i18n/en.i18n.json @@ -38,7 +38,7 @@ }, "certificateError": { "title": "Certificate error", - "message": "Do you trust certificate from \"{{- issuerName}}\"?", + "message": "Do you trust certificate from \"{{- issuerName}}\"? Only click 'Yes' if you really trust this certificate. If you are unsure, contact your IT or security team before clicking on 'Yes'.", "yes": "Yes", "no": "No" }, diff --git a/src/i18n/pt-BR.i18n.json b/src/i18n/pt-BR.i18n.json index 8a27c85b1..a93c436ea 100644 --- a/src/i18n/pt-BR.i18n.json +++ b/src/i18n/pt-BR.i18n.json @@ -38,7 +38,7 @@ }, "certificateError": { "title": "Erro de Certificado", - "message": "Você confia no certificado de \"{{- issuerName}}\"?", + "message": "Você confia no certificado de \"{{- issuerName}}\"? Clique em 'Sim' apenas se você realmente confiar neste certificado. Se estiver em dúvida, entre em contato com sua equipe de TI ou segurança antes de clicar em 'Sim'.", "yes": "Sim", "no": "Não" }, diff --git a/src/ui/main/dialogs.ts b/src/ui/main/dialogs.ts index d15e7578c..315a43f93 100644 --- a/src/ui/main/dialogs.ts +++ b/src/ui/main/dialogs.ts @@ -117,6 +117,7 @@ export const askForCertificateTrust = async ( t('dialog.certificateError.no'), ], cancelId: 1, + defaultId: 1, } );