diff options
author | Matthias Clasen <maclas@gmx.de> | 2004-06-12 02:08:45 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2004-06-12 02:08:45 +0000 |
commit | 9bff92fbcd30061e083f52b130298695bc40ff93 (patch) | |
tree | dd152bf376cba1e9c93900b432a653c55660e7f9 /gdk-pixbuf/io-pnm.c | |
parent | 2ec910595c1ceafe1a835acf0a44f49f053c3eef (diff) | |
download | gdk-pixbuf-9bff92fbcd30061e083f52b130298695bc40ff93.tar.gz |
Don't use contractions like "don't" or "isn't" in error messages. It isn't
Fri Jun 11 22:02:56 2004 Matthias Clasen <maclas@gmx.de>
* io-gif.c, io-pnm.c, io-tga.c, io-xpm.c: Don't use
contractions like "don't" or "isn't" in error messages.
It isn't nice to use them in log entries either...
(#137774, Morten Welinder, patch by Alexander Winston)
Diffstat (limited to 'gdk-pixbuf/io-pnm.c')
-rw-r--r-- | gdk-pixbuf/io-pnm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk-pixbuf/io-pnm.c b/gdk-pixbuf/io-pnm.c index 39b7d3633..d65bb3da5 100644 --- a/gdk-pixbuf/io-pnm.c +++ b/gdk-pixbuf/io-pnm.c @@ -393,7 +393,7 @@ pnm_read_header (PnmLoaderContext *context) g_set_error (context->error, GDK_PIXBUF_ERROR, GDK_PIXBUF_ERROR_CORRUPT_IMAGE, - _("Can't handle PNM files with maximum color values greater than 255")); + _("Cannot handle PNM files with maximum color values greater than 255")); return PNM_FATAL_ERR; } } @@ -767,7 +767,7 @@ gdk_pixbuf__pnm_image_load (FILE *f, GError **error) g_set_error (error, GDK_PIXBUF_ERROR, GDK_PIXBUF_ERROR_INSUFFICIENT_MEMORY, - _("Can't allocate memory for loading PNM image")); + _("Cannot allocate memory for loading PNM image")); return NULL; } |