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
KDE PIM Add-ons
Commits
13da17f5
Commit
13da17f5
authored
Feb 02, 2022
by
Kevin Funk
☕
Browse files
Minor: Fix some strings
"Todo" -> "To-do" for consistency reasons
parent
56809e32
Pipeline
#131955
failed with stage
in 13 minutes and 28 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
plugins/messageviewerplugins/createtodoplugin/todoedit.cpp
View file @
13da17f5
...
...
@@ -59,7 +59,7 @@ TodoEdit::TodoEdit(QWidget *parent)
hbox
->
setSpacing
(
2
);
vbox
->
addLayout
(
hbox
);
auto
lab
=
new
QLabel
(
i18n
(
"Todo:"
),
this
);
auto
lab
=
new
QLabel
(
i18n
(
"To
-
do:"
),
this
);
hbox
->
addWidget
(
lab
);
mNoteEdit
->
setClearButtonEnabled
(
true
);
...
...
plugins/messageviewerplugins/createtodoplugin/viewerplugincreatetodointerface.cpp
View file @
13da17f5
...
...
@@ -65,7 +65,7 @@ ViewerPluginInterface::SpecificFeatureTypes ViewerPluginCreateTodoInterface::fea
void
ViewerPluginCreateTodoInterface
::
createAction
(
KActionCollection
*
ac
)
{
if
(
ac
)
{
auto
act
=
new
QAction
(
QIcon
::
fromTheme
(
QStringLiteral
(
"task-new"
)),
i18n
(
"Create Todo"
),
this
);
auto
act
=
new
QAction
(
QIcon
::
fromTheme
(
QStringLiteral
(
"task-new"
)),
i18n
(
"Create To
-
do"
),
this
);
act
->
setIconText
(
i18n
(
"Create To-do"
));
addHelpTextAction
(
act
,
i18n
(
"Allows you to create a calendar to-do or reminder from this message"
));
act
->
setWhatsThis
(
...
...
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