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
PIM
Kleopatra
Commits
1875d6d3
Commit
1875d6d3
authored
Nov 11, 2021
by
Ingo Klöcker
Browse files
Add user interface markers to some UI elements
GnuPG-bug-id: 5638
parent
5c4d3a80
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/conf/groupsconfigwidget.cpp
View file @
1875d6d3
...
...
@@ -86,7 +86,7 @@ public:
ui
.
groupsFilter
=
new
QLineEdit
();
ui
.
groupsFilter
->
setClearButtonEnabled
(
true
);
ui
.
groupsFilter
->
setPlaceholderText
(
i18nc
(
"
P
laceholder
text
"
,
"Search..."
));
ui
.
groupsFilter
->
setPlaceholderText
(
i18nc
(
"
@info::p
laceholder"
,
"Search..."
));
groupsLayout
->
addWidget
(
ui
.
groupsFilter
,
0
,
0
);
groupsModel
=
AbstractKeyListModel
::
createFlatKeyListModel
(
q
);
...
...
@@ -106,14 +106,14 @@ public:
auto
groupsButtonLayout
=
new
QVBoxLayout
();
ui
.
newButton
=
new
QPushButton
(
i18n
(
"New"
));
ui
.
newButton
=
new
QPushButton
(
i18n
c
(
"@action::button"
,
"New"
));
groupsButtonLayout
->
addWidget
(
ui
.
newButton
);
ui
.
editButton
=
new
QPushButton
(
i18n
(
"Edit"
));
ui
.
editButton
=
new
QPushButton
(
i18n
c
(
"@action::button"
,
"Edit"
));
ui
.
editButton
->
setEnabled
(
false
);
groupsButtonLayout
->
addWidget
(
ui
.
editButton
);
ui
.
deleteButton
=
new
QPushButton
(
i18n
(
"Delete"
));
ui
.
deleteButton
=
new
QPushButton
(
i18n
c
(
"@action::button"
,
"Delete"
));
ui
.
deleteButton
->
setEnabled
(
false
);
groupsButtonLayout
->
addWidget
(
ui
.
deleteButton
);
...
...
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