summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-12-21 01:16:17 +0100
committerCarl Hetherington <cth@carlh.net>2025-12-21 01:16:22 +0100
commit34f7a41b24c4fa61b759f2e4b511111268758f71 (patch)
treec1bab149e78bcdf831d756bd8c5d8f32abe2e0fd
parent29281daa6ee121551a1e77653ccb455ca7423a39 (diff)
Tweak error message on unrecognised certificate (#1562).
-rw-r--r--src/wx/certificate_chain_editor.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/certificate_chain_editor.cc b/src/wx/certificate_chain_editor.cc
index 3ba9d69dd..1cc5f63dd 100644
--- a/src/wx/certificate_chain_editor.cc
+++ b/src/wx/certificate_chain_editor.cc
@@ -192,7 +192,7 @@ CertificateChainEditor::add_certificate()
update_certificate_list();
}
} catch (dcp::MiscError& e) {
- error_dialog(this, _("Could not read certificate file."), std_to_wx(e.what()));
+ error_dialog(this, _("Could not read certificate file. Make sure it is in PEM format."), std_to_wx(e.what()));
}
}