summaryrefslogtreecommitdiff
path: root/riscos/draw.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/draw.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/draw.c')
-rw-r--r--riscos/draw.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/riscos/draw.c b/riscos/draw.c
index fbaf1be85..325106f63 100644
--- a/riscos/draw.c
+++ b/riscos/draw.c
@@ -12,6 +12,7 @@
#include "netsurf/content/content.h"
#include "netsurf/riscos/draw.h"
#include "netsurf/utils/utils.h"
+#include "netsurf/utils/messages.h"
#include "netsurf/utils/log.h"
#include "oslib/drawfile.h"
@@ -64,7 +65,7 @@ int draw_convert(struct content *c, unsigned int width, unsigned int height)
c->data.draw.x0 = bbox->x0 / 2;
c->data.draw.y0 = bbox->y0 / 2;
c->title = xcalloc(100, 1);
- sprintf(c->title, "Draw image (%lux%lu, %lu bytes)", c->width,
+ sprintf(c->title, messages_get("DrawTitle"), c->width,
c->height, c->data.draw.length);
c->status = CONTENT_STATUS_DONE;
xfree(matrix);