diff options
| author | Carl Hetherington <cth@carlh.net> | 2026-03-29 17:21:06 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2026-04-02 01:20:16 +0200 |
| commit | 5654114219061f612efc409fdfecbe6954c8b327 (patch) | |
| tree | b79f8e8340631e716a984af72a48c99ca799c8aa /src/wx/verify_dcp_result_panel.cc | |
| parent | 33ebfc86361583ef33868490c908f0227c247ba0 (diff) | |
{MISSING,INCORRECT}_{SUBTITLE,CLOSED_CAPTION}_ENTRY_POINT: note -> asset_id.
Diffstat (limited to 'src/wx/verify_dcp_result_panel.cc')
| -rw-r--r-- | src/wx/verify_dcp_result_panel.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wx/verify_dcp_result_panel.cc b/src/wx/verify_dcp_result_panel.cc index 9e7ad8bb3..ef22c0f58 100644 --- a/src/wx/verify_dcp_result_panel.cc +++ b/src/wx/verify_dcp_result_panel.cc @@ -429,16 +429,16 @@ VerifyDCPResultPanel::add(shared_ptr<const VerifyDCPJob> job, bool many) add(i.second, _("The DCP has closed captions but not every reel has the same number of closed caption assets.")); break; case dcp::VerificationNote::Code::MISSING_SUBTITLE_ENTRY_POINT: - add(i.second, _("The subtitle asset %n has no <EntryPoint> tag.")); + add(i.second, _("The subtitle asset %asset_id has no <EntryPoint> tag.")); break; case dcp::VerificationNote::Code::INCORRECT_SUBTITLE_ENTRY_POINT: - add(i.second, _("Subtitle asset %n has a non-zero <EntryPoint>.")); + add(i.second, _("Subtitle asset %asset_id has a non-zero <EntryPoint>.")); break; case dcp::VerificationNote::Code::MISSING_CLOSED_CAPTION_ENTRY_POINT: - add(i.second, _("The closed caption asset %n has no <EntryPoint> tag.")); + add(i.second, _("The closed caption asset %asset_id has no <EntryPoint> tag.")); break; case dcp::VerificationNote::Code::INCORRECT_CLOSED_CAPTION_ENTRY_POINT: - add(i.second, _("Closed caption asset %n has a non-zero <EntryPoint>.")); + add(i.second, _("Closed caption asset %asset_id has a non-zero <EntryPoint>.")); break; case dcp::VerificationNote::Code::MISSING_HASH: add(i.second, _("The asset %n has no <Hash> in the CPL.")); |
