2005-08-17 Christopher Aillon <caillon@redhat.com>

* gnome/applet/applet.c: More translatable string cleanup


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@865 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Christopher Aillon 2005-08-17 16:25:37 +00:00 committed by Chris Aillon
parent 1c4fd41c6f
commit 1091b5520d
2 changed files with 11 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2005-08-17 Christopher Aillon <caillon@redhat.com>
* gnome/applet/applet.c: More translatable string cleanup
2005-08-17 Dan Williams <dcbw@redhat.com>
* gnome/applet/applet-dbus-info.c

View file

@ -582,13 +582,17 @@ static gboolean nmwa_show_vpn_login_banner_dialog (char *message)
void nmwa_schedule_vpn_login_banner_dialog (NMWirelessApplet *applet, const char *vpn_name, const char *banner)
{
char *msg;
char *msg2;
g_return_if_fail (applet != NULL);
g_return_if_fail (vpn_name != NULL);
g_return_if_fail (banner != NULL);
msg = g_strdup_printf (_("<span weight=\"bold\" size=\"larger\">VPN Login Message</span>\n\n"
"VPN connection '%s' said:\n\n\"%s\""), vpn_name, banner);
msg2 = g_strdup_printf (_("VPN connection '%s' said:"), vpn_name);
msg = g_strdup_printf (_("<span weight=\"bold\" size=\"larger\">%s</span>\n\n"
"%s\n\n\"%s\""), , _("VPN Login Message"), msg2, banner);
g_free (msg2);
g_idle_add ((GSourceFunc) nmwa_show_vpn_login_banner_dialog, msg);
}