summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-04-20 12:14:12 +0200
committerCarl Hetherington <cth@carlh.net>2023-04-21 01:11:31 +0200
commit5ae8e7eba8196847d897d5a714cc03ad6b232d81 (patch)
treefb09b609c58cdc847732f42b4f68cc3a671635a6 /src
parent0c766528070eadd3d044255a3e4dfde5a85707b5 (diff)
Bump libdcp to 1.8.67.
Diffstat (limited to 'src')
-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 d88a030bb..de8982c8d 100644
--- a/src/wx/verify_dcp_dialog.cc
+++ b/src/wx/verify_dcp_dialog.cc
@@ -401,6 +401,15 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr<VerifyDCPJob> job
case dcp::VerificationNote::Code::INVALID_MAIN_SOUND_CONFIGURATION:
add(i, _("<MainSoundConfiguration> describes incorrect number of channels (%n)"));
break;
+ case dcp::VerificationNote::Code::MISSING_FONT:
+ add(i, _("The font file for font ID \"%n\" was not found, or was not referred to in the ASSETMAP."));
+ break;
+ case dcp::VerificationNote::Code::INVALID_JPEG2000_TILE_PART_SIZE:
+ add(i, _("Frame %frame has an image component that is too large (component %component is %size bytes in size)."));
+ break;
+ case dcp::VerificationNote::Code::INCORRECT_SUBTITLE_NAMESPACE_COUNT:
+ add(i, _("The XML in the subtitle asset %n has more than one namespace declaration."));
+ break;
}
}