summaryrefslogtreecommitdiff
path: root/src/lib/imagemagick_decoder.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-03-01 20:13:03 +0000
committerCarl Hetherington <cth@carlh.net>2013-03-01 20:13:03 +0000
commitdd7cf1ef6e860243b80f4c47a99393244f63a3d5 (patch)
treea158d4f59dbb9f1806c1aa00104c123edcfbccce /src/lib/imagemagick_decoder.cc
parentf4c18d89c2fd68a0dbf03b4c72e25cc8214a3a5b (diff)
parent7b3f53a88e86154587269826064aa4c0a067f253 (diff)
Merge master.
Diffstat (limited to 'src/lib/imagemagick_decoder.cc')
-rw-r--r--src/lib/imagemagick_decoder.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/imagemagick_decoder.cc b/src/lib/imagemagick_decoder.cc
index 42fe699d7..5dc0b7b06 100644
--- a/src/lib/imagemagick_decoder.cc
+++ b/src/lib/imagemagick_decoder.cc
@@ -25,6 +25,8 @@
#include "film.h"
#include "exceptions.h"
+#include "i18n.h"
+
using std::cout;
using boost::shared_ptr;
using libdcp::Size;
@@ -55,7 +57,7 @@ libdcp::Size
ImageMagickDecoder::native_size () const
{
if (_files.empty ()) {
- throw DecodeError ("no still image files found");
+ throw DecodeError (_("no still image files found"));
}
/* Look at the first file and assume its size holds for all */