Add Uwe Dittes as translator.
[dcpomatic.git] / src / wx / verify_dcp_dialog.cc
index 1c70e5e0d3baabf47524066248afb2e4dd8fb7c4..55bbc99c358ce0f5ac9101f8cb1721449abf37b2 100644 (file)
@@ -163,6 +163,9 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr<VerifyDCPJob> job
                case dcp::VerificationNote::Code::EXTERNAL_ASSET:
                        add(i, _("This DCP refers to at the asset %n in another DCP (and perhaps others), so it is a \"version file\" (VF)"));
                        break;
+               case dcp::VerificationNote::Code::THREED_ASSET_MARKED_AS_TWOD:
+                       add(i, _("The asset %f is 3D but its MXF is marked as 2D."));
+                       break;
                case dcp::VerificationNote::Code::INVALID_STANDARD:
                        add(i, _("This DCP uses the Interop standard, but it should be made with SMPTE."));
                        break;
@@ -356,6 +359,12 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr<VerifyDCPJob> job
                        add(i, wxString::Format(_("The reel duration (%s) of some timed text is not the same as the ContainerDuration (%s) of its MXF."), std_to_wx(parts[0]), std_to_wx(parts[1])));
                        break;
                }
+               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;
                }
        }