aboutsummaryrefslogtreecommitdiffstats
path: root/src/bookmarks
diff options
context:
space:
mode:
Diffstat (limited to 'src/bookmarks')
-rw-r--r--src/bookmarks/ephy-bookmarks-editor.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c
index 514e51280..947d31911 100644
--- a/src/bookmarks/ephy-bookmarks-editor.c
+++ b/src/bookmarks/ephy-bookmarks-editor.c
@@ -458,17 +458,13 @@ delete_topic_dialog_construct (GtkWindow *parent,
const char *topic)
{
GtkWidget *dialog;
- char *str;
-
- str = g_strdup_printf (_("Delete topic %s?"), topic);
dialog = gtk_message_dialog_new (GTK_WINDOW (parent),
GTK_DIALOG_MODAL,
GTK_MESSAGE_WARNING,
GTK_BUTTONS_CANCEL,
- str);
-
- g_free (str);
+ _("Delete topic \"%s\"?"),
+ topic);
gtk_window_set_title (GTK_WINDOW (dialog), _("Delete this topic?"));
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),