diff options
author | Claude Paroz <claude@2xlibre.net> | 2010-01-05 15:39:50 -0500 |
---|---|---|
committer | Thomas Thurman <tthurman@gnome.org> | 2010-01-05 15:39:50 -0500 |
commit | df618c9e91d8440d93cf3fcb9a1750233513afec (patch) | |
tree | 6146530a7bfbd168b0e3adea57d57b2630c530a3 /src/core/delete.c | |
parent | 7aa54b5a23c382879c4f9861e9fa16488c271a1f (diff) | |
download | metacity-df618c9e91d8440d93cf3fcb9a1750233513afec.tar.gz |
Remove markup from translated string
Diffstat (limited to 'src/core/delete.c')
-rw-r--r-- | src/core/delete.c | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/src/core/delete.c b/src/core/delete.c index b7f78129..8feb08b5 100644 --- a/src/core/delete.c +++ b/src/core/delete.c @@ -77,7 +77,7 @@ delete_ping_timeout_func (MetaDisplay *display, { MetaWindow *window = user_data; char *window_title; - gchar *window_content; + gchar *window_content, *tmp; GPid dialog_pid; meta_topic (META_DEBUG_PING, @@ -92,11 +92,14 @@ delete_ping_timeout_func (MetaDisplay *display, window_title = g_locale_from_utf8 (window->title, -1, NULL, NULL, NULL); - window_content = g_strdup_printf( - _("<big><b><tt>%s</tt> is not responding.</b></big>\n\n" - "<i>You may choose to wait a short while for it to " - "continue or force the application to quit entirely.</i>"), - window_title); + /* Translators: %s is a window title */ + tmp = g_strdup_printf (_("<tt>%s</tt> is not responding."), + window_title); + window_content = g_strdup_printf ( + "<big><b>%s</b></big>\n\n<i>%s</i>", + tmp, + _("You may choose to wait a short while for it to " + "continue or force the application to quit entirely.")); g_free (window_title); @@ -108,6 +111,7 @@ delete_ping_timeout_func (MetaDisplay *display, NULL, NULL); g_free (window_content); + g_free (tmp); window->dialog_pid = dialog_pid; g_child_watch_add (dialog_pid, dialog_exited, window); |