diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-07-24 23:06:40 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-07-24 23:06:40 +0100 |
| commit | 92112105d96ed0193031cce21d1197ce29dfecc2 (patch) | |
| tree | 0c6862569b73cee49b83d206898fb5d69d4cef23 /src/lib | |
| parent | e875c2935a4031fd5d50864b20a432c343f48248 (diff) | |
Restore video content frame rate information.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/util.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/util.cc b/src/lib/util.cc index affbe3b00..183ff7d8b 100644 --- a/src/lib/util.cc +++ b/src/lib/util.cc @@ -742,17 +742,17 @@ FrameRateConversion::FrameRateConversion (float source, int dcp) change_speed = !about_equal (source * factor(), dcp); if (!skip && !repeat && !change_speed) { - description = _("DCP and source have the same rate.\n"); + description = _("Content and DCP have the same rate.\n"); } else { if (skip) { - description = _("DCP will use every other frame of the source.\n"); + description = _("DCP will use every other frame of the content.\n"); } else if (repeat) { - description = _("Each source frame will be doubled in the DCP.\n"); + description = _("Each content frame will be doubled in the DCP.\n"); } if (change_speed) { float const pc = dcp * 100 / (source * factor()); - description += String::compose (_("DCP will run at %1%% of the source speed.\n"), pc); + description += String::compose (_("DCP will run at %1%% of the content speed.\n"), pc); } } } |
