Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Unmaintained
KDE Pim
Commits
88131edc
Commit
88131edc
authored
Dec 04, 2014
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Now I can read correcty error.
parent
15f15662
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
kleopatra/commands/refreshopenpgpcertscommand.cpp
kleopatra/commands/refreshopenpgpcertscommand.cpp
+1
-1
kleopatra/commands/refreshx509certscommand.cpp
kleopatra/commands/refreshx509certscommand.cpp
+1
-1
No files found.
kleopatra/commands/refreshopenpgpcertscommand.cpp
View file @
88131edc
...
...
@@ -127,7 +127,7 @@ QString RefreshOpenPGPCertsCommand::errorExitMessage( const QStringList & args )
return
i18nc
(
"@info"
,
"<para>An error occurred while trying to refresh OpenPGP certificates.</para> "
"<para>The output from <command>%1</command> was: <message>%2</message></para>"
,
args
[
0
],
errorString
()
);
args
[
0
],
errorString
()
.
replace
(
QLatin1String
(
"
\n
"
),
QLatin1String
(
"<br>"
))
);
}
QString
RefreshOpenPGPCertsCommand
::
successMessage
(
const
QStringList
&
)
const
{
...
...
kleopatra/commands/refreshx509certscommand.cpp
View file @
88131edc
...
...
@@ -94,7 +94,7 @@ QString RefreshX509CertsCommand::errorExitMessage( const QStringList & args ) co
return
i18nc
(
"@info"
,
"<para>An error occurred while trying to refresh X.509 certificates.</para>"
"<para>The output from <command>%1</command> was: <message>%2</message></para>"
,
args
[
0
],
errorString
()
);
args
[
0
],
errorString
()
.
replace
(
QLatin1String
(
"
\n
"
),
QLatin1String
(
"<br>"
))
);
}
QString
RefreshX509CertsCommand
::
successMessage
(
const
QStringList
&
)
const
{
...
...
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