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
// TRANSLATORS Error when the CRL distribution points (URLs) cannot be reached to check if certificate is revoked
75
76
CrlValidationStatus::URLS_INACCESSIBLE => $this->identifyService->getL10n()->t('Cannot reach the certificate revocation service. Signing is not allowed.'),
77
+
// TRANSLATORS Error when an error occurs during certificate revocation status validation
76
78
CrlValidationStatus::VALIDATION_ERROR => $this->identifyService->getL10n()->t('An error occurred during certificate validation. Signing is not allowed.'),
79
+
// TRANSLATORS Error when certificate validation completed but could not determine if certificate is revoked
77
80
CrlValidationStatus::VALIDATION_FAILED => $this->identifyService->getL10n()->t('Certificate validation failed. Signing is not allowed. Contact your administrator.'),
81
+
// TRANSLATORS Error when certificate has no CRL distribution points (URLs to check revocation)
78
82
CrlValidationStatus::NO_URLS => $this->identifyService->getL10n()->t('This certificate has no revocation URLs. Signing is not allowed. Contact your administrator.'),
83
+
// TRANSLATORS Error when certificate has no revocation information configured
79
84
CrlValidationStatus::MISSING => $this->identifyService->getL10n()->t('This certificate has no revocation information. Signing is not allowed. Contact your administrator.'),
80
85
default => $this->identifyService->getL10n()->t('Certificate validation could not be completed. Signing is not allowed.'),
0 commit comments