From adddda49c17e87198253d9c900dcef0f5fb2e175 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 19 Mar 2020 22:26:40 +0100 Subject: [PATCH] Missing texts for some new verification failures. --- src/wx/verify_dcp_dialog.cc | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/wx/verify_dcp_dialog.cc b/src/wx/verify_dcp_dialog.cc index c3cf5cc22..c11246d23 100644 --- a/src/wx/verify_dcp_dialog.cc +++ b/src/wx/verify_dcp_dialog.cc @@ -122,6 +122,15 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr job ); } break; + case dcp::VerificationNote::MISSING_ASSETMAP: + text = _("No ASSETMAP or ASSETMAP.xml file was found."); + break; + case dcp::VerificationNote::INTRINSIC_DURATION_TOO_SMALL: + text = _("An asset has an instrinsic duration of less than 1 second, which is invalid."); + break; + case dcp::VerificationNote::DURATION_TOO_SMALL: + text = _("An asset has a duration of less than 1 second, which is invalid."); + break; } _text->WriteText (text); -- 2.30.2