summaryrefslogtreecommitdiff
path: root/src/wx/verify_dcp_result_panel.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2026-03-30 13:12:58 +0200
committerCarl Hetherington <cth@carlh.net>2026-04-02 01:20:16 +0200
commit7d9a64ac7ada16577f81498de2c1570cef240ac5 (patch)
tree7587e9cfe4f02941f4ce32656bc45660688b4b6c /src/wx/verify_dcp_result_panel.cc
parentc3eb9fb7f5148660b037c5c7151986723b3904e1 (diff)
INCORRECT_JPEG2000_POC_MARKER_COUNT_FOR_{2,4}K: note -> poc_markers.
Diffstat (limited to 'src/wx/verify_dcp_result_panel.cc')
-rw-r--r--src/wx/verify_dcp_result_panel.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/verify_dcp_result_panel.cc b/src/wx/verify_dcp_result_panel.cc
index 495c70a6c..b2b5a5c7b 100644
--- a/src/wx/verify_dcp_result_panel.cc
+++ b/src/wx/verify_dcp_result_panel.cc
@@ -536,14 +536,14 @@ VerifyDCPResultPanel::add(shared_ptr<const VerifyDCPJob> job, bool many)
case dcp::VerificationNote::Code::INCORRECT_JPEG2000_POC_MARKER_COUNT_FOR_2K:
add(
i.second,
- _("A 2K JPEG2000 frame has %n POC marker(s) instead of 0."),
+ _("A 2K JPEG2000 frame has %poc_markers POC marker(s) instead of 0."),
_("More 2K JPEG2000 frames (not listed) have too many POC markers.")
);
break;
case dcp::VerificationNote::Code::INCORRECT_JPEG2000_POC_MARKER_COUNT_FOR_4K:
add(
i.second,
- _("A 4K JPEG2000 frame has %n POC marker(s) instead of 1."),
+ _("A 4K JPEG2000 frame has %poc_markers POC marker(s) instead of 1."),
_("More 4K JPEG2000 frames (not listed) have too many POC markers.")
);
break;