Fix a few typos in translator comments and documentation.
authorWouter Bolsterlee <wbolster@svn.gnome.org>
Mon, 25 Feb 2008 14:04:38 +0000 (14:04 +0000)
committerWouter Bolsterlee <wbolster@src.gnome.org>
Mon, 25 Feb 2008 14:04:38 +0000 (14:04 +0000)
2008-02-25  Wouter Bolsterlee  <wbolster@svn.gnome.org>

* gfile.c (g_file_find_enclosing_mount):
* giomodule.c:
* glocalfile.c (g_local_file_find_enclosing_mount):
* goutputstream.c:

Fix a few typos in translator comments and documentation.

svn path=/trunk/; revision=6590

gio/ChangeLog
gio/gfile.c
gio/giomodule.c
gio/glocalfile.c
gio/goutputstream.c

index 0e5f50b..90c29e8 100644 (file)
@@ -1,3 +1,12 @@
+2008-02-25  Wouter Bolsterlee  <wbolster@svn.gnome.org>
+
+       * gfile.c (g_file_find_enclosing_mount):
+       * giomodule.c:
+       * glocalfile.c (g_local_file_find_enclosing_mount):
+       * goutputstream.c:
+
+       Fix a few typos in translator comments and documentation.
+
 2008-02-25  Alexander Larsson  <alexl@redhat.com>
 
         * gfile.c:
index 0d1d610..95c0a42 100644 (file)
@@ -1248,7 +1248,7 @@ g_file_find_enclosing_mount (GFile         *file,
   GFileIface *iface;
 
   g_return_val_if_fail (G_IS_FILE (file), NULL);
-  
+
   if (g_cancellable_set_error_if_cancelled (cancellable, error))
     return NULL;
 
@@ -1256,14 +1256,14 @@ g_file_find_enclosing_mount (GFile         *file,
   if (iface->find_enclosing_mount == NULL)
     {
 
-      /* Translators: This is an error message when trying to the the
-         enclosing (user visible) mount of a file, but none exist. */
+      /* Translators: This is an error message when trying to find the
+         enclosing (user visible) mount of a file, but none exists. */
       g_set_error (error, G_IO_ERROR,
                   G_IO_ERROR_NOT_FOUND,
                   _("Containing mount does not exist"));
       return NULL;
     }
-  
+
   return (* iface->find_enclosing_mount) (file, cancellable, error);
 }
 /**
index 337fc31..fd1391b 100644 (file)
@@ -230,9 +230,9 @@ is_valid_module_name (const gchar *basename)
 /**
  * g_io_modules_load_all_in_directory:
  * @dirname: pathname for a directory containing modules to load.
- * 
- * Loads all the modules in the the specified directory. 
- * 
+ *
+ * Loads all the modules in the specified directory.
+ *
  * Returns: a list of #GIOModules loaded from the directory,
  *      All the modules are loaded into memory, if you want to
  *      unload them (enabling on-demand loading) you must call
index 3b15919..394b832 100644 (file)
@@ -1031,8 +1031,8 @@ g_local_file_find_enclosing_mount (GFile         *file,
 
   if (g_lstat (local->filename, &buf) != 0)
     {
-      /* Translators: This is an error message when trying to the the
-         enclosing (user visible) mount of a file, but none exist. */
+      /* Translators: This is an error message when trying to find the
+         enclosing (user visible) mount of a file, but none exists. */
       g_set_error (error, G_IO_ERROR,
                   G_IO_ERROR_NOT_FOUND,
                   _("Containing mount does not exist"));
@@ -1042,8 +1042,8 @@ g_local_file_find_enclosing_mount (GFile         *file,
   mountpoint = find_mountpoint_for (local->filename, buf.st_dev);
   if (mountpoint == NULL)
     {
-      /* Translators: This is an error message when trying to the the
-         enclosing (user visible) mount of a file, but none exist. */
+      /* Translators: This is an error message when trying to find the
+         enclosing (user visible) mount of a file, but none exists. */
       g_set_error (error, G_IO_ERROR,
                   G_IO_ERROR_NOT_FOUND,
                   _("Containing mount does not exist"));
@@ -1055,8 +1055,8 @@ g_local_file_find_enclosing_mount (GFile         *file,
   if (mount)
     return mount;
 
-  /* Translators: This is an error message when trying to the the
-     enclosing (user visible) mount of a file, but none exist. */
+  /* Translators: This is an error message when trying to find the
+     enclosing (user visible) mount of a file, but none exists. */
   g_set_error (error, G_IO_ERROR,
               G_IO_ERROR_NOT_FOUND,
               _("Containing mount does not exist"));
index e5b090a..d9a672f 100644 (file)
@@ -157,7 +157,7 @@ g_output_stream_init (GOutputStream *stream)
  *
  * On success, the number of bytes written to the stream is returned.
  * It is not an error if this is not the same as the requested size, as it
- * can happen e.g. on a partial i/o error, or if the there is not enough
+ * can happen e.g. on a partial i/o error, or if there is not enough
  * storage in the stream. All writes either block until at least one byte
  * is written, so zero is never returned (unless @count is zero).
  *