aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/widgets/KeyList.cpp
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-08-05 16:45:06 +0000
committersaturneric <[email protected]>2024-08-05 16:45:06 +0000
commit72030d92f6ae0b2dc573b469d917103fa7f83708 (patch)
tree7a64550cbfcacb3d80fb294eeb2db3e61ff89133 /src/ui/widgets/KeyList.cpp
parentfix: app only build issue (diff)
downloadGpgFrontend-72030d92f6ae0b2dc573b469d917103fa7f83708.tar.gz
GpgFrontend-72030d92f6ae0b2dc573b469d917103fa7f83708.zip
fix: filling in missing translations
Diffstat (limited to 'src/ui/widgets/KeyList.cpp')
-rw-r--r--src/ui/widgets/KeyList.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/widgets/KeyList.cpp b/src/ui/widgets/KeyList.cpp
index c4a05edc..a9363e19 100644
--- a/src/ui/widgets/KeyList.cpp
+++ b/src/ui/widgets/KeyList.cpp
@@ -117,7 +117,7 @@ void KeyList::init() {
: global_column_filter_ & ~GpgKeyTableColumn::kCREATE_DATE);
});
- subkeys_number_column_action_ = new QAction("Subkey(s)", this);
+ subkeys_number_column_action_ = new QAction(tr("Subkey(s)"), this);
subkeys_number_column_action_->setCheckable(true);
subkeys_number_column_action_->setChecked(
(global_column_filter_ & GpgKeyTableColumn::kSUBKEYS_NUMBER) !=
@@ -131,7 +131,7 @@ void KeyList::init() {
: global_column_filter_ & ~GpgKeyTableColumn::kSUBKEYS_NUMBER);
});
- comment_column_action_ = new QAction("Comment", this);
+ comment_column_action_ = new QAction(tr("Comment"), this);
comment_column_action_->setCheckable(true);
comment_column_action_->setChecked(
(global_column_filter_ & GpgKeyTableColumn::kCOMMENT) !=