From 818320e74835075e5cb825792dd3b78156c707cf Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sun, 4 Sep 2011 11:24:32 -0400 Subject: [PATCH] Don't show a title on alerts This goes better with the general style of similar alerts throughout GNOME 3, and as has been pointed out in bug 591735, 'Mutter' is a somewhat unfortunate title in several lanuages, such as English and German. --- src/core/util.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/core/util.c b/src/core/util.c index d55cbc9b7..2d6a289fb 100644 --- a/src/core/util.c +++ b/src/core/util.c @@ -636,8 +636,7 @@ meta_show_dialog (const char *type, append_argument (args, "--class"); append_argument (args, "mutter-dialog"); append_argument (args, "--title"); - /* Translators: This is the title used on dialog boxes */ - append_argument (args, _("Mutter")); + append_argument (args, ""); append_argument (args, "--text"); append_argument (args, message);