From d04f7594ca422ea09c13282f863a5724f167ced6 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 18 May 2020 11:03:04 +0200 Subject: [PATCH] Add some missing messages. --- 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 c11246d23..42728614f 100644 --- a/src/wx/verify_dcp_dialog.cc +++ b/src/wx/verify_dcp_dialog.cc @@ -131,6 +131,15 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr job case dcp::VerificationNote::DURATION_TOO_SMALL: text = _("An asset has a duration of less than 1 second, which is invalid."); break; + case dcp::VerificationNote::PICTURE_FRAME_TOO_LARGE: + text = _("At least one frame of the video data is over the limit of 250Mbit/s."); + break; + case dcp::VerificationNote::PICTURE_FRAME_NEARLY_TOO_LARGE: + text = _("At least one frame of the video data is close to the limit of 250MBit/s."); + break; + case dcp::VerificationNote::EXTERNAL_ASSET: + text = _("This DCP refers to at least one asset in another DCP, so it is a \"version file\" (VF)"); + break; } _text->WriteText (text); -- 2.30.2