summaryrefslogtreecommitdiff
path: root/src/lib/decoder.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-03-01 17:30:53 +0000
committerCarl Hetherington <cth@carlh.net>2013-03-01 17:30:53 +0000
commit5121d13ded51a70169f5b5d649067c9b26456705 (patch)
treebb4c29617fa311459c483adccfedfed1df795c5d /src/lib/decoder.cc
parentb3499c076f9270f161be1b89497eb888a48049f2 (diff)
parentcbc6c5863ec336f0843a87a71e9d7a25a5e59286 (diff)
Merge branch 'master' of /home/carl/git/dvdomatic
Diffstat (limited to 'src/lib/decoder.cc')
-rw-r--r--src/lib/decoder.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/decoder.cc b/src/lib/decoder.cc
index 30009460f..52b22fa06 100644
--- a/src/lib/decoder.cc
+++ b/src/lib/decoder.cc
@@ -36,6 +36,8 @@
#include "subtitle.h"
#include "filter_graph.h"
+#include "i18n.h"
+
using std::string;
using std::stringstream;
using std::min;
@@ -60,7 +62,7 @@ Decoder::Decoder (boost::shared_ptr<Film> f, DecodeOptions o)
bool
Decoder::seek (double)
{
- throw DecodeError ("decoder does not support seek");
+ throw DecodeError (N_("decoder does not support seek"));
}
/** Seek so that the next frame we will produce is the same as the last one.
@@ -69,5 +71,5 @@ Decoder::seek (double)
bool
Decoder::seek_to_last ()
{
- throw DecodeError ("decoder does not support seek");
+ throw DecodeError (N_("decoder does not support seek"));
}