diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-03-19 22:26:40 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-03-19 22:26:40 +0100 |
| commit | adddda49c17e87198253d9c900dcef0f5fb2e175 (patch) | |
| tree | 7cf9f6e5200704f0703a8a658971a9b5b4cbe1c3 | |
| parent | 19760ad4cf6d348416444e515b5e709be565f81e (diff) | |
Missing texts for some new verification failures.
| -rw-r--r-- | src/wx/verify_dcp_dialog.cc | 9 |
1 files changed, 9 insertions, 0 deletions
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<VerifyDCPJob> 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); |
