gvfs r1122 - in trunk: . daemon



Author: alexl
Date: Mon Jan 14 13:58:46 2008
New Revision: 1122
URL: http://svn.gnome.org/viewvc/gvfs?rev=1122&view=rev

Log:
2008-01-14  Alexander Larsson  <alexl redhat com>

        * daemon/gvfsdaemon.c:
	Don't translate g_warning strings



Modified:
   trunk/ChangeLog
   trunk/daemon/gvfsdaemon.c

Modified: trunk/daemon/gvfsdaemon.c
==============================================================================
--- trunk/daemon/gvfsdaemon.c	(original)
+++ trunk/daemon/gvfsdaemon.c	Mon Jan 14 13:58:46 2008
@@ -483,7 +483,7 @@
   if (data->fd == -1)
     {
       /* The fd connection failed, abort the whole thing */
-      g_warning (_("Failed to accept client: %s"), _("accept of extra fd failed"));
+      g_warning ("Failed to accept client: %s", "accept of extra fd failed");
       dbus_connection_unref (dbus_conn);
       goto error_out;
     }
@@ -492,7 +492,7 @@
   if (!dbus_connection_add_filter (dbus_conn, peer_to_peer_filter_func, daemon, NULL) ||
       !dbus_connection_add_filter (dbus_conn, daemon_message_func, daemon, NULL))
     {
-      g_warning (_("Failed to accept client: %s"), _("object registration failed"));
+      g_warning ("Failed to accept client: %s", "object registration failed");
       dbus_connection_unref (dbus_conn);
       close (data->fd);
       goto error_out;
@@ -730,7 +730,7 @@
   else if (data->fd == -1)
     {
       /* Didn't accept a dbus connection, and there is no need for one now */
-      g_warning (_("Failed to accept client: %s"), _("accept of extra fd failed"));
+      g_warning ("Failed to accept client: %s", "accept of extra fd failed");
       dbus_server_disconnect (data->server);
       dbus_server_unref (data->server);
       new_connection_data_free (data);



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