From: Carl Hetherington Date: Mon, 5 Apr 2021 21:01:07 +0000 (+0200) Subject: Hint text tweaks. X-Git-Tag: v2.15.139~18 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=7132012dde96d6e9aa36d2beaade1a0036ae3d9f;hp=663ad31b198f0fb1c658b240a47201afeca35339 Hint text tweaks. --- diff --git a/src/lib/hints.cc b/src/lib/hints.cc index cd9251e7c..ad95ff980 100644 --- a/src/lib/hints.cc +++ b/src/lib/hints.cc @@ -68,6 +68,11 @@ using namespace boost::placeholders; #define SIZE_SLACK 4096 +/* When writing hints: + * - put quotation marks around the name of a GUI tab that you are referring to (e.g. "DCP" or "DCP→Video" tab) + */ + + Hints::Hints (weak_ptr film) : WeakConstFilm (film) , _writer (new Writer(film, weak_ptr(), true)) @@ -235,7 +240,7 @@ void Hints::check_interop () { if (film()->interop()) { - hint (_("In general it is now advisable to make SMPTE DCPs unless you have a particular reason to use Interop. You are advised to set your DCP to use the SMPTE standard in the DCP tab.")); + hint (_("In general it is now advisable to make SMPTE DCPs unless you have a particular reason to use Interop. You are advised to set your DCP to use the SMPTE standard in the \"DCP\" tab.")); } } @@ -559,7 +564,7 @@ Hints::check_ffec_and_ffmc_in_smpte_feature () { auto f = film(); if (!f->interop() && f->dcp_content_type()->libdcp_kind() == dcp::ContentKind::FEATURE && (!f->marker(dcp::Marker::FFEC) || !f->marker(dcp::Marker::FFMC))) { - hint (_("SMPTE DCPs with the type FTR (feature) should have markers for the first frame of end credits (FFEC) and the first frame of moving credits (FFMC). You should add these markers using the 'Markers' button in the DCP tab.")); + hint (_("SMPTE DCPs with the type FTR (feature) should have markers for the first frame of end credits (FFEC) and the first frame of moving credits (FFMC). You should add these markers using the 'Markers' button in the \"DCP\" tab.")); } }