Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
KDE Pim
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
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