summaryrefslogtreecommitdiff
path: root/src/wx/verify_dcp_result_panel.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2026-03-30 00:04:52 +0200
committerCarl Hetherington <cth@carlh.net>2026-04-02 01:20:16 +0200
commit4ba6268da4db833680f1b6c7ea1ae85945cca81d (patch)
tree7ea7ba6872d1513104b7d65ec94caf911e9045a5 /src/wx/verify_dcp_result_panel.cc
parent89d4700c1e92f223b63563e5cf0978972db204c6 (diff)
INVALID_JPEG2000_GUARD_BITS_FOR_{2,4}K: note -> guard_bits.
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 b815521a4..e3d82e186 100644
--- a/src/wx/verify_dcp_result_panel.cc
+++ b/src/wx/verify_dcp_result_panel.cc
@@ -501,14 +501,14 @@ VerifyDCPResultPanel::add(shared_ptr<const VerifyDCPJob> job, bool many)
case dcp::VerificationNote::Code::INVALID_JPEG2000_GUARD_BITS_FOR_2K:
add(
i.second,
- _("A 2K JPEG2000 frame has %n guard bits instead of 1."),
+ _("A 2K JPEG2000 frame has %guard_bits guard bits instead of 1."),
_("More 2K JPEG2000 frames (not listed) have an invalid number of guard bits.")
);
break;
case dcp::VerificationNote::Code::INVALID_JPEG2000_GUARD_BITS_FOR_4K:
add(
i.second,
- _("A 4K JPEG2000 frame has %n guard bits instead of 2."),
+ _("A 4K JPEG2000 frame has %guard_bits guard bits instead of 2."),
_("More 4K JPEG2000 frames (not listed) have an invalid number of guard bits.")
);
break;