summaryrefslogtreecommitdiff
path: root/riscos/jpeg.c
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2004-02-27 17:45:19 +0000
committerJames Bursa <james@netsurf-browser.org>2004-02-27 17:45:19 +0000
commit7f68e012cc9f64bd09a8452e85df9df2a0e9211b (patch)
tree3825cab5266ed7ed24dd7273b40a7b7e0de9e917 /riscos/jpeg.c
parent13787963e26dd2cdb39bbcb28cfaafb1d13ec5ea (diff)
downloadnetsurf-7f68e012cc9f64bd09a8452e85df9df2a0e9211b.tar.gz
netsurf-7f68e012cc9f64bd09a8452e85df9df2a0e9211b.tar.bz2
[project @ 2004-02-27 17:45:19 by bursa]
Move English text to Messages file for translation. svn path=/import/netsurf/; revision=576
Diffstat (limited to 'riscos/jpeg.c')
-rw-r--r--riscos/jpeg.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/riscos/jpeg.c b/riscos/jpeg.c
index 3d72e7acb..f273207b4 100644
--- a/riscos/jpeg.c
+++ b/riscos/jpeg.c
@@ -22,6 +22,7 @@
#include "netsurf/desktop/gui.h"
#include "netsurf/riscos/jpeg.h"
#include "netsurf/utils/log.h"
+#include "netsurf/utils/messages.h"
#include "netsurf/utils/utils.h"
/**
@@ -166,7 +167,7 @@ int nsjpeg_convert(struct content *c, unsigned int width, unsigned int height)
c->width = w;
c->height = h;
c->title = xcalloc(100, 1);
- sprintf(c->title, "JPEG image (%ux%u, %lu bytes)", w, h, c->data.jpeg.length);
+ sprintf(c->title, messages_get("JPEGTitle"), w, h, c->data.jpeg.length);
c->status = CONTENT_STATUS_DONE;
return 0;
}