aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/keypair_details/KeyPairOperaTab.cpp
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-12-02 16:05:41 +0000
committersaturneric <[email protected]>2024-12-02 16:05:41 +0000
commit0b06077c87adcd36a90973e96c6a254b1e5fe872 (patch)
treedd8a71faff8e3e96adb71bbf74abb67720cf0379 /src/ui/dialog/keypair_details/KeyPairOperaTab.cpp
parentfix: settings prohibit version checking at start not working (diff)
downloadGpgFrontend-0b06077c87adcd36a90973e96c6a254b1e5fe872.tar.gz
GpgFrontend-0b06077c87adcd36a90973e96c6a254b1e5fe872.zip
translation: update translations
Diffstat (limited to 'src/ui/dialog/keypair_details/KeyPairOperaTab.cpp')
-rw-r--r--src/ui/dialog/keypair_details/KeyPairOperaTab.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ui/dialog/keypair_details/KeyPairOperaTab.cpp b/src/ui/dialog/keypair_details/KeyPairOperaTab.cpp
index 98f025a0..56103d62 100644
--- a/src/ui/dialog/keypair_details/KeyPairOperaTab.cpp
+++ b/src/ui/dialog/keypair_details/KeyPairOperaTab.cpp
@@ -152,14 +152,16 @@ KeyPairOperaTab::KeyPairOperaTab(int channel, const QString& key_id,
void KeyPairOperaTab::CreateOperaMenu() {
key_server_opera_menu_ = new QMenu(this);
- auto* upload_key_pair = new QAction(tr("Publish Key to Key Server"), this);
+ auto* upload_key_pair =
+ new QAction(tr("Publish Public Key to Key Server"), this);
connect(upload_key_pair, &QAction::triggered, this,
&KeyPairOperaTab::slot_publish_key_to_server);
if (!(m_key_.IsPrivateKey() && m_key_.IsHasMasterKey())) {
upload_key_pair->setDisabled(true);
}
- auto* update_key_pair = new QAction(tr("Refresh Key From Key Server"), this);
+ auto* update_key_pair =
+ new QAction(tr("Refresh Public Key From Key Server"), this);
connect(update_key_pair, &QAction::triggered, this,
&KeyPairOperaTab::slot_update_key_from_server);