aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2005-01-11 05:05:04 +0800
committerChristian Persch <chpe@src.gnome.org>2005-01-11 05:05:04 +0800
commit45208042e2ed00e56542ade4814814f8f914e932 (patch)
tree035a0ae4f64a70f168b0c3e7dab9127bdad08538 /embed
parent4de557a82bcd2114e84c6d16ceb18429019eb391 (diff)
downloadgsoc2013-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.
Diffstat (limited to 'embed')
-rw-r--r--embed/mozilla/GtkNSSSecurityWarningDialogs.cpp6
1 files changed, 3 insertions, 3 deletions
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);