2005-08-12 Robert Love <rml@novell.com>

* src/nm-netlink.monitor.c: don't translate "%s" (fix b.g.o #172391)


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@839 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Robert Love
2005-08-12 19:06:09 +00:00
committed by Robert Love
parent f3311defbc
commit f30fb3f7db
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2005-08-12 Robert Love <rml@novell.com>
* src/nm-netlink.monitor.c: don't translate "%s" (fix b.g.o #172391)
2005-08-11 Robert Love <rml@novell.com>
* gnome/applet/applet.c: mark string as translatable.

View File

@@ -532,7 +532,7 @@ receive_pending_bytes (GIOChannel *channel,
{
g_set_error (error, NM_NETLINK_MONITOR_ERROR,
NM_NETLINK_MONITOR_ERROR_READING_FROM_SOCKET,
_("%s"), g_strerror (saved_errno));
"%s", g_strerror (saved_errno));
succeeded = FALSE;
goto out;
}