Fixup translator comments (#518578).

2008-02-25  Wouter Bolsterlee  <wbolster@svn.gnome.org>

	* gfile.c (g_file_find_enclosing_mount):
	* ginputstream.c (g_input_stream_set_pending):
	* glocalfile.c (g_local_file_find_enclosing_mount):
	* gmount.c (g_mount_unmount), (g_mount_eject), (g_mount_remount):
	* goutputstream.c (g_output_stream_set_pending):

	Fixup translator comments (#518578).

svn path=/trunk/; revision=6591
This commit is contained in:
Wouter Bolsterlee
2008-02-25 14:31:19 +00:00
committed by Wouter Bolsterlee
parent a9a0498007
commit 8b294f1f9d
6 changed files with 46 additions and 34 deletions

View File

@@ -897,11 +897,11 @@ g_input_stream_set_pending (GInputStream *stream, GError **error)
if (stream->priv->pending)
{
/* Translators: This is an error you get if there is already
an operation running against this stream when you try to
start one */
g_set_error (error, G_IO_ERROR, G_IO_ERROR_PENDING,
_("Stream has outstanding operation"));
/* Translators: This is an error you get if there is already an
* operation running against this stream when you try to start
* one */
_("Stream has outstanding operation"));
return FALSE;
}