aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPiers Cornwell <piers@gnome.org>2004-03-19 00:52:57 +0800
committerPiers Cornwell <piers@src.gnome.org>2004-03-19 00:52:57 +0800
commitfeeb765e424dbbdeb63445f2d3ea63b5feb8dbfb (patch)
tree4aa100a5e7c33918912bf20b7c37c78263fb826c
parent6c77c6b5406ee612da3708e88f48d78dd5cb2863 (diff)
downloadgsoc2013-epiphany-feeb765e424dbbdeb63445f2d3ea63b5feb8dbfb.tar
gsoc2013-epiphany-feeb765e424dbbdeb63445f2d3ea63b5feb8dbfb.tar.gz
gsoc2013-epiphany-feeb765e424dbbdeb63445f2d3ea63b5feb8dbfb.tar.bz2
gsoc2013-epiphany-feeb765e424dbbdeb63445f2d3ea63b5feb8dbfb.tar.lz
gsoc2013-epiphany-feeb765e424dbbdeb63445f2d3ea63b5feb8dbfb.tar.xz
gsoc2013-epiphany-feeb765e424dbbdeb63445f2d3ea63b5feb8dbfb.tar.zst
gsoc2013-epiphany-feeb765e424dbbdeb63445f2d3ea63b5feb8dbfb.zip
Make secure description better (Bug #136443).
2004-03-18 Piers Cornwell <piers@gnome.org> * src/pdm-dialog.c: (show_cookies_properties): Make secure description better (Bug #136443). * src/window-commands.c: (window_cmd_help_about): Add my email address. * embed/mozilla/GtkNSSDialogs.cpp: Include nsReadableUtils.h.
-rw-r--r--ChangeLog14
-rw-r--r--embed/mozilla/GtkNSSDialogs.cpp1
-rwxr-xr-xsrc/pdm-dialog.c4
-rw-r--r--src/window-commands.c2
4 files changed, 18 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index cfacbf3da..d4e8ca3f6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
+2004-03-18 Piers Cornwell <piers@gnome.org>
+
+ * src/pdm-dialog.c: (show_cookies_properties):
+
+ Make secure description better (Bug #136443).
+
+ * src/window-commands.c: (window_cmd_help_about):
+
+ Add my email address.
+
+ * embed/mozilla/GtkNSSDialogs.cpp:
+
+ Include nsReadableUtils.h.
+
2004-03-18 Christian Persch <chpe@cvs.gnome.org>
* src/bookmarks/ephy-bookmarks-editor.c: (cmd_bookmarks_import):
diff --git a/embed/mozilla/GtkNSSDialogs.cpp b/embed/mozilla/GtkNSSDialogs.cpp
index 37414822a..ab96b0d14 100644
--- a/embed/mozilla/GtkNSSDialogs.cpp
+++ b/embed/mozilla/GtkNSSDialogs.cpp
@@ -46,6 +46,7 @@
#include "nsICRLInfo.h"
#include "nsISimpleEnumerator.h"
#include "nsIArray.h"
+#include "nsReadableUtils.h"
#include <gconf/gconf-client.h>
#include <gtk/gtkdialog.h>
diff --git a/src/pdm-dialog.c b/src/pdm-dialog.c
index 43525fedd..89eda8f8c 100755
--- a/src/pdm-dialog.c
+++ b/src/pdm-dialog.c
@@ -911,7 +911,7 @@ show_cookies_properties (PdmDialog *dialog,
gtk_widget_show (label);
gtk_table_attach_defaults (GTK_TABLE (table), label, 1, 2, 1, 2);
- str = g_strconcat ("<b>", _("Secure:"), "</b>", NULL);
+ str = g_strconcat ("<b>", _("Send for:"), "</b>", NULL);
label = gtk_label_new (str);
g_free (str);
gtk_label_set_use_markup (GTK_LABEL (label), TRUE);
@@ -920,7 +920,7 @@ show_cookies_properties (PdmDialog *dialog,
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 2, 3,
GTK_FILL, GTK_FILL, 0, 0);
- label = gtk_label_new (info->is_secure ? _("Yes") : _("No") );
+ label = gtk_label_new (info->is_secure ? _("Encrypted connections only") : _("Any type of connection") );
gtk_label_set_selectable (GTK_LABEL (label), TRUE);
gtk_misc_set_alignment (GTK_MISC (label), 0, 0);
gtk_widget_show (label);
diff --git a/src/window-commands.c b/src/window-commands.c
index 6ed3fa9ec..c07c54f87 100644
--- a/src/window-commands.c
+++ b/src/window-commands.c
@@ -946,7 +946,7 @@ window_cmd_help_about (GtkAction *action,
char *documenters[] = {
"Patanjali Somayaji <patanjali@codito.com>",
"David Bordoley <bordoley@msu.edu>",
- "Piers Cornwell",
+ "Piers Cornwell <piers@gnome.org>",
NULL
};