summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-04-05 23:01:07 +0200
committerCarl Hetherington <cth@carlh.net>2021-04-05 23:01:07 +0200
commit7132012dde96d6e9aa36d2beaade1a0036ae3d9f (patch)
tree0f52d865b209567c1d201f7e83128af406608ba2 /src/lib
parent663ad31b198f0fb1c658b240a47201afeca35339 (diff)
Hint text tweaks.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/hints.cc9
1 files changed, 7 insertions, 2 deletions
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<const Film> film)
: WeakConstFilm (film)
, _writer (new Writer(film, weak_ptr<Job>(), 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."));
}
}