Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Williams2018-07-09 19:57:50 +0000
committerEric Williams2018-07-10 16:51:12 +0000
commit77730876131db1dee338b59ab954b3eb11345e9a (patch)
treee0cf82c3fda0988ac04faf0d1bf0df2f7ac2518e /bundles/org.eclipse.swt/Eclipse SWT/common_j2se/org/eclipse/swt/internal/SWTMessages.properties
parent90b11d0439eaf39696ee5c80da07e42a77c9ce34 (diff)
downloadeclipse.platform.swt-77730876131db1dee338b59ab954b3eb11345e9a.tar.gz
eclipse.platform.swt-77730876131db1dee338b59ab954b3eb11345e9a.tar.xz
eclipse.platform.swt-77730876131db1dee338b59ab954b3eb11345e9a.zip
Bug 531341: [Webkit2] Can't access self signed web sites using internal
web browser on fedora 27 Implemented more detailed error messages for the MessageBox. Added G_TLS_* constants into SWTMessages.properties, as well as German language support for those constants. Change-Id: I7a4122186a534a6e7a6a391a0c12b6f189b5ce60 Signed-off-by: Eric Williams <ericwill@redhat.com>
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/common_j2se/org/eclipse/swt/internal/SWTMessages.properties')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/common_j2se/org/eclipse/swt/internal/SWTMessages.properties8
1 files changed, 8 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common_j2se/org/eclipse/swt/internal/SWTMessages.properties b/bundles/org.eclipse.swt/Eclipse SWT/common_j2se/org/eclipse/swt/internal/SWTMessages.properties
index 94ffdca6f1..035cdf1cb5 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/common_j2se/org/eclipse/swt/internal/SWTMessages.properties
+++ b/bundles/org.eclipse.swt/Eclipse SWT/common_j2se/org/eclipse/swt/internal/SWTMessages.properties
@@ -82,6 +82,14 @@ SWT_InvalidCert_Message=The security certificate presented by "{0}" has problem(
SWT_InvalidCert_InvalidName=Certificate name is invalid or does not match site name. Certificate issued to: "{0}".
SWT_InvalidCert_NotValid=Certificate is not currently valid. Valid date range: "{0}".
SWT_InvalidCert_NotTrusted=Certificate is not from a trusted certifying authority. Certificate issuer: "{0}".
+SWT_InvalidCert_UnknownCA=The signing certificate authority is not known.
+SWT_InvalidCert_BadIdentity=The certificate does not match the expected identity of the site that it was retrieved from.
+SWT_InvalidCert_NotActivated=The certificate's activation time is still in the future.
+SWT_InvalidCert_Expired=The certificate has expired.
+SWT_InvalidCert_Revoked=The certificate has been revoked.
+SWT_InvalidCert_Insecure=The certificate's algorithm is considered insecure.
+SWT_InvalidCert_GenericError=Some other error occurred validating the certificate.
+SWT_InvalidCert_ValidateAll=This certificate has many errors.
SWT_InvalidCert_Connect=Would you like to connect to this site anyways?
SWT_OnBeforeUnload_Message1=Are you sure you want to leave this page?
SWT_OnBeforeUnload_Message2=Click OK to continue, or Cancel to stay on this page.

Back to the top