From 5730c435e81f9001eeda0a74b6a5c65be148c9af Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 8 Feb 2019 16:16:32 +0000 Subject: [PATCH] Try to fix msgfmt complaints. --- src/lib/hints.cc | 4 ++-- 1 file 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; } -- 2.30.2