summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-05-18 11:03:04 +0200
committerCarl Hetherington <cth@carlh.net>2020-05-18 11:03:04 +0200
commitd04f7594ca422ea09c13282f863a5724f167ced6 (patch)
treef65792c5b2324f91a79a0bcd6e617c533d4db0bc
parentc15bbcee39aedc2b3ddbcdb85dcf3a3711d87a7e (diff)
Add some missing messages.
-rw-r--r--src/wx/verify_dcp_dialog.cc9
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);