summaryrefslogtreecommitdiff
path: root/src/wx/verify_dcp_result_panel.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2026-03-30 00:13:00 +0200
committerCarl Hetherington <cth@carlh.net>2026-04-02 01:20:16 +0200
commitc3eb9fb7f5148660b037c5c7151986723b3904e1 (patch)
treec025a9942167c0b2dbf0848311f408c99795a13e /src/wx/verify_dcp_result_panel.cc
parent4ba6268da4db833680f1b6c7ea1ae85945cca81d (diff)
INVALID_JPEG2000_CODE_BLOCK_{WIDTH_HEIGHT}: note -> code_block_{width,height}.
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 e3d82e186..495c70a6c 100644
--- a/src/wx/verify_dcp_result_panel.cc
+++ b/src/wx/verify_dcp_result_panel.cc
@@ -522,14 +522,14 @@ VerifyDCPResultPanel::add(shared_ptr<const VerifyDCPJob> job, bool many)
case dcp::VerificationNote::Code::INVALID_JPEG2000_CODE_BLOCK_WIDTH:
add(
i.second,
- _("A JPEG2000 frame has a code-block width of %n instead of 32."),
+ _("A JPEG2000 frame has a code-block width of %code_block_width instead of 32."),
_("More JPEG2000 frames (not listed) have an invalid code-block width.")
);
break;
case dcp::VerificationNote::Code::INVALID_JPEG2000_CODE_BLOCK_HEIGHT:
add(
i.second,
- _("A JPEG2000 frame has a code-block height of %n instead of 32."),
+ _("A JPEG2000 frame has a code-block height of %code_block_height instead of 32."),
_("More JPEG2000 frames (not listed) have an invalid code-block height.")
);
break;