diff options
-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); |