summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-04-18 10:12:25 +0200
committerCarl Hetherington <cth@carlh.net>2024-04-18 10:12:25 +0200
commitd5f5a9d9f5635f84a5e372181dea1c7cbb0ae732 (patch)
tree57e66a12e7a3c60310257fcb084938dc18d1ad04
parentcc411a5ab156565c54282c3e9e0ed044d279de86 (diff)
Add missing GUI-side verification note descriptions.
-rw-r--r--src/wx/verify_dcp_dialog.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wx/verify_dcp_dialog.cc b/src/wx/verify_dcp_dialog.cc
index c77f68ea1..c7a32e5dd 100644
--- a/src/wx/verify_dcp_dialog.cc
+++ b/src/wx/verify_dcp_dialog.cc
@@ -449,6 +449,12 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr<VerifyDCPJob> job
case dcp::VerificationNote::Code::EMPTY_CONTENT_VERSION_LABEL_TEXT:
add(i, _("The <LabelText> in a <ContentVersion> in CPL %id is empty"));
break;
+ case dcp::VerificationNote::Code::INVALID_CPL_NAMESPACE:
+ add(i, _("The CPL %f has an invalid namespace %n"));
+ break;
+ case dcp::VerificationNote::Code::MISSING_CPL_CONTENT_VERSION:
+ add(i, _("The CPL %n has no <ContentVersion> tag"));
+ break;
}
}