diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-02-03 22:49:20 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-02-03 22:49:20 +0100 |
| commit | cc83bd39abad482e3777a1378417fe7d50126abd (patch) | |
| tree | 172489733c08c860bc95ccf709265e34589a5711 | |
| parent | 0657a7ccb450d788fbe4c86e3560c10a00d9c556 (diff) | |
Fix missing verify string.v2.16.42
| -rw-r--r-- | src/wx/verify_dcp_dialog.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wx/verify_dcp_dialog.cc b/src/wx/verify_dcp_dialog.cc index b3184e29f..e29789950 100644 --- a/src/wx/verify_dcp_dialog.cc +++ b/src/wx/verify_dcp_dialog.cc @@ -392,6 +392,9 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr<VerifyDCPJob> job case dcp::VerificationNote::Code::MISSING_SUBTITLE: add(i, _("The subtitle asset %n contains no subtitles.")); break; + case dcp::VerificationNote::Code::INVALID_SUBTITLE_ISSUE_DATE: + add(i, _("<IssueDate> has an invalid value %n")); + break; } } |
