Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Network
KGet
Commits
562b34d6
Commit
562b34d6
authored
Feb 28, 2021
by
Yuri Chornoivan
Browse files
Fix disambiguations found by gettext 0.21
parent
6dbee670
Changes
1
Hide whitespace changes
Inline
Side-by-side
mainwindow.cpp
View file @
562b34d6
...
...
@@ -201,13 +201,13 @@ void MainWindow::setupActions()
//FIXME: Not needed maybe because the normal delete already deletes groups?
QAction
*
deleteGroupAction
=
actionCollection
()
->
addAction
(
"delete_groups"
);
deleteGroupAction
->
setText
(
i18n
(
"Delete Group"
));
deleteGroupAction
->
setText
(
i18n
c
(
"@action"
,
"Delete Group"
));
deleteGroupAction
->
setIcon
(
QIcon
::
fromTheme
(
"edit-delete"
));
//deleteGroupAction->setHelpText(i18n("Delete selected group"));
connect
(
deleteGroupAction
,
&
QAction
::
triggered
,
this
,
&
MainWindow
::
slotDeleteGroup
);
QAction
*
renameGroupAction
=
actionCollection
()
->
addAction
(
"rename_groups"
);
renameGroupAction
->
setText
(
i18n
(
"Rename Group..."
));
renameGroupAction
->
setText
(
i18n
c
(
"@action"
,
"Rename Group..."
));
renameGroupAction
->
setIcon
(
QIcon
::
fromTheme
(
"edit-rename"
));
connect
(
renameGroupAction
,
&
QAction
::
triggered
,
this
,
&
MainWindow
::
slotRenameGroup
);
...
...
Write
Preview
Supports
Markdown
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