diff options
author | saturneric <[email protected]> | 2024-08-05 16:45:06 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-08-05 16:45:06 +0000 |
commit | 72030d92f6ae0b2dc573b469d917103fa7f83708 (patch) | |
tree | 7a64550cbfcacb3d80fb294eeb2db3e61ff89133 /src/ui/widgets/KeyList.cpp | |
parent | fix: app only build issue (diff) | |
download | GpgFrontend-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.cpp | 4 |
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) != |