glib/gconvert.c (g_filename_from_uri): Replace `is contains'
authorMatthias Clasen <matthiasc@src.gnome.org>
Fri, 14 Sep 2001 19:29:35 +0000 (19:29 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Fri, 14 Sep 2001 19:29:35 +0000 (19:29 +0000)
by `contains' in two error messages. (#60395)

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/gconvert.c

index 7f3e328..07fe08f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+
+Fri Sep 14 20:34:27 2001  Matthias Clasen  <matthiasc@poet.de>
+
+       * glib/gconvert.c (g_filename_from_uri): Replace `is contains'
+       by `contains' in two error messages. (#60395)
+
 2001-09-10  Ron Steinke  <rsteinke@w-link.net>
 
        * glib/giochannel.h glib/giochannel.c: Added a length argument
index 7f3e328..07fe08f 100644 (file)
@@ -1,3 +1,9 @@
+
+Fri Sep 14 20:34:27 2001  Matthias Clasen  <matthiasc@poet.de>
+
+       * glib/gconvert.c (g_filename_from_uri): Replace `is contains'
+       by `contains' in two error messages. (#60395)
+
 2001-09-10  Ron Steinke  <rsteinke@w-link.net>
 
        * glib/giochannel.h glib/giochannel.c: Added a length argument
index 7f3e328..07fe08f 100644 (file)
@@ -1,3 +1,9 @@
+
+Fri Sep 14 20:34:27 2001  Matthias Clasen  <matthiasc@poet.de>
+
+       * glib/gconvert.c (g_filename_from_uri): Replace `is contains'
+       by `contains' in two error messages. (#60395)
+
 2001-09-10  Ron Steinke  <rsteinke@w-link.net>
 
        * glib/giochannel.h glib/giochannel.c: Added a length argument
index 7f3e328..07fe08f 100644 (file)
@@ -1,3 +1,9 @@
+
+Fri Sep 14 20:34:27 2001  Matthias Clasen  <matthiasc@poet.de>
+
+       * glib/gconvert.c (g_filename_from_uri): Replace `is contains'
+       by `contains' in two error messages. (#60395)
+
 2001-09-10  Ron Steinke  <rsteinke@w-link.net>
 
        * glib/giochannel.h glib/giochannel.c: Added a length argument
index 7f3e328..07fe08f 100644 (file)
@@ -1,3 +1,9 @@
+
+Fri Sep 14 20:34:27 2001  Matthias Clasen  <matthiasc@poet.de>
+
+       * glib/gconvert.c (g_filename_from_uri): Replace `is contains'
+       by `contains' in two error messages. (#60395)
+
 2001-09-10  Ron Steinke  <rsteinke@w-link.net>
 
        * glib/giochannel.h glib/giochannel.c: Added a length argument
index 7f3e328..07fe08f 100644 (file)
@@ -1,3 +1,9 @@
+
+Fri Sep 14 20:34:27 2001  Matthias Clasen  <matthiasc@poet.de>
+
+       * glib/gconvert.c (g_filename_from_uri): Replace `is contains'
+       by `contains' in two error messages. (#60395)
+
 2001-09-10  Ron Steinke  <rsteinke@w-link.net>
 
        * glib/giochannel.h glib/giochannel.c: Added a length argument
index 7f3e328..07fe08f 100644 (file)
@@ -1,3 +1,9 @@
+
+Fri Sep 14 20:34:27 2001  Matthias Clasen  <matthiasc@poet.de>
+
+       * glib/gconvert.c (g_filename_from_uri): Replace `is contains'
+       by `contains' in two error messages. (#60395)
+
 2001-09-10  Ron Steinke  <rsteinke@w-link.net>
 
        * glib/giochannel.h glib/giochannel.c: Added a length argument
index 7f3e328..07fe08f 100644 (file)
@@ -1,3 +1,9 @@
+
+Fri Sep 14 20:34:27 2001  Matthias Clasen  <matthiasc@poet.de>
+
+       * glib/gconvert.c (g_filename_from_uri): Replace `is contains'
+       by `contains' in two error messages. (#60395)
+
 2001-09-10  Ron Steinke  <rsteinke@w-link.net>
 
        * glib/giochannel.h glib/giochannel.c: Added a length argument
index c280e70..d904335 100644 (file)
@@ -1235,7 +1235,7 @@ g_filename_from_uri (const char *uri,
       if (unescaped_hostname == NULL)
        {
          g_set_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_INVALID_URI,
-                      _("The hostname of the URI `%s' is contains invalidly escaped characters"),
+                      _("The hostname of the URI `%s' contains invalidly escaped characters"),
                       uri);
          return NULL;
        }
@@ -1251,7 +1251,7 @@ g_filename_from_uri (const char *uri,
   if (filename == NULL)
     {
       g_set_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_INVALID_URI,
-                  _("The URI `%s' is contains invalidly escaped characters"),
+                  _("The URI `%s' contains invalidly escaped characters"),
                   uri);
       return NULL;
     }