glib r6590 - trunk/gio



Author: wbolster
Date: Mon Feb 25 14:04:38 2008
New Revision: 6590
URL: http://svn.gnome.org/viewvc/glib?rev=6590&view=rev

Log:
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.


Modified:
   trunk/gio/ChangeLog
   trunk/gio/gfile.c
   trunk/gio/giomodule.c
   trunk/gio/glocalfile.c
   trunk/gio/goutputstream.c

Modified: trunk/gio/gfile.c
==============================================================================
--- trunk/gio/gfile.c	(original)
+++ trunk/gio/gfile.c	Mon Feb 25 14:04:38 2008
@@ -1248,7 +1248,7 @@
   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 @@
   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);
 }
 /**

Modified: trunk/gio/giomodule.c
==============================================================================
--- trunk/gio/giomodule.c	(original)
+++ trunk/gio/giomodule.c	Mon Feb 25 14:04:38 2008
@@ -230,9 +230,9 @@
 /**
  * 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

Modified: trunk/gio/glocalfile.c
==============================================================================
--- trunk/gio/glocalfile.c	(original)
+++ trunk/gio/glocalfile.c	Mon Feb 25 14:04:38 2008
@@ -1031,8 +1031,8 @@
 
   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 @@
   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 @@
   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"));

Modified: trunk/gio/goutputstream.c
==============================================================================
--- trunk/gio/goutputstream.c	(original)
+++ trunk/gio/goutputstream.c	Mon Feb 25 14:04:38 2008
@@ -157,7 +157,7 @@
  *
  * 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).
  * 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]