hi,
ngettext is actually a programm in itself
try:
ngettext --version
it's part of Gettext package
it translates strings to different languages i think
could try upgrading that ???
easiest thing
just open up that file
scroll down to line 405
and mess with it until it compiles
what do you care what the error message says anyway??????
original:
Code:
g_set_error (error, GDK_PIXBUF_ERROR,
GDK_PIXBUF_ERROR_INSUFFICIENT_MEMORY,
ngettext("failed to allocate image buffer of %u byte",
"failed to allocate image buffer of %u bytes",
pixdata->rowstride * pixdata->height),
pixdata->rowstride * pixdata->height);
try:
Code:
g_set_error (error, GDK_PIXBUF_ERROR,
GDK_PIXBUF_ERROR_INSUFFICIENT_MEMORY,
_("failed to allocate image buffer of %u bytes"),
pixdata->rowstride * pixdata->height);
or better yet:
Code:
g_set_error (error, GDK_PIXBUF_ERROR,
GDK_PIXBUF_ERROR_INSUFFICIENT_MEMORY,
_("failed to allocate image buffer"));