summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-01-07 16:01:49 +0000
committerCarl Hetherington <cth@carlh.net>2016-01-07 16:01:49 +0000
commitc51f4dd82ada91d5e1c2c6a9b61089195e1fa85d (patch)
tree0ab300b66684f09b4ec97703b959e6e54c0f64ad /src/lib
parent0973ea8c5ddc0a7463eaf0e2d0e267c525acbab5 (diff)
Fix slightly odd looking backtick.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/dcp_content.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/dcp_content.cc b/src/lib/dcp_content.cc
index f65aaec7e..84c864d99 100644
--- a/src/lib/dcp_content.cc
+++ b/src/lib/dcp_content.cc
@@ -294,7 +294,7 @@ DCPContent::can_reference (string overlapping, list<string>& why_not) const
*/
BOOST_FOREACH (DCPTimePeriod i, reels()) {
if (find (fr.begin(), fr.end(), i) == fr.end ()) {
- why_not.push_back (_("Reel lengths in the project differ from those in the DCP; set the reel mode to `split by video content'."));
+ why_not.push_back (_("Reel lengths in the project differ from those in the DCP; set the reel mode to 'split by video content'."));
return false;
}
}