aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/keypair_details/KeyPairOperaTab.cpp
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-07-29 19:22:06 +0000
committersaturneric <[email protected]>2024-07-29 19:22:06 +0000
commitdcd0e4e19c79a1c67c32aa78a6ef909cbcffaae4 (patch)
tree1e60078749fb080652e6df4c7189107150e68c7c /src/ui/dialog/keypair_details/KeyPairOperaTab.cpp
parentfeat: update README (diff)
downloadGpgFrontend-dcd0e4e19c79a1c67c32aa78a6ef909cbcffaae4.tar.gz
GpgFrontend-dcd0e4e19c79a1c67c32aa78a6ef909cbcffaae4.zip
fix: distinguishing Error Alerts for Ppaer Key Operation Failures
Diffstat (limited to 'src/ui/dialog/keypair_details/KeyPairOperaTab.cpp')
-rw-r--r--src/ui/dialog/keypair_details/KeyPairOperaTab.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/dialog/keypair_details/KeyPairOperaTab.cpp b/src/ui/dialog/keypair_details/KeyPairOperaTab.cpp
index 38649355..08564bec 100644
--- a/src/ui/dialog/keypair_details/KeyPairOperaTab.cpp
+++ b/src/ui/dialog/keypair_details/KeyPairOperaTab.cpp
@@ -518,9 +518,9 @@ void KeyPairOperaTab::slot_export_paper_key() {
qCDebug(ui) << "REQUEST_TRANS_KEY_2_PAPER_KEY callback: " << i << ei;
if (p["ret"] != "0" || p["paper_key"].isEmpty()) {
- QMessageBox::critical(this, tr("Error"),
- tr("An error occurred trying to recover the "
- "Paper Key back to the private key."));
+ QMessageBox::critical(
+ this, tr("Error"),
+ tr("An error occurred trying to generate Paper Key."));
return;
}