diff options
author | saturneric <[email protected]> | 2025-04-29 13:37:59 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-04-29 13:37:59 +0000 |
commit | 8836f00d73b38f2de203b4240aac2ebd18c90550 (patch) | |
tree | c8abaa2a7318948db7d9475384eb451456c3e861 /src/ui/widgets | |
parent | fix: add to favorite function not works properly (diff) | |
download | GpgFrontend-develop.tar.gz GpgFrontend-develop.zip |
fix: correct tooltips and text of buttons of key listsdevelop
Diffstat (limited to '')
-rw-r--r-- | src/ui/widgets/KeyList.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/ui/widgets/KeyList.cpp b/src/ui/widgets/KeyList.cpp index dfabe885..13d4b211 100644 --- a/src/ui/widgets/KeyList.cpp +++ b/src/ui/widgets/KeyList.cpp @@ -280,11 +280,17 @@ void KeyList::init() { tr("Sync public key with your default keyserver.")); ui_->uncheckButton->setText(tr("Uncheck ALL")); ui_->uncheckButton->setToolTip( - tr("Cancel all checked items in the current tab at once.")); + tr("Cancel all checked keys in the current tab at once.")); ui_->checkALLButton->setText(tr("Check ALL")); ui_->checkALLButton->setToolTip( - tr("Check all items in the current tab at once")); + tr("Check all keys in the current tab at once")); ui_->searchBarEdit->setPlaceholderText(tr("Search for keys...")); + ui_->columnTypeButton->setText(tr("Column Type")); + ui_->columnTypeButton->setToolTip(tr("Selected showed column type(s)")); + ui_->keyGroupButton->setText(tr("New Key Group")); + ui_->keyGroupButton->setToolTip(tr("Create a new key group")); + ui_->switchContextButton->setText(tr("Key Databases")); + ui_->switchContextButton->setToolTip(tr("Switch between Key Databases")); } auto KeyList::AddListGroupTab( |