Improved german translation and a small bugfix
This commit is contained in:
parent
acdd3d8037
commit
03159ae83a
|
@ -1002,7 +1002,9 @@ sub create_detail_tree {
|
|||
$tree_scrolled->add_with_viewport($tree);
|
||||
|
||||
$t = $mode eq 'req'?_("Request Details"):_("Certificate Details");
|
||||
$t .= " - $parsed->{'CN'}";
|
||||
if (defined $parsed->{'CN'}) {
|
||||
$t .= " - $parsed->{'CN'}";
|
||||
}
|
||||
|
||||
$root = $store->append(undef);
|
||||
$store->set($root, 0 => $t);
|
||||
|
|
|
@ -505,11 +505,11 @@ sub add_info {
|
|||
if ($self->{'mode'} eq 'cert') {
|
||||
$parsed = $self->{'main'}->{'CERT'}->parse_cert($self->{'main'}, $dn,
|
||||
$false);
|
||||
$title="Certificate Information";
|
||||
$title = _("Certificate Information");
|
||||
} else {
|
||||
$parsed = $self->{'main'}->{'REQ'}->parse_req($self->{'main'}, $dn,
|
||||
$false);
|
||||
$title="Request Information";
|
||||
$title = _("Request Information");
|
||||
}
|
||||
|
||||
defined($parsed) || GUI::HELPERS::print_error(_("Can't read file"));
|
||||
|
|
Loading…
Reference in New Issue