diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-03-01 20:13:03 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-03-01 20:13:03 +0000 |
| commit | dd7cf1ef6e860243b80f4c47a99393244f63a3d5 (patch) | |
| tree | a158d4f59dbb9f1806c1aa00104c123edcfbccce /src/lib/decoder.cc | |
| parent | f4c18d89c2fd68a0dbf03b4c72e25cc8214a3a5b (diff) | |
| parent | 7b3f53a88e86154587269826064aa4c0a067f253 (diff) | |
Merge master.
Diffstat (limited to 'src/lib/decoder.cc')
| -rw-r--r-- | src/lib/decoder.cc | 6 |
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")); } |
