summaryrefslogtreecommitdiff
path: root/src/lib/examine_content_job.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-02-28 22:20:07 +0000
committerCarl Hetherington <cth@carlh.net>2013-02-28 22:20:07 +0000
commit0d3f5aae5b99832b7c5d55f32f5bccb365caa3fd (patch)
tree674f3fe851d2ddd619102ca60c54bc1473a56ffe /src/lib/examine_content_job.cc
parent8bb4ba8f424cac07f7730fca99d5333fcd76a84d (diff)
Various markup and tweaks.
Diffstat (limited to 'src/lib/examine_content_job.cc')
-rw-r--r--src/lib/examine_content_job.cc10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/lib/examine_content_job.cc b/src/lib/examine_content_job.cc
index 31d76c4f7..4b30c9431 100644
--- a/src/lib/examine_content_job.cc
+++ b/src/lib/examine_content_job.cc
@@ -31,6 +31,8 @@
#include "film.h"
#include "video_decoder.h"
+#include "i18n.h"
+
using std::string;
using std::vector;
using std::pair;
@@ -50,10 +52,10 @@ string
ExamineContentJob::name () const
{
if (_film->name().empty ()) {
- return "Examine content";
+ return _("Examine content");
}
- return String::compose ("Examine content of %1", _film->name());
+ return String::compose (_("Examine content of %1"), _film->name());
}
void
@@ -90,7 +92,7 @@ ExamineContentJob::run ()
_film->set_length (decoders.video->video_frame());
- _film->log()->log (String::compose ("Video length examined as %1 frames", _film->length().get()));
+ _film->log()->log (String::compose (N_("Video length examined as %1 frames"), _film->length().get()));
} else {
@@ -99,7 +101,7 @@ ExamineContentJob::run ()
Decoders d = decoder_factory (_film, DecodeOptions());
_film->set_length (d.video->length());
- _film->log()->log (String::compose ("Video length obtained from header as %1 frames", _film->length().get()));
+ _film->log()->log (String::compose (N_("Video length obtained from header as %1 frames"), _film->length().get()));
}
ascend ();