aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/widgets/KeyList.cpp
diff options
context:
space:
mode:
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) !=