diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-08-12 01:06:15 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-08-12 01:06:15 +0200 |
| commit | 937d32331ecd8862c7ab3c2ba9316e073a810949 (patch) | |
| tree | c1204c26ff6c8e0863e3f34e8fac826cd36575cf | |
| parent | fbba1d24adac942c724afb1e69a5f523f9961254 (diff) | |
Add missing GUI message.v2.16.61
| -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 6d6335437..2f43f3c8f 100644 --- a/src/wx/verify_dcp_dialog.cc +++ b/src/wx/verify_dcp_dialog.cc @@ -434,6 +434,9 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr<VerifyDCPJob> job case dcp::VerificationNote::Code::MISMATCHED_ASSET_MAP_ID: add(i, _("The asset with ID %id in the asset map actually has an id of %other_id")); break; + case dcp::VerificationNote::Code::EMPTY_CONTENT_VERSION_LABEL_TEXT: + add(i, _("The <LabelText> in a <ContentVersion> in CPL %id is empty")); + break; } } |
