Use plain git hash for VERSION when there is no exact tag.
[dcpomatic.git] / src / lib / dcp_content_type.cc
index f3cd02e9f2e998c4bf0e1d61ad635bcecbebb19b..bc9bf0d6775d47939c365a66d9040e94a557a2a2 100644 (file)
@@ -47,6 +47,8 @@ DCPContentType::DCPContentType (string p, dcp::ContentKind k, string d)
 void
 DCPContentType::setup_dcp_content_types ()
 {
+       /// TRANSLATORS: these are the types that a DCP can have, explained in some
+       /// more detail here: https://registry-page.isdcf.com/contenttypes/
        _dcp_content_types = {
                DCPContentType(_("Feature"), dcp::ContentKind::FEATURE, N_("FTR")),
                DCPContentType(_("Short"), dcp::ContentKind::SHORT, N_("SHR")),
@@ -58,8 +60,12 @@ DCPContentType::setup_dcp_content_types ()
                DCPContentType(_("Policy"), dcp::ContentKind::POLICY, N_("POL")),
                DCPContentType(_("Public Service Announcement"), dcp::ContentKind::PUBLIC_SERVICE_ANNOUNCEMENT, N_("PSA")),
                DCPContentType(_("Advertisement"), dcp::ContentKind::ADVERTISEMENT, N_("ADV")),
+               DCPContentType(_("Clip"), dcp::ContentKind::CLIP, N_("CLP")),
+               DCPContentType(_("Promo"), dcp::ContentKind::PROMO, N_("PRO")),
+               DCPContentType(_("Stereo card"), dcp::ContentKind::STEREOCARD, N_("STR")),
                DCPContentType(_("Episode"), dcp::ContentKind::EPISODE, N_("EPS")),
-               DCPContentType(_("Promo"), dcp::ContentKind::PROMO, N_("PRO"))
+               DCPContentType(_("Highlights"), dcp::ContentKind::HIGHLIGHTS, N_("HLT")),
+               DCPContentType(_("Event"), dcp::ContentKind::EVENT, N_("EVT")),
        };
 }