diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-12-21 01:16:17 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-12-21 01:16:22 +0100 |
| commit | 34f7a41b24c4fa61b759f2e4b511111268758f71 (patch) | |
| tree | c1bab149e78bcdf831d756bd8c5d8f32abe2e0fd /src/wx/certificate_chain_editor.cc | |
| parent | 29281daa6ee121551a1e77653ccb455ca7423a39 (diff) | |
Tweak error message on unrecognised certificate (#1562).
Diffstat (limited to 'src/wx/certificate_chain_editor.cc')
| -rw-r--r-- | src/wx/certificate_chain_editor.cc | 2 |
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())); } } |
