diff options
author | Michael Tänzer <neo@nhng.de> | 2014-03-21 19:08:04 +0100 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2014-03-21 19:08:04 +0100 |
commit | 0d791f450e65657cfd615471cf31dfc0ba5d9b37 (patch) | |
tree | 109acab232fe8f9f5453741d2ae5873b6b787494 | |
parent | 0dce65277b99950ddbd34965d403dcac3fe0083e (diff) | |
parent | 8ac27d6ed5751435d920f9ae99020752007d441d (diff) | |
download | cacert-devel-0d791f450e65657cfd615471cf31dfc0ba5d9b37.tar.gz cacert-devel-0d791f450e65657cfd615471cf31dfc0ba5d9b37.tar.xz cacert-devel-0d791f450e65657cfd615471cf31dfc0ba5d9b37.zip |
Merge remote-tracking branch 'origin/bug-448' into release
-rw-r--r-- | includes/account.php | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/includes/account.php b/includes/account.php index 7c3748d..497bf58 100644 --- a/includes/account.php +++ b/includes/account.php @@ -972,8 +972,12 @@ function buildSubjectFromSession() { continue; } mysql_query("update `domaincerts` set `revoked`='1970-01-01 10:00:01' where `id`='$id'"); - printf(_("Certificate for '%s' has been revoked.")."<br>\n", $row['CN']); + printf(_("Certificate for '%s' with the serial no '%s' has been revoked.").'<br/>', htmlspecialchars($row['CN']), htmlspecialchars($row['serial'])); } + + // TRANSLATORS: Please don't translate "Certificate Revocation List (CRL)", it's a technical term + echo '<br/>'._('All listed certificates will be added to the Certificate Revocation List (CRL) soon.').'<br/>'; + } else { @@ -1128,8 +1132,11 @@ function buildSubjectFromSession() { continue; } mysql_query("update `emailcerts` set `revoked`='1970-01-01 10:00:01' where `id`='$id'"); - printf(_("Certificate for '%s' has been revoked.")."<br>\n", $row['CN']); + printf(_("Certificate for '%s' with the serial no '%s' has been revoked.").'<br/>', htmlspecialchars($row['CN']), htmlspecialchars($row['serial'])); } + + // TRANSLATORS: Please don't translate "Certificate Revocation List (CRL)", it's a technical term + echo '<br/>'._('All listed certificates will be added to the Certificate Revocation List (CRL) soon.').'<br/>'; } else { @@ -1755,8 +1762,11 @@ function buildSubjectFromSession() { continue; } mysql_query("update `orgemailcerts` set `revoked`='1970-01-01 10:00:01' where `id`='$id'"); - printf(_("Certificate for '%s' has been revoked.")."<br>\n", $row['CN']); + printf(_("Certificate for '%s' with the serial no '%s' has been revoked.").'<br/>', htmlspecialchars($row['CN']), htmlspecialchars($row['serial'])); } + + // TRANSLATORS: Please don't translate "Certificate Revocation List (CRL)", it's a technical term + echo '<br/>'._('All listed certificates will be added to the Certificate Revocation List (CRL) soon.').'<br/>'; } else { @@ -2111,8 +2121,11 @@ function buildSubjectFromSession() { continue; } mysql_query("update `orgdomaincerts` set `revoked`='1970-01-01 10:00:01' where `id`='$id'"); - printf(_("Certificate for '%s' has been revoked.")."<br>\n", $row['CN']); + printf(_("Certificate for '%s' with the serial no '%s' has been revoked.").'<br/>', htmlspecialchars($row['CN']), htmlspecialchars($row['serial'])); } + + // TRANSLATORS: Please don't translate "Certificate Revocation List (CRL)", it's a technical term + echo '<br/>'._('All listed certificates will be added to the Certificate Revocation List (CRL) soon.').'<br/>'; } else { |