summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-03-27 00:28:55 +0100
committerCarl Hetherington <cth@carlh.net>2025-03-27 00:30:25 +0100
commit87ed52420c746cd4f7f3e15ab7e4dcb2ecfede28 (patch)
treef259277fe77ff746e99bee04b155641ed13e914c
parent2095769e1a644703e388bf0cade559773f08d0a9 (diff)
Tell the user that they can add the CPL ID to a DKDM filename.
-rw-r--r--src/wx/dkdm_output_panel.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wx/dkdm_output_panel.cc b/src/wx/dkdm_output_panel.cc
index f8331a91f..643987f26 100644
--- a/src/wx/dkdm_output_panel.cc
+++ b/src/wx/dkdm_output_panel.cc
@@ -66,9 +66,11 @@ DKDMOutputPanel::DKDMOutputPanel(wxWindow* parent)
dcp::NameFormat::Map titles;
titles['f'] = wx_to_std(_("film name"));
titles['r'] = wx_to_std(_("recipient name"));
+ titles['i'] = wx_to_std(_("CPL ID"));
dcp::NameFormat::Map ex;
ex['f'] = "Bambi";
ex['r'] = "Pathé";
+ ex['i'] = "1234-5678";
_filename_format = new NameFormatEditor(this, Config::instance()->dkdm_filename_format(), titles, ex, ".xml");
table->Add(_filename_format->panel(), 1, wxEXPAND);