summaryrefslogtreecommitdiff
path: root/gio/gmount.c
diff options
context:
space:
mode:
authorWouter Bolsterlee <wbolster@svn.gnome.org>2008-02-25 14:31:19 +0000
committerWouter Bolsterlee <wbolster@src.gnome.org>2008-02-25 14:31:19 +0000
commit8b294f1f9d4588f6ad68a61546d0e7391b3f09cf (patch)
treee537450756bd0d6c4f2388920b49f3fd0315470a /gio/gmount.c
parenta9a049800769218817d8e9083eca00ce45942a9b (diff)
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
Diffstat (limited to 'gio/gmount.c')
-rw-r--r--gio/gmount.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/gio/gmount.c b/gio/gmount.c
index 7217f6737..f2bec5135 100644
--- a/gio/gmount.c
+++ b/gio/gmount.c
@@ -335,13 +335,14 @@ g_mount_unmount (GMount *mount,
if (iface->unmount == NULL)
{
- /* Translators: This is an error message for mount objects
- that don't implement unmount. */
g_simple_async_report_error_in_idle (G_OBJECT (mount),
callback, user_data,
G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
+ /* Translators: This is an error
+ * message for mount objects that
+ * don't implement unmount. */
_("mount doesn't implement unmount"));
-
+
return;
}
@@ -409,11 +410,12 @@ g_mount_eject (GMount *mount,
if (iface->eject == NULL)
{
- /* Translators: This is an error message for mount objects
- that don't implement eject. */
g_simple_async_report_error_in_idle (G_OBJECT (mount),
callback, user_data,
G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
+ /* Translators: This is an error
+ * message for mount objects that
+ * don't implement eject. */
_("mount doesn't implement eject"));
return;
@@ -490,11 +492,12 @@ g_mount_remount (GMount *mount,
if (iface->remount == NULL)
{
- /* Translators: This is an error message for mount objects
- that don't implement remount. */
g_simple_async_report_error_in_idle (G_OBJECT (mount),
callback, user_data,
G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
+ /* Translators: This is an error
+ * message for mount objects that
+ * don't implement remount. */
_("mount doesn't implement remount"));
return;