From 909cd82beaaae147143031d408d293e4cbd87226 Mon Sep 17 00:00:00 2001 From: William Jon McCann Date: Tue, 18 Sep 2012 12:10:18 -0400 Subject: [PATCH] Minor improvements to the not responding dialog https://bugzilla.gnome.org/show_bug.cgi?id=684306 --- src/core/delete.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/core/delete.c b/src/core/delete.c index b9c27dbd0..927661643 100644 --- a/src/core/delete.c +++ b/src/core/delete.c @@ -108,17 +108,12 @@ delete_ping_timeout_func (MetaDisplay *display, /* Translators: %s is a window title */ if (window_title) - { - gchar *bold; - bold = g_markup_printf_escaped ("%s", window_title); - tmp = g_strdup_printf (_("%s is not responding."), bold); - g_free (bold); - } + tmp = g_strdup_printf (_("ā€œ%sā€ is not responding."), window_title); else tmp = g_strdup (_("Application is not responding.")); window_content = g_strdup_printf ( - "%s\n\n%s", + "%s\n\n%s", tmp, _("You may choose to wait a short while for it to " "continue or force the application to quit entirely."));