Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
Kleopatra
Commits
2cb7c1e2
Commit
2cb7c1e2
authored
May 10, 2021
by
Ingo Klöcker
Browse files
Add info button explaining the "Certify as trusted introducer" option
GnuPG-bug-id: 5245
parent
3af53c4f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/dialogs/certifywidget.cpp
View file @
2cb7c1e2
...
...
@@ -305,8 +305,23 @@ public:
mTrustSignatureCB
->
setVisible
(
false
);
mTrustSignatureDomainLE
->
setVisible
(
false
);
#else
mTrustSignatureCB
->
setText
(
i18n
(
"Certify as trusted introducer"
));
advLay
->
addWidget
(
mTrustSignatureCB
);
{
auto
layout
=
new
QHBoxLayout
{
q
};
mTrustSignatureCB
->
setText
(
i18n
(
"Certify as trusted introducer"
));
auto
infoBtn
=
createInfoButton
(
i18n
(
"You can use this to certify a trusted introducer for a domain."
)
+
QStringLiteral
(
"<br/><br/>"
)
+
i18n
(
"All certificates with email addresses belonging to the domain "
"that have been certified by the trusted introducer are treated "
"as certified, i.e. a trusted introducer acts as a kind of "
"intermediate CA for a domain."
),
q
);
layout
->
addWidget
(
mTrustSignatureCB
,
1
);
layout
->
addWidget
(
infoBtn
);
advLay
->
addLayout
(
layout
);
}
{
auto
layout
=
new
QHBoxLayout
{
q
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment