From 8af709285d056476933dbfaf63c9b2121fbd4ce8 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 19 Feb 2024 21:42:39 +0100 Subject: Don't order the user to 'remove the other content'. In the context of the new VF dialog this sounds odd; e.g. the user ticked video but audio is impossible, they are ordered to remove the other content (when they might just not want to refer to audio at all). --- src/lib/dcp_content.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/lib/dcp_content.cc b/src/lib/dcp_content.cc index 4d1ab4f88..574b077a4 100644 --- a/src/lib/dcp_content.cc +++ b/src/lib/dcp_content.cc @@ -698,7 +698,7 @@ DCPContent::can_reference_video (shared_ptr film, string& why_not) c if (overlaps(film, part)) { /// TRANSLATORS: this string will follow "Cannot reference this DCP: " - why_not = _("it overlaps other video content; remove the other content."); + why_not = _("it overlaps other video content."); return false; } @@ -729,7 +729,7 @@ DCPContent::can_reference_audio (shared_ptr film, string& why_not) c if (overlaps(film, part)) { /// TRANSLATORS: this string will follow "Cannot reference this DCP: " - why_not = _("it overlaps other audio content; remove the other content."); + why_not = _("it overlaps other audio content."); return false; } @@ -785,7 +785,7 @@ DCPContent::can_reference_text (shared_ptr film, TextType type, stri if (overlaps(film, part)) { /// TRANSLATORS: this string will follow "Cannot reference this DCP: " - why_not = _("it overlaps other text content; remove the other content."); + why_not = _("it overlaps other text content."); return false; } -- cgit v1.2.3