diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-05-18 11:03:04 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-05-18 11:03:04 +0200 |
| commit | d04f7594ca422ea09c13282f863a5724f167ced6 (patch) | |
| tree | f65792c5b2324f91a79a0bcd6e617c533d4db0bc | |
| parent | c15bbcee39aedc2b3ddbcdb85dcf3a3711d87a7e (diff) | |
Add some missing messages.
| -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 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<VerifyDCPJob> 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); |
