mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Gettext for System::Cert manager
This commit is contained in:
parent
ec0d9beffa
commit
a37753d7cc
@ -41,12 +41,12 @@ require("guiconfig.inc");
|
||||
require_once("certs.inc");
|
||||
|
||||
$ca_methods = array(
|
||||
"existing" => "Import an existing Certificate Authority",
|
||||
"internal" => "Create an internal Certificate Authority");
|
||||
"existing" => gettext("Import an existing Certificate Authority"),
|
||||
"internal" => gettext("Create an internal Certificate Authority"));
|
||||
|
||||
$ca_keylens = array( "512", "1024", "2048", "4096");
|
||||
|
||||
$pgtitle = array("System", "Certificate Authority Manager");
|
||||
$pgtitle = array(gettext("System"), gettext("Certificate Authority Manager"));
|
||||
|
||||
$id = $_GET['id'];
|
||||
if (isset($_POST['id']))
|
||||
@ -125,13 +125,13 @@ if ($_POST) {
|
||||
"name keylen lifetime dn_country dn_state dn_city ".
|
||||
"dn_organization dn_email dn_commonname");
|
||||
$reqdfieldsn = explode(",",
|
||||
"Descriptive name,Key length,Lifetime,".
|
||||
"Distinguished name Country Code,".
|
||||
"Distinguished name State or Province,".
|
||||
"Distinguished name City,".
|
||||
"Distinguished name Organization,".
|
||||
"Distinguished name Email Address,".
|
||||
"Distinguished name Common Name");
|
||||
gettext("Descriptive name,Key length,Lifetime,").
|
||||
gettext("Distinguished name Country Code,").
|
||||
gettext("Distinguished name State or Province,").
|
||||
gettext("Distinguished name City,").
|
||||
gettext("Distinguished name Organization,").
|
||||
gettext("Distinguished name Email Address,").
|
||||
gettext("Distinguished name Common Name"));
|
||||
}
|
||||
|
||||
do_input_validation($_POST, $reqdfields, $reqdfieldsn, &$input_errors);
|
||||
@ -260,15 +260,15 @@ function method_change() {
|
||||
<td colspan="2" class="list" height="12"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" valign="top" class="listtopic">Existing Certificate Authority</td>
|
||||
<td colspan="2" valign="top" class="listtopic"><?=gettext("Existing Certificate Authority");?></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td width="22%" valign="top" class="vncellreq">Certificate data</td>
|
||||
<td width="22%" valign="top" class="vncellreq"><?=gettext("Certificate data");?></td>
|
||||
<td width="78%" class="vtable">
|
||||
<textarea name="cert" id="cert" cols="65" rows="7" class="formfld_cert"><?=$pconfig['cert'];?></textarea>
|
||||
<br>
|
||||
Paste a certificate in X.509 PEM format here.</td>
|
||||
<?=gettext("Paste a certificate in X.509 PEM format here.");?></td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -278,7 +278,7 @@ function method_change() {
|
||||
<td colspan="2" class="list" height="12"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" valign="top" class="listtopic">Internal Certificate Authority</td>
|
||||
<td colspan="2" valign="top" class="listtopic"><?=gettext("Internal Certificate Authority");?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="22%" valign="top" class="vncellreq"><?=gettext("Key length");?></td>
|
||||
@ -293,14 +293,14 @@ function method_change() {
|
||||
<option value="<?=$len;?>"<?=$selected;?>><?=$len;?></option>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
bits
|
||||
<?=gettext(bits);?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="22%" valign="top" class="vncellreq"><?=gettext("Lifetime");?></td>
|
||||
<td width="78%" class="vtable">
|
||||
<input name="lifetime" type="text" class="formfld unknown" id="lifetime" size="5" value="<?=htmlspecialchars($pconfig['lifetime']);?>"/>
|
||||
days
|
||||
<?=gettext(days);?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -308,64 +308,64 @@ function method_change() {
|
||||
<td width="78%" class="vtable">
|
||||
<table border="0" cellspacing="0" cellpadding="2">
|
||||
<tr>
|
||||
<td align="right">Country Code : </td>
|
||||
<td align="right"><?=gettext("Country Code");?> : </td>
|
||||
<td align="left">
|
||||
<input name="dn_country" type="text" class="formfld unknown" maxlength="2" size="2" value="<?=htmlspecialchars($pconfig['dn_country']);?>"/>
|
||||
|
||||
<em>ex:</em>
|
||||
|
||||
US
|
||||
<em>( two letters )</em>
|
||||
<?=gettext("US");?>
|
||||
<em><?=gettext("( two letters )");?></em>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">State or Province : </td>
|
||||
<td align="right"><?=gettext("State or Province");?> : </td>
|
||||
<td align="left">
|
||||
<input name="dn_state" type="text" class="formfld unknown" size="40" value="<?=htmlspecialchars($pconfig['dn_state']);?>"/>
|
||||
|
||||
<em>ex:</em>
|
||||
|
||||
Texas
|
||||
<?=gettext("Texas");?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">City : </td>
|
||||
<td align="right"><?=gettext("City");?> : </td>
|
||||
<td align="left">
|
||||
<input name="dn_city" type="text" class="formfld unknown" size="40" value="<?=htmlspecialchars($pconfig['dn_city']);?>"/>
|
||||
|
||||
<em>ex:</em>
|
||||
|
||||
Austin
|
||||
<?=gettext("Austin");?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">Organization : </td>
|
||||
<td align="right"><?=gettext("Organization");?> : </td>
|
||||
<td align="left">
|
||||
<input name="dn_organization" type="text" class="formfld unknown" size="40" value="<?=htmlspecialchars($pconfig['dn_organization']);?>"/>
|
||||
|
||||
<em>ex:</em>
|
||||
|
||||
My Company Inc.
|
||||
<?=gettext("My Company Inc.");?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">Email Address : </td>
|
||||
<td align="right"><?=gettext("Email Address");?> : </td>
|
||||
<td align="left">
|
||||
<input name="dn_email" type="text" class="formfld unknown" size="25" value="<?=htmlspecialchars($pconfig['dn_email']);?>"/>
|
||||
|
||||
<em>ex:</em>
|
||||
|
||||
admin@mycompany.com
|
||||
<?=gettext("admin@mycompany.com");?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">Common Name : </td>
|
||||
<td align="right"><?=gettext("Common Name");?> : </td>
|
||||
<td align="left">
|
||||
<input name="dn_commonname" type="text" class="formfld unknown" size="25" value="<?=htmlspecialchars($pconfig['dn_commonname']);?>"/>
|
||||
|
||||
<em>ex:</em>
|
||||
|
||||
internal-ca
|
||||
<?=gettext("internal-ca");?>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -390,11 +390,11 @@ function method_change() {
|
||||
|
||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td width="20%" class="listhdrr">Name</td>
|
||||
<td width="10%" class="listhdrr">Internal</td>
|
||||
<td width="10%" class="listhdrr">Issuer</td>
|
||||
<td width="10%" class="listhdrr">Certificates</td>
|
||||
<td width="40%" class="listhdrr">Distinguished Name</td>
|
||||
<td width="20%" class="listhdrr"><?=gettext("Name");?></td>
|
||||
<td width="10%" class="listhdrr"><?=gettext("Internal");?></td>
|
||||
<td width="10%" class="listhdrr"><?=gettext("Issuer");?></td>
|
||||
<td width="10%" class="listhdrr"><?=gettext("Certificates");?></td>
|
||||
<td width="40%" class="listhdrr"><?=gettext("Distinguished Name");?></td>
|
||||
<td width="10%" class="list"></td>
|
||||
</tr>
|
||||
<?php
|
||||
@ -404,9 +404,9 @@ function method_change() {
|
||||
$subj = cert_get_subject($ca['crt']);
|
||||
$issuer = cert_get_issuer($ca['crt']);
|
||||
if($subj == $issuer)
|
||||
$issuer_name = "<em>self-signed</em>";
|
||||
$issuer_name = "<em>" . gettext("self-signed") . "</em>";
|
||||
else
|
||||
$issuer_name = "<em>external</em>";
|
||||
$issuer_name = "<em>" . gettext("external") . "</em>";
|
||||
$subj = htmlspecialchars($subj);
|
||||
$issuer = htmlspecialchars($issuer);
|
||||
$certcount = 0;
|
||||
@ -451,7 +451,7 @@ function method_change() {
|
||||
<td class="listr"><?=$subj;?> </td>
|
||||
<td valign="middle" nowrap class="list">
|
||||
<a href="system_camanager.php?act=exp&id=<?=$i;?>")">
|
||||
<img src="/themes/<?= $g['theme'];?>/images/icons/icon_down.gif" title="export ca" alt="export ca" width="17" height="17" border="0" />
|
||||
<img src="/themes/<?= $g['theme'];?>/images/icons/icon_down.gif" title="<?=gettext("export ca");?>" alt="<?=gettext("export ca");?>" width="17" height="17" border="0" />
|
||||
</a>
|
||||
<a href="system_camanager.php?act=del&id=<?=$i;?>" onclick="return confirm('<?=gettext("Do you really want to delete this Certificate Authority and all associated Certificates?");?>')">
|
||||
<img src="/themes/<?= $g['theme'];?>/images/icons/icon_x.gif" title="delete ca" alt="delete ca" width="17" height="17" border="0" />
|
||||
@ -466,7 +466,7 @@ function method_change() {
|
||||
<td class="list" colspan="5"></td>
|
||||
<td class="list">
|
||||
<a href="system_camanager.php?act=new">
|
||||
<img src="/themes/<?= $g['theme'];?>/images/icons/icon_plus.gif" title="add or import ca" alt="add ca" width="17" height="17" border="0" />
|
||||
<img src="/themes/<?= $g['theme'];?>/images/icons/icon_plus.gif" title="<?=gettext("add or import ca");?>" alt="<?=gettext("add ca");?>" width="17" height="17" border="0" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@ -41,13 +41,13 @@ require("guiconfig.inc");
|
||||
require_once("certs.inc");
|
||||
|
||||
$cert_methods = array(
|
||||
"existing" => "Import an existing Certificate",
|
||||
"internal" => "Create an internal Certificate",
|
||||
"external" => "Create a Certificate Signing Request");
|
||||
"existing" => gettext("Import an existing Certificate"),
|
||||
"internal" => gettext("Create an internal Certificate"),
|
||||
"external" => gettext("Create a Certificate Signing Request"));
|
||||
|
||||
$cert_keylens = array( "512", "1024", "2048", "4096");
|
||||
|
||||
$pgtitle = array("System", "Certificate Manager");
|
||||
$pgtitle = array("System", gettext("Certificate Manager"));
|
||||
|
||||
$id = $_GET['id'];
|
||||
if (isset($_POST['id']))
|
||||
@ -151,7 +151,7 @@ if ($_POST) {
|
||||
$reqdfields = explode(" ",
|
||||
"name cert key");
|
||||
$reqdfieldsn = explode(",",
|
||||
"Descriptive name,Certificate data,Key data");
|
||||
gettext("Descriptive name,Certificate data,Key data"));
|
||||
}
|
||||
|
||||
if ($pconfig['method'] == "internal") {
|
||||
@ -159,13 +159,13 @@ if ($_POST) {
|
||||
"name caref keylen lifetime dn_country dn_state dn_city ".
|
||||
"dn_organization dn_email dn_commonname");
|
||||
$reqdfieldsn = explode(",",
|
||||
"Descriptive name,Certificate authority,Key length,Lifetime,".
|
||||
"Distinguished name Country Code,".
|
||||
"Distinguished name State or Province,".
|
||||
"Distinguished name City,".
|
||||
"Distinguished name Organization,".
|
||||
"Distinguished name Email Address,".
|
||||
"Distinguished name Common Name");
|
||||
gettext("Descriptive name,Certificate authority,Key length,Lifetime,").
|
||||
gettext("Distinguished name Country Code,").
|
||||
gettext("Distinguished name State or Province,").
|
||||
gettext("Distinguished name City,").
|
||||
gettext("Distinguished name Organization,").
|
||||
gettext("Distinguished name Email Address,").
|
||||
gettext("Distinguished name Common Name"));
|
||||
}
|
||||
|
||||
if ($pconfig['method'] == "external") {
|
||||
@ -173,13 +173,13 @@ if ($_POST) {
|
||||
"name csr_keylen csr_dn_country csr_dn_state csr_dn_city ".
|
||||
"csr_dn_organization csr_dn_email csr_dn_commonname");
|
||||
$reqdfieldsn = explode(",",
|
||||
"Descriptive name,Key length,".
|
||||
"Distinguished name Country Code,".
|
||||
"Distinguished name State or Province,".
|
||||
"Distinguished name City,".
|
||||
"Distinguished name Organization,".
|
||||
"Distinguished name Email Address,".
|
||||
"Distinguished name Common Name");
|
||||
gettext("Descriptive name,Key length,").
|
||||
gettext("Distinguished name Country Code,").
|
||||
gettext("Distinguished name State or Province,").
|
||||
gettext("Distinguished name City,").
|
||||
gettext("Distinguished name Organization,").
|
||||
gettext("Distinguished name Email Address,").
|
||||
gettext("Distinguished name Common Name"));
|
||||
}
|
||||
|
||||
do_input_validation($_POST, $reqdfields, $reqdfieldsn, &$input_errors);
|
||||
@ -239,13 +239,13 @@ if ($_POST) {
|
||||
}
|
||||
}
|
||||
|
||||
if ($_POST['save'] == "Update") {
|
||||
if ($_POST['save'] == gettext("Update")) {
|
||||
unset($input_errors);
|
||||
$pconfig = $_POST;
|
||||
|
||||
/* input validation */
|
||||
$reqdfields = explode(" ", "name cert");
|
||||
$reqdfieldsn = explode(",", "Descriptive name,Final Certificate data");
|
||||
$reqdfieldsn = explode(",", gettext("Descriptive name,Final Certificate data"));
|
||||
|
||||
do_input_validation($_POST, $reqdfields, $reqdfieldsn, &$input_errors);
|
||||
|
||||
@ -254,7 +254,7 @@ if ($_POST) {
|
||||
$subj_cert = cert_get_subject($pconfig['cert'], false);
|
||||
|
||||
if (strcmp($subj_csr,$subj_cert))
|
||||
$input_errors[] = gettext("The certificate subject '{$subj_cert}' does not match the signing request subject.");
|
||||
$input_errors[] = sprintf(gettext("The certificate subject '%s' does not match the signing request subject."),$subj_cert);
|
||||
|
||||
/* if this is an AJAX caller then handle via JSON */
|
||||
if (isAjax() && is_array($input_errors)) {
|
||||
@ -402,23 +402,23 @@ function internalca_change() {
|
||||
<td colspan="2" class="list" height="12"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" valign="top" class="listtopic">Existing Certificate</td>
|
||||
<td colspan="2" valign="top" class="listtopic"><?=gettext("Existing Certificate");?></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td width="22%" valign="top" class="vncellreq">Certificate data</td>
|
||||
<td width="22%" valign="top" class="vncellreq"><?=gettext("Certificate data");?></td>
|
||||
<td width="78%" class="vtable">
|
||||
<textarea name="cert" id="cert" cols="65" rows="7" class="formfld_cert"><?=$pconfig['cert'];?></textarea>
|
||||
<br>
|
||||
Paste a certificate in X.509 PEM format here.</td>
|
||||
<?=gettext("Paste a certificate in X.509 PEM format here.");?></td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="22%" valign="top" class="vncellreq">Private key data</td>
|
||||
<td width="22%" valign="top" class="vncellreq"><?=gettext("Private key data");?></td>
|
||||
<td width="78%" class="vtable">
|
||||
<textarea name="key" id="key" cols="65" rows="7" class="formfld_cert"><?=$pconfig['key'];?></textarea>
|
||||
<br>
|
||||
Paste a private key in X.509 PEM format here.</td>
|
||||
<?=gettext("Paste a private key in X.509 PEM format here.");?></td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -428,16 +428,16 @@ function internalca_change() {
|
||||
<td colspan="2" class="list" height="12"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" valign="top" class="listtopic">Internal Certificate</td>
|
||||
<td colspan="2" valign="top" class="listtopic"><?=gettext("Internal Certificate");?></td>
|
||||
</tr>
|
||||
|
||||
<?php if (!$internal_ca_count): ?>
|
||||
|
||||
<tr>
|
||||
<td colspan="2" align="center" class="vtable">
|
||||
No internal Certificate Authorities have been defined. You must
|
||||
<a href="system_camanager.php?act=new&method=internal">create</a>
|
||||
an internal CA before creating an internal certificate.
|
||||
<?=gettext("No internal Certificate Authorities have been defined. You must");?>
|
||||
<a href="system_camanager.php?act=new&method=internal"><?=gettext("create");?></a>
|
||||
<?=gettext("an internal CA before creating an internal certificate.");?>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@ -473,14 +473,14 @@ function internalca_change() {
|
||||
<option value="<?=$len;?>"<?=$selected;?>><?=$len;?></option>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
bits
|
||||
<?=gettext("bits");?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="22%" valign="top" class="vncellreq"><?=gettext("Lifetime");?></td>
|
||||
<td width="78%" class="vtable">
|
||||
<input name="lifetime" type="text" class="formfld unknown" id="lifetime" size="5" value="<?=htmlspecialchars($pconfig['lifetime']);?>"/>
|
||||
days
|
||||
<?=gettext("days");?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -488,47 +488,47 @@ function internalca_change() {
|
||||
<td width="78%" class="vtable">
|
||||
<table border="0" cellspacing="0" cellpadding="2">
|
||||
<tr>
|
||||
<td align="right">Country Code : </td>
|
||||
<td align="right"><?=gettext("Country Code");?> : </td>
|
||||
<td align="left">
|
||||
<input name="dn_country" type="text" class="formfld unknown" maxlength="2" size="2" value="<?=htmlspecialchars($pconfig['dn_country']);?>" readonly/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">State or Province : </td>
|
||||
<td align="right"><?=gettext("State or Province");?> : </td>
|
||||
<td align="left">
|
||||
<input name="dn_state" type="text" class="formfld unknown" size="40" value="<?=htmlspecialchars($pconfig['dn_state']);?>" readonly/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">City : </td>
|
||||
<td align="right"><?=gettext("City");?> : </td>
|
||||
<td align="left">
|
||||
<input name="dn_city" type="text" class="formfld unknown" size="40" value="<?=htmlspecialchars($pconfig['dn_city']);?>" readonly/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">Organization : </td>
|
||||
<td align="right"><?=gettext("Organization");?> : </td>
|
||||
<td align="left">
|
||||
<input name="dn_organization" type="text" class="formfld unknown" size="40" value="<?=htmlspecialchars($pconfig['dn_organization']);?>" readonly/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">Email Address : </td>
|
||||
<td align="right"><?=gettext("Email Address");?> : </td>
|
||||
<td align="left">
|
||||
<input name="dn_email" type="text" class="formfld unknown" size="25" value="<?=htmlspecialchars($pconfig['dn_email']);?>"/>
|
||||
|
||||
<em>ex:</em>
|
||||
|
||||
webadmin@mycompany.com
|
||||
<?=gettext("webadmin@mycompany.com");?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">Common Name : </td>
|
||||
<td align="right"><?=gettext("Common Name");?> : </td>
|
||||
<td align="left">
|
||||
<input name="dn_commonname" type="text" class="formfld unknown" size="25" value="<?=htmlspecialchars($pconfig['dn_commonname']);?>"/>
|
||||
|
||||
<em>ex:</em>
|
||||
|
||||
www.example.com
|
||||
<?=gettext("www.example.com");?>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -544,7 +544,7 @@ function internalca_change() {
|
||||
<td colspan="2" class="list" height="12"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" valign="top" class="listtopic">External Signing Request</td>
|
||||
<td colspan="2" valign="top" class="listtopic"><?=gettext("External Signing Request");?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="22%" valign="top" class="vncellreq"><?=gettext("Key length");?></td>
|
||||
@ -567,7 +567,7 @@ function internalca_change() {
|
||||
<td width="78%" class="vtable">
|
||||
<table border="0" cellspacing="0" cellpadding="2">
|
||||
<tr>
|
||||
<td align="right">Country Code : </td>
|
||||
<td align="right"><?=gettext("Country Code");?> : </td>
|
||||
<td align="left">
|
||||
<input name="csr_dn_country" type="text" class="formfld unknown" size="2" value="<?=htmlspecialchars($pconfig['csr_dn_country']);?>" />
|
||||
|
||||
@ -575,57 +575,57 @@ function internalca_change() {
|
||||
|
||||
US
|
||||
|
||||
<em>( two letters )</em>
|
||||
<em><?=gettext("( two letters )");?></em>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">State or Province : </td>
|
||||
<td align="right"><?=gettext("State or Province");?> : </td>
|
||||
<td align="left">
|
||||
<input name="csr_dn_state" type="text" class="formfld unknown" size="40" value="<?=htmlspecialchars($pconfig['csr_dn_state']);?>" />
|
||||
|
||||
<em>ex:</em>
|
||||
|
||||
Texas
|
||||
<?=gettext("Texas");?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">City : </td>
|
||||
<td align="right"><?=gettext("City");?> : </td>
|
||||
<td align="left">
|
||||
<input name="csr_dn_city" type="text" class="formfld unknown" size="40" value="<?=htmlspecialchars($pconfig['csr_dn_city']);?>" />
|
||||
|
||||
<em>ex:</em>
|
||||
|
||||
Austin
|
||||
<?=gettext("Austin");?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">Organization : </td>
|
||||
<td align="right"><?=gettext("Organization");?> : </td>
|
||||
<td align="left">
|
||||
<input name="csr_dn_organization" type="text" class="formfld unknown" size="40" value="<?=htmlspecialchars($pconfig['csr_dn_organization']);?>" />
|
||||
|
||||
<em>ex:</em>
|
||||
|
||||
My Company Inc.
|
||||
<?=gettext("My Company Inc.");?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">Email Address : </td>
|
||||
<td align="right"><?=gettext("Email Address");?> : </td>
|
||||
<td align="left">
|
||||
<input name="csr_dn_email" type="text" class="formfld unknown" size="25" value="<?=htmlspecialchars($pconfig['csr_dn_email']);?>"/>
|
||||
|
||||
<em>ex:</em>
|
||||
|
||||
webadmin@mycompany.com
|
||||
<?=gettext("webadmin@mycompany.com");?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">Common Name : </td>
|
||||
<td align="right"><?=gettext("Common Name");?> : </td>
|
||||
<td align="left">
|
||||
<input name="csr_dn_commonname" type="text" class="formfld unknown" size="25" value="<?=htmlspecialchars($pconfig['csr_dn_commonname']);?>"/>
|
||||
|
||||
<em>ex:</em>
|
||||
|
||||
www.example.com
|
||||
<?=gettext("www.example.com");?>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -660,23 +660,23 @@ function internalca_change() {
|
||||
<td colspan="2" class="list" height="12"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" valign="top" class="listtopic">Complete Signing Request</td>
|
||||
<td colspan="2" valign="top" class="listtopic"><?=gettext("Complete Signing Request");?></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td width="22%" valign="top" class="vncellreq">Signing Request data</td>
|
||||
<td width="22%" valign="top" class="vncellreq"><?=gettext("Signing Request data");?></td>
|
||||
<td width="78%" class="vtable">
|
||||
<textarea name="csr" id="csr" cols="65" rows="7" class="formfld_cert" readonly><?=$pconfig['csr'];?></textarea>
|
||||
<br>
|
||||
Copy the certificate signing data from here and forward it to your certificate authority for signing.</td>
|
||||
<?=gettext("Copy the certificate signing data from here and forward it to your certificate authority for signing.");?></td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="22%" valign="top" class="vncellreq">Final Certificate data</td>
|
||||
<td width="22%" valign="top" class="vncellreq"><?=gettext("Final Certificate data");?></td>
|
||||
<td width="78%" class="vtable">
|
||||
<textarea name="cert" id="cert" cols="65" rows="7" class="formfld_cert"><?=$pconfig['cert'];?></textarea>
|
||||
<br>
|
||||
Paste the certificate received from your cerificate authority here.</td>
|
||||
<?=gettext("Paste the certificate received from your cerificate authority here.");?></td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -696,9 +696,9 @@ function internalca_change() {
|
||||
|
||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td width="20%" class="listhdrr">Name</td>
|
||||
<td width="20%" class="listhdrr">Issuer</td>
|
||||
<td width="40%" class="listhdrr">Distinguished Name</td>
|
||||
<td width="20%" class="listhdrr"><?=gettext("Name");?></td>
|
||||
<td width="20%" class="listhdrr"><?=gettext("Issuer");?></td>
|
||||
<td width="40%" class="listhdrr"><?=gettext("Distinguished Name");?></td>
|
||||
<td width="10%" class="list"></td>
|
||||
</tr>
|
||||
<?php
|
||||
@ -710,15 +710,15 @@ function internalca_change() {
|
||||
$subj = cert_get_subject($cert['crt']);
|
||||
$issuer = cert_get_issuer($cert['crt']);
|
||||
if($subj==$issuer)
|
||||
$caname = "<em>self-signed</em>";
|
||||
$caname = "<em>" . gettext("self-signed") . "</em>";
|
||||
else
|
||||
$caname = "<em>external</em>";
|
||||
$caname = "<em>" . gettext("external"). "</em>";
|
||||
$subj = htmlspecialchars($subj);
|
||||
}
|
||||
|
||||
if ($cert['csr']) {
|
||||
$subj = htmlspecialchars(csr_get_subject($cert['csr']));
|
||||
$caname = "<em>external - signature pending</em>";
|
||||
$caname = "<em>" . gettext("external - signature pending") . "</em>";
|
||||
}
|
||||
|
||||
$ca = lookup_ca($cert['caref']);
|
||||
@ -747,18 +747,18 @@ function internalca_change() {
|
||||
<td class="listr"><?=$subj;?> </td>
|
||||
<td valign="middle" nowrap class="list">
|
||||
<a href="system_certmanager.php?act=exp&id=<?=$i;?>")">
|
||||
<img src="/themes/<?= $g['theme'];?>/images/icons/icon_down.gif" title="export cert" alt="export ca" width="17" height="17" border="0" />
|
||||
<img src="/themes/<?= $g['theme'];?>/images/icons/icon_down.gif" title="<?=gettext("export cert");?>" alt="<?=gettext("export ca");?>" width="17" height="17" border="0" />
|
||||
</a>
|
||||
<a href="system_certmanager.php?act=key&id=<?=$i;?>")">
|
||||
<img src="/themes/<?= $g['theme'];?>/images/icons/icon_down.gif" title="export key" alt="export ca" width="17" height="17" border="0" />
|
||||
<img src="/themes/<?= $g['theme'];?>/images/icons/icon_down.gif" title="<?=gettext("export key");?>" alt="<?=gettext("export ca");?>" width="17" height="17" border="0" />
|
||||
</a>
|
||||
<a href="system_certmanager.php?act=del&id=<?=$i;?>" onclick="return confirm('<?=gettext("Do you really want to delete this Certificate?");?>')">
|
||||
<img src="/themes/<?= $g['theme'];?>/images/icons/icon_x.gif" title="delete cert" alt="delete cert" width="17" height="17" border="0" />
|
||||
<img src="/themes/<?= $g['theme'];?>/images/icons/icon_x.gif" title="<?=gettext("delete cert");?>" alt="<?=gettext("delete cert");?>" width="17" height="17" border="0" />
|
||||
</a>
|
||||
<?php if ($cert['csr']): ?>
|
||||
|
||||
<a href="system_certmanager.php?act=csr&id=<?=$i;?>">
|
||||
<img src="/themes/<?= $g['theme'];?>/images/icons/icon_e.gif" title="update csr" alt="update csr" width="17" height="17" border="0" />
|
||||
<img src="/themes/<?= $g['theme'];?>/images/icons/icon_e.gif" title="<?=gettext("update csr");?>" alt="<?=gettext("update csr");?>" width="17" height="17" border="0" />
|
||||
</a>
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
@ -771,7 +771,7 @@ function internalca_change() {
|
||||
<td class="list" colspan="3"></td>
|
||||
<td class="list">
|
||||
<a href="system_certmanager.php?act=new">
|
||||
<img src="/themes/<?= $g['theme'];?>/images/icons/icon_plus.gif" title="add or import ca" alt="add ca" width="17" height="17" border="0" />
|
||||
<img src="/themes/<?= $g['theme'];?>/images/icons/icon_plus.gif" title="<?=gettext("add or import ca");?>" alt="<?=gettext("add ca");?>" width="17" height="17" border="0" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user