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
a8bedd58
Commit
a8bedd58
authored
Aug 18, 2021
by
Ingo Klöcker
Browse files
Add/improve/fix context of a few translated strings
GnuPG-bug-id: 5535
parent
1d1c4df3
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/crypto/gui/signencryptfileswizard.cpp
View file @
a8bedd58
...
...
@@ -84,7 +84,7 @@ public:
&
SigEncPage
::
updateFileWidgets
);
updateCommitButton
(
mWidget
->
currentOp
());
auto
outputGrp
=
new
QGroupBox
(
i18n
(
"Output"
));
auto
outputGrp
=
new
QGroupBox
(
i18n
c
(
"@title:group"
,
"Output"
));
outputGrp
->
setLayout
(
mOutLayout
);
mPlaceholderWidget
=
new
QLabel
(
i18n
(
"Please select an action."
));
...
...
@@ -92,8 +92,8 @@ public:
mUseOutputDirChk
=
new
QCheckBox
(
i18nc
(
"@option:check on SignEncryptPage"
,
"Encrypt / Sign &each file separately."
));
mUseOutputDirChk
->
setToolTip
(
i18nc
(
"@info"
,
"Keep each file separate instead of creating an archive for all."
));
mUseOutputDirChk
->
setToolTip
(
i18nc
(
"@info
:tooltip
"
,
"Keep each file separate instead of creating an archive for all."
));
mOutLayout
->
addWidget
(
mUseOutputDirChk
);
connect
(
mUseOutputDirChk
,
&
QCheckBox
::
toggled
,
this
,
[
this
]
(
bool
state
)
{
mUseOutputDir
=
state
;
...
...
src/crypto/gui/signencryptwidget.cpp
View file @
a8bedd58
...
...
@@ -104,7 +104,7 @@ SignEncryptWidget::SignEncryptWidget(QWidget *parent, bool sigEncExclusive)
/* The signature selection */
auto
sigLay
=
new
QHBoxLayout
;
auto
sigGrp
=
new
QGroupBox
(
i18n
(
"Prove authenticity (sign)"
));
auto
sigGrp
=
new
QGroupBox
(
i18n
c
(
"@title:group"
,
"Prove authenticity (sign)"
));
mSigChk
=
new
QCheckBox
(
i18n
(
"Sign as:"
));
mSigChk
->
setChecked
(
true
);
...
...
@@ -123,7 +123,7 @@ SignEncryptWidget::SignEncryptWidget(QWidget *parent, bool sigEncExclusive)
// Recipient selection
auto
recipientGrid
=
new
QGridLayout
;
auto
encBoxLay
=
new
QVBoxLayout
;
auto
encBox
=
new
QGroupBox
(
i18nc
(
"@
action
"
,
"Encrypt"
));
auto
encBox
=
new
QGroupBox
(
i18nc
(
"@
title:group
"
,
"Encrypt"
));
encBox
->
setLayout
(
encBoxLay
);
// Own key
...
...
@@ -168,7 +168,7 @@ SignEncryptWidget::SignEncryptWidget(QWidget *parent, bool sigEncExclusive)
// Checkbox for password
mSymmetric
=
new
QCheckBox
(
i18n
(
"Encrypt with password. Anyone you share the password with can read the data."
));
mSymmetric
->
setToolTip
(
i18nc
(
"Tooltip information for symetric encryption"
,
mSymmetric
->
setToolTip
(
i18nc
(
"Tooltip information for sym
m
etric encryption"
,
"Additionally to the keys of the recipients you can encrypt your data with a password. "
"Anyone who has the password can read the data without any secret key. "
"Using a password is <b>less secure</b> then public key cryptography. Even if you pick a very strong password."
));
...
...
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