summaryrefslogtreecommitdiff
path: root/src/wx/verify_dcp_result_panel.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2026-04-01 00:12:30 +0200
committerCarl Hetherington <cth@carlh.net>2026-04-02 01:20:16 +0200
commit7f5e87e932a60ed232ecc6f5cadd055df7c0a9bc (patch)
tree07a610ea89f6e4eef5bd1747c00b6b38e53e5f15 /src/wx/verify_dcp_result_panel.cc
parent9d2ff3d77bb0d05116338bcb9bd561cf396f017c (diff)
INVALID_JPEG2000_TILE_PARTS_FOR_{2,4}K: note -> tile_parts.
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 4fcf8b438..616e90444 100644
--- a/src/wx/verify_dcp_result_panel.cc
+++ b/src/wx/verify_dcp_result_panel.cc
@@ -564,14 +564,14 @@ VerifyDCPResultPanel::add(shared_ptr<const VerifyDCPJob> job, bool many)
case dcp::VerificationNote::Code::INVALID_JPEG2000_TILE_PARTS_FOR_2K:
add(
i.second,
- _("A 2K JPEG2000 frame contains %n tile parts instead of 3."),
+ _("A 2K JPEG2000 frame contains %tile_parts tile parts instead of 3."),
_("More 2K JPEG2000 frames (not listed) contain the wrong number of tile parts.")
);
break;
case dcp::VerificationNote::Code::INVALID_JPEG2000_TILE_PARTS_FOR_4K:
add(
i.second,
- _("A 4K JPEG2000 frame contains %n tile parts instead of 6."),
+ _("A 4K JPEG2000 frame contains %tile_parts tile parts instead of 6."),
_("More JPEG2000 frames (not listed) contain the wrong number of tile parts.")
);
break;