Fix a few typos in translator comments and documentation.

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
This commit is contained in:
Wouter Bolsterlee
2008-02-25 14:04:38 +00:00
committed by Wouter Bolsterlee
parent 9edb46455c
commit a9a0498007
5 changed files with 23 additions and 14 deletions

View 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"));