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
KMail
Commits
4330eb71
Commit
4330eb71
authored
Feb 01, 2022
by
Kevin Funk
☕
Committed by
Laurent Montel
Feb 02, 2022
Browse files
followup: Fix string: "Dead Line" -> "Deadline"
parent
c44b68ff
Pipeline
#131816
passed with stage
in 3 minutes and 29 seconds
Changes
2
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
agents/followupreminderagent/followupreminderinfowidget.cpp
View file @
4330eb71
...
...
@@ -58,7 +58,7 @@ FollowUpReminderInfoWidget::FollowUpReminderInfoWidget(QWidget *parent)
hbox
->
setContentsMargins
({});
mTreeWidget
->
setObjectName
(
QStringLiteral
(
"treewidget"
));
QStringList
headers
;
headers
<<
i18n
(
"To"
)
<<
i18n
(
"Subject"
)
<<
i18n
(
"Dead
L
ine"
)
<<
i18n
(
"Answer"
)
headers
<<
i18n
(
"To"
)
<<
i18n
(
"Subject"
)
<<
i18n
(
"Dead
l
ine"
)
<<
i18n
(
"Answer"
)
#ifdef DEBUG_MESSAGE_ID
<<
QStringLiteral
(
"Message Id"
)
<<
QStringLiteral
(
"Answer Message Id"
)
#endif
...
...
agents/followupreminderagent/followupremindermanager.cpp
View file @
4330eb71
...
...
@@ -183,7 +183,7 @@ QString FollowUpReminderManager::infoToStr(FollowUpReminder::FollowUpReminderInf
infoStr
+=
QStringLiteral
(
"MessageId :%1
\n
"
).
arg
(
info
->
messageId
());
infoStr
+=
QStringLiteral
(
"Subject :%1
\n
"
).
arg
(
info
->
subject
());
infoStr
+=
QStringLiteral
(
"To :%1
\n
"
).
arg
(
info
->
to
());
infoStr
+=
QStringLiteral
(
"Dead
L
ine :%1
\n
"
).
arg
(
info
->
followUpReminderDate
().
toString
());
infoStr
+=
QStringLiteral
(
"Dead
l
ine :%1
\n
"
).
arg
(
info
->
followUpReminderDate
().
toString
());
infoStr
+=
QStringLiteral
(
"Answer received :%1
\n
"
).
arg
(
info
->
answerWasReceived
()
?
QStringLiteral
(
"true"
)
:
QStringLiteral
(
"false"
));
infoStr
+=
QStringLiteral
(
"****************************************
\n
"
);
return
infoStr
;
...
...
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