summaryrefslogtreecommitdiff
path: root/src/lib/dcp_content.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-02-19 21:42:39 +0100
committerCarl Hetherington <cth@carlh.net>2024-02-19 21:42:39 +0100
commit8af709285d056476933dbfaf63c9b2121fbd4ce8 (patch)
treea22b6bbad22266d3227992dcc8b558b69ee4a270 /src/lib/dcp_content.cc
parent167ff6413dcc32680b2b778303f659656c2a51df (diff)
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).
Diffstat (limited to 'src/lib/dcp_content.cc')
-rw-r--r--src/lib/dcp_content.cc6
1 files changed, 3 insertions, 3 deletions
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<const Film> 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<const Film> 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<const Film> 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;
}