summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-02-08 16:16:32 +0000
committerCarl Hetherington <cth@carlh.net>2019-02-08 16:16:32 +0000
commit5730c435e81f9001eeda0a74b6a5c65be148c9af (patch)
treebe413e408437b79876f0eefeab90e94c22d03d01 /src/lib
parent37f89e97b4350cca1acf2d9a218699f4eb4d709a (diff)
Try to fix msgfmt complaints.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/hints.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/hints.cc b/src/lib/hints.cc
index 749fbb676..02973a186 100644
--- a/src/lib/hints.cc
+++ b/src/lib/hints.cc
@@ -162,7 +162,7 @@ Hints::thread ()
case 25:
{
/* You might want to go to 24 */
- string base = String::compose(_("You are set up for a DCP at a frame rate of %1fps. This frame rate is not supported by all projectors. You may want to consider changing your frame rate to %2fps."), 25, 24);
+ string base = String::compose(_("You are set up for a DCP at a frame rate of %1 fps. This frame rate is not supported by all projectors. You may want to consider changing your frame rate to %2 fps."), 25, 24);
if (film->interop()) {
base += " ";
base += _("If you do use 25fps you should change your DCP standard to SMPTE.");
@@ -178,7 +178,7 @@ Hints::thread ()
case 50:
case 60:
/* You almost certainly want to go to half frame rate */
- hint (String::compose(_("You are set up for a DCP at a frame rate of %1fps. This frame rate is not supported by all projectors. You are advised to change the DCP frame rate to %2fps."), film->video_frame_rate(), film->video_frame_rate() / 2));
+ hint (String::compose(_("You are set up for a DCP at a frame rate of %1 fps. This frame rate is not supported by all projectors. You are advised to change the DCP frame rate to %2 fps."), film->video_frame_rate(), film->video_frame_rate() / 2));
break;
}