summaryrefslogtreecommitdiff
path: root/gdk-pixbuf
diff options
context:
space:
mode:
authorMatthias Clasen <maclas@gmx.de>2004-07-15 23:24:51 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2004-07-15 23:24:51 +0000
commite0e35c0cd9db44c9007c69a541fafcde07bcda9e (patch)
tree848efe3e4220334113906d05d18a5398fa8130c6 /gdk-pixbuf
parentbd8d72d948978ebca250abdaec2413361b60cdb5 (diff)
downloadgtk+-e0e35c0cd9db44c9007c69a541fafcde07bcda9e.tar.gz
Use 'cannot' instead of 'can not' in messages. (#144226, Morten Welinder)
Thu Jul 15 19:20:05 2004 Matthias Clasen <maclas@gmx.de> * gdk/x11/gdkim-x11.c (_gdk_x11_initialize_locale): * gtk/gtkcalendar.c (gtk_calendar_class_init): Use 'cannot' instead of 'can not' in messages. (#144226, Morten Welinder)
Diffstat (limited to 'gdk-pixbuf')
-rw-r--r--gdk-pixbuf/ChangeLog6
-rw-r--r--gdk-pixbuf/gdk-pixbuf-io.c2
-rw-r--r--gdk-pixbuf/io-png.c2
3 files changed, 8 insertions, 2 deletions
diff --git a/gdk-pixbuf/ChangeLog b/gdk-pixbuf/ChangeLog
index 8c2915aede..46ac7e4dab 100644
--- a/gdk-pixbuf/ChangeLog
+++ b/gdk-pixbuf/ChangeLog
@@ -1,3 +1,9 @@
+Thu Jul 15 19:19:21 2004 Matthias Clasen <maclas@gmx.de>
+
+ * io-png.c (real_save_png):
+ * gdk-pixbuf-io.c (gdk_pixbuf_io_init): Use 'cannot' instead
+ of 'can not' in messages. (#144226, Morten Welinder)
+
Fri Jul 9 15:38:06 2004 Manish Singh <yosh@gimp.org>
* gdk-pixbuf-io.c (gdk_pixbuf_format_set_disabled): function doesn't
diff --git a/gdk-pixbuf/gdk-pixbuf-io.c b/gdk-pixbuf/gdk-pixbuf-io.c
index 809df09ebb..984acebc2d 100644
--- a/gdk-pixbuf/gdk-pixbuf-io.c
+++ b/gdk-pixbuf/gdk-pixbuf-io.c
@@ -251,7 +251,7 @@ gdk_pixbuf_io_init ()
channel = g_io_channel_new_file (filename, "r", &error);
if (!channel) {
- g_warning ("Can not open pixbuf loader module file '%s': %s",
+ g_warning ("Cannot open pixbuf loader module file '%s': %s",
filename, error->message);
return;
}
diff --git a/gdk-pixbuf/io-png.c b/gdk-pixbuf/io-png.c
index df5417db30..3d4501fa22 100644
--- a/gdk-pixbuf/io-png.c
+++ b/gdk-pixbuf/io-png.c
@@ -851,7 +851,7 @@ static gboolean real_save_png (GdkPixbuf *pixbuf,
g_set_error (error,
GDK_PIXBUF_ERROR,
GDK_PIXBUF_ERROR_BAD_OPTION,
- _("Value for PNG text chunk %s can not be converted to ISO-8859-1 encoding."), keys[i] + 6);
+ _("Value for PNG text chunk %s cannot be converted to ISO-8859-1 encoding."), keys[i] + 6);
num_keys = i;
for (i = 0; i < num_keys; i++)
g_free (text_ptr[i].text);