[Pkg-mozext-commits] [perspectives-extension] 41/72: Perspectives - Add a new string message for private browsing mode

David Prévot taffit at moszumanska.debian.org
Thu Dec 11 02:12:49 UTC 2014


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository perspectives-extension.

commit e4fb143a152076b3d10af1e25775b640835add35
Author: Dave Schaefer <dave.schaefer at gmail.com>
Date:   Wed Oct 22 23:34:10 2014 -0600

    Perspectives - Add a new string message for private browsing mode
    
    It's more clear if we tell users exactly why
    queries are not being sent.
---
 plugin/chrome/content/notaries.js              | 2 +-
 plugin/chrome/locale/de/notaries.properties    | 1 +
 plugin/chrome/locale/en-US/notaries.properties | 1 +
 plugin/chrome/locale/es-MX/notaries.properties | 1 +
 plugin/chrome/locale/fi/notaries.properties    | 1 +
 plugin/chrome/locale/fr/notaries.properties    | 1 +
 plugin/chrome/locale/nl/notaries.properties    | 1 +
 plugin/chrome/locale/pl/notaries.properties    | 1 +
 plugin/chrome/locale/zh-CN/notaries.properties | 1 +
 9 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/plugin/chrome/content/notaries.js b/plugin/chrome/content/notaries.js
index 41d15b5..c45db45 100644
--- a/plugin/chrome/content/notaries.js
+++ b/plugin/chrome/content/notaries.js
@@ -730,7 +730,7 @@ var Perspectives = {
 
 				if(is_private) {
 					Pers_debug.d_print("main", "don't contact notaries in private browsing mode");
-					var text = Perspectives.strbundle.getString("needsPermission"); // TODO: maybe add an additional localization hinting to private browsing mode
+					var text = Perspectives.strbundle.getString("privateBrowsingQueriesDisabled");
 					Pers_statusbar.setStatus(ti.uri, Pers_statusbar.STATE_NEUT, text);
 					ti.reason_str = text;
 					return;
diff --git a/plugin/chrome/locale/de/notaries.properties b/plugin/chrome/locale/de/notaries.properties
index 485beda..59d4a76 100644
--- a/plugin/chrome/locale/de/notaries.properties
+++ b/plugin/chrome/locale/de/notaries.properties
@@ -77,3 +77,4 @@ distrustAllPrompt=Wenn Sie die Warnung verstanden haben und wissen was Sie tun g
 distrustAllPhrase=Das CA System ist kaputt
 distrustAllPhraseWrong=Die eingegebene Phrase ist falsch. Es wurde kein Zertifikat geändert.
 distrustAllSuccess=Es wurden %1$S Zertifikate gefunden. %2$S vertrauenswürdige Zertifikate wurden als "nicht vertrauenswürdig" markiert.
+privateBrowsingQueriesDisabled=Perspectives is set to not contact notaries when in private browsing mode. You can change this in Preferences.
diff --git a/plugin/chrome/locale/en-US/notaries.properties b/plugin/chrome/locale/en-US/notaries.properties
index 67c34a0..44ed837 100644
--- a/plugin/chrome/locale/en-US/notaries.properties
+++ b/plugin/chrome/locale/en-US/notaries.properties
@@ -76,3 +76,4 @@ distrustAllPrompt=If you understand the warning and know what you are doing plea
 distrustAllPhrase=The CA system is broken
 distrustAllPhraseWrong=The entered phrase is wrong. No certificate has been changed.
 distrustAllSuccess=Found %1$S certificates. %2$S trusted certificates have been marked as "untrusted".
+privateBrowsingQueriesDisabled=Perspectives is set to not contact notaries when in private browsing mode. You can change this in Preferences.
diff --git a/plugin/chrome/locale/es-MX/notaries.properties b/plugin/chrome/locale/es-MX/notaries.properties
index f3fdf1a..722f0e1 100644
--- a/plugin/chrome/locale/es-MX/notaries.properties
+++ b/plugin/chrome/locale/es-MX/notaries.properties
@@ -85,3 +85,4 @@ distrustAllPrompt=If you understand the warning and know what you are doing plea
 distrustAllPhrase=The CA system is broken
 distrustAllPhraseWrong=The entered phrase is wrong. No certificate has been changed.
 distrustAllSuccess=Found %1$S certificates. %2$S trusted certificates have been marked as "untrusted".
+privateBrowsingQueriesDisabled=Perspectives is set to not contact notaries when in private browsing mode. You can change this in Preferences.
diff --git a/plugin/chrome/locale/fi/notaries.properties b/plugin/chrome/locale/fi/notaries.properties
index 1518428..587fd29 100644
--- a/plugin/chrome/locale/fi/notaries.properties
+++ b/plugin/chrome/locale/fi/notaries.properties
@@ -82,3 +82,4 @@ distrustAllPrompt=If you understand the warning and know what you are doing plea
 distrustAllPhrase=The CA system is broken
 distrustAllPhraseWrong=The entered phrase is wrong. No certificate has been changed.
 distrustAllSuccess=Found %1$S certificates. %2$S trusted certificates have been marked as "untrusted".
+privateBrowsingQueriesDisabled=Perspectives is set to not contact notaries when in private browsing mode. You can change this in Preferences.
diff --git a/plugin/chrome/locale/fr/notaries.properties b/plugin/chrome/locale/fr/notaries.properties
index e942f91..113557d 100644
--- a/plugin/chrome/locale/fr/notaries.properties
+++ b/plugin/chrome/locale/fr/notaries.properties
@@ -83,3 +83,4 @@ distrustAllPrompt=If you understand the warning and know what you are doing plea
 distrustAllPhrase=The CA system is broken
 distrustAllPhraseWrong=The entered phrase is wrong. No certificate has been changed.
 distrustAllSuccess=Found %1$S certificates. %2$S trusted certificates have been marked as "untrusted".
+privateBrowsingQueriesDisabled=Perspectives is set to not contact notaries when in private browsing mode. You can change this in Preferences.
diff --git a/plugin/chrome/locale/nl/notaries.properties b/plugin/chrome/locale/nl/notaries.properties
index 5e9a052..54150a8 100644
--- a/plugin/chrome/locale/nl/notaries.properties
+++ b/plugin/chrome/locale/nl/notaries.properties
@@ -82,3 +82,4 @@ distrustAllPrompt=If you understand the warning and know what you are doing plea
 distrustAllPhrase=The CA system is broken
 distrustAllPhraseWrong=The entered phrase is wrong. No certificate has been changed.
 distrustAllSuccess=Found %1$S certificates. %2$S trusted certificates have been marked as "untrusted".
+privateBrowsingQueriesDisabled=Perspectives is set to not contact notaries when in private browsing mode. You can change this in Preferences.
diff --git a/plugin/chrome/locale/pl/notaries.properties b/plugin/chrome/locale/pl/notaries.properties
index 3bf8f6c..4247b72 100644
--- a/plugin/chrome/locale/pl/notaries.properties
+++ b/plugin/chrome/locale/pl/notaries.properties
@@ -82,3 +82,4 @@ distrustAllPrompt=If you understand the warning and know what you are doing plea
 distrustAllPhrase=The CA system is broken
 distrustAllPhraseWrong=The entered phrase is wrong. No certificate has been changed.
 distrustAllSuccess=Found %1$S certificates. %2$S trusted certificates have been marked as "untrusted".
+privateBrowsingQueriesDisabled=Perspectives is set to not contact notaries when in private browsing mode. You can change this in Preferences.
diff --git a/plugin/chrome/locale/zh-CN/notaries.properties b/plugin/chrome/locale/zh-CN/notaries.properties
index 8755649..2aca41f 100644
--- a/plugin/chrome/locale/zh-CN/notaries.properties
+++ b/plugin/chrome/locale/zh-CN/notaries.properties
@@ -82,3 +82,4 @@ distrustAllPrompt=If you understand the warning and know what you are doing plea
 distrustAllPhrase=The CA system is broken
 distrustAllPhraseWrong=The entered phrase is wrong. No certificate has been changed.
 distrustAllSuccess=Found %1$S certificates. %2$S trusted certificates have been marked as "untrusted".
+privateBrowsingQueriesDisabled=Perspectives is set to not contact notaries when in private browsing mode. You can change this in Preferences.

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/perspectives-extension.git



More information about the Pkg-mozext-commits mailing list