From 328391e19d40584487bfcccf770b4419de0230d3 Mon Sep 17 00:00:00 2001 From: Robert Love Date: Fri, 12 Aug 2005 19:11:30 +0000 Subject: [PATCH] 2005-08-12 Robert Love * gnome/applet/applet-dbus.c: remove newlines from translatable strings--not needed here anyway. (fix b.g.o #309011) git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@840 4912f4e0-d625-0410-9fb7-b9a5a253dbdc --- ChangeLog | 2 ++ gnome/applet/applet-dbus.c | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index b0e872f6e6..86a709303a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2005-08-12 Robert Love + * gnome/applet/applet-dbus.c: remove newlines from translatable + strings--not needed here anyway. (fix b.g.o #309011) * src/nm-netlink.monitor.c: don't translate "%s" (fix b.g.o #172391) 2005-08-11 Robert Love diff --git a/gnome/applet/applet-dbus.c b/gnome/applet/applet-dbus.c index 77c996f853..9deb511eb8 100644 --- a/gnome/applet/applet-dbus.c +++ b/gnome/applet/applet-dbus.c @@ -595,12 +595,12 @@ static DBusHandlerResult nmwa_dbus_filter (DBusConnection *connection, DBusMessa if (dev && net) { - char *string = g_strdup_printf (_("Connection to the wireless network '%s' failed.\n"), net); + char *string = g_strdup_printf (_("Connection to the wireless network '%s' failed."), net); nmwa_schedule_warning_dialog (applet, string); g_free (string); } else if (dev) - nmwa_schedule_warning_dialog (applet, _("Connection to the wired network failed.\n")); + nmwa_schedule_warning_dialog (applet, _("Connection to the wired network failed.")); } else if (dbus_message_is_signal (message, NM_DBUS_INTERFACE, "DeviceActivationStage")) {