summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-12-12 00:14:45 +0100
committerCarl Hetherington <cth@carlh.net>2024-03-12 00:43:51 +0100
commit58cbd115b5f6051b1af19e85f250c1c5bdc5f52d (patch)
tree4718347711514c071474e09c888c7e9d0474698d
parenta7be213f1063e3c5cb4dcba37aa0443d1f28f9d5 (diff)
Rename "custom" reel type to "split by maximum reel size" (in the GUI).
-rw-r--r--src/wx/dcp_panel.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/wx/dcp_panel.cc b/src/wx/dcp_panel.cc
index d81e7bf95..b789a1a74 100644
--- a/src/wx/dcp_panel.cc
+++ b/src/wx/dcp_panel.cc
@@ -141,8 +141,7 @@ DCPPanel::DCPPanel(wxNotebook* n, shared_ptr<Film> film, FilmViewer& viewer)
_reel_type->add(_("Single reel"));
_reel_type->add(_("Split by video content"));
- /// TRANSLATORS: translate the word "Custom" here; do not include the "Reel|" prefix
- _reel_type->add(S_("Reel|Custom"));
+ _reel_type->add(S_("Split by maximum reel size"));
_reel_type->SetToolTip(_("How the DCP should be split into parts internally. If in doubt, choose 'Single reel'"));
_reel_length->SetRange (1, 64);