You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/error.ts
+7-14Lines changed: 7 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -13,12 +13,12 @@ export enum X509_ERR_CODE {
13
13
14
14
// X509_ERR contains human-friendly versions of TLS errors.
15
15
exportenumX509_ERR{
16
-
PARTIAL_CHAIN="Your Coder deployment's certificate cannot be verified because a certificate is missing from its chain. To fix this your deployment's administrator should bundle the missing certificates or you can add the missing certificates directly to this system's trust store.",
16
+
PARTIAL_CHAIN="Your Coder deployment's certificate cannot be verified because a certificate is missing from its chain. To fix this your deployment's administrator must bundle the missing certificates.",
17
17
// NON_SIGNING can be removed if BoringSSL is patched and the patch makes it
18
18
// into the version of Electron used by VS Code.
19
-
NON_SIGNING="Your Coder deployment's certificate is not marked as being capable of signing. VS Code uses a version of Electron that does not support certificates like this even if they are self-issued. The certificate should be regenerated with the certificate signing capability.",
20
-
UNTRUSTED_LEAF="Your Coder deployment's certificate does not appear to be trusted by this system. The certificate should be added to this system's trust store.",
21
-
UNTRUSTED_CHAIN="Your Coder deployment's certificate chain does not appear to be trusted by this system. The root of the certificate chain should be added to this system's trust store. ",
19
+
NON_SIGNING="Your Coder deployment's certificate is not marked as being capable of signing. VS Code uses a version of Electron that does not support certificates like this even if they are self-issued. The certificate must be regenerated with the certificate signing capability.",
20
+
UNTRUSTED_LEAF="Your Coder deployment's certificate does not appear to be trusted by this system. The certificate must be added to this system's trust store.",
21
+
UNTRUSTED_CHAIN="Your Coder deployment's certificate chain does not appear to be trusted by this system. The root of the certificate chain must be added to this system's trust store. ",
22
22
}
23
23
24
24
exportinterfaceLogger{
@@ -31,7 +31,7 @@ interface KeyUsage {
31
31
32
32
exportclassCertificateErrorextendsError{
33
33
publicstaticActionAllowInsecure="Allow Insecure"
34
-
publicstaticActionViewMoreDetails="View More Details"
34
+
publicstaticActionOK="OK"
35
35
publicstaticInsecureMessage=
36
36
'The Coder extension will no longer verify TLS on HTTPS requests. You can change this at any time with the "coder.insecure" property in your VS Code settings.'
37
37
@@ -116,12 +116,6 @@ export class CertificateError extends Error {
0 commit comments