summaryrefslogtreecommitdiff
path: root/src/lib/util.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-03-02 19:16:25 +0000
committerCarl Hetherington <cth@carlh.net>2013-03-02 19:16:25 +0000
commit99d2e172f5c7fae21e5126a063014727871e9948 (patch)
tree1d796a5c0dd91c9d44cb0e360c8668a9b3acc29d /src/lib/util.cc
parent53eb16342d492236aca77e4b73c0911a5d5eec9f (diff)
Add similar format description,
Diffstat (limited to 'src/lib/util.cc')
-rw-r--r--src/lib/util.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/util.cc b/src/lib/util.cc
index d1450ccc2..71e864ebd 100644
--- a/src/lib/util.cc
+++ b/src/lib/util.cc
@@ -962,17 +962,17 @@ FrameRateConversion::FrameRateConversion (float source, int dcp)
change_speed = !about_equal (source * factor(), dcp);
if (!skip && !repeat && !change_speed) {
- explanation = _("DCP and source have the same rate.\n");
+ description = _("DCP and source have the same rate.\n");
} else {
if (skip) {
- explanation = _("DCP will use every other frame of the source.\n");
+ description = _("DCP will use every other frame of the source.\n");
} else if (repeat) {
- explanation = _("Each source frame will be doubled in the DCP.\n");
+ description = _("Each source frame will be doubled in the DCP.\n");
}
if (change_speed) {
float const pc = (source * factor()) * 100 / dcp;
- explanation += String::compose (_("DCP will run at %1%% of the source speed."), pc);
+ description += String::compose (_("DCP will run at %1%% of the source speed."), pc);
}
}
}