Pulse the progress bar 'automatically' if we haven't had a progress update for a...
[dcpomatic.git] / src / wx / verify_dcp_dialog.cc
index 9b6a8c9498845a99ea7e2cb1276beac7e7eaf0bc..3c4e1ef48ddd93ec3fcd833fe7595468e336b435 100644 (file)
@@ -360,7 +360,16 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr<VerifyDCPJob> job
                        break;
                }
                case dcp::VerificationNote::Code::MISSED_CHECK_OF_ENCRYPTED:
-                       add(i, _("Part of the DCP could not be checked because no KDM was available"));
+                       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;
                }
        }