diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-01-11 05:05:04 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-01-11 05:05:04 +0800 |
commit | 45208042e2ed00e56542ade4814814f8f914e932 (patch) | |
tree | 035a0ae4f64a70f168b0c3e7dab9127bdad08538 | |
parent | 4de557a82bcd2114e84c6d16ceb18429019eb391 (diff) | |
download | gsoc2013-epiphany-45208042e2ed00e56542ade4814814f8f914e932.tar gsoc2013-epiphany-45208042e2ed00e56542ade4814814f8f914e932.tar.gz gsoc2013-epiphany-45208042e2ed00e56542ade4814814f8f914e932.tar.bz2 gsoc2013-epiphany-45208042e2ed00e56542ade4814814f8f914e932.tar.lz gsoc2013-epiphany-45208042e2ed00e56542ade4814814f8f914e932.tar.xz gsoc2013-epiphany-45208042e2ed00e56542ade4814814f8f914e932.tar.zst gsoc2013-epiphany-45208042e2ed00e56542ade4814814f8f914e932.zip |
Alerts should not have terminating periods in the primary text.
2005-01-10 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/GtkNSSSecurityWarningDialogs.cpp:
Alerts should not have terminating periods in the primary text.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | embed/mozilla/GtkNSSSecurityWarningDialogs.cpp | 6 |
2 files changed, 9 insertions, 3 deletions
@@ -1,3 +1,9 @@ +2005-01-10 Christian Persch <chpe@cvs.gnome.org> + + * embed/mozilla/GtkNSSSecurityWarningDialogs.cpp: + + Alerts should not have terminating periods in the primary text. + 2005-01-10 Jean-François Rameau <jframeau@cvs.gnome.org> * embed/print-dialog.c: (ephy_print_get_print_info): diff --git a/embed/mozilla/GtkNSSSecurityWarningDialogs.cpp b/embed/mozilla/GtkNSSSecurityWarningDialogs.cpp index 0ad61411b..4ec42b25a 100644 --- a/embed/mozilla/GtkNSSSecurityWarningDialogs.cpp +++ b/embed/mozilla/GtkNSSSecurityWarningDialogs.cpp @@ -90,7 +90,7 @@ GtkNSSSecurityWarningDialogs::ConfirmEnteringSecure (nsIInterfaceRequestor *aCon GTK_BUTTONS_OK, GTK_RESPONSE_OK, _("Security Notice"), - _("This page is loaded over a secure connection."), + _("This page is loaded over a secure connection"), _("You can always see the security status of a page from " "the padlock icon on the statusbar."), nsnull, _retval); @@ -109,7 +109,7 @@ GtkNSSSecurityWarningDialogs::ConfirmEnteringWeak (nsIInterfaceRequestor *aConte GTK_BUTTONS_OK, GTK_RESPONSE_OK, _("Security Warning"), - _("This page is loaded over a low security connection."), + _("This page is loaded over a low security connection"), _("Any information you see or enter on this page could " "easily be intercepted by a third party."), nsnull, _retval); @@ -137,7 +137,7 @@ GtkNSSSecurityWarningDialogs::ConfirmMixedMode (nsIInterfaceRequestor *aContext, GTK_BUTTONS_OK, GTK_RESPONSE_OK, _("Security Warning"), - _("Some parts of this page are loaded over an insecure connection."), + _("Some parts of this page are loaded over an insecure connection"), _("Some information you see or enter will be sent over an insecure " "connection, and could easily be intercepted by a third party."), nsnull, _retval); |