Tell the user that they can add the CPL ID to a DKDM filename.
authorCarl Hetherington <cth@carlh.net>
Wed, 26 Mar 2025 23:28:55 +0000 (00:28 +0100)
committerCarl Hetherington <cth@carlh.net>
Wed, 26 Mar 2025 23:30:25 +0000 (00:30 +0100)
src/wx/dkdm_output_panel.cc

index f8331a91f49bbcc4b38cbb9306d93605ae9b5e18..643987f26b8a1faf9d2a572abf73171e7bb44479 100644 (file)
@@ -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);