diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-01-09 07:40:14 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-01-09 07:40:14 +0800 |
commit | 8ca71da1520ac99d2adb663727b7a6284fbf0ac2 (patch) | |
tree | dbe44f12e93781240a5bcd2241ffad2c3aaa433f /embed/mozilla | |
parent | 01c3079aa89f17eea022c0740a287855fbad786e (diff) | |
download | gsoc2013-epiphany-8ca71da1520ac99d2adb663727b7a6284fbf0ac2.tar gsoc2013-epiphany-8ca71da1520ac99d2adb663727b7a6284fbf0ac2.tar.gz gsoc2013-epiphany-8ca71da1520ac99d2adb663727b7a6284fbf0ac2.tar.bz2 gsoc2013-epiphany-8ca71da1520ac99d2adb663727b7a6284fbf0ac2.tar.lz gsoc2013-epiphany-8ca71da1520ac99d2adb663727b7a6284fbf0ac2.tar.xz gsoc2013-epiphany-8ca71da1520ac99d2adb663727b7a6284fbf0ac2.tar.zst gsoc2013-epiphany-8ca71da1520ac99d2adb663727b7a6284fbf0ac2.zip |
Improve dialogue wording. Thanks to spark for his help.
2005-01-09 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/GtkNSSSecurityWarningDialogs.cpp:
Improve dialogue wording. Thanks to spark for his help.
Diffstat (limited to 'embed/mozilla')
-rw-r--r-- | embed/mozilla/GtkNSSSecurityWarningDialogs.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/embed/mozilla/GtkNSSSecurityWarningDialogs.cpp b/embed/mozilla/GtkNSSSecurityWarningDialogs.cpp index 631e1f04d..0517189a7 100644 --- a/embed/mozilla/GtkNSSSecurityWarningDialogs.cpp +++ b/embed/mozilla/GtkNSSSecurityWarningDialogs.cpp @@ -94,7 +94,7 @@ GtkNSSSecurityWarningDialogs::ConfirmEnteringSecure (nsIInterfaceRequestor *aCon _("Security Notice"), _("This page is loaded over a secure connection."), _("You can always see the security status of a page from " - "the icon on the left side of the statusbar."), + "the padlock icon on the statusbar."), nsnull, _retval); *_retval = PR_TRUE; @@ -137,8 +137,8 @@ GtkNSSSecurityWarningDialogs::ConfirmMixedMode (nsIInterfaceRequestor *aContext, GTK_MESSAGE_WARNING, GTK_BUTTONS_OK, _("Security Warning"), - _("Some parts of this page are loaded over an unencrypted connection."), - _("Some information you see or enter will be sent over an unencrypted " + _("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); @@ -153,13 +153,13 @@ GtkNSSSecurityWarningDialogs::ConfirmPostToInsecure (nsIInterfaceRequestor *aCon DoDialog (aContext, INSECURE_SUBMIT_PREF, GTK_MESSAGE_WARNING, - GTK_BUTTONS_OK, + GTK_BUTTONS_CANCEL, _("Security Warning"), - _("Send this information over an unencrypted connection?"), + _("Send this information over an insecure connection?"), _("The information you have entered will be sent over an " - "unencrypted connection, and could easily be intercepted " + "insecure connection, and could easily be intercepted " "by a third party."), - _("Send anyway"), + _("Send"), _retval); *_retval = PR_TRUE; @@ -175,12 +175,12 @@ GtkNSSSecurityWarningDialogs::ConfirmPostToInsecureFromSecure (nsIInterfaceReque GTK_MESSAGE_WARNING, GTK_BUTTONS_CANCEL, _("Security Warning"), - _("Send this information over an unencrypted connection?"), - _("Although this page was loaded over an encrypted connection, " + _("Send this information over an insecure connection?"), + _("Although this page was loaded over a secure connection, " "the information you have entered will be sent over an " - "unencrypted connection, and could easily be intercepted by " + "insecure connection, and could easily be intercepted by " "a third party."), - _("Send anyway"), + _("Send"), _retval); return NS_OK; |