Add --channel option to dcpomatic_create.
[dcpomatic.git] / src / wx / verify_dcp_dialog.cc
index 036a60d7f3ccf14b2ae14d7ceab8d0c6a30d3cb0..3c4e1ef48ddd93ec3fcd833fe7595468e336b435 100644 (file)
@@ -362,6 +362,15 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr<VerifyDCPJob> job
                case dcp::VerificationNote::Code::MISSED_CHECK_OF_ENCRYPTED:
                        add(i, _("Part of the DCP could not be checked because no KDM was available."));
                        break;
+               case dcp::VerificationNote::Code::EMPTY_TEXT:
+                       add(i, _("At least one <Text> node in a subtitle or closed caption is empty."));
+                       break;
+               case dcp::VerificationNote::Code::MISMATCHED_CLOSED_CAPTION_VALIGN:
+                       add(i, _("Some closed <Text> or <Image> nodes have different vertical alignments within a <Subtitle>."));
+                       break;
+               case dcp::VerificationNote::Code::INCORRECT_CLOSED_CAPTION_ORDERING:
+                       add(i, _("Some closed captions are not listed in the order of their vertical position."));
+                       break;
                }
        }