Remove a translation from a g_warning call
authorMike Gorse <mgorse@suse.com>
Mon, 30 Apr 2012 20:52:11 +0000 (15:52 -0500)
committerMike Gorse <mgorse@suse.com>
Mon, 30 Apr 2012 20:52:11 +0000 (15:52 -0500)
    The consensus seems to be that messages written out as a result of calls to
    g_warning/g_log should ot be translated; ie:
    http://mail.gnome.org/archives/desktop-devel-list/2011-March/msg00070.html

atk-adaptor/bridge.c

index 08e72fc..3a28faf 100644 (file)
@@ -588,7 +588,7 @@ setup_bus (void)
   server = dbus_server_listen(spi_global_app_data->app_bus_addr, &err);
   if (server == NULL)
   {
-    g_warning (_("atk-bridge: Couldn't listen on dbus server: %s"), err.message);
+    g_warning ("atk-bridge: Couldn't listen on dbus server: %s", err.message);
     dbus_error_init (&err);
     spi_global_app_data->app_bus_addr [0] = '\0';
     g_main_context_unref (spi_global_app_data->main_context);