From: Carl Hetherington Date: Thu, 7 Jan 2016 16:01:49 +0000 (+0000) Subject: Fix slightly odd looking backtick. X-Git-Tag: v2.6.14~6 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=c51f4dd82ada91d5e1c2c6a9b61089195e1fa85d;hp=0973ea8c5ddc0a7463eaf0e2d0e267c525acbab5 Fix slightly odd looking backtick. --- 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& 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; } }