From: Carl Hetherington Date: Fri, 20 Aug 2021 21:09:53 +0000 (+0200) Subject: Fix typo if -> of (thanks to Uwe Dittes) X-Git-Tag: v2.15.158~2 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=b0d658e5c5b953b38e341a90518b5e7b2108811a Fix typo if -> of (thanks to Uwe Dittes) --- diff --git a/src/lib/dcp_content.cc b/src/lib/dcp_content.cc index c380e6f84..fa6ec383f 100644 --- a/src/lib/dcp_content.cc +++ b/src/lib/dcp_content.cc @@ -740,7 +740,7 @@ DCPContent::can_reference_text (shared_ptr film, TextType type, stri return false; } else if (i->main_subtitle()->entry_point().get_value_or(0) != 0) { /// TRANSLATORS: this string will follow "Cannot reference this DCP: " - why_not = _("one if its subtitle reels has a non-zero entry point so it must be re-written."); + why_not = _("one of its subtitle reels has a non-zero entry point so it must be re-written."); return false; } } @@ -753,7 +753,7 @@ DCPContent::can_reference_text (shared_ptr film, TextType type, stri for (auto j: i->closed_captions()) { if (j->entry_point().get_value_or(0) != 0) { /// TRANSLATORS: this string will follow "Cannot reference this DCP: " - why_not = _("one if its closed caption has a non-zero entry point so it must be re-written."); + why_not = _("one of its closed caption has a non-zero entry point so it must be re-written."); return false; } }