aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@src.gnome.org>2007-12-08 09:17:29 +0800
committerCosimo Cecchi <cosimoc@src.gnome.org>2007-12-08 09:17:29 +0800
commit54c4609eb6687162156907152a34e2f7c6f29e8c (patch)
tree2d5678d792b214d99cda2d6769bae97c134c3050 /src
parent458857bb5003820eefa9880901cd9b4e388b5898 (diff)
downloadgsoc2013-epiphany-54c4609eb6687162156907152a34e2f7c6f29e8c.tar
gsoc2013-epiphany-54c4609eb6687162156907152a34e2f7c6f29e8c.tar.gz
gsoc2013-epiphany-54c4609eb6687162156907152a34e2f7c6f29e8c.tar.bz2
gsoc2013-epiphany-54c4609eb6687162156907152a34e2f7c6f29e8c.tar.lz
gsoc2013-epiphany-54c4609eb6687162156907152a34e2f7c6f29e8c.tar.xz
gsoc2013-epiphany-54c4609eb6687162156907152a34e2f7c6f29e8c.tar.zst
gsoc2013-epiphany-54c4609eb6687162156907152a34e2f7c6f29e8c.zip
Add secondary text in confirmation dialogs for "Remove All" items in the PDM.
Fix bug #499074. svn path=/trunk/; revision=7761
Diffstat (limited to 'src')
-rw-r--r--src/pdm-dialog.c18
1 files changed, 12 insertions, 6 deletions
diff --git a/src/pdm-dialog.c b/src/pdm-dialog.c
index 7e536f6d5..8f481055b 100644
--- a/src/pdm-dialog.c
+++ b/src/pdm-dialog.c
@@ -389,17 +389,21 @@ pdm_dialog_remove_all_button_clicked_cb (GtkWidget *button,
PdmActionInfo *action)
{
GtkWidget *dialog, *dialog_button, *image, *parent;
- gchar *title, *message;
+ gchar *message, *secondary_text;
switch (action->remove_all_id)
{
case PROP_PASSWORDS_REMOVE_ALL:
- title = _("Remove all passwords?");
- message = _("Do you really want to remove all stored passwords?");
+ message = _("Delete all passwords?");
+ secondary_text = _("Removing all passwords means that the web "
+ "browser will forget all username and password "
+ "combinations that you asked it to remember in the past.");
break;
case PROP_COOKIES_REMOVE_ALL:
- title = _("Remove all cookies?");
- message = _("Do you really want to remove all stored cookies?");
+ message = _("Delete all cookies?");
+ secondary_text = _("Web sites that stored a cookie will no longer "
+ "be able to track you. However, you may have "
+ "to re-enter your username and password on several sites.");
break;
default:
return;
@@ -418,10 +422,12 @@ pdm_dialog_remove_all_button_clicked_cb (GtkWidget *button,
image = gtk_image_new_from_stock (GTK_STOCK_CLEAR, GTK_ICON_SIZE_BUTTON);
dialog_button = gtk_dialog_add_button (GTK_DIALOG (dialog), _("Remove _All"), GTK_RESPONSE_ACCEPT);
gtk_button_set_image (GTK_BUTTON (dialog_button), image);
+ gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
+ "%s", secondary_text);
gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_CANCEL);
- gtk_window_set_title (GTK_WINDOW (dialog), title);
+ gtk_window_set_title (GTK_WINDOW (dialog), "");
gtk_window_set_icon_name (GTK_WINDOW (dialog), EPHY_STOCK_EPHY);
g_signal_connect (GTK_WIDGET (dialog), "response",