delete: Unbreak string freeze

Quotes should definitively part of the translation, but we are in
string freeze now - revert this when we get a string freeze approval
or after the freeze ends.

https://bugzilla.gnome.org/show_bug.cgi?id=684306
This commit is contained in:
Florian Müllner 2012-09-19 11:12:31 +02:00
parent 909cd82bea
commit 09713c5fd4

View File

@ -108,7 +108,11 @@ delete_ping_timeout_func (MetaDisplay *display,
/* Translators: %s is a window title */ /* Translators: %s is a window title */
if (window_title) if (window_title)
tmp = g_strdup_printf (_("“%s” is not responding."), window_title); {
char *title = g_strdup_printf ("“%s”", window_title);
tmp = g_strdup_printf (_("%s is not responding."), title);
g_free (title);
}
else else
tmp = g_strdup (_("Application is not responding.")); tmp = g_strdup (_("Application is not responding."));