Skip to content
GitLab
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
005e3f52
Unverified
Commit
005e3f52
authored
Sep 05, 2022
by
Andre Heinecke
Browse files
Add placeholder for smartcard manual
This prepares a new DocAction for Smartcard Management.
parent
ce04061d
Pipeline
#227325
passed with stage
in 3 minutes and 3 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/kleopatra.rc
View file @
005e3f52
<!DOCTYPE gui >
<gui
name=
"kleopatra"
version=
"51
0
"
>
<gui
name=
"kleopatra"
version=
"51
1
"
>
<MenuBar>
<Menu
name=
"file"
>
<text>
&
File
</text>
...
...
@@ -93,6 +93,7 @@
<Action
name=
"help_doc_quickguide"
/>
<Action
name=
"help_doc_compendium"
/>
<Action
name=
"help_doc_symenc"
/>
<Action
name=
"help_doc_smartcard"
/>
<Action
name=
"help_doc_vsa10573"
/>
<Action
name=
"help_doc_vsa10584"
/>
<Separator/>
...
...
src/mainwindow.cpp
View file @
005e3f52
...
...
@@ -617,6 +617,12 @@ void MainWindow::Private::setupActions()
QStringLiteral
(
"../share/doc/gnupg-vsd"
));
coll
->
addAction
(
QStringLiteral
(
"help_doc_vsa10584"
),
vsa10584
);
const
auto
smartcard
=
new
DocAction
(
QIcon
::
fromTheme
(
QStringLiteral
(
"dvipdf"
)),
i18n
(
"Smartcard Management"
),
i18nc
(
"Only available in German and English. Leave to English for other languages."
,
"smartcard_howto_de.pdf"
),
QStringLiteral
(
"../share/doc/gnupg-vsd"
));
coll
->
addAction
(
QStringLiteral
(
"help_doc_smartcard"
),
smartcard
);
const
auto
man_gpg
=
new
DocAction
(
QIcon
::
fromTheme
(
QStringLiteral
(
"help-contextual"
)),
i18n
(
"GnuPG Manual"
),
QStringLiteral
(
"gnupg.pdf"
),
QStringLiteral
(
"../share/doc/gnupg"
));
coll
->
addAction
(
QStringLiteral
(
"help_doc_gnupg"
),
man_gpg
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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