tor-commits
Threads by month
- ----- 2025 -----
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
March 2013
- 21 participants
- 1373 discussions

r26098: {website} Adding a project to expand stem's tests to more dedicatedly (website/trunk/getinvolved/en)
by Damian Johnson 09 Mar '13
by Damian Johnson 09 Mar '13
09 Mar '13
Author: atagar
Date: 2013-03-09 06:41:12 +0000 (Sat, 09 Mar 2013)
New Revision: 26098
Modified:
website/trunk/getinvolved/en/volunteer.wml
Log:
Adding a project to expand stem's tests to more dedicatedly test tor
This is a project that I have been batting around with Nick for a bit. It
doesn't include the 'grand vision' he wants for covering inter-network
components, but it would provide dedicated tests for a very substantial portion
of Tor's codebase.
While I think a more complicated network simulator and testing suite would
yield greater benefits, I also think it would be *vastly* harder to make and
hence quite likely to never happen. Presently our automated testing of Tor is
pretty poor and there's no need to let the perfect be the enemy of the good on
this.
Modified: website/trunk/getinvolved/en/volunteer.wml
===================================================================
--- website/trunk/getinvolved/en/volunteer.wml 2013-03-09 02:40:52 UTC (rev 26097)
+++ website/trunk/getinvolved/en/volunteer.wml 2013-03-09 06:41:12 UTC (rev 26098)
@@ -660,7 +660,8 @@
<p>
<b>Project Ideas:</b><br />
- <i><a href="#stemUsability">Stem Usability and Porting</a></i>
+ <i><a href="#stemUsability">Stem Usability and Porting</a></i><br />
+ <i><a href="#stemTestingForTor">Stem Tests for Tor</a></i>
</p>
<a id="project-txtorcon"></a>
@@ -1694,6 +1695,37 @@
<b>As part of your application for this project please write a script that does something interesting with stem.</b> Bonus points if this is something that we can <a href="https://stem.torproject.org/tutorial.html">make a tutorial</a> around!
</p>
+ <a id="stemTestingForTor"></a>
+ <li>
+ <b>Stem Tests for Tor</b>
+ <br>
+ Effort Level: <i>Medium</i>
+ <br>
+ Skill Level: <i>Medium</i>
+ <br>
+ Likely Mentors: <i>Damian (atagar)</i>
+ <p>
+ Stem is a library for interacting with Tor (see '<a href="#stemUsability">Stem Usability and Porting</a>' above for a summary). The library has both <a href="https://gitweb.torproject.org/stem.git/tree/HEAD:/test/unit">unit</a> and <a href="https://gitweb.torproject.org/stem.git/tree/HEAD:/test/integ">integration</a> tests. The unit tests provide a quick, direct test of stem's codebase while the integration test exercises its functionality against a live instance of Tor.
+ </p>
+
+ <p>
+ Stem's integration tests have thus far been (unsurprisingly) designed to test stem but there's no need for them to be limited to that. Stem is a complete implementation of Tor's <a href="https://gitweb.torproject.org/torspec.git/blob/HEAD:/control-spec.txt">control-spec</a> and <a href="https://gitweb.torproject.org/torspec.git/blob/HEAD:/dir-spec.txt">dir-spec</a>. As such, stem's tests could be easily expanded to more dedicatedly test behavior involved in those portions of Tor's codebase, as well as provide a smoke test for its general functionality.
+ </p>
+
+ <p>
+ This project would involve several components:
+ </p>
+
+ <ol>
+ <li>Determine what kind of tests we need. <b>This should be done during the application phase</b> by <a href="https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-dev/">contacting tor-dev@</a>. Hopefully this will give us an idea of what would be the most useful kind of tests of this nature for Tor development.</li>
+ <li>To be useful our integration tests need to continually run against the present tip of Tor's codebase. To do this we'll want to (1) fetch and compile the latest version of Tor, (2) run our integration tests against it, (3) compose the results as an html formatted email, and send it to a list. (<a href="https://trac.torproject.org/8261">ticket</a>)</li>
+ <li>Implement the new suite of integration tests for Tor. This will likely include expanding Tor to support better testability. One useful candidate, for instance, would be a controller method to fetch our own descriptor. This would let us easily test various configurations to see if they provide valid descriptor content.</li>
+ </ol>
+
+ <p>
+ <b>As part of your application for this project please write some code to expand stem's tests.</b> Bonus points if it impelments one of your suggestions for better testing Tor!
+ </p>
+
<!--
<a id="tailsServer"></a>
<li>
1
0
commit 947a97e75feb3a176b87cc971d47165f0298e5b1
Author: Mike Perry <mikeperry-git(a)fscked.org>
Date: Fri Mar 8 19:32:52 2013 -0800
Bump version.
---
src/install.rdf | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/install.rdf b/src/install.rdf
index 02efd95..eb1d505 100644
--- a/src/install.rdf
+++ b/src/install.rdf
@@ -6,7 +6,7 @@
<em:name>Torbutton</em:name>
<em:creator>Mike Perry</em:creator>
<em:id>torbutton(a)torproject.org</em:id>
- <em:version>1.5.0</em:version>
+ <em:version>1.5.1</em:version>
<em:homepageURL>https://www.torproject.org/projects/torbrowser.html.en</em:homepageURL>
<em:optionsURL>chrome://torbutton/content/preferences.xul</em:optionsURL>
<em:iconURL>chrome://torbutton/skin/tor.png</em:iconURL>
1
0

09 Mar '13
commit b40177422daf76bd90f97dc4bcc788b9288e1098
Author: Mike Perry <mikeperry-git(a)fscked.org>
Date: Fri Mar 8 19:20:52 2013 -0800
New translations from transifex.
---
src/chrome/locale/fr/torbutton.properties | 4 ++--
src/chrome/locale/ko/torbutton.properties | 14 +++++++-------
src/chrome/locale/lv/torbutton.properties | 2 +-
src/chrome/locale/pl/torbutton.properties | 2 +-
src/chrome/locale/ru/torbutton.dtd | 10 +++++-----
src/chrome/locale/ru/torbutton.properties | 4 ++--
src/chrome/locale/sv/torbutton.dtd | 24 ++++++++++++------------
src/chrome/locale/sv/torbutton.properties | 2 +-
src/chrome/locale/zh-CN/torbutton.dtd | 12 ++++++------
src/chrome/locale/zh-CN/torbutton.properties | 6 +++---
10 files changed, 40 insertions(+), 40 deletions(-)
diff --git a/src/chrome/locale/fr/torbutton.properties b/src/chrome/locale/fr/torbutton.properties
index 2ba67f1..60cc74c 100644
--- a/src/chrome/locale/fr/torbutton.properties
+++ b/src/chrome/locale/fr/torbutton.properties
@@ -44,8 +44,8 @@ torbutton.title.prompt_torbrowser = Information importante concernant Torbutton
torbutton.popup.prompt_torbrowser = Torbutton fonctionne différemment maintenant: vous ne pouvez plus le désactiver.\n\nNous avons effectué ce changement car il n'est pas sûr d'utiliser Torbutton dans un navigateur qui est également utiliser pour une navigation sans Tor. Ils y avaient trop de bugs ne nous pouvions résoudre.\n\nSi vous désirez vous servir de Firefox normalement, vous devriez déinstaller le Torbutton et télécharger Tor Browsser Bundle. Les propriétés de confidentialité de Tor Browser sont supérieures à celles de Firefox, même s'il est utilisé avec TorButton.\n\nPour supprimer Torbutton, allez dans Outils->Modules Complémentaires->Extensions et cliquez le button Supprimer à coté de Torbutton.
torbutton.popup.short_torbrowser = Information importante concernant Torbutton!\n\nTorbutton est dorénavant toujours activé.\n\nCliquer sur Torbutton pour plus d'informations.
-torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
-torbutton.popup.never_ask_again = Never ask me again
+torbutton.popup.confirm_plugins = Les greffons tels que Flash peuvent nuire à votre anonymat et vie privée.\n\nIls peuvent également contourner Tor afin de révéler votre position actuelle ainsi que votre adresse IP.\n\nÊtes-vous certain de vouloir activer les greffons ?\n\n
+torbutton.popup.never_ask_again = Ne plus me poser la question.
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=Ce site web (%S) a essayé d’accéder aux données d’une image incluse dans un canvas. Puisque ce procédé peut être utilisé pour découvrir des informations concernant votre ordinateur, une image vide a été utilisée à la place cette fois-ci.
diff --git a/src/chrome/locale/ko/torbutton.properties b/src/chrome/locale/ko/torbutton.properties
index 9e740e5..1f4f03c 100644
--- a/src/chrome/locale/ko/torbutton.properties
+++ b/src/chrome/locale/ko/torbutton.properties
@@ -6,7 +6,7 @@ torbutton.panel.plugins.disabled = 플러그인을 활성화하려면 클릭
torbutton.panel.plugins.enabled = 플러그인을 비활성화하려면 클릭
torbutton.panel.label.disabled = Tor 비활성화
torbutton.panel.label.enabled = Tor 활성화
-extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
+extensions.torbutton(a)torproject.org.description = Torbutton은 Tor 설정을 해 주는 버튼을 제공하고, 빠르고 쉽게 개인 브라우징 데이터를 지워 줍니다.
torbutton.popup.history.warning = Torbutton은 다른 Tor 상태에서 열린 탭의 활동을 막았습니다.\n\n이것은 Firefox 버그 409737과 417869 때문에 일어났습니다.\n\n마약 이 팝업이 이유 없이 일어난 것처럼 보인다면, 귀하의 탭 중 하나가 백그라운드에서 다시 열리려고 하는 것이고, 이것이 막혔습니다.\n\n그 탭을 이 Tor 상태에서 열기 위하여, URL 상자에 Enter 키를 누르십시오.\n
torbutton.popup.plugin.warning = Torbutton은 플러그인 콘텐츠의 직접 Tor 로드를 막았습니다.\n\n다른 이름으로 저장을 대신 사용하십시오.\n\n
torbutton.popup.confirm_ca_certs = Torbutton Note: 사용자 정의 인증 기관이 없는 것으로 보입니다. 인증 기관 목록 검사는 느리고, Tor toggle 속도가 느려집니다. 인증 기관 인증서의 격리를 해제하시겠습니까? (만약 이해가 안 되신다면, OK를 눌러도 안전합니다.)
@@ -40,16 +40,16 @@ torbutton.popup.use_tbb = 이것은 Torbutton을 파이어폭스와 함께 사
torbutton.popup.pref_error = Torbutton은 Tor Browser 프로파일 디렉퇴를 업데이트 할 수 없습니다.
torbutton.popup.permission_denied = Tor Browser 디렉토리의 권환을 초기화 하시거나, Tor browser를 새로운 위치로 옮겨 주십시오.
torbutton.popup.device_full = 이 디스크는 가득 찬 것 같습니다. 빈 공간을 만드시거나 새로운 장치로 Tor browser를 옮겨 주십시오.
-torbutton.title.prompt_torbrowser = Important Torbutton Information
-torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
-torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.title.prompt_torbrowser = 중요한 Torbutton 정보
+torbutton.popup.prompt_torbrowser = Torbutton은 지금 다르게 작동합니다. 귀하는 더이상 끌 수 없습니다. 비Tor 브라우징에 사용될 수 있는 브라우져에서 사용하는 것은 위험하기 때문에 이 변화를 만들었습니다. 우리가 어떤 다른 방법으로 고칠 수 없는 수많은 버그도 있습니다. 만약 파이어폭스를 일반적으로 사용하기를 원하신다면 Torbutton을 언인스톨 하시고 Tor Browser Bundle을 다운로드 하십시오. Tor browser의 프라이버시 설정은, 심지어 파이어폭스가 Torbutton과 쓰였더라도, 보통의 파이어폭스의 설정에 우선합니다. Torbutton을 지우시려면, 도구 - 부가 기능 - 확장에 들어가셔셔 Torbutton 옆의 제거 버튼을 누르십시오.
+torbutton.popup.short_torbrowser = 중요한 Torbutton 정보! Torbutton은 이제 항상 활성화됩니다. 더 많은 정보를 위해서는 Torbutton을 누르십시오.
torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
torbutton.popup.never_ask_again = Never ask me again
# Canvas permission prompt. Strings are kept here for ease of translation.
-canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
-canvas.allow=Allow in the Future
+canvas.siteprompt=이 웹사이트(%S)는 캔버스(Canvas)에 있는 이미지 데이터에 접근하려 했습니다. 캔버스 이미지 데이터는 귀하의 컴퓨터 정보를 찾아내는 데에 사용될 수 있기 때문에, 이번에 빈 이미지 데이터가 되돌려졌습니다.
+canvas.allow=나중에 허용
canvas.allowAccessKey=A
-canvas.never=Never for This Site
+canvas.never=이 사이트에서는 절대 금지
canvas.neverAccessKey=e
diff --git a/src/chrome/locale/lv/torbutton.properties b/src/chrome/locale/lv/torbutton.properties
index b4bbb2a..dae75a1 100644
--- a/src/chrome/locale/lv/torbutton.properties
+++ b/src/chrome/locale/lv/torbutton.properties
@@ -6,7 +6,7 @@ torbutton.panel.plugins.disabled = Noklikšķināt, lai iespējotu spraudņus
torbutton.panel.plugins.enabled = Noklikšķināt, lai atspējotu spraudņus
torbutton.panel.label.disabled = Tor ir atspējots
torbutton.panel.label.enabled = Tor ir iespējots
-extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
+extensions.torbutton(a)torproject.org.description = Torbutton ir poga ar kuru konfigurēt Tor iestatījumus, kā arī ātri un ērti attīrīt personīgos pārlūkošanas datus.
torbutton.popup.history.warning = Torbutton bloķēja cilnes aktivitāti, kura ielādēta citā Tor stāvoklī.⏎ ⏎ Tas nepieciešams, lai novērstu Firefox kļūdas nr. 409737 un 417869.⏎ ⏎ Ja šis uznirstošais elements parādījās bez šķietama iemesla, tad kāda no jūsu cilnēm cenšas sevi fonā pārlādēt, taču šis mēģinājums tika bloķēts.⏎ ⏎Lai pārlādētu cilni šajā Tor stāvoklī, lodziņā URL atrašanās vieta nospiediet taustiņu "Ievadīt".⏎ ⏎\n
torbutton.popup.plugin.warning = Torbutton bloķēja tiešu Tor spraudņa satura ielādi. ⏎ ⏎ Tādā gadījumā lietojiet Saglabāt kā. ⏎ ⏎\n
torbutton.popup.confirm_ca_certs = Torbutton piezīme: Šķiet, ka jums nav pielāgotu Sertificēšanas iestāžu. Sertificēšanas iestāžu pārbaude ir laikietilpīga darbība un palēnina Tor pārslēgšanos. Vai vēlaties atspējot sertificēšanas iestāžu sertifikātu izolēšanu? (Ja nesaprotat, kas tieši te ir domāts, tad, ziniet, ka ir droši noklikšķināt Labi jeb OK)
diff --git a/src/chrome/locale/pl/torbutton.properties b/src/chrome/locale/pl/torbutton.properties
index a1bab94..6fc9b10 100644
--- a/src/chrome/locale/pl/torbutton.properties
+++ b/src/chrome/locale/pl/torbutton.properties
@@ -6,7 +6,7 @@ torbutton.panel.plugins.disabled = Kliknij aby włączyć wtyczki
torbutton.panel.plugins.enabled = Kliknij aby wyłączyć wtyczki
torbutton.panel.label.disabled = Tor wyłączony
torbutton.panel.label.enabled = Tor włączony
-extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
+extensions.torbutton(a)torproject.org.description = Torbutton udostępnia przycisk do konfiguracji ustawień Tora oraz szybkiego i łatwego usuwania prywatnych danych z przeglądarki.
torbutton.popup.history.warning = Torbutton zablokował działalność z karty załadowanej w innym stanie Tora.\n\nMa to na celu obejście błędów Firefoksa o numerach 409737 i 417869."\nJeśli to okienko pojawiło się bez powodu, jedna z kart próbuje przeładować się w tle, i to zostało zablokowane.\n\nAby przeładować tę kartę w tym stanie Tora, wciśnij 'enter' w pasku adresu.\n\n
torbutton.popup.plugin.warning = Torbutton zablokował bezpośrednie odwołanie do Sieci przez plugin.\n\nUżyj Zapisz jako.\n\n
torbutton.popup.confirm_ca_certs = Informacja Torbutton: Wygląda na to, że nie posiadasz dodatkowych wpisów Ośrodków Certyfikujących. Posiadanie takiej listy spowalnia przełączanie trybów Tora. Czy chciałbyś wyłączyć sprawdzanie Ośrodków Certyfikujących? (jeśli tego nie rozumiesz, możesz bezpiecznie kliknąć OK)
diff --git a/src/chrome/locale/ru/torbutton.dtd b/src/chrome/locale/ru/torbutton.dtd
index 8651f0d..db9356f 100644
--- a/src/chrome/locale/ru/torbutton.dtd
+++ b/src/chrome/locale/ru/torbutton.dtd
@@ -35,7 +35,7 @@
<!ENTITY torbutton.context_menu.preferences.key "Н">
<!ENTITY torbutton.context_menu.about "О Torbutton...">
<!ENTITY torbutton.context_menu.about.key "О">
-<!ENTITY torbutton.context_menu.downloadUpdate "Download Tor Browser Bundle Update...">
+<!ENTITY torbutton.context_menu.downloadUpdate "Скачать обновления Tor Browser Bundle">
<!ENTITY torbutton.context_menu.downloadUpdate.key "U">
<!ENTITY torbutton.context_menu.cookieProtections "Защита Cookie">
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
@@ -147,7 +147,7 @@
<!ENTITY torbutton.prefs.engine5 "duckduckgo.com">
<!ENTITY torbutton.prefs.fix_google_srch "Удалять сведения о платформе и языке из запросов строки поиска Google">
<!ENTITY torbutton.prefs.transparentTor "Прозрачная торификация (Требует пользовательских transproxy или Tor-маршрутизатора)">
-<!ENTITY torbutton.prefs.block_disk "Don't record browsing history or website data (enables Private Browsing Mode)">
-<!ENTITY torbutton.prefs.restrict_thirdparty "Restrict third party cookies and other tracking data">
-<!ENTITY torbutton.prefs.block_plugins "Disable browser plugins (such as Flash)">
-<!ENTITY torbutton.prefs.resist_fingerprinting "Change details that distinguish you from other Tor Browser users">
+<!ENTITY torbutton.prefs.block_disk "Не сохранять журнал обозревателя и данные с посещаемых сайтов (активирует функцию приватного просмотра)">
+<!ENTITY torbutton.prefs.restrict_thirdparty "Блокировать сторонние куки и другие данные слежения">
+<!ENTITY torbutton.prefs.block_plugins "Отключить расширения браузера (такие как Flash)">
+<!ENTITY torbutton.prefs.resist_fingerprinting "Изменить сведения, отличающие вас от других пользователей Tor Browser">
diff --git a/src/chrome/locale/ru/torbutton.properties b/src/chrome/locale/ru/torbutton.properties
index 5173d58..490a4c6 100644
--- a/src/chrome/locale/ru/torbutton.properties
+++ b/src/chrome/locale/ru/torbutton.properties
@@ -6,7 +6,7 @@ torbutton.panel.plugins.disabled = Нажмите, чтобы включить
torbutton.panel.plugins.enabled = Нажмите, чтобы отключить плагины
torbutton.panel.label.disabled = Tor отключен
torbutton.panel.label.enabled = Tor включен
-extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
+extensions.torbutton(a)torproject.org.description = Torbutton предусматривает кнопку, чтобы настроить Tor и быстро и легко очистить личные данные просмотра.
torbutton.popup.history.warning = Torbutton заблокировал действия с закладки, загруженной из другого состояния Tor.\n\nЭто требуется для обхода дефектов Firefox 409737 417869.\n\nЕсли это предуреждение возникло без причины, одна из ваших закладок попыталась перезагрузиться в фоновом режиме, и эта попытка была пресечена.\n\nДля перезагрузки закладки в текущем состоянии Tor, нажмите 'enter' в адресной строке URL.\n\n
torbutton.popup.plugin.warning = Torbutton заблокировал прямую загрузку плагинов через Tor.\n\nЗагружайте командой Сохранить как.\n\n
torbutton.popup.confirm_ca_certs = Примечание: Очевидно у вас нет индивидуальных Сертификатов Авторизации. Проверка списка Сертификатов Авторизации медленная операция и замедляет переключение Tor. Хотите отключить изоляцию Сертификатов Авторизации? (Если Вы не понимаете о чем речь, безопасней нажать OK)
@@ -48,7 +48,7 @@ torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy an
torbutton.popup.never_ask_again = Never ask me again
# Canvas permission prompt. Strings are kept here for ease of translation.
-canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
+canvas.siteprompt=Этот веб-сайт (% S) пытался получить доступ к данным изображения на холсте. Поскольку данные холсте изображение может быть использовано для получения информации о вашем компьютере, пустые данные изображения были возвращены на этот раз.
canvas.allow=Позволит в будущем
canvas.allowAccessKey=A
canvas.never=Никогда для этого сайта
diff --git a/src/chrome/locale/sv/torbutton.dtd b/src/chrome/locale/sv/torbutton.dtd
index 7447757..447668e 100644
--- a/src/chrome/locale/sv/torbutton.dtd
+++ b/src/chrome/locale/sv/torbutton.dtd
@@ -17,17 +17,17 @@
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "Om Torbutton">
<!ENTITY torbutton.about.version "Version:">
-<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
-<!ENTITY torbutton.about.code "Code Contributors:">
-<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.summary "Skyddar din personliga integritet med Tor.">
+<!ENTITY torbutton.about.code "Övriga programmerare:">
+<!ENTITY torbutton.about.maintainer "Underhålls av:">
<!ENTITY torbutton.about.security_review "Security Review:">
-<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
-<!ENTITY torbutton.about.make_donation "making a donation.">
+<!ENTITY torbutton.about.donate "Om du gillar Tor, överväg att">
+<!ENTITY torbutton.about.make_donation "ge ett bidrag.">
<!ENTITY torbutton.pref_connection.notice "Avaktivera Torbutton för att ändra dessa inställningar.">
<!ENTITY torbutton.pref_connection.more_info "Mer information">
<!ENTITY torbutton.pref_connection_more_info.title "Hjälp">
<!ENTITY torbutton.pref_connection_more_info.text "Torbutton är för närvarande aktiverad. Om du vill ändra dina icke-Tor proxy inställningar, var vänlig avaktivera Torbutton och kom tillbaka hit. Om du vill ändra dina Tor inställningar, var vänlig använd Torbuttons inställningsruta.">
-<!ENTITY torbutton.context_menu.new_identity "New Identity">
+<!ENTITY torbutton.context_menu.new_identity "Ny identitet">
<!ENTITY torbutton.context_menu.new_identity_key "I">
<!ENTITY torbutton.context_menu.toggle "Slå på/av Tor">
<!ENTITY torbutton.context_menu.toggle.key "T">
@@ -35,7 +35,7 @@
<!ENTITY torbutton.context_menu.preferences.key "P">
<!ENTITY torbutton.context_menu.about "Om Torbutton...">
<!ENTITY torbutton.context_menu.about.key "A">
-<!ENTITY torbutton.context_menu.downloadUpdate "Download Tor Browser Bundle Update...">
+<!ENTITY torbutton.context_menu.downloadUpdate "Ladda ner uppdatering för Tor Browser Bundle">
<!ENTITY torbutton.context_menu.downloadUpdate.key "U">
<!ENTITY torbutton.context_menu.cookieProtections "Kak Skydd">
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
@@ -104,7 +104,7 @@
<!ENTITY torbutton.prefs.startup "Startup">
<!ENTITY torbutton.prefs.block_tor_file_net "Block Tor access to network from file:// urls (recommended)">
<!ENTITY torbutton.prefs.block_nontor_file_net "Block Non-Tor access to network from file:// urls">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
+<!ENTITY torbutton.prefs.restore_defaults "Återställ till standard">
<!ENTITY torbutton.prefs.test_settings "Test Settings">
<!ENTITY torbutton.prefs.test_auto "Test my Tor settings after the first time I toggle on every Firefox start">
<!ENTITY torbutton.prefs.disable_livemarks "Disable livemarks updates during Tor usage">
@@ -147,7 +147,7 @@
<!ENTITY torbutton.prefs.engine5 "duckduckgo.com">
<!ENTITY torbutton.prefs.fix_google_srch "Strip platform and language off of Google Search Box queries">
<!ENTITY torbutton.prefs.transparentTor "Transparent Torification (Requires custom transproxy or Tor router)">
-<!ENTITY torbutton.prefs.block_disk "Don't record browsing history or website data (enables Private Browsing Mode)">
-<!ENTITY torbutton.prefs.restrict_thirdparty "Restrict third party cookies and other tracking data">
-<!ENTITY torbutton.prefs.block_plugins "Disable browser plugins (such as Flash)">
-<!ENTITY torbutton.prefs.resist_fingerprinting "Change details that distinguish you from other Tor Browser users">
+<!ENTITY torbutton.prefs.block_disk "Spara ingen historik eller webbplatsdata (aktiverar privat surfning)">
+<!ENTITY torbutton.prefs.restrict_thirdparty "Begränsa tredjepartskakor och annan tracking data">
+<!ENTITY torbutton.prefs.block_plugins "Avaktivera insticksmoduler (så som Flash)">
+<!ENTITY torbutton.prefs.resist_fingerprinting "Ändra detailjer som utmärker dig ifrån andra Tor Browser användare">
diff --git a/src/chrome/locale/sv/torbutton.properties b/src/chrome/locale/sv/torbutton.properties
index 59755c6..d8fb44b 100644
--- a/src/chrome/locale/sv/torbutton.properties
+++ b/src/chrome/locale/sv/torbutton.properties
@@ -6,7 +6,7 @@ torbutton.panel.plugins.disabled = Klicka för att aktivera plugins
torbutton.panel.plugins.enabled = Klicka för att inaktivera plugins
torbutton.panel.label.disabled = Tor inaktiv
torbutton.panel.label.enabled = Tor aktiv
-extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
+extensions.torbutton(a)torproject.org.description = Torbutton ger en knapp för att konfigurera Tor inställningar och snabbt och enkelt rensa privat surfdata.
torbutton.popup.history.warning = Torbutton blockerade aktivitet från en flik laddad i ett annat Tor stadium.\n\nDetta är för att komma runt Firefox buggar 409737 och 417869.\n\nOm denna popup verkar hända av ingen anledning, så är det för att en av dina flikar försökte ladda om sig i bakgrunden, och detta blev blockerat.\n\nFör att ladda om fliken i detta Tor stadium klicka 'enter' i URL address fältet.\n\n
torbutton.popup.plugin.warning = Torbutton blockerade direkt Tor belastning insticksprogram.\n\nAnvänd spara som i stället.\n\n
torbutton.popup.confirm_ca_certs = Torbutton Notering: Det verkar som om du inte har någon anpassad Certifikat Instans. Att undersöka Certifikat Instans listan är långsamt och saktar ner Tor. Skulle du vilja avaktivera isolationen av Certifikat Instans certifikat? (om du inte förstår detta är det säkert att klicka OK)
diff --git a/src/chrome/locale/zh-CN/torbutton.dtd b/src/chrome/locale/zh-CN/torbutton.dtd
index 3746536..b228062 100644
--- a/src/chrome/locale/zh-CN/torbutton.dtd
+++ b/src/chrome/locale/zh-CN/torbutton.dtd
@@ -35,7 +35,7 @@
<!ENTITY torbutton.context_menu.preferences.key "P">
<!ENTITY torbutton.context_menu.about "关于 Torbutton...">
<!ENTITY torbutton.context_menu.about.key "A">
-<!ENTITY torbutton.context_menu.downloadUpdate "Download Tor Browser Bundle Update...">
+<!ENTITY torbutton.context_menu.downloadUpdate "下载 Tor Browser Bundle 更新...">
<!ENTITY torbutton.context_menu.downloadUpdate.key "U">
<!ENTITY torbutton.context_menu.cookieProtections "Cookie 隐私保护">
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
@@ -58,7 +58,7 @@
<!ENTITY torbutton.prefs.cookie_jars "在受保护的 jar 中保存非 Tor 的 Cookie">
<!ENTITY torbutton.prefs.cookie_protection "请在 Cookie 隐私保护对话框内选择">
<!ENTITY torbutton.prefs.mmm_cookies "我要手动管理我的 cookies (危险)">
-<!ENTITY torbutton.prefs.clear_cookies "切换 Tor 时清除 cookies">
+<!ENTITY torbutton.prefs.clear_cookies "切换 Tor 时清除 cookie">
<!ENTITY torbutton.prefs.disable_plugins "使用 Tor 时禁用插件(重要)">
<!ENTITY torbutton.prefs.kill_bad_js "挂勾危险的 Java 脚本(重要)">
<!ENTITY torbutton.prefs.isolate_content "根据 Tor 状态隔离动态网页内容((重要)">
@@ -147,7 +147,7 @@
<!ENTITY torbutton.prefs.engine5 "duckduckgo.com">
<!ENTITY torbutton.prefs.fix_google_srch "在 Google 搜索栏搜索时分割平台和语言信息。">
<!ENTITY torbutton.prefs.transparentTor "Tor 强化透明代理(需要自设 TransProxy 或 Tor 路由)">
-<!ENTITY torbutton.prefs.block_disk "Don't record browsing history or website data (enables Private Browsing Mode)">
-<!ENTITY torbutton.prefs.restrict_thirdparty "Restrict third party cookies and other tracking data">
-<!ENTITY torbutton.prefs.block_plugins "Disable browser plugins (such as Flash)">
-<!ENTITY torbutton.prefs.resist_fingerprinting "Change details that distinguish you from other Tor Browser users">
+<!ENTITY torbutton.prefs.block_disk "禁止记录浏览历史或网站数据(启用隐私浏览模式)">
+<!ENTITY torbutton.prefs.restrict_thirdparty "限制第三方 cookie 和其他数据跟踪程序">
+<!ENTITY torbutton.prefs.block_plugins "禁用浏览器插件(比如 Flash)">
+<!ENTITY torbutton.prefs.resist_fingerprinting "请修改区别你与其他 Tor 浏览器用户的详细信息">
diff --git a/src/chrome/locale/zh-CN/torbutton.properties b/src/chrome/locale/zh-CN/torbutton.properties
index 27c652c..e5c905a 100644
--- a/src/chrome/locale/zh-CN/torbutton.properties
+++ b/src/chrome/locale/zh-CN/torbutton.properties
@@ -6,7 +6,7 @@ torbutton.panel.plugins.disabled = 点击启用插件
torbutton.panel.plugins.enabled = 点击禁用插件
torbutton.panel.label.disabled = Tor 已禁用
torbutton.panel.label.enabled = Tor 已启用
-extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
+extensions.torbutton(a)torproject.org.description = Torbutton 提供了一个按钮,可对“Tor 设置”进行配置,并可快速而方便地清除浏览器隐私数据。
torbutton.popup.history.warning = Torbutton 屏蔽了在其他 Tor 状态下加载的标签的活动。\n\n这是用于暂时解决 Firefox Bug 409737 和 417869。\n如果这个弹出窗口在您不知情的情况下弹出,则您的标签之一正试图在后台重新载入自己,然而这样的行为是被屏蔽的。\n\n要刷新当前 Tor 状态下的标签,将焦点置于在地址栏并按回车键。\n\n
torbutton.popup.plugin.warning = Torbutton 阻止了浏览器戴 Tor 时直接加载需要插件支持的内容。\n\n请使用“另存为”(保存后浏览)。\n\n
torbutton.popup.confirm_ca_certs = Torbutton 注意:浏览器似乎缺少自定义的CA(证书颁发机构)。检查CA列表是一项耗时的操作,障碍Tor的切换。您是否希望禁用对CA证书的隔离?)如果您不懂,可以选择“确定”)
@@ -44,8 +44,8 @@ torbutton.title.prompt_torbrowser = 重要的Torbutton的信息
torbutton.popup.prompt_torbrowser = Torbutton 工作方式有所改变:它不再支持临时关闭。\n\n做出这种改变是因为在非匿名浏览的浏览器中,同时使用 Torbutton 并不安全。有太多无法克服的错误。\n\n如果您希望正常使用 Firefox ,请卸载 Torbutton 插件,下载 Tor 浏览器套件。Tor 浏览器的隐私特性优于普通的 Firefox ,即使Firefox中使用了Torbutton。\n\n移除 Torbutton,请到 工具Tools->附加组件Addons->扩展Extensions 中,在 Torbutton 旁点击卸载。
torbutton.popup.short_torbrowser = Torbutton的重要信息\n\nTorbutton的是現在始終處於啟用狀態\n\n點擊Torbutton的更多信息
-torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
-torbutton.popup.never_ask_again = Never ask me again
+torbutton.popup.confirm_plugins = Flash 之类的插件可对用户的隐私与匿名性造成危害。\n\n它们还可能绕过 Tor 而泄漏用户的当前位置和 IP 地址。\n\n是否确定启用插件?\n\n
+torbutton.popup.never_ask_again = 不再询问
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=此网站(%S)试图访问画布上的图像数据。因为画布上的数据可以被用来侦测您的电脑信息,所以 Torbutton 这次返回了空白图像数据。
1
0

09 Mar '13
commit 6a73d7eab417687d933d430cc5f9ea8a10645428
Author: Mike Perry <mikeperry-git(a)fscked.org>
Date: Thu Mar 7 14:17:54 2013 -0800
Update localized string values.
---
src/chrome/locale/af/torbutton.properties | 3 +++
src/chrome/locale/ak/torbutton.properties | 3 +++
src/chrome/locale/am/torbutton.properties | 3 +++
src/chrome/locale/ar/torbutton.properties | 3 +++
src/chrome/locale/arn/torbutton.properties | 3 +++
src/chrome/locale/ast/torbutton.properties | 3 +++
src/chrome/locale/az/torbutton.properties | 3 +++
src/chrome/locale/be/torbutton.properties | 3 +++
src/chrome/locale/bg/torbutton.properties | 3 +++
src/chrome/locale/bn-IN/torbutton.properties | 3 +++
src/chrome/locale/bn/torbutton.properties | 3 +++
src/chrome/locale/bo/torbutton.properties | 3 +++
src/chrome/locale/br/torbutton.properties | 3 +++
src/chrome/locale/bs/torbutton.properties | 3 +++
src/chrome/locale/ca/torbutton.properties | 3 +++
src/chrome/locale/cs/torbutton.properties | 3 +++
src/chrome/locale/csb/torbutton.properties | 3 +++
src/chrome/locale/cy/torbutton.properties | 3 +++
src/chrome/locale/da/torbutton.properties | 3 +++
src/chrome/locale/de/torbutton.properties | 3 +++
src/chrome/locale/dz/torbutton.properties | 3 +++
src/chrome/locale/el/torbutton.properties | 3 +++
src/chrome/locale/eo/torbutton.properties | 3 +++
src/chrome/locale/es/torbutton.properties | 3 +++
src/chrome/locale/et/torbutton.properties | 3 +++
src/chrome/locale/eu/torbutton.properties | 3 +++
src/chrome/locale/fa/torbutton.properties | 3 +++
src/chrome/locale/fi/torbutton.properties | 3 +++
src/chrome/locale/fil/torbutton.properties | 3 +++
src/chrome/locale/fo/torbutton.properties | 3 +++
src/chrome/locale/fr/torbutton.properties | 3 +++
src/chrome/locale/fur/torbutton.properties | 3 +++
src/chrome/locale/fy/torbutton.properties | 3 +++
src/chrome/locale/ga/torbutton.properties | 3 +++
src/chrome/locale/gl/torbutton.properties | 3 +++
src/chrome/locale/gu/torbutton.properties | 3 +++
src/chrome/locale/gun/torbutton.properties | 3 +++
src/chrome/locale/ha/torbutton.properties | 3 +++
src/chrome/locale/he/torbutton.properties | 3 +++
src/chrome/locale/hi/torbutton.properties | 3 +++
src/chrome/locale/hr/torbutton.properties | 3 +++
src/chrome/locale/ht/torbutton.properties | 3 +++
src/chrome/locale/hu/torbutton.properties | 3 +++
src/chrome/locale/hy/torbutton.properties | 3 +++
src/chrome/locale/id/torbutton.properties | 3 +++
src/chrome/locale/is/torbutton.properties | 3 +++
src/chrome/locale/it/torbutton.properties | 3 +++
src/chrome/locale/ja/torbutton.properties | 3 +++
src/chrome/locale/jv/torbutton.properties | 3 +++
src/chrome/locale/ka/torbutton.properties | 3 +++
src/chrome/locale/km/torbutton.properties | 3 +++
src/chrome/locale/kn/torbutton.properties | 3 +++
src/chrome/locale/ko/torbutton.properties | 3 +++
src/chrome/locale/ku/torbutton.properties | 3 +++
src/chrome/locale/kw/torbutton.properties | 3 +++
src/chrome/locale/ky/torbutton.properties | 3 +++
src/chrome/locale/lb/torbutton.properties | 3 +++
src/chrome/locale/ln/torbutton.properties | 3 +++
src/chrome/locale/lo/torbutton.properties | 3 +++
src/chrome/locale/lt/torbutton.properties | 3 +++
src/chrome/locale/lv/torbutton.properties | 3 +++
src/chrome/locale/mg/torbutton.properties | 3 +++
src/chrome/locale/mi/torbutton.properties | 3 +++
src/chrome/locale/mk/torbutton.properties | 3 +++
src/chrome/locale/ml/torbutton.properties | 3 +++
src/chrome/locale/mn/torbutton.properties | 3 +++
src/chrome/locale/mr/torbutton.properties | 3 +++
src/chrome/locale/ms/torbutton.properties | 3 +++
src/chrome/locale/mt/torbutton.properties | 3 +++
src/chrome/locale/my/torbutton.properties | 3 +++
src/chrome/locale/nah/torbutton.properties | 3 +++
src/chrome/locale/nap/torbutton.properties | 3 +++
src/chrome/locale/nb/torbutton.properties | 3 +++
src/chrome/locale/ne/torbutton.properties | 3 +++
src/chrome/locale/nl/torbutton.properties | 3 +++
src/chrome/locale/nn/torbutton.properties | 3 +++
src/chrome/locale/nso/torbutton.properties | 3 +++
src/chrome/locale/oc/torbutton.properties | 3 +++
src/chrome/locale/or/torbutton.properties | 3 +++
src/chrome/locale/pa/torbutton.properties | 3 +++
src/chrome/locale/pap/torbutton.properties | 3 +++
src/chrome/locale/pl/torbutton.properties | 3 +++
src/chrome/locale/pms/torbutton.properties | 3 +++
src/chrome/locale/ps/torbutton.properties | 3 +++
src/chrome/locale/pt-BR/torbutton.properties | 3 +++
src/chrome/locale/pt/torbutton.properties | 3 +++
src/chrome/locale/ro/torbutton.properties | 3 +++
src/chrome/locale/ru/torbutton.properties | 3 +++
src/chrome/locale/sco/torbutton.properties | 3 +++
src/chrome/locale/sk/torbutton.properties | 3 +++
src/chrome/locale/sl/torbutton.properties | 3 +++
src/chrome/locale/so/torbutton.properties | 3 +++
src/chrome/locale/son/torbutton.properties | 3 +++
src/chrome/locale/sq/torbutton.properties | 3 +++
src/chrome/locale/sr/torbutton.properties | 3 +++
src/chrome/locale/st/torbutton.properties | 3 +++
src/chrome/locale/su/torbutton.properties | 3 +++
src/chrome/locale/sv/torbutton.properties | 3 +++
src/chrome/locale/sw/torbutton.properties | 3 +++
src/chrome/locale/ta/torbutton.properties | 3 +++
src/chrome/locale/te/torbutton.properties | 3 +++
src/chrome/locale/tg/torbutton.properties | 3 +++
src/chrome/locale/th/torbutton.properties | 3 +++
src/chrome/locale/ti/torbutton.properties | 3 +++
src/chrome/locale/tk/torbutton.properties | 3 +++
src/chrome/locale/tr/torbutton.properties | 3 +++
src/chrome/locale/uk/torbutton.properties | 3 +++
src/chrome/locale/ur/torbutton.properties | 3 +++
src/chrome/locale/ve/torbutton.properties | 3 +++
src/chrome/locale/vi/torbutton.properties | 3 +++
src/chrome/locale/wa/torbutton.properties | 3 +++
src/chrome/locale/wo/torbutton.properties | 3 +++
src/chrome/locale/zh-CN/torbutton.properties | 3 +++
src/chrome/locale/zh-HK/torbutton.properties | 3 +++
src/chrome/locale/zh-TW/torbutton.properties | 3 +++
src/chrome/locale/zu/torbutton.properties | 3 +++
116 files changed, 348 insertions(+), 0 deletions(-)
diff --git a/src/chrome/locale/af/torbutton.properties b/src/chrome/locale/af/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/af/torbutton.properties
+++ b/src/chrome/locale/af/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/ak/torbutton.properties b/src/chrome/locale/ak/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/ak/torbutton.properties
+++ b/src/chrome/locale/ak/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/am/torbutton.properties b/src/chrome/locale/am/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/am/torbutton.properties
+++ b/src/chrome/locale/am/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/ar/torbutton.properties b/src/chrome/locale/ar/torbutton.properties
index df28e53..6af1643 100644
--- a/src/chrome/locale/ar/torbutton.properties
+++ b/src/chrome/locale/ar/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Ù
عÙÙÙ
ات ÙØ§Ù
Ø© Ø¹Ù ØªÙØ±
torbutton.popup.prompt_torbrowser = ØªØºÙØ±Øª طرÙÙØ© عÙ
٠زر ØªÙØ± Ø§ÙØ§Ù: ÙØ§ ÙÙ
ÙÙ ÙÙ Ø§Ù ØªØ·ÙØ£Ù Ø§ÙØ§Ù \n\nÙÙ
ÙØ§ ØšÙØ°Ø§ Ø§ÙØªØºÙÙØ± ÙØ§ÙÙ Ø§ØµØšØ Ù
Ù ØºÙØ± Ø§ÙØ¢Ù
٠استخداÙ
زر ØªÙØ± Ù٠اÙÙ
ØªØµÙØ اÙÙ ÙØ³ØªØ®Ø¯Ù
ÙÙ Ø§ÙØªØµÙØ Ø®Ø§Ø±Ø¬ ØªÙØ±. ÙØ§Ù ÙÙØ§Ù Ø§ÙØ¹Ø¯Ùد Ù
Ù Ø§ÙØ¹ÙÙ Ù Ø§ÙØªÙ ÙÙ
ÙÙ
ÙÙ Ù
٠اÙÙ
Ù
ÙÙ Ù
Ø¹Ø§ÙØ¬ØªÙا ؚا٠طرÙÙØ© اخرÙ.\n\nإذا اردت Ø§ÙØ§Ø³ØªÙ
رار Ù٠استخداÙ
ÙØ§ÙرÙÙÙØ³ تÙÙÙØ¯ÙØ§ÙØ ÙØªÙجؚ عÙÙÙ Ø¥Ø²Ø§ÙØ© زر ØªÙØ± ٠تØÙ
ÙÙ Ù
جÙ
ÙØ¹Ø© ؚراÙ
ج Ù
ØªØµÙØ ØªÙØ±. ÙÙ
ا ا٠خصا؊ص Ø§ÙØ®ØµÙØµÙØ© ÙÙ
ØªØµÙØ ØªÙØ± تتÙÙ٠عÙ٠تÙÙ Ø§ÙØªÙ ÙÙ Ù
ØªØµÙØ ÙØ§ÙرÙÙÙØ³ Ø§ÙØªÙÙÙØ¯ÙØ ØØªÙ Ù٠تÙ
استخداÙ
Ù
ØªØµÙØ ÙØ§ÙرÙÙÙØ³ Ù
ع زر ØªÙØ±.\n\nÙØ¥Ø²Ø§ÙØ© زر ØªÙØ±Ø ÙÙ
ØšØ§ÙØªÙØ¬Ù Ø£Ø¯ÙØ§Øª - Ø¥Ø¶Ø§ÙØ§Øª - Ù
ØÙÙØ§Øª Ø Ø«Ù
إضغط عÙÙ Ø§ÙØ²Ø± ا
ÙÙ
عÙÙÙ Ø¥Ø²Ø§ÙØ© ؚاÙÙØ±Øš Ù
٠زر ØªÙØ±.
torbutton.popup.short_torbrowser = Ù
عÙÙÙ
ات ÙØ§Ù
Ø© Ø¹Ù ØªÙØ± \nتÙ
تÙ
ÙÙ٠زر ØªÙØ± ÙÙØ¹Ù
٠ؚاستÙ
رار Ø§ÙØ§Ù\nاضغط عÙ٠زر ØªÙØ± ÙÙÙ
Ø²ÙØ¯ Ù
٠اÙÙ
عÙÙÙ
ات
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=ØØ§Ù٠اÙÙ
ÙÙØ¹ (%S) ÙÙ
عÙÙÙ
ات ØµÙØ±Ø© Ù
٠عÙÙ Ø³Ø·Ø Ø§ÙØ±Ø³Ù
. ÙØ£Ù Ù
عÙÙÙ
ات Ø§ÙØµÙر Ù
٠عÙÙ Ø³Ø·Ø Ø§ÙØ±Ø³Ù
Ø ÙÙ
Ù٠استخداÙ
ÙØ§ ÙÙ
Ø¹Ø±ÙØ© Ù
عÙÙÙ
ات Ø¹Ù ØØ§Ø³ØšÙØ ÙØ°ÙÙ ÙÙØ· تÙ
ØªØ²ÙØ¯ ØµÙØ±Ø© خاÙÙØ© ÙØ°Ù اÙÙ
رة.
canvas.allow=اسÙ
Ø Ù٠اÙÙ
Ø³ØªÙØšÙ
diff --git a/src/chrome/locale/arn/torbutton.properties b/src/chrome/locale/arn/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/arn/torbutton.properties
+++ b/src/chrome/locale/arn/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/ast/torbutton.properties b/src/chrome/locale/ast/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/ast/torbutton.properties
+++ b/src/chrome/locale/ast/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/az/torbutton.properties b/src/chrome/locale/az/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/az/torbutton.properties
+++ b/src/chrome/locale/az/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/be/torbutton.properties b/src/chrome/locale/be/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/be/torbutton.properties
+++ b/src/chrome/locale/be/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/bg/torbutton.properties b/src/chrome/locale/bg/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/bg/torbutton.properties
+++ b/src/chrome/locale/bg/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/bn-IN/torbutton.properties b/src/chrome/locale/bn-IN/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/bn-IN/torbutton.properties
+++ b/src/chrome/locale/bn-IN/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/bn/torbutton.properties b/src/chrome/locale/bn/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/bn/torbutton.properties
+++ b/src/chrome/locale/bn/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/bo/torbutton.properties b/src/chrome/locale/bo/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/bo/torbutton.properties
+++ b/src/chrome/locale/bo/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/br/torbutton.properties b/src/chrome/locale/br/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/br/torbutton.properties
+++ b/src/chrome/locale/br/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/bs/torbutton.properties b/src/chrome/locale/bs/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/bs/torbutton.properties
+++ b/src/chrome/locale/bs/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/ca/torbutton.properties b/src/chrome/locale/ca/torbutton.properties
index 7c077a5..54a0c00 100644
--- a/src/chrome/locale/ca/torbutton.properties
+++ b/src/chrome/locale/ca/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/cs/torbutton.properties b/src/chrome/locale/cs/torbutton.properties
index 4d1b8b6..08e474a 100644
--- a/src/chrome/locale/cs/torbutton.properties
+++ b/src/chrome/locale/cs/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/csb/torbutton.properties b/src/chrome/locale/csb/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/csb/torbutton.properties
+++ b/src/chrome/locale/csb/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/cy/torbutton.properties b/src/chrome/locale/cy/torbutton.properties
index 2a600fb..7d44715 100644
--- a/src/chrome/locale/cy/torbutton.properties
+++ b/src/chrome/locale/cy/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/da/torbutton.properties b/src/chrome/locale/da/torbutton.properties
index 2cd8ed5..a3c59e3 100644
--- a/src/chrome/locale/da/torbutton.properties
+++ b/src/chrome/locale/da/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Vigtig Torbutton-information
torbutton.popup.prompt_torbrowser = Torbutton fungerer anderledes end fÞr: du kan ikke lÊngere slå den fra.\n\nDu foretog denne Êndring, da det ikke er sikkert at anvende Torbutton i en browser, der også anvendes til non-Tor-browsing. Der var for mange fejl deri, som vi ikke kunne rette på andre måder.\n\nHvis du Þnsker at anvende Firefox på normal vis, så bÞr du afinstallere Torbutton og hente Tor Browser Bundle. Indstillingerne for privatliv i Tor Browser overgår også de normale i Firefox, selv når Firefox anvende med Torbutton.\n\nFor at fjerne Torbutton, så gå til Funktioner->TilfÞjelser->Udvidelser og klik dernÊst Fjern-knappen ved siden af Torbutton.
torbutton.popup.short_torbrowser = Vigtig Torbutton-information!\n\nTorbutton er nu altid slået til.\n\nKlik på Torbutton for mere information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=Dette websted (%S) forsÞgte at tilgå billededata på et lÊrred (canvas). Da billededata for lÊrreder kan anvendes til at afdÊkke information om din maskine, så blev der sendt tomme billeddata denne gang.
canvas.allow=Tillad i fremtiden
diff --git a/src/chrome/locale/de/torbutton.properties b/src/chrome/locale/de/torbutton.properties
index 5cd8bee..ae14010 100644
--- a/src/chrome/locale/de/torbutton.properties
+++ b/src/chrome/locale/de/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Wichtige Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton funktioniert jetzt anders als vorher: es kann nichtmehr abgeschaltet werden.\n\nWir haben diese Ãnderung vorgenommen, da es nicht sicher ist, Torbutton auch in einem Browser zu benutzen, der auch fÃŒr den Betrieb ohne Tor gedacht ist. Es gab zu viele Fehler, die wir sonst nicht hÀtten beheben können.\n\nWenn Sie Firefox weiterhin normal benutzen möchten, sollten Sie Torbutton deinstallieren, und das Tor Browser Bundle runterladen. Die PrivatsphÀre-Einstellungen des Tor Browsers sind auÃerdem denen des normalen Firefox ÃŒberlegen, selbst wenn Firefox mit Torbutton benutzt wird.\n\nUm Torbutton zu entfernen, gehen Sie einfach auf Extras->Add-ons->Erweiterungen und klicken Sie auf Entfernen neben dem Torbutton.
torbutton.popup.short_torbrowser = Wichtige Torbutton Information!\n\nTorbutton ist jetzt immer aktiviert.\n\nKlicken sie auf den Torbutton, um mehr Informationen zu erhalten.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=Diese Website (%S) hat versucht, auf Image-Daten von einem Canvas zuzugreifen. Da Canvas Image-Daten dazu benutzt werden können, um Informationen Ìber ihren Computer zu bekommen, wurden diesmal leere Image-Daten an die Website geschickt
canvas.allow=In zukunft Erlauben
diff --git a/src/chrome/locale/dz/torbutton.properties b/src/chrome/locale/dz/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/dz/torbutton.properties
+++ b/src/chrome/locale/dz/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/el/torbutton.properties b/src/chrome/locale/el/torbutton.properties
index 05691f4..9706163 100644
--- a/src/chrome/locale/el/torbutton.properties
+++ b/src/chrome/locale/el/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = ΣηΌαΜÏικÎÏ ÏληÏοÏοÏίεÏ
torbutton.popup.prompt_torbrowser = ΀ο Torbutton λειÏοÏ
Ïγεί ΎιαÏοÏεÏικά, ÏÏÏα: ΎεΜ ÎŒÏοÏείÏε ÏλÎοΜ Μα Ïο αÏεΜεÏγοÏοιήÏεÏε\n\nÎ ÏοβήκαΌε Ïε αÏ
Ïή ÏηΜ αλλαγή ΎιÏÏι, ΎεΜ είΜαι αÏÏαλÎÏ ÎœÎ± ÏÏηÏιΌοÏοιείÏαι Ïο Torbutton ÎŒÎÏα αÏÏ ÎΜα ÏεÏιηγηÏή ιÏÏÎ¿Ï Î¿ οÏÎ¿Î¯Î¿Ï ÏÏηÏιΌεÏει και για εÏγαÏÎ¯ÎµÏ ÏÏÏÎ¯Ï ÏηΜ ÏÏήÏη Tor. ÎÎŒÏαΜίζοΜÏαΜ ΎιάÏοÏα ÏÏάλΌαÏα-bugs Ïα οÏοία ΎεΜ ÎŒÏοÏοÏÏαΌε Μα ΎιοÏΞÏÏοÏ
Όε.\n\nÎΜ ΞÎλεÏε Μα εΟακολοÏ
ΞήÏεÏε Μα ÏÏηÏιΌοÏοιείÏε ÏοΜ Firefox καΜοΜικά, Ξα ÏÏÎÏει Μα εγκαÏαÏÏήÏεÏε Ïο Torbutton και Μα κάΜεÏε λήÏη ÏοÏ
ΠακÎÏοÏ
ΊÏ
λλοΌεÏÏηÏή Tor. Îι ιΎιÏÏηÏÎµÏ Î¹ÎŽÎ¹ÏÏικÏÏηÏÎ±Ï ÏοÏ
ΠεÏιηγηÏή Tor είΜαÎ
¹ αΜÏÏεÏÎµÏ Î±ÏÏ ÎµÎºÎµÎ¯ÎœÎµÏ ÏοÏ
αÏÎ»Î¿Ï Firefox, ακÏΌη και ÏÏηΜ ÏεÏίÏÏÏÏη ÏοÏ
ο Firefox ÏÏηÏιΌοÏοιείÏαι Όαζί Όε Ïο Torbutton.\n\nÎια Μα αÏοΌακÏÏΜεÏε Ïο Torbutton, ÏηγαίΜεÏε ÎÏγαλεία->Î ÏÏÏΞεÏα->Extensions και ÏαÏήÏÏε Ïο ÏλήκÏÏο ÎÏοΌάκÏÏ
ΜÏη ÏοÏ
βÏίÏκεÏαι ΎίÏλα αÏÏ Ïο Torbutton.
torbutton.popup.short_torbrowser = ΣηΌαΜÏική ΠληÏοÏοÏία για Ïο Torbutton\n\n΀ο Torbutton είΜαι ÏÏÏα ÏÏ
ΜεÏÏÏ ÎµÎœÎµÏγοÏοιηΌÎΜο.\n\nÎια ÏεÏιÏÏÏÏεÏÎµÏ ÏληÏοÏοÏίεÏ, κάΜεÏε κλικ ÏÏο Torbutton.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=ÎÏ
ÏÏÏ Î¿ ιÏÏÏÏοÏÎ¿Ï (%S) ÏÏοÏÏάΞηÏε Μα αÏοκÏήÏη ÏÏÏÏβαÏη Ïε ΎεΎοΌÎΜα εικÏΜÏΜ ÏÎ¬ÎœÏ Ïε ÎΜα καΌβά. ÎÏÏ ÏηΜ ÏÏιγΌή ÏοÏ
ΎεΎοΌÎΜα εικÏΜÏΜ Ïε καΌβά ÎŒÏοÏοÏΜ Μα ÏÏηÏιΌοÏοιηΞοÏΜ για Μα αΜακαλÏ
ÏΞοÏΜ ÏληÏοÏοÏÎ¯ÎµÏ ÏÏεÏικÎÏ ÎŒÎµ ÏοΜ Ï
ÏολογιÏÏή ÏαÏ, κεΜά ΎεΎοΌÎΜα εικÏÎœÎ±Ï ÎµÏιÏÏÏάÏηκαΜ αÏ
Ïή Ïη ÏοÏά.
canvas.allow=Îα εÏιÏÏÎÏεÏαι ÏÏο ÎÎλλοΜ
diff --git a/src/chrome/locale/eo/torbutton.properties b/src/chrome/locale/eo/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/eo/torbutton.properties
+++ b/src/chrome/locale/eo/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/es/torbutton.properties b/src/chrome/locale/es/torbutton.properties
index e8f5f8b..19b0f9c 100644
--- a/src/chrome/locale/es/torbutton.properties
+++ b/src/chrome/locale/es/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Información importante sobre Torbutton
torbutton.popup.prompt_torbrowser = Torbutton ahora funciona de manera diferente: ya no lo podrá apagar más. \n \nHicimos este cambio porque no es seguro utilizar Torbutton en un navegador que también se utilice para navegar sin Tor. Hubo tantos fallos con esto que no pudimos arreglarlo de otro modo. \n \nSi quiere seguir usando Firefox normalmente, deberÃa desinstalar Torbutton y descargar el Paquete de Navegador Tor. Las propiedades de privacidad del Navegador Tor son superiores a las de un Firefox normal, incluso cuando se usa Firefox con Torbutton. \n \nPara eliminar Torbutton. vaya a Herramientas->Complementos->Extensiones y haga clic en el botón Eliminar próximo a Torbutton.
torbutton.popup.short_torbrowser = ¡Información importante sobre Torbutton! \n \nTorbutton ahora está siempre encendido. \n \nHaga clic en (el botón de) Torbutton para más información.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=Este sitio web (%S) trató de acceder a los metadatos de una imagen. Como los metadatos de la imágenes puede usarse para revelar información acerca de su computadora, en esta ocasión se ha respondido con metadatos en blanco.
canvas.allow=Permitir en el futuro
diff --git a/src/chrome/locale/et/torbutton.properties b/src/chrome/locale/et/torbutton.properties
index a642b1b..c78a701 100644
--- a/src/chrome/locale/et/torbutton.properties
+++ b/src/chrome/locale/et/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/eu/torbutton.properties b/src/chrome/locale/eu/torbutton.properties
index eaf8a6d..9fbc3a1 100644
--- a/src/chrome/locale/eu/torbutton.properties
+++ b/src/chrome/locale/eu/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Torbutton informazio garratzitsua
torbutton.popup.prompt_torbrowser = Torbuttonek ezberdin egiten du lan orain: ezin da gehiago itzali.\n\nTor kanpoko nabigatzea ere egiteko erabiltzen den nabigatzaile batean Torbutton erabiltzea segurura ez delako aldaketa hau egin dugu. Beste era batean konpondu ezin genituen akats asko zeuden.\n\nFirefox modu arruntean erabiltzen jarraitu nahi baduzu, Torbutton kendu beharko zenuke eta Tor Browser Bundlea deskargatu. Tor Browserren pribatutasun ezaugarriak Firefox arruntarenak baino hobeak dia, baita Firefox Torbuttonekin erabiltzen bada ere.\n\nTorbutton kentzeko, joan hona Tresnak->Gehigarriak->Hedapenak eta Torbuttonen ondoan dagoen Kendu botoian sakatu.
torbutton.popup.short_torbrowser = Torbutton informazio garrantzitsua!\n\nTorbutton orain beti gaituta dago.\n\nSakatu Torbuttonen informazio gehiago lortzeko.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=Webgune honek (%S) oihal bateko irudi datuetara sartzen saiatu da. Oihalen irudi datuak zure ordenagailuari buruzko informazioa ezagutzeko erabil daitezkeenez, irudi datu zuria itzuli da oraingoan.
canvas.allow=Baimendu etorkizunean
diff --git a/src/chrome/locale/fa/torbutton.properties b/src/chrome/locale/fa/torbutton.properties
index 8a50f68..79d8b48 100644
--- a/src/chrome/locale/fa/torbutton.properties
+++ b/src/chrome/locale/fa/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Ø§Ø·ÙØ§Ø¹Ø§Øª Ù
ÙÙ
Torbutton
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/fi/torbutton.properties b/src/chrome/locale/fi/torbutton.properties
index 0667165..793a9ca 100644
--- a/src/chrome/locale/fi/torbutton.properties
+++ b/src/chrome/locale/fi/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/fil/torbutton.properties b/src/chrome/locale/fil/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/fil/torbutton.properties
+++ b/src/chrome/locale/fil/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/fo/torbutton.properties b/src/chrome/locale/fo/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/fo/torbutton.properties
+++ b/src/chrome/locale/fo/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/fr/torbutton.properties b/src/chrome/locale/fr/torbutton.properties
index ae2ae5d..2ba67f1 100644
--- a/src/chrome/locale/fr/torbutton.properties
+++ b/src/chrome/locale/fr/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Information importante concernant Torbutton
torbutton.popup.prompt_torbrowser = Torbutton fonctionne différemment maintenant: vous ne pouvez plus le désactiver.\n\nNous avons effectué ce changement car il n'est pas sûr d'utiliser Torbutton dans un navigateur qui est également utiliser pour une navigation sans Tor. Ils y avaient trop de bugs ne nous pouvions résoudre.\n\nSi vous désirez vous servir de Firefox normalement, vous devriez déinstaller le Torbutton et télécharger Tor Browsser Bundle. Les propriétés de confidentialité de Tor Browser sont supérieures à celles de Firefox, même s'il est utilisé avec TorButton.\n\nPour supprimer Torbutton, allez dans Outils->Modules Complémentaires->Extensions et cliquez le button Supprimer à coté de Torbutton.
torbutton.popup.short_torbrowser = Information importante concernant Torbutton!\n\nTorbutton est dorénavant toujours activé.\n\nCliquer sur Torbutton pour plus d'informations.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=Ce site web (%S) a essayé dâaccéder aux données dâune image incluse dans un canvas. Puisque ce procédé peut être utilisé pour découvrir des informations concernant votre ordinateur, une image vide a été utilisée à la place cette fois-ci.
canvas.allow=Autoriser à lâavenir
diff --git a/src/chrome/locale/fur/torbutton.properties b/src/chrome/locale/fur/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/fur/torbutton.properties
+++ b/src/chrome/locale/fur/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/fy/torbutton.properties b/src/chrome/locale/fy/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/fy/torbutton.properties
+++ b/src/chrome/locale/fy/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/ga/torbutton.properties b/src/chrome/locale/ga/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/ga/torbutton.properties
+++ b/src/chrome/locale/ga/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/gl/torbutton.properties b/src/chrome/locale/gl/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/gl/torbutton.properties
+++ b/src/chrome/locale/gl/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/gu/torbutton.properties b/src/chrome/locale/gu/torbutton.properties
index 2452d7d..588bb03 100644
--- a/src/chrome/locale/gu/torbutton.properties
+++ b/src/chrome/locale/gu/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/gun/torbutton.properties b/src/chrome/locale/gun/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/gun/torbutton.properties
+++ b/src/chrome/locale/gun/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/ha/torbutton.properties b/src/chrome/locale/ha/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/ha/torbutton.properties
+++ b/src/chrome/locale/ha/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/he/torbutton.properties b/src/chrome/locale/he/torbutton.properties
index 82b986d..da7328c 100644
--- a/src/chrome/locale/he/torbutton.properties
+++ b/src/chrome/locale/he/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = ××××¢ Torbutton ×ש××
torbutton.popup.prompt_torbrowser = Torbutton ×¢×ש×× ×¢××× ××ךת: ××-×׀שך ××××ת ×××ª× ××תך. עש×× × ×ת ×ש×× ×× ××× ×× ×× ×× ×××× ××שת×ש ×-Torbutton ×××€××€× ×©×ת×ש×× ×× ×× ×š×§ ×-Tor. ××× ××תך ×××× ××××× ×©×× ××××× × ××ª×§× ×ש×× ××š× ××ךת. ×× ×ך׊×× ×× ×××ש×× ×ש×××ש ך××× ××€××ך׀×קס, ×¢×××× ××ס×ך ×ת Torbutton ××××ך×× ×ת Tor Browser Bundle. ×××€××× × ×׀ך×××ת ×©× Tor Browser ××¢×××× ××××€××× × ×׀ך×××ת ×ך××××× ×©× ×€××ך׀×קס, ××€××× ×× ×€××ך׀×קס ×ש×××ש ××× ×¢× Torbutton. ××סךת Torbutton, ××©× ×××××âת×ס׀×תâ×ך×××ת ××× ×××Š× ×¢× ×׀ת×ך ×××¡×š× ××× ×-Torbutton.
torbutton.popup.short_torbrowser = ××××¢ ×ש×× ×¢× Torbutton!\nTorbutton ×¢×ש×× ×€××¢× ×ª×××.\n×××Š× ×¢× ×-Torbutton ×××××¢ × ×סף.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=×׀שך ×עת××
diff --git a/src/chrome/locale/hi/torbutton.properties b/src/chrome/locale/hi/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/hi/torbutton.properties
+++ b/src/chrome/locale/hi/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/hr/torbutton.properties b/src/chrome/locale/hr/torbutton.properties
index fdec79e..f580567 100644
--- a/src/chrome/locale/hr/torbutton.properties
+++ b/src/chrome/locale/hr/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/ht/torbutton.properties b/src/chrome/locale/ht/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/ht/torbutton.properties
+++ b/src/chrome/locale/ht/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/hu/torbutton.properties b/src/chrome/locale/hu/torbutton.properties
index 957a4d7..9b973da 100644
--- a/src/chrome/locale/hu/torbutton.properties
+++ b/src/chrome/locale/hu/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Fontos Torbutton információ
torbutton.popup.prompt_torbrowser = A Torbutton most már másképp működik: nem kapcsolható ki többé.\n\nAzért hoztok ezt a döntést, mert nem biztonságos egy olyan böngészÅbÅl Torbuttont használni, amely Tor használatán kÃvÃŒli is böngészésre használt. Túl soh hiba történhet, amit másképp nem tudunk javÃtani.\n\nHa szeretné a Firefox-ot normálisan használni, akkor a Torbutton-t el kell távolÃtania, és helyette letölteni a Tor BöngészÅ Csomagot. Az adatvédelmi beállÃtásai a Tor BöngészÅnek továbbá magasabbak, mint a normális Firefox-nak, még akkor is, ha a Firefox Torbutton-nal kerÃŒlt egyÃŒtt felhasználásra.\n\nA Torbutton eltávolÃtásához navigáljon az Eszközök>KiegészÃtÅk>Kiterjesztések menÃŒpontba., majd nyomja meg az EltávolÃtás gombot a Torbutton mellett.
torbutton.popup.short_torbrowser = Fontos Torbutton információ!\n\na Torbutton most már mindig engedélyezett.\n\nKattintson a Torbutton-ra további információkért.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=Ez a weboldal (%S) megpróbál egy kép adatot elérni egy rétegen. Mivel a réteg kép használható a számÃtógép felderÃtésére, ÃŒres kép adat lett visszakÃŒldve ez alkalommal.
canvas.allow=A jövÅben engedélyez
diff --git a/src/chrome/locale/hy/torbutton.properties b/src/chrome/locale/hy/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/hy/torbutton.properties
+++ b/src/chrome/locale/hy/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/id/torbutton.properties b/src/chrome/locale/id/torbutton.properties
index e71cee2..1315a62 100644
--- a/src/chrome/locale/id/torbutton.properties
+++ b/src/chrome/locale/id/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/is/torbutton.properties b/src/chrome/locale/is/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/is/torbutton.properties
+++ b/src/chrome/locale/is/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/it/torbutton.properties b/src/chrome/locale/it/torbutton.properties
index 7a4b9cb..6efbcdb 100644
--- a/src/chrome/locale/it/torbutton.properties
+++ b/src/chrome/locale/it/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Informazioni importanti su Torbutton
torbutton.popup.prompt_torbrowser = Torbutton ora funziona in modo diverso: non Ú possibile disabilitarlo.\n\nQuesto cambiamento Ú stato apportato poiché risulta poco sicuro utilizzare Torbutton in un browser utilizzato anche senza di esso. Ci sono alcuni problemi critici che non Ú possibile risolvere in un modo diverso da questo.\n\nSe si desidera utilizzare Firefox normalmente (senza, quindi, Torbutton) Ú necessario disinstallare manualmente Torbutton ed installare Tor Browser Bundle. Le impostazioni per la privacy, inoltre, sono superiori su Tor Browser rispetto ad una normale installazione di Firefox, anche quando quest'ultimo Ú utilizzato con Torbutton.\n\nPer rimuovere Torbutton, andare in Strumenti -> Componenti aggiuntivi -> Estensioni e cliccare sul pulsante Disinstalla per Torbutton.
torbutton.popup.short_torbrowser = Informazioni importanti su Torbutton!\n\nTorbutton ora Ú sempre abilitato.\n\nClicca su Torbutton per ulteriori informazioni.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=Questo sito (%S) ha cercato di accedere ad un'immagine in un elemento canvas. Le immagini canvas possono essere usate per scoprire informazioni sul tuo computer, per questo Ú stata visualizzata un'immagine vuota.
canvas.allow=Permetti in futuro
diff --git a/src/chrome/locale/ja/torbutton.properties b/src/chrome/locale/ja/torbutton.properties
index dec0b69..5789f51 100644
--- a/src/chrome/locale/ja/torbutton.properties
+++ b/src/chrome/locale/ja/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/jv/torbutton.properties b/src/chrome/locale/jv/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/jv/torbutton.properties
+++ b/src/chrome/locale/jv/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/ka/torbutton.properties b/src/chrome/locale/ka/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/ka/torbutton.properties
+++ b/src/chrome/locale/ka/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/km/torbutton.properties b/src/chrome/locale/km/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/km/torbutton.properties
+++ b/src/chrome/locale/km/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/kn/torbutton.properties b/src/chrome/locale/kn/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/kn/torbutton.properties
+++ b/src/chrome/locale/kn/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/ko/torbutton.properties b/src/chrome/locale/ko/torbutton.properties
index 3970774..9e740e5 100644
--- a/src/chrome/locale/ko/torbutton.properties
+++ b/src/chrome/locale/ko/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/ku/torbutton.properties b/src/chrome/locale/ku/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/ku/torbutton.properties
+++ b/src/chrome/locale/ku/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/kw/torbutton.properties b/src/chrome/locale/kw/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/kw/torbutton.properties
+++ b/src/chrome/locale/kw/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/ky/torbutton.properties b/src/chrome/locale/ky/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/ky/torbutton.properties
+++ b/src/chrome/locale/ky/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/lb/torbutton.properties b/src/chrome/locale/lb/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/lb/torbutton.properties
+++ b/src/chrome/locale/lb/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/ln/torbutton.properties b/src/chrome/locale/ln/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/ln/torbutton.properties
+++ b/src/chrome/locale/ln/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/lo/torbutton.properties b/src/chrome/locale/lo/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/lo/torbutton.properties
+++ b/src/chrome/locale/lo/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/lt/torbutton.properties b/src/chrome/locale/lt/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/lt/torbutton.properties
+++ b/src/chrome/locale/lt/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/lv/torbutton.properties b/src/chrome/locale/lv/torbutton.properties
index e44d97a..b4bbb2a 100644
--- a/src/chrome/locale/lv/torbutton.properties
+++ b/src/chrome/locale/lv/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = SvarÄ«ga Torbutton informÄcija
torbutton.popup.prompt_torbrowser = Torbutton tagad strÄdÄ citÄdÄk: to vairs nevarat izslÄgt.\n\nMÄs izdarÄ«jÄm Å¡o izmaiÅu jo nav droÅ¡i izmantot Torbutton pÄrlÅ«kÄ, kurÅ¡ tiek arÄ« izmantots pÄrlÅ«koÅ¡anai, kas neizmanto Tor. VienkÄrÅ¡i bija pÄrÄk daudz kČūdu, kuras mÄs savÄdÄk nevarÄjÄm labot.\n\nJa vÄlaties turpinÄt izmantot Firefox kÄ ierasts, atinstalÄjiet Torbutton un lejupielÄdÄjiet Tor Browser Bundle. Tor Browser privÄtuma rekvizÄ«ti ir svarÄ«gÄki nekÄ Firefox rekvizÄ«ti, pat tad ja Firefox tiek izmantots ar Torbutton.\n\nLai nonÄmtu Torbutton, izvÄlieties RÄ«ko->Pievienojumi->PaplaÅ¡inÄjumi jeb Tools->Addons->Extensions un noklikšķiniet uz pogu NoÅemt jeb Remove pogu, kura atrodas blakus Torbutton.
torbutton.popup.short_torbrowser = SvarÄ«ga Torbutton informÄcija!\n\nTorbutton tagad ir iespÄjots vienmÄr.\n\nNoklikšķiniet uz Torbutton, lai saÅemtu papildu informÄciju.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=TÄ«mekÄŒa lapa (%S) mÄÄ£inÄja piekČūt attÄla datiem no datora fona jeb audekla. TÄ ka attÄla datus iespÄjams lietot lai noteiktu informÄciju par datoru, Å¡oreiz tika nosÅ«tÄ«ti tukÅ¡a attÄla dati.
canvas.allow=TurpmÄk atÄŒaut
diff --git a/src/chrome/locale/mg/torbutton.properties b/src/chrome/locale/mg/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/mg/torbutton.properties
+++ b/src/chrome/locale/mg/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/mi/torbutton.properties b/src/chrome/locale/mi/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/mi/torbutton.properties
+++ b/src/chrome/locale/mi/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/mk/torbutton.properties b/src/chrome/locale/mk/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/mk/torbutton.properties
+++ b/src/chrome/locale/mk/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/ml/torbutton.properties b/src/chrome/locale/ml/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/ml/torbutton.properties
+++ b/src/chrome/locale/ml/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/mn/torbutton.properties b/src/chrome/locale/mn/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/mn/torbutton.properties
+++ b/src/chrome/locale/mn/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/mr/torbutton.properties b/src/chrome/locale/mr/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/mr/torbutton.properties
+++ b/src/chrome/locale/mr/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/ms/torbutton.properties b/src/chrome/locale/ms/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/ms/torbutton.properties
+++ b/src/chrome/locale/ms/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/mt/torbutton.properties b/src/chrome/locale/mt/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/mt/torbutton.properties
+++ b/src/chrome/locale/mt/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/my/torbutton.properties b/src/chrome/locale/my/torbutton.properties
index 1c70ecd..b5105f9 100644
--- a/src/chrome/locale/my/torbutton.properties
+++ b/src/chrome/locale/my/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/nah/torbutton.properties b/src/chrome/locale/nah/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/nah/torbutton.properties
+++ b/src/chrome/locale/nah/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/nap/torbutton.properties b/src/chrome/locale/nap/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/nap/torbutton.properties
+++ b/src/chrome/locale/nap/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/nb/torbutton.properties b/src/chrome/locale/nb/torbutton.properties
index d6e0c75..f7312fe 100644
--- a/src/chrome/locale/nb/torbutton.properties
+++ b/src/chrome/locale/nb/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/ne/torbutton.properties b/src/chrome/locale/ne/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/ne/torbutton.properties
+++ b/src/chrome/locale/ne/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/nl/torbutton.properties b/src/chrome/locale/nl/torbutton.properties
index 32b29a3..4fdd592 100644
--- a/src/chrome/locale/nl/torbutton.properties
+++ b/src/chrome/locale/nl/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Belangrijke Torbutton informatie
torbutton.popup.prompt_torbrowser = Torbutton werkt nu anders: je kan het niet meer uitzetten.\n\nWe hebben deze verandering doorgevoerd, omdat het niet veilig is om Torbutton te gebruiken in een browser welke ook gebruikt wordt voor niet-Tor browsen. Er zaten teveel fouten in welke we niet konden repareren op een andere manier.\n\nAls je Firefox wilt blijven gebruiken op de normale manier, dan zal je Torbutten moeten deinstalleren en de Tor Browser Bundle moeten downloaden. De privacy eigenschappen van Tor Browser zijn ook superieur ten opzichte van de normale Firefox, zelfs wanneer Firefox gebruikt wordt met Torbutton.\n\nOm Torbutton te verwijderen, ga naar Extra->Add-ons->Extensies en klik dan op de knop Uitschakelen naast Torbutton.
torbutton.popup.short_torbrowser = Belangrijke Torbutton Informatie!\n\nTorbutten is nu altijd ingeschakeld.\n\nKlik op de Torbutton voor meer informatie.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=Deze website (%S) probeerde image data op een canvas te benaderen. Aangezien canvas image data gebruikt kan worden om informatie te verkrijgen over je computer, is deze keer blanco image data teruggemeld.
canvas.allow=Toestaan in de toekomst
diff --git a/src/chrome/locale/nn/torbutton.properties b/src/chrome/locale/nn/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/nn/torbutton.properties
+++ b/src/chrome/locale/nn/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/nso/torbutton.properties b/src/chrome/locale/nso/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/nso/torbutton.properties
+++ b/src/chrome/locale/nso/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/oc/torbutton.properties b/src/chrome/locale/oc/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/oc/torbutton.properties
+++ b/src/chrome/locale/oc/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/or/torbutton.properties b/src/chrome/locale/or/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/or/torbutton.properties
+++ b/src/chrome/locale/or/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/pa/torbutton.properties b/src/chrome/locale/pa/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/pa/torbutton.properties
+++ b/src/chrome/locale/pa/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/pap/torbutton.properties b/src/chrome/locale/pap/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/pap/torbutton.properties
+++ b/src/chrome/locale/pap/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/pl/torbutton.properties b/src/chrome/locale/pl/torbutton.properties
index 1ae6a3f..a1bab94 100644
--- a/src/chrome/locale/pl/torbutton.properties
+++ b/src/chrome/locale/pl/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = WaÅŒne informacje o Torbuttonie
torbutton.popup.prompt_torbrowser = Torbutton teraz dziaÅa inaczej: nie moÅŒna juÅŒ go wyÅÄ
czyÄ.\n\nZrobiliÅmy tÄ zmianÄ, gdyÅŒ nie jest bezpiecznie uÅŒywaÄ Torbuttona w przeglÄ
darce uÅŒywanej takÅŒe do przeglÄ
dania sieci bez Tora. ByÅo za duÅŒo bÅÄdów, których nie mogliÅmy naprawiÄ inaczej.\n\nJeÅli chcesz dalej normalnie uÅŒywaÄ Firefoksa, odinstaluj Torbutton i pobierz PaczkÄ Tora z PrzeglÄ
darkÄ
. Cechy prywatnoÅci w PrzeglÄ
darce Tora sÄ
lepsze od tych w normalnym Firefoksie, nawet gdy jest uÅŒywany z Torbutonem.\n\nAby usunÄ
Ä Torbuttona, wejdź do NarzÄdzia->Dodatki->Rozszerzenia i kliknij przycisk UsuÅ obok Torbuttona.
torbutton.popup.short_torbrowser = WaÅŒne informacje o Torbuttonie!\n\nTorbutton jest teraz ciÄ
gle wÅÄ
czony.\n\nKliknij Turbutton, aby dowiedzieÄ siÄ wiÄcej.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=Ta strona (%S) próbowaÅa dostaÄ siÄ do danych obrazu na canvas. Jako ÅŒe te dane mogÄ
byÄ uÅŒyte do odkrycia informacji o Twoim komputerze, na razie zostaÅ zwrócony pusty obraz.
canvas.allow=Pozwól w przyszÅoÅci
diff --git a/src/chrome/locale/pms/torbutton.properties b/src/chrome/locale/pms/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/pms/torbutton.properties
+++ b/src/chrome/locale/pms/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/ps/torbutton.properties b/src/chrome/locale/ps/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/ps/torbutton.properties
+++ b/src/chrome/locale/ps/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/pt-BR/torbutton.properties b/src/chrome/locale/pt-BR/torbutton.properties
index e3dc034..e2a4580 100644
--- a/src/chrome/locale/pt-BR/torbutton.properties
+++ b/src/chrome/locale/pt-BR/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Informação Importante do Torbutton
torbutton.popup.prompt_torbrowser = O Torbutton agora funciona de forma diferente: você não pode mais desliga-lo.\n\nFizemos essa mudança porque não é seguro utilizar o Torbutton em navegador que ao mesmo tempo seja usado para navegação não-Tor. Eram causados bugs demais que não pudemos resolver de nenhuma outra forma.\n\nSe você deseja continuar usando o Firefox normalmente, você deve desinstalar o Torbutton e baixar o Tor Browser Bundle. As configurações de privacidade do Tor Browser também são superiores àquelas do Firefox comum, mesmo quando era usado com o Torbutton.\n\nPara remover o Torbutton, vá em Ferramentas->Complementes->Extensões e clique no botão remover próximo ao Torbutton.
torbutton.popup.short_torbrowser = Informação Importante do Torbutton!\n\nO Torbutton agora mantem-se sempre habilitado.\n\nClique no Torbutton para mais informações.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=Este website (%S) tentou acessar dados sobre imagem(ns) em um elemento canvas da página. Como dados de imagem do canvas podem ser usados para descobrir informações sobre seu computador, nenhum dado de imagem foi retornado desta vez.
canvas.allow=Permitir no Futuro
diff --git a/src/chrome/locale/pt/torbutton.properties b/src/chrome/locale/pt/torbutton.properties
index 92a3bb0..3d28aec 100644
--- a/src/chrome/locale/pt/torbutton.properties
+++ b/src/chrome/locale/pt/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Informação importante do Torbutton
torbutton.popup.prompt_torbrowser = O Torbutton funciona agora de forma diferente: já não pode desligá-lo.\n\nProcedemos a esta alteração porque não é seguro usar o Torbutton num explorador também usado para buscas fora do Tor. Havia demasiados erros que não conseguimos corrigir de outra forma.\n\nSe pretende continuar a usar o Firefox normalmente, deve desinstalar o Torbutton e carregar o Tor Browser Bundle para o seu computador. As polÃticas de privacidade do Explorador do Tor também são superiores à s normais no Firefox, mesmo quando este é usado com o Torbutton.\n\nPara remover o Torbutton abra Ferramentas->Acessórios->Extensões e clique no botão Remover junto ao Torbutton.
torbutton.popup.short_torbrowser = Informação importante do Torbutton!\nO Torbutton não está sempre activo.\nClique no Torbutton para mais informação.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=Esta página (%S) tentou aceder a dados de imagem em tela. Porque os dados de imagem em tela podem ser usados para revelar informação acerca do seu computador, neste momento foram devolvidos dados de imagem em branco.
canvas.allow=Permitir no futuro
diff --git a/src/chrome/locale/ro/torbutton.properties b/src/chrome/locale/ro/torbutton.properties
index 3b35ee8..cdfcf66 100644
--- a/src/chrome/locale/ro/torbutton.properties
+++ b/src/chrome/locale/ro/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Informatii importante Torbutton
torbutton.popup.prompt_torbrowser = Torbutton lucreaza diferit acum: nu mai poate fi inchis. Am facut aceasta schimbare deoarece Torbutton nu poate fi folosit in siguranta intr-un browser care e utilizat si pentru navigare non-Tor. Erau prea multe buguri pe care nu le puteam remedia in alt fel. Daca doriti sa continuati sa folositi Firefox normal, ar trebui sa dezinstalati Torbutton si sa descarcati Tor Browser Bundle. Proprietatile de navigare privata ale Tor Browser sunt deasemenea superioare celor ale Firefox normal, chiar si atunci cand Firefox este folosit cu Torbutton. Sa indepartati Torbutton, mergeti la Unelte->Suplimente->Extensii si faceti click pe butonul Elimina de langa Torbutton.
torbutton.popup.short_torbrowser = Informatie Torbutton importanta! Torbutton este acum permanent activat. Faceti click pe Torbutton pentru mai multe informatii.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Permiteti in viitor.
diff --git a/src/chrome/locale/ru/torbutton.properties b/src/chrome/locale/ru/torbutton.properties
index 3066c36..5173d58 100644
--- a/src/chrome/locale/ru/torbutton.properties
+++ b/src/chrome/locale/ru/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = ÐÐ°Ð¶ÐœÐ°Ñ ÐžÐœÑПÑЌаÑÐžÑ Torbutton
torbutton.popup.prompt_torbrowser = Torbutton ÑабПÑÐ°ÐµÑ Ð¿ÐŸ-ÐŽÑÑгПЌÑ. ÐÑ ÐœÐµ ЌПжеÑе вÑклÑÑОÑÑ ÐµÐ³ÐŸ бПлÑÑе â â ÐÑ ÑЎелалО ÑÑП ОзЌеМеМОе, пПÑÐŸÐŒÑ ÑÑП ÑÑП Ме безПпаÑМП ОÑпПлÑзПваÑÑ Torbutton в бÑаÑзеÑе, кПÑПÑÑй Ñакже ОÑпПлÑзÑеÑÑÑ ÐŽÐ»Ñ ÐœÐµ-Tor пÑПÑЌПÑÑа. СÑÑеÑÑвПвалО ÑлОÑкПЌ ЌМПгП ПÑОбПк ÑаЌ, ÑÑП ÐŒÑ ÐœÐµ ЌПглО ОÑпÑавОÑÑ ÐœÐžÐºÐ°ÐºÐžÐŒ ÐŽÑÑгОЌ ÑпПÑПбПЌ. â â ÐÑлО Ð²Ñ Ñ
ПÑОÑе пÑПЎПлжаÑÑ ÐžÑпПлÑзПваÑÑ Firefox МПÑЌалÑМП, Ð²Ñ ÐŽÐŸÐ»Ð¶ÐœÑ ÑЎалОÑÑ Torbutton О ÑкаÑаÑÑ Tor Browser Bundle. СвПйÑÑва кПМÑОЎеМÑОалÑМПÑÑО Tor Browser Ñакже пÑевПÑÑ
ПЎÑÑ ÐŸÐ±ÑÑМÑй Firefox, Ўаже еÑлО Firefox ОÑпПлÑзÑеÑÑÑ Ñ Torbutton. â â ЧÑÐŸÐ±Ñ ÑЎалОÑÑ Torbutton, пеÑ
ейЎОÑе в ÐŒÐµÐœÑ Ð¡ÐµÑвОÑ-> ÐПпПлМеМОÑ-> РаÑÑОÑеМОÑ, а заÑеЌ МажЌОÑе ÐºÐœÐŸÐ¿ÐºÑ Ð£ÐŽÐ°Ð»ÐžÑÑ ÑÑЎПЌ Ñ Torbutton.
torbutton.popup.short_torbrowser = ÐÐ°Ð¶ÐœÐ°Ñ ÐžÐœÑПÑЌаÑÐžÑ Torbutton! â â Torbutton ÑепеÑÑ Ð²ÑегЎа вклÑÑеМ. â â ÐажЌОÑе Ма Torbutton ÐŽÐ»Ñ Ð¿ÐŸÐ»ÑÑÐµÐœÐžÑ ÐŽÐŸÐ¿ÐŸÐ»ÐœÐžÑелÑМПй ОМÑПÑЌаÑОО.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=ÐÐŸÐ·Ð²ÐŸÐ»ÐžÑ Ð² бÑÐŽÑÑеЌ
diff --git a/src/chrome/locale/sco/torbutton.properties b/src/chrome/locale/sco/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/sco/torbutton.properties
+++ b/src/chrome/locale/sco/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/sk/torbutton.properties b/src/chrome/locale/sk/torbutton.properties
index d3dc9f7..a9a7289 100644
--- a/src/chrome/locale/sk/torbutton.properties
+++ b/src/chrome/locale/sk/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = DÎleşité Torbutton Informácie
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = DÃŽleÅŸité Torbutton Informácie!\n\nTorbutton je odteraz povolenÜ.\n\nStlaÄte Torbutton pre viacej informáciÃ.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/sl/torbutton.properties b/src/chrome/locale/sl/torbutton.properties
index c2903e8..d01474a 100644
--- a/src/chrome/locale/sl/torbutton.properties
+++ b/src/chrome/locale/sl/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/so/torbutton.properties b/src/chrome/locale/so/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/so/torbutton.properties
+++ b/src/chrome/locale/so/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/son/torbutton.properties b/src/chrome/locale/son/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/son/torbutton.properties
+++ b/src/chrome/locale/son/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/sq/torbutton.properties b/src/chrome/locale/sq/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/sq/torbutton.properties
+++ b/src/chrome/locale/sq/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/sr/torbutton.properties b/src/chrome/locale/sr/torbutton.properties
index 8fb453f..f901c07 100644
--- a/src/chrome/locale/sr/torbutton.properties
+++ b/src/chrome/locale/sr/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/st/torbutton.properties b/src/chrome/locale/st/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/st/torbutton.properties
+++ b/src/chrome/locale/st/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/su/torbutton.properties b/src/chrome/locale/su/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/su/torbutton.properties
+++ b/src/chrome/locale/su/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/sv/torbutton.properties b/src/chrome/locale/sv/torbutton.properties
index 75fe0b7..59755c6 100644
--- a/src/chrome/locale/sv/torbutton.properties
+++ b/src/chrome/locale/sv/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Viktig Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton fungerar annorlunda nu: Du kan inte slå av den lÀngre.\n\nVi gjorde denna förÀndring eftersom det inte Àr sÀkert att anvÀnda Torbutton i en webblÀsare som också anvÀnds för icke-Tor surfning. Det var för många buggar som vi inte kunde fixa på något annat sÀtt.\n\nOm du vill fortsÀtta anvÀnda Firefox normalt så bör du avinstallera Torknappen och ladda ner Tor Browser Bundle. Tor WebblÀsaren skyddar ditt privatliv bÀttre Àn vanliga Firefox, Àven nÀr Firefox anvÀnds med Torknappen.\n\nFör att ta bort Torbutton, gå till Verktyg->TillÀgg->TillÀgg och klicka på Ta Bort knappen bredvid Torknappen.
torbutton.popup.short_torbrowser = Viktig Torbutton information!\n\nTorbutton Àr nu alltid aktiverad.\n\nKlicka på Torbutton för mer information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=Denna webbsida (%S) försökte komma åt bild data på ett kanvas. Eftersom kanvas bild data kan anvÀndas för att upptÀcka information om din dator skickades vi tom bild data denna gång.
canvas.allow=Tillåt i Framtiden
diff --git a/src/chrome/locale/sw/torbutton.properties b/src/chrome/locale/sw/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/sw/torbutton.properties
+++ b/src/chrome/locale/sw/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/ta/torbutton.properties b/src/chrome/locale/ta/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/ta/torbutton.properties
+++ b/src/chrome/locale/ta/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/te/torbutton.properties b/src/chrome/locale/te/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/te/torbutton.properties
+++ b/src/chrome/locale/te/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/tg/torbutton.properties b/src/chrome/locale/tg/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/tg/torbutton.properties
+++ b/src/chrome/locale/tg/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/th/torbutton.properties b/src/chrome/locale/th/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/th/torbutton.properties
+++ b/src/chrome/locale/th/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/ti/torbutton.properties b/src/chrome/locale/ti/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/ti/torbutton.properties
+++ b/src/chrome/locale/ti/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/tk/torbutton.properties b/src/chrome/locale/tk/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/tk/torbutton.properties
+++ b/src/chrome/locale/tk/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/tr/torbutton.properties b/src/chrome/locale/tr/torbutton.properties
index 24467e0..2c44d31 100644
--- a/src/chrome/locale/tr/torbutton.properties
+++ b/src/chrome/locale/tr/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Ãnemli Torbutton bilgisi!\nTorbutton Åimdi tamamen etkinleÅtirildi.\nDaha fazla bilgi için Torbutton'a tıklayınız.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/uk/torbutton.properties b/src/chrome/locale/uk/torbutton.properties
index 4eb40a9..af6433b 100644
--- a/src/chrome/locale/uk/torbutton.properties
+++ b/src/chrome/locale/uk/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/ur/torbutton.properties b/src/chrome/locale/ur/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/ur/torbutton.properties
+++ b/src/chrome/locale/ur/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/ve/torbutton.properties b/src/chrome/locale/ve/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/ve/torbutton.properties
+++ b/src/chrome/locale/ve/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/vi/torbutton.properties b/src/chrome/locale/vi/torbutton.properties
index 798abae..65b2811 100644
--- a/src/chrome/locale/vi/torbutton.properties
+++ b/src/chrome/locale/vi/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/wa/torbutton.properties b/src/chrome/locale/wa/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/wa/torbutton.properties
+++ b/src/chrome/locale/wa/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/wo/torbutton.properties b/src/chrome/locale/wo/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/wo/torbutton.properties
+++ b/src/chrome/locale/wo/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/zh-CN/torbutton.properties b/src/chrome/locale/zh-CN/torbutton.properties
index 9dd079e..27c652c 100644
--- a/src/chrome/locale/zh-CN/torbutton.properties
+++ b/src/chrome/locale/zh-CN/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = éèŠçTorbuttonçä¿¡æ¯
torbutton.popup.prompt_torbrowser = Torbutton å·¥äœæ¹åŒæææ¹åïŒå®äžåæ¯æäžŽæ¶å
³éã\n\nååºè¿ç§æ¹åæ¯å 䞺åšéå¿åæµè§çæµè§åšäžïŒåæ¶äœ¿çš Torbutton å¹¶äžå®å
šãæå€ªå€æ æ³å
æçé误ã\n\nåŠææšåžææ£åžžäœ¿çš Firefox ïŒè¯·åžèœœ Torbutton æä»¶ïŒäžèœœ Tor æµè§åšå¥ä»¶ãTor æµè§åšçéç§ç¹æ§äŒäºæ®éç Firefox ïŒå³äœ¿Firefoxäžäœ¿çšäºTorbuttonã\n\nç§»é€ TorbuttonïŒè¯·å° å·¥å
·Tools->éå ç»ä»¶Addons->æ©å±Extensions äžïŒåš Torbutton æç¹å»åžèœœã
torbutton.popup.short_torbrowser = TorbuttonçéèŠä¿¡æ¯\n\nTorbuttonçæ¯çŸåšå§çµèæŒåçšçæ
\n\n黿TorbuttonçæŽå€ä¿¡æ¯
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=æ€çœç«(%S)è¯åŸè®¿é®ç»åžäžçåŸåæ°æ®ãå 䞺ç»åžäžçæ°æ®å¯ä»¥è¢«çšæ¥äŸŠæµæšççµèä¿¡æ¯ïŒæä»¥ Torbutton è¿æ¬¡è¿åäºç©ºçœåŸåæ°æ®ã
canvas.allow=以åå
讞
diff --git a/src/chrome/locale/zh-HK/torbutton.properties b/src/chrome/locale/zh-HK/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/zh-HK/torbutton.properties
+++ b/src/chrome/locale/zh-HK/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/zh-TW/torbutton.properties b/src/chrome/locale/zh-TW/torbutton.properties
index 2cd7415..925bc3e 100644
--- a/src/chrome/locale/zh-TW/torbutton.properties
+++ b/src/chrome/locale/zh-TW/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
diff --git a/src/chrome/locale/zu/torbutton.properties b/src/chrome/locale/zu/torbutton.properties
index f4a8036..dc6684c 100644
--- a/src/chrome/locale/zu/torbutton.properties
+++ b/src/chrome/locale/zu/torbutton.properties
@@ -44,6 +44,9 @@ torbutton.title.prompt_torbrowser = Important Torbutton Information
torbutton.popup.prompt_torbrowser = Torbutton works differently now: you can't turn it off any more.\n\nWe made this change because it isn't safe to use Torbutton in a browser that's also used for non-Tor browsing. There were too many bugs there that we couldn't fix any other way.\n\nIf you want to keep using Firefox normally, you should uninstall Torbutton and download Tor Browser Bundle. The privacy properties of Tor Browser are also superior to those of normal Firefox, even when Firefox is used with Torbutton.\n\nTo remove Torbutton, go to Tools->Addons->Extensions and then click the Remove button next to Torbutton.
torbutton.popup.short_torbrowser = Important Torbutton Information!\n\nTorbutton is now always enabled.\n\nClick on the Torbutton for more information.
+torbutton.popup.confirm_plugins = Plugins such as Flash can harm your privacy and anonymity.\n\nThey can also bypass Tor to reveal your current location and IP address.\n\nAre you sure you want to enable plugins?\n\n
+torbutton.popup.never_ask_again = Never ask me again
+
# Canvas permission prompt. Strings are kept here for ease of translation.
canvas.siteprompt=This website (%S) attempted to access image data on a canvas. Since canvas image data can be used to discover information about your computer, blank image data was returned this time.
canvas.allow=Allow in the Future
1
0

r26097: {translation} Update translations. (in translation/trunk/projects/torbutton/po: ar ca cs cy da de el es et eu fa fi fr gu he hr hu id it ja ko lv my nb nl pl pt pt_BR ro ru sk sl sr sv templates tr uk vi zh_CN zh_TW)
by Mike Perry 09 Mar '13
by Mike Perry 09 Mar '13
09 Mar '13
Author: mikeperry
Date: 2013-03-09 02:40:52 +0000 (Sat, 09 Mar 2013)
New Revision: 26097
Modified:
translation/trunk/projects/torbutton/po/ar/torbutton.properties.po
translation/trunk/projects/torbutton/po/ca/torbutton.properties.po
translation/trunk/projects/torbutton/po/cs/torbutton.properties.po
translation/trunk/projects/torbutton/po/cy/torbutton.properties.po
translation/trunk/projects/torbutton/po/da/torbutton.properties.po
translation/trunk/projects/torbutton/po/de/torbutton.dtd.po
translation/trunk/projects/torbutton/po/de/torbutton.properties.po
translation/trunk/projects/torbutton/po/el/torbutton.properties.po
translation/trunk/projects/torbutton/po/es/torbutton.properties.po
translation/trunk/projects/torbutton/po/et/torbutton.properties.po
translation/trunk/projects/torbutton/po/eu/torbutton.properties.po
translation/trunk/projects/torbutton/po/fa/torbutton.properties.po
translation/trunk/projects/torbutton/po/fi/torbutton.properties.po
translation/trunk/projects/torbutton/po/fr/torbutton.properties.po
translation/trunk/projects/torbutton/po/gu/torbutton.properties.po
translation/trunk/projects/torbutton/po/he/torbutton.properties.po
translation/trunk/projects/torbutton/po/hr/torbutton.properties.po
translation/trunk/projects/torbutton/po/hu/torbutton.properties.po
translation/trunk/projects/torbutton/po/id/torbutton.properties.po
translation/trunk/projects/torbutton/po/it/torbutton.properties.po
translation/trunk/projects/torbutton/po/ja/torbutton.properties.po
translation/trunk/projects/torbutton/po/ko/torbutton.properties.po
translation/trunk/projects/torbutton/po/lv/torbutton.properties.po
translation/trunk/projects/torbutton/po/my/torbutton.properties.po
translation/trunk/projects/torbutton/po/nb/torbutton.properties.po
translation/trunk/projects/torbutton/po/nl/torbutton.properties.po
translation/trunk/projects/torbutton/po/pl/torbutton.properties.po
translation/trunk/projects/torbutton/po/pt/torbutton.properties.po
translation/trunk/projects/torbutton/po/pt_BR/torbutton.properties.po
translation/trunk/projects/torbutton/po/ro/torbutton.properties.po
translation/trunk/projects/torbutton/po/ru/torbutton.dtd.po
translation/trunk/projects/torbutton/po/ru/torbutton.properties.po
translation/trunk/projects/torbutton/po/sk/torbutton.properties.po
translation/trunk/projects/torbutton/po/sl/torbutton.properties.po
translation/trunk/projects/torbutton/po/sr/torbutton.properties.po
translation/trunk/projects/torbutton/po/sv/torbutton.dtd.po
translation/trunk/projects/torbutton/po/sv/torbutton.properties.po
translation/trunk/projects/torbutton/po/templates/torbutton.dtd.pot
translation/trunk/projects/torbutton/po/templates/torbutton.properties.pot
translation/trunk/projects/torbutton/po/tr/torbutton.properties.po
translation/trunk/projects/torbutton/po/uk/torbutton.properties.po
translation/trunk/projects/torbutton/po/vi/torbutton.properties.po
translation/trunk/projects/torbutton/po/zh_CN/torbutton.dtd.po
translation/trunk/projects/torbutton/po/zh_CN/torbutton.properties.po
translation/trunk/projects/torbutton/po/zh_TW/torbutton.properties.po
Log:
Update translations.
Modified: translation/trunk/projects/torbutton/po/ar/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ar/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/ar/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -10,8 +10,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ar\n"
Modified: translation/trunk/projects/torbutton/po/ca/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ca/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/ca/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -7,8 +7,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ca\n"
Modified: translation/trunk/projects/torbutton/po/cs/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/cs/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/cs/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -7,8 +7,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: cs\n"
Modified: translation/trunk/projects/torbutton/po/cy/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/cy/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/cy/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -6,8 +6,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: cy\n"
Modified: translation/trunk/projects/torbutton/po/da/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/da/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/da/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -8,9 +8,9 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-13 01:40+0000\n"
-"Last-Translator: Aputsiaĸ Niels Janussen <aj(a)isit.gl>\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
+"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/torbutton/po/de/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/de/torbutton.dtd.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/de/torbutton.dtd.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -9,9 +9,9 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-02-18 20:48-0700\n"
-"PO-Revision-Date: 2013-02-18 22:03+0000\n"
-"Last-Translator: Sacro <Scion(a)T-Online.de>\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 22:04+0000\n"
+"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/torbutton/po/de/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/de/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/de/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -10,9 +10,9 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-18 21:59+0000\n"
-"Last-Translator: Sacro <Scion(a)T-Online.de>\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
+"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/torbutton/po/el/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/el/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/el/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -10,9 +10,9 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-16 10:02+0000\n"
-"Last-Translator: dpdt1 <dpdt1(a)espiv.net>\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
+"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: el\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/torbutton/po/es/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/es/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/es/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -10,9 +10,9 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-13 01:02+0000\n"
-"Last-Translator: strel <strelnic(a)gmail.com>\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
+"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/torproject/"
"language/es/)\n"
"Language: es\n"
Modified: translation/trunk/projects/torbutton/po/et/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/et/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/et/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -7,8 +7,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: et\n"
Modified: translation/trunk/projects/torbutton/po/eu/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/eu/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/eu/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -7,9 +7,9 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 10:19+0000\n"
-"Last-Translator: Antxon Baldarra <baldarra(a)euskalerria.org>\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
+"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/torbutton/po/fa/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/fa/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/fa/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -10,8 +10,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: fa\n"
Modified: translation/trunk/projects/torbutton/po/fi/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/fi/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/fi/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -7,8 +7,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: fi\n"
Modified: translation/trunk/projects/torbutton/po/fr/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/fr/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/fr/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -12,8 +12,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-13 03:07+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-09 00:54+0000\n"
"Last-Translator: Onizuka <onizuka.xxxx(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: fr\n"
@@ -401,10 +401,17 @@
"Are you sure you want to enable plugins?\n"
"\n"
msgstr ""
+"Les greffons tels que Flash peuvent nuire à votre anonymat et vie privée.\n"
+"\n"
+"Ils peuvent également contourner Tor afin de révéler votre position actuelle "
+"ainsi que votre adresse IP.\n"
+"\n"
+"Êtes-vous certain de vouloir activer les greffons ?\n"
+"\n"
#: torbutton.popup.never_ask_again
msgid "Never ask me again"
-msgstr ""
+msgstr "Ne plus me poser la question."
#. # Canvas permission prompt. Strings are kept here for ease of translation.
#: canvas.siteprompt
Modified: translation/trunk/projects/torbutton/po/gu/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/gu/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/gu/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -6,8 +6,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: gu\n"
Modified: translation/trunk/projects/torbutton/po/he/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/he/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/he/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -8,8 +8,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: he\n"
Modified: translation/trunk/projects/torbutton/po/hr/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/hr/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/hr/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -6,8 +6,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: hr\n"
Modified: translation/trunk/projects/torbutton/po/hu/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/hu/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/hu/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -6,8 +6,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: hu\n"
Modified: translation/trunk/projects/torbutton/po/id/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/id/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/id/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -7,8 +7,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: id\n"
Modified: translation/trunk/projects/torbutton/po/it/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/it/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/it/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -6,15 +6,16 @@
# <rand(a)yopmail.com>, 2013.
# runasand <runa.sandvik(a)gmail.com>, 2011.
# <tru74368(a)yahoo.com>, 2011.
+# <tsaizb(a)gmail.com>, 2013.
# Vincenzo Cerminara <rebek994(a)gmail.com>, 2012.
#. extracted from ../src/chrome/locale/en/torbutton.properties
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-18 11:22+0000\n"
-"Last-Translator: Random_R <rand(a)yopmail.com>\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
+"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: Italian (http://www.transifex.com/projects/p/torproject/"
"language/it/)\n"
"Language: it\n"
Modified: translation/trunk/projects/torbutton/po/ja/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ja/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/ja/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -7,8 +7,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ja\n"
Modified: translation/trunk/projects/torbutton/po/ko/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ko/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/ko/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -1,13 +1,14 @@
#
# Translators:
+# <cwt967(a)naver.com>, 2013.
# <cwt967(a)naver.com>, 2012.
#. extracted from ../src/chrome/locale/en/torbutton.properties
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ko\n"
@@ -55,6 +56,8 @@
"Torbutton provides a button to configure Tor settings and quickly and easily "
"clear private browsing data."
msgstr ""
+"Torbutton은 Tor 설정을 해 주는 버튼을 제공하고, 빠르고 쉽게 개인 브라우징 데"
+"이터를 지워 줍니다."
#: torbutton.popup.history.warning
msgid ""
@@ -322,7 +325,7 @@
#: torbutton.title.prompt_torbrowser
msgid "Important Torbutton Information"
-msgstr ""
+msgstr "중요한 Torbutton 정보"
#: torbutton.popup.prompt_torbrowser
msgid ""
@@ -340,6 +343,14 @@
"To remove Torbutton, go to Tools->Addons->Extensions and then click the "
"Remove button next to Torbutton."
msgstr ""
+"Torbutton은 지금 다르게 작동합니다. 귀하는 더이상 끌 수 없습니다. 비Tor 브라"
+"우징에 사용될 수 있는 브라우져에서 사용하는 것은 위험하기 때문에 이 변화를 만"
+"들었습니다. 우리가 어떤 다른 방법으로 고칠 수 없는 수많은 버그도 있습니다. "
+"만약 파이어폭스를 일반적으로 사용하기를 원하신다면 Torbutton을 언인스톨 하시"
+"고 Tor Browser Bundle을 다운로드 하십시오. Tor browser의 프라이버시 설정은, "
+"심지어 파이어폭스가 Torbutton과 쓰였더라도, 보통의 파이어폭스의 설정에 우선합"
+"니다. Torbutton을 지우시려면, 도구 - 부가 기능 - 확장에 들어가셔셔 "
+"Torbutton 옆의 제거 버튼을 누르십시오."
#: torbutton.popup.short_torbrowser
msgid ""
@@ -349,6 +360,8 @@
"\n"
"Click on the Torbutton for more information."
msgstr ""
+"중요한 Torbutton 정보! Torbutton은 이제 항상 활성화됩니다. 더 많은 정보를 위"
+"해서는 Torbutton을 누르십시오."
#: torbutton.popup.confirm_plugins
msgid ""
@@ -371,19 +384,22 @@
"image data can be used to discover information about your computer, blank "
"image data was returned this time."
msgstr ""
+"이 웹사이트(%S)는 캔버스(Canvas)에 있는 이미지 데이터에 접근하려 했습니다. 캔"
+"버스 이미지 데이터는 귀하의 컴퓨터 정보를 찾아내는 데에 사용될 수 있기 때문"
+"에, 이번에 빈 이미지 데이터가 되돌려졌습니다."
#: canvas.allow
msgid "Allow in the Future"
-msgstr ""
+msgstr "나중에 허용"
#: canvas.allowAccessKey
msgid "A"
-msgstr ""
+msgstr "A"
#: canvas.never
msgid "Never for This Site"
-msgstr ""
+msgstr "이 사이트에서는 절대 금지"
#: canvas.neverAccessKey
msgid "e"
-msgstr ""
+msgstr "e"
Modified: translation/trunk/projects/torbutton/po/lv/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/lv/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/lv/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -1,13 +1,14 @@
#
# Translators:
# Ojars Balcers <ojars.balcers(a)gmail.com>, 2012.
+# Ojārs Balcers <ojars.balcers(a)gmail.com>, 2013.
#. extracted from ../src/chrome/locale/en/torbutton.properties
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: lv\n"
@@ -56,6 +57,8 @@
"Torbutton provides a button to configure Tor settings and quickly and easily "
"clear private browsing data."
msgstr ""
+"Torbutton ir poga ar kuru konfigurēt Tor iestatījumus, kā arī ātri un ērti "
+"attīrīt personīgos pārlūkošanas datus."
#: torbutton.popup.history.warning
msgid ""
Modified: translation/trunk/projects/torbutton/po/my/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/my/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/my/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -7,8 +7,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: my\n"
Modified: translation/trunk/projects/torbutton/po/nb/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/nb/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/nb/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -6,8 +6,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: nb\n"
Modified: translation/trunk/projects/torbutton/po/nl/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/nl/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/nl/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -10,9 +10,9 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-19 00:47+0000\n"
-"Last-Translator: Shondoit Walker <shondoit(a)gmail.com>\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
+"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/torbutton/po/pl/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/pl/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/pl/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -1,5 +1,6 @@
#
# Translators:
+# <bog.d(a)gazeta.pl>, 2013.
# <bog.d(a)gazeta.pl>, 2012.
# bogdrozd <bog.d(a)gazeta.pl>, 2011.
# mikeperry <mikeperry-trans(a)fscked.org>, 2011.
@@ -9,8 +10,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: pl\n"
@@ -59,6 +60,8 @@
"Torbutton provides a button to configure Tor settings and quickly and easily "
"clear private browsing data."
msgstr ""
+"Torbutton udostępnia przycisk do konfiguracji ustawień Tora oraz szybkiego i "
+"łatwego usuwania prywatnych danych z przeglądarki."
#: torbutton.popup.history.warning
msgid ""
Modified: translation/trunk/projects/torbutton/po/pt/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/pt/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/pt/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -7,8 +7,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: pt\n"
Modified: translation/trunk/projects/torbutton/po/pt_BR/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/pt_BR/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/pt_BR/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -12,9 +12,9 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 22:01+0000\n"
-"Last-Translator: marcosof <marcosortizf(a)gmail.com>\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
+"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/torbutton/po/ro/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ro/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/ro/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -10,8 +10,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ro\n"
Modified: translation/trunk/projects/torbutton/po/ru/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/ru/torbutton.dtd.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/ru/torbutton.dtd.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -4,13 +4,14 @@
# Den Arefyev <>, 2012.
# <liquixis(a)gmail.com>, 2012.
# runasand <runa.sandvik(a)gmail.com>, 2011.
+# <tavarysh(a)riseup.net>, 2013.
#. extracted from ../src/chrome/locale/en/torbutton.dtd
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-02-18 20:48-0700\n"
-"PO-Revision-Date: 2013-02-14 03:26+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 22:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: Russian (http://www.transifex.com/projects/p/torproject/"
"language/ru/)\n"
@@ -181,11 +182,11 @@
#: torbutton.context_menu.downloadUpdate
msgid "Download Tor Browser Bundle Update..."
-msgstr ""
+msgstr "Скачать обновления Tor Browser Bundle"
#: torbutton.context_menu.downloadUpdate.key
msgid "U"
-msgstr ""
+msgstr "U"
#: torbutton.context_menu.cookieProtections
msgid "Cookie Protections"
@@ -665,15 +666,17 @@
msgid ""
"Don't record browsing history or website data (enables Private Browsing Mode)"
msgstr ""
+"Не сохранять журнал обозревателя и данные с посещаемых сайтов (активирует "
+"функцию приватного просмотра)"
#: torbutton.prefs.restrict_thirdparty
msgid "Restrict third party cookies and other tracking data"
-msgstr ""
+msgstr "Блокировать сторонние куки и другие данные слежения"
#: torbutton.prefs.block_plugins
msgid "Disable browser plugins (such as Flash)"
-msgstr ""
+msgstr "Отключить расширения браузера (такие как Flash)"
#: torbutton.prefs.resist_fingerprinting
msgid "Change details that distinguish you from other Tor Browser users"
-msgstr ""
+msgstr "Изменить сведения, отличающие вас от других пользователей Tor Browser"
Modified: translation/trunk/projects/torbutton/po/ru/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ru/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/ru/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -1,5 +1,6 @@
#
# Translators:
+# <arikushi777(a)gmail.com>, 2013.
# axe <axe.rode(a)ymail.com>, 2011.
# <bbbalda(a)mail.ru>, 2012.
# <liquixis(a)gmail.com>, 2012.
@@ -9,8 +10,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: Russian (http://www.transifex.com/projects/p/torproject/"
"language/ru/)\n"
@@ -60,6 +61,8 @@
"Torbutton provides a button to configure Tor settings and quickly and easily "
"clear private browsing data."
msgstr ""
+"Torbutton предусматривает кнопку, чтобы настроить Tor и быстро и легко "
+"очистить личные данные просмотра."
#: torbutton.popup.history.warning
msgid ""
@@ -393,6 +396,10 @@
"image data can be used to discover information about your computer, blank "
"image data was returned this time."
msgstr ""
+"Этот веб-сайт (% S) пытался получить доступ к данным изображения на холсте. "
+"Поскольку данные холсте изображение может быть использовано для получения "
+"информации о вашем компьютере, пустые данные изображения были возвращены на "
+"этот раз."
#: canvas.allow
msgid "Allow in the Future"
Modified: translation/trunk/projects/torbutton/po/sk/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/sk/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/sk/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -7,8 +7,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: sk\n"
Modified: translation/trunk/projects/torbutton/po/sl/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/sl/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/sl/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -7,8 +7,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: sl\n"
Modified: translation/trunk/projects/torbutton/po/sr/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/sr/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/sr/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -8,8 +8,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: sr\n"
Modified: translation/trunk/projects/torbutton/po/sv/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/sv/torbutton.dtd.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/sv/torbutton.dtd.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -2,13 +2,14 @@
# Translators:
# Dan West <acc(a)dnw.st>, 2013.
# runasand <runa.sandvik(a)gmail.com>, 2011.
+# <winterfairy63(a)yahoo.com>, 2013.
#. extracted from ../src/chrome/locale/en/torbutton.dtd
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-02-18 20:48-0700\n"
-"PO-Revision-Date: 2013-02-14 03:26+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 22:01+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: sv\n"
@@ -95,19 +96,19 @@
#: torbutton.about.version
msgid "Version:"
-msgstr ""
+msgstr "Version:"
#: torbutton.about.summary
msgid "Protects the privacy of your Tor browsing."
-msgstr ""
+msgstr "Skyddar din personliga integritet med Tor."
#: torbutton.about.code
msgid "Code Contributors:"
-msgstr ""
+msgstr "Övriga programmerare:"
#: torbutton.about.maintainer
msgid "Maintainer:"
-msgstr ""
+msgstr "Underhålls av:"
#: torbutton.about.security_review
msgid "Security Review:"
@@ -115,11 +116,11 @@
#: torbutton.about.donate
msgid "If you like using Tor, you might consider"
-msgstr ""
+msgstr "Om du gillar Tor, överväg att"
#: torbutton.about.make_donation
msgid "making a donation."
-msgstr ""
+msgstr "ge ett bidrag."
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
@@ -146,7 +147,7 @@
#: torbutton.context_menu.new_identity
msgid "New Identity"
-msgstr ""
+msgstr "Ny identitet"
#: torbutton.context_menu.new_identity_key
msgid "I"
@@ -178,7 +179,7 @@
#: torbutton.context_menu.downloadUpdate
msgid "Download Tor Browser Bundle Update..."
-msgstr ""
+msgstr "Ladda ner uppdatering för Tor Browser Bundle"
#: torbutton.context_menu.downloadUpdate.key
msgid "U"
@@ -456,7 +457,7 @@
#: torbutton.prefs.restore_defaults
msgid "Restore Defaults"
-msgstr ""
+msgstr "Återställ till standard"
#: torbutton.prefs.test_settings
msgid "Test Settings"
@@ -632,16 +633,16 @@
#: torbutton.prefs.block_disk
msgid ""
"Don't record browsing history or website data (enables Private Browsing Mode)"
-msgstr ""
+msgstr "Spara ingen historik eller webbplatsdata (aktiverar privat surfning)"
#: torbutton.prefs.restrict_thirdparty
msgid "Restrict third party cookies and other tracking data"
-msgstr ""
+msgstr "Begränsa tredjepartskakor och annan tracking data"
#: torbutton.prefs.block_plugins
msgid "Disable browser plugins (such as Flash)"
-msgstr ""
+msgstr "Avaktivera insticksmoduler (så som Flash)"
#: torbutton.prefs.resist_fingerprinting
msgid "Change details that distinguish you from other Tor Browser users"
-msgstr ""
+msgstr "Ändra detailjer som utmärker dig ifrån andra Tor Browser användare"
Modified: translation/trunk/projects/torbutton/po/sv/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/sv/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/sv/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -1,6 +1,7 @@
#
# Translators:
# Daniel West <danwesthq(a)gmail.com>, 2013.
+# Dan West <acc(a)dnw.st>, 2013.
# runasand <runa.sandvik(a)gmail.com>, 2011.
# <unknown365(a)hotmail.com>, 2012.
#. extracted from ../src/chrome/locale/en/torbutton.properties
@@ -8,8 +9,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: sv\n"
@@ -57,6 +58,8 @@
"Torbutton provides a button to configure Tor settings and quickly and easily "
"clear private browsing data."
msgstr ""
+"Torbutton ger en knapp för att konfigurera Tor inställningar och snabbt och "
+"enkelt rensa privat surfdata."
#: torbutton.popup.history.warning
msgid ""
Modified: translation/trunk/projects/torbutton/po/templates/torbutton.dtd.pot
===================================================================
--- translation/trunk/projects/torbutton/po/templates/torbutton.dtd.pot 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/templates/torbutton.dtd.pot 2013-03-09 02:40:52 UTC (rev 26097)
@@ -3,7 +3,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:29-0700\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
Modified: translation/trunk/projects/torbutton/po/templates/torbutton.properties.pot
===================================================================
--- translation/trunk/projects/torbutton/po/templates/torbutton.properties.pot 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/templates/torbutton.properties.pot 2013-03-09 02:40:52 UTC (rev 26097)
@@ -3,7 +3,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:29-0700\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
Modified: translation/trunk/projects/torbutton/po/tr/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/tr/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/tr/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -9,8 +9,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: tr\n"
Modified: translation/trunk/projects/torbutton/po/uk/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/uk/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/uk/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -6,8 +6,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: uk\n"
Modified: translation/trunk/projects/torbutton/po/vi/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/vi/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/vi/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -7,8 +7,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: vi\n"
Modified: translation/trunk/projects/torbutton/po/zh_CN/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/zh_CN/torbutton.dtd.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/zh_CN/torbutton.dtd.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -4,6 +4,7 @@
# Curtis Stone <cstone(a)fastmail.cn>, 2012.
# <hua5679(a)gmail.com>, 2012.
# jhk <j_hk001(a)126.com>, 2011.
+# J Tsai <tsaizb(a)gmail.com>, 2013.
# <ln191810(a)gmail.com>, 2012.
# runasand <runa.sandvik(a)gmail.com>, 2011.
# Sioux <us.mo.Zhang(a)gmail.com>, 2011.
@@ -14,9 +15,9 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-02-18 20:48-0700\n"
-"PO-Revision-Date: 2013-02-14 03:26+0000\n"
-"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-08 11:55+0000\n"
+"Last-Translator: simabull tsai <tsaizb(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
@@ -181,11 +182,11 @@
#: torbutton.context_menu.downloadUpdate
msgid "Download Tor Browser Bundle Update..."
-msgstr ""
+msgstr "下载 Tor Browser Bundle 更新..."
#: torbutton.context_menu.downloadUpdate.key
msgid "U"
-msgstr ""
+msgstr "U"
#: torbutton.context_menu.cookieProtections
msgid "Cookie Protections"
@@ -273,7 +274,7 @@
#: torbutton.prefs.clear_cookies
msgid "Clear cookies on Tor toggle"
-msgstr "切换 Tor 时清除 cookies"
+msgstr "切换 Tor 时清除 cookie"
#: torbutton.prefs.disable_plugins
msgid "Disable plugins during Tor usage (crucial)"
@@ -633,16 +634,16 @@
#: torbutton.prefs.block_disk
msgid ""
"Don't record browsing history or website data (enables Private Browsing Mode)"
-msgstr ""
+msgstr "禁止记录浏览历史或网站数据(启用隐私浏览模式)"
#: torbutton.prefs.restrict_thirdparty
msgid "Restrict third party cookies and other tracking data"
-msgstr ""
+msgstr "限制第三方 cookie 和其他数据跟踪程序"
#: torbutton.prefs.block_plugins
msgid "Disable browser plugins (such as Flash)"
-msgstr ""
+msgstr "禁用浏览器插件(比如 Flash)"
#: torbutton.prefs.resist_fingerprinting
msgid "Change details that distinguish you from other Tor Browser users"
-msgstr ""
+msgstr "请修改区别你与其他 Tor 浏览器用户的详细信息"
Modified: translation/trunk/projects/torbutton/po/zh_CN/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/zh_CN/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/zh_CN/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -1,6 +1,7 @@
#
# Translators:
# jhk <j_hk001(a)126.com>, 2011.
+# J Tsai <tsaizb(a)gmail.com>, 2013.
# runasand <runa.sandvik(a)gmail.com>, 2011.
# <unknown365(a)hotmail.com>, 2012.
# <zhazhenzhong(a)gmail.com>, 2012.
@@ -9,9 +10,9 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
-"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-08 15:20+0000\n"
+"Last-Translator: simabull tsai <tsaizb(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
@@ -58,6 +59,8 @@
"Torbutton provides a button to configure Tor settings and quickly and easily "
"clear private browsing data."
msgstr ""
+"Torbutton 提供了一个按钮,可对“Tor 设置”进行配置,并可快速而方便地清除浏览器"
+"隐私数据。"
#: torbutton.popup.history.warning
msgid ""
@@ -361,10 +364,16 @@
"Are you sure you want to enable plugins?\n"
"\n"
msgstr ""
+"Flash 之类的插件可对用户的隐私与匿名性造成危害。\n"
+"\n"
+"它们还可能绕过 Tor 而泄漏用户的当前位置和 IP 地址。\n"
+"\n"
+"是否确定启用插件?\n"
+"\n"
#: torbutton.popup.never_ask_again
msgid "Never ask me again"
-msgstr ""
+msgstr "不再询问"
#. # Canvas permission prompt. Strings are kept here for ease of translation.
#: canvas.siteprompt
Modified: translation/trunk/projects/torbutton/po/zh_TW/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/zh_TW/torbutton.properties.po 2013-03-09 00:25:48 UTC (rev 26096)
+++ translation/trunk/projects/torbutton/po/zh_TW/torbutton.properties.po 2013-03-09 02:40:52 UTC (rev 26097)
@@ -7,8 +7,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
-"PO-Revision-Date: 2013-02-12 03:14+0000\n"
+"POT-Creation-Date: 2013-03-08 18:37-0700\n"
+"PO-Revision-Date: 2013-03-07 23:03+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: zh_TW\n"
1
0

r26096: {website} TBB design doc: More review updates. (website/trunk/projects/torbrowser/design)
by Mike Perry 09 Mar '13
by Mike Perry 09 Mar '13
09 Mar '13
Author: mikeperry
Date: 2013-03-09 00:25:48 +0000 (Sat, 09 Mar 2013)
New Revision: 26096
Modified:
website/trunk/projects/torbrowser/design/index.html.en
Log:
TBB design doc: More review updates.
Modified: website/trunk/projects/torbrowser/design/index.html.en
===================================================================
--- website/trunk/projects/torbrowser/design/index.html.en 2013-03-08 17:10:44 UTC (rev 26095)
+++ website/trunk/projects/torbrowser/design/index.html.en 2013-03-09 00:25:48 UTC (rev 26096)
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>The Design and Implementation of the Tor Browser [DRAFT]</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1" /></head><body><div class="article" title="The Design and Implementation of the Tor Browser [DRAFT]"><div class="titlepage"><div><div><h2 class="title"><a id="design"></a>The Design and Implementation of the Tor Browser [DRAFT]</h2></div><div><div class="author"><h3 class="author"><span class="firstname">Mike</span> <span class="surname">Perry</span></h3><div class="affiliation"><div class="address"><p><code class="email"><<a class="email" href="mailto:mikeperry#torproject org">mikeperry#torproject org</a>></code></p></div></div></div></div><div><div class="author"><h3 class="author"><span class="firstname">Erinn</span> <span class="surname">Clark</span></h3><div class="affiliation"><div class="address"><p><code class=
"email"><<a class="email" href="mailto:erinn#torproject org">erinn#torproject org</a>></code></p></div></div></div></div><div><div class="author"><h3 class="author"><span class="firstname">Steven</span> <span class="surname">Murdoch</span></h3><div class="affiliation"><div class="address"><p><code class="email"><<a class="email" href="mailto:sjmurdoch#torproject org">sjmurdoch#torproject org</a>></code></p></div></div></div></div><div><p class="pubdate">March 8 2013</p></div></div><hr /></div><div class="toc"><p><strong>Table of Contents</strong></p><dl><dt><span class="sect1"><a href="#idp4695088">1. Introduction</a></span></dt><dd><dl><dt><span class="sect2"><a href="#components">1.1. Browser Component Overview</a></span></dt></dl></dd><dt><span class="sect1"><a href="#DesignRequirements">2. Design Requirements and Philosophy</a></span></dt><dd><dl><dt><span class="sect2"><a href="#security">2.1. Security Requirements</a></span></dt><dt><span class="sect2"><a
href="#privacy">2.2. Privacy Requirements</a></span></dt><dt><span class="sect2"><a href="#philosophy">2.3. Philosophy</a></span></dt></dl></dd><dt><span class="sect1"><a href="#adversary">3. Adversary Model</a></span></dt><dd><dl><dt><span class="sect2"><a href="#adversary-goals">3.1. Adversary Goals</a></span></dt><dt><span class="sect2"><a href="#adversary-positioning">3.2. Adversary Capabilities - Positioning</a></span></dt><dt><span class="sect2"><a href="#attacks">3.3. Adversary Capabilities - Attacks</a></span></dt></dl></dd><dt><span class="sect1"><a href="#Implementation">4. Implementation</a></span></dt><dd><dl><dt><span class="sect2"><a href="#proxy-obedience">4.1. Proxy Obedience</a></span></dt><dt><span class="sect2"><a href="#state-separation">4.2. State Separation</a></span></dt><dt><span class="sect2"><a href="#disk-avoidance">4.3. Disk Avoidance</a></span></dt><dt><span class="sect2"><a href="#app-data-isolation">4.4. Application Data Isolation</a></span></
dt><dt><span class="sect2"><a href="#identifier-linkability">4.5. Cross-Origin Identifier Unlinkability</a></span></dt><dt><span class="sect2"><a href="#fingerprinting-linkability">4.6. Cross-Origin Fingerprinting Unlinkability</a></span></dt><dt><span class="sect2"><a href="#new-identity">4.7. Long-Term Unlinkability via "New Identity" button</a></span></dt><dt><span class="sect2"><a href="#other-security">4.8. Other Security Measures</a></span></dt><dt><span class="sect2"><a href="#firefox-patches">4.9. Description of Firefox Patches</a></span></dt></dl></dd><dt><span class="appendix"><a href="#Transparency">A. Towards Transparency in Navigation Tracking</a></span></dt><dd><dl><dt><span class="sect1"><a href="#deprecate">A.1. Deprecation Wishlist</a></span></dt><dt><span class="sect1"><a href="#idp5836112">A.2. Promising Standards</a></span></dt></dl></dd></dl></div><div class="sect1" title="1. Introduction"><div class="titlepage"><div><div><h2 class="title" style="clear:
both"><a id="idp4695088"></a>1. Introduction</h2></div></div></div><p>
+<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>The Design and Implementation of the Tor Browser [DRAFT]</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1" /></head><body><div class="article" title="The Design and Implementation of the Tor Browser [DRAFT]"><div class="titlepage"><div><div><h2 class="title"><a id="design"></a>The Design and Implementation of the Tor Browser [DRAFT]</h2></div><div><div class="author"><h3 class="author"><span class="firstname">Mike</span> <span class="surname">Perry</span></h3><div class="affiliation"><div class="address"><p><code class="email"><<a class="email" href="mailto:mikeperry#torproject org">mikeperry#torproject org</a>></code></p></div></div></div></div><div><div class="author"><h3 class="author"><span class="firstname">Erinn</span> <span class="surname">Clark</span></h3><div class="affiliation"><div class="address"><p><code class=
"email"><<a class="email" href="mailto:erinn#torproject org">erinn#torproject org</a>></code></p></div></div></div></div><div><div class="author"><h3 class="author"><span class="firstname">Steven</span> <span class="surname">Murdoch</span></h3><div class="affiliation"><div class="address"><p><code class="email"><<a class="email" href="mailto:sjmurdoch#torproject org">sjmurdoch#torproject org</a>></code></p></div></div></div></div><div><p class="pubdate">March 8 2013</p></div></div><hr /></div><div class="toc"><p><strong>Table of Contents</strong></p><dl><dt><span class="sect1"><a href="#idp2931312">1. Introduction</a></span></dt><dd><dl><dt><span class="sect2"><a href="#components">1.1. Browser Component Overview</a></span></dt></dl></dd><dt><span class="sect1"><a href="#DesignRequirements">2. Design Requirements and Philosophy</a></span></dt><dd><dl><dt><span class="sect2"><a href="#security">2.1. Security Requirements</a></span></dt><dt><span class="sect2"><a
href="#privacy">2.2. Privacy Requirements</a></span></dt><dt><span class="sect2"><a href="#philosophy">2.3. Philosophy</a></span></dt></dl></dd><dt><span class="sect1"><a href="#adversary">3. Adversary Model</a></span></dt><dd><dl><dt><span class="sect2"><a href="#adversary-goals">3.1. Adversary Goals</a></span></dt><dt><span class="sect2"><a href="#adversary-positioning">3.2. Adversary Capabilities - Positioning</a></span></dt><dt><span class="sect2"><a href="#attacks">3.3. Adversary Capabilities - Attacks</a></span></dt></dl></dd><dt><span class="sect1"><a href="#Implementation">4. Implementation</a></span></dt><dd><dl><dt><span class="sect2"><a href="#proxy-obedience">4.1. Proxy Obedience</a></span></dt><dt><span class="sect2"><a href="#state-separation">4.2. State Separation</a></span></dt><dt><span class="sect2"><a href="#disk-avoidance">4.3. Disk Avoidance</a></span></dt><dt><span class="sect2"><a href="#app-data-isolation">4.4. Application Data Isolation</a></span></
dt><dt><span class="sect2"><a href="#identifier-linkability">4.5. Cross-Origin Identifier Unlinkability</a></span></dt><dt><span class="sect2"><a href="#fingerprinting-linkability">4.6. Cross-Origin Fingerprinting Unlinkability</a></span></dt><dt><span class="sect2"><a href="#new-identity">4.7. Long-Term Unlinkability via "New Identity" button</a></span></dt><dt><span class="sect2"><a href="#other-security">4.8. Other Security Measures</a></span></dt><dt><span class="sect2"><a href="#firefox-patches">4.9. Description of Firefox Patches</a></span></dt></dl></dd><dt><span class="appendix"><a href="#Transparency">A. Towards Transparency in Navigation Tracking</a></span></dt><dd><dl><dt><span class="sect1"><a href="#deprecate">A.1. Deprecation Wishlist</a></span></dt><dt><span class="sect1"><a href="#idp5839584">A.2. Promising Standards</a></span></dt></dl></dd></dl></div><div class="sect1" title="1. Introduction"><div class="titlepage"><div><div><h2 class="title" style="clear:
both"><a id="idp2931312"></a>1. Introduction</h2></div></div></div><p>
This document describes the <a class="link" href="#adversary" title="3. Adversary Model">adversary model</a>,
-<a class="link" href="#DesignRequirements" title="2. Design Requirements and Philosophy">design requirements</a>, and <a class="link" href="#Implementation" title="4. Implementation">implementation</a> of the Tor Browser. It is current as of Tor Browser 2.3.25-4
-and Torbutton 1.5.0.
+<a class="link" href="#DesignRequirements" title="2. Design Requirements and Philosophy">design requirements</a>, and <a class="link" href="#Implementation" title="4. Implementation">implementation</a> of the Tor Browser. It is current as of Tor Browser
+2.3.25-5 and Torbutton 1.5.1.
</p><p>
@@ -259,13 +259,6 @@
The adversary may also be interested in history disclosure: the ability to
query a user's history to see if they have issued certain censored search
queries, or visited censored sites.
- </p></li><li class="listitem"><span class="command"><strong>Location information</strong></span><p>
-
-Location information such as timezone and locality can be useful for the
-adversary to determine if a user is in fact originating from one of the
-regions they are attempting to control, or to zero-in on the geographical
-location of a particular dissident or whistleblower.
-
</p></li><li class="listitem"><span class="command"><strong>Correlate activity across multiple sites</strong></span><p>
The primary goal of the advertising networks is to know that the user who
@@ -276,11 +269,12 @@
</p></li><li class="listitem"><span class="command"><strong>Fingerprinting/anonymity set reduction</strong></span><p>
Fingerprinting (more generally: "anonymity set reduction") is used to attempt
-to zero in on a particular individual without the use of tracking identifiers.
-If the dissident or whistleblower is using a rare build of Firefox for an
-obscure operating system, this can be very useful information for tracking
-them down, or at least <a class="link" href="#fingerprinting">tracking their
-activities</a>.
+to gather identifying information on a particular individual without the use
+of tracking identifiers. If the dissident or whistleblower's timezone is
+available, and they are using a rare build of Firefox for an obscure operating
+system, and they have a specific display resolution only used on one type of
+laptop, this can be very useful information for tracking them down, or at
+least <a class="link" href="#fingerprinting">tracking their activities</a>.
</p></li><li class="listitem"><span class="command"><strong>History records and other on-disk
information</strong></span><p>
@@ -435,18 +429,20 @@
</p></li></ol></div></li><li class="listitem"><a id="website-traffic-fingerprinting"></a><span class="command"><strong>Website traffic fingerprinting</strong></span><p>
Website traffic fingerprinting is an attempt by the adversary to recognize the
-encrypted traffic patterns of specific websites. The most comprehensive
-study of the statistical properties of this attack against Tor was done by
-<a class="ulink" href="http://lorre.uni.lu/~andriy/papers/acmccs-wpes11-fingerprinting.pdf" target="_top">Panchenko
+encrypted traffic patterns of specific websites. In the case of Tor, this
+attack would take place between the user and the Guard node, or at the Guard
+node itself.
+ </p><p> The most comprehensive study of the statistical properties of this
+attack against Tor was done by <a class="ulink" href="http://lorre.uni.lu/~andriy/papers/acmccs-wpes11-fingerprinting.pdf" target="_top">Panchenko
et al</a>. Unfortunately, the publication bias in academia has encouraged
the production of a number of follow-on attack papers claiming "improved"
-success rates, which are enabled primarily by taking a number of shortcuts
-(such as classifying only very small numbers of websites, neglecting to
-publish ROC curves or at least false positive rates, and/or omitting the
-effects of dataset size on their results). Despite these subsequent
-"improvements" (which in some cases amusingly claim to completely invalidate
-any attempt at defense), we are skeptical of the efficacy of this attack in a
-real world scenario, <span class="emphasis"><em>especially</em></span> in the face of any
+success rates, in some cases even claiming to completely invalidate any
+attempt at defense. These "improvements" are actually enabled primarily by
+taking a number of shortcuts (such as classifying only very small numbers of
+web pages, neglecting to publish ROC curves or at least false positive rates,
+and/or omitting the effects of dataset size on their results). Despite these
+subsequent "improvements", we are skeptical of the efficacy of this attack in
+a real world scenario, <span class="emphasis"><em>especially</em></span> in the face of any
defenses.
</p><p>
@@ -459,7 +455,7 @@
in your hypothesis space</a>. In fact, even for unbiased hypothesis
spaces, the number of training examples required to achieve a reasonable error
bound is <a class="ulink" href="https://en.wikipedia.org/wiki/Probably_approximately_correct_learning#Equiv…" target="_top">a
-function of the number of categories</a> you need to classify.
+function of the complexity of the categories</a> you need to classify.
</p><p>
@@ -467,20 +463,24 @@
In the case of this attack, the key factors that increase the classification
complexity (and thus hinder a real world adversary who attempts this attack)
are large numbers of dynamically generated pages, partially cached content,
-and non-web activity in the "Open World" scenario of the entire Tor network.
-This large level of classification complexity is further confounded by a noisy
-and low resolution featureset, one which is also realtively easy for the
-defender to manipulate at low cost.
+and also the non-web activity of entire Tor network. This yields an effective
+number of "web pages" many orders of magnitude larger than even <a class="ulink" href="http://lorre.uni.lu/~andriy/papers/acmccs-wpes11-fingerprinting.pdf" target="_top">Panchenko's
+"Open World" scenario</a>, which suffered continous near-constant decline
+in the true positive rate as the "Open World" size grew (see figure 4). This
+large level of classification complexity is further confounded by a noisy and
+low resolution featureset - one which is also realtively easy for the defender
+to manipulate at low cost.
</p><p>
In fact, the ocean of Tor Internet activity (at least, when compared to a lab
-setting) makes it a certainty that an adversary attempting to classify a large
-number of sites with poor feature resolution will ultimately be overwhelmed by
-false positives. This problem is known in the IDS literature as the <a class="ulink" href="http://www.raid-symposium.org/raid99/PAPERS/Axelsson.pdf" target="_top">Base Rate
+setting) makes it a certainty that an adversary attempting examine large
+amounts of Tor traffic will ultimately be overwhelmed by false positives (even
+after making heavy tradeoffs on the ROC curve to minimize false positives to
+below 0.01%). This problem is known in the IDS literature as the <a class="ulink" href="http://www.raid-symposium.org/raid99/PAPERS/Axelsson.pdf" target="_top">Base Rate
Fallacy</a>, and it is the primary reason that anomaly and activity
classification-based IDS and antivirus systems have failed to materialize in
-the marketplace.
+the marketplace (despite early success in academic literature).
</p><p>
@@ -500,7 +500,9 @@
outside of the browser's ability to defend against, but it is worth mentioning
for completeness. In fact, <a class="ulink" href="http://tails.boum.org/contribute/design/" target="_top">The Tails system</a> can
provide some defense against this adversary, and it does include the Tor
-Browser.
+Browser. We do however aim to defend against an adersary that has passive
+forensic access the disk after browsing activity takes place, as part of our
+<a class="link" href="#disk-avoidance" title="4.3. Disk Avoidance">Disk Avoidance</a> defenses.
</p></li></ol></div></div></div><div class="sect1" title="4. Implementation"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a id="Implementation"></a>4. Implementation</h2></div></div></div><p>
@@ -606,13 +608,13 @@
Tor Browser State is separated from existing browser state through use of a
custom Firefox profile. Furthermore, plugins are disabled, which prevents
Flash cookies from leaking from a pre-existing Flash directory.
- </p></div><div class="sect2" title="4.3. Disk Avoidance"><div class="titlepage"><div><div><h3 class="title"><a id="disk-avoidance"></a>4.3. Disk Avoidance</h3></div></div></div><div class="sect3" title="Design Goal:"><div class="titlepage"><div><div><h4 class="title"><a id="idp5577776"></a>Design Goal:</h4></div></div></div><div class="blockquote"><blockquote class="blockquote">
+ </p></div><div class="sect2" title="4.3. Disk Avoidance"><div class="titlepage"><div><div><h3 class="title"><a id="disk-avoidance"></a>4.3. Disk Avoidance</h3></div></div></div><div class="sect3" title="Design Goal:"><div class="titlepage"><div><div><h4 class="title"><a id="idp5584448"></a>Design Goal:</h4></div></div></div><div class="blockquote"><blockquote class="blockquote">
The User Agent MUST (at user option) prevent all disk records of browser activity.
The user should be able to optionally enable URL history and other history
features if they so desire.
- </blockquote></div></div><div class="sect3" title="Implementation Status:"><div class="titlepage"><div><div><h4 class="title"><a id="idp5579136"></a>Implementation Status:</h4></div></div></div><div class="blockquote"><blockquote class="blockquote">
+ </blockquote></div></div><div class="sect3" title="Implementation Status:"><div class="titlepage"><div><div><h4 class="title"><a id="idp5585808"></a>Implementation Status:</h4></div></div></div><div class="blockquote"><blockquote class="blockquote">
We achieve this goal through several mechanisms. First, we set the Firefox
Private Browsing preference
@@ -692,7 +694,7 @@
context-menu option to drill down into specific types of state or permissions.
An example of this simplification can be seen in Figure 1.
- </p><div class="figure"><a id="idp5603216"></a><p class="title"><strong>Figure 1. Improving the Privacy UI</strong></p><div class="figure-contents"><div class="mediaobject" align="center"><img src="NewCookieManager.png" align="middle" alt="Improving the Privacy UI" /></div><div class="caption"><p></p>
+ </p><div class="figure"><a id="idp5609888"></a><p class="title"><strong>Figure 1. Improving the Privacy UI</strong></p><div class="figure-contents"><div class="mediaobject" align="center"><img src="NewCookieManager.png" align="middle" alt="Improving the Privacy UI" /></div><div class="caption"><p></p>
This example UI is a mock-up of how isolating identifiers to the URL bar
origin can simplify the privacy UI for all data - not just cookies. Once
@@ -732,7 +734,8 @@
with OCSP relying the cacheKey property for reuse of POST requests</a>, we
had to <a class="ulink" href="https://gitweb.torproject.org/torbrowser.git/blob/maint-2.4:/src/current-pa…" target="_top">patch
Firefox to provide a cacheDomain cache attribute</a>. We use the fully
-qualified url bar domain as input to this field.
+qualified url bar domain as input to this field, to avoid the complexities
+of heuristically determining the second-level DNS name.
</p><p>
@@ -741,7 +744,7 @@
cache isolation from the third party cookie attribute. Second, we use several
mechanisms to attempt to determine the actual location attribute of the
top-level window (to obtain the url bar FQDN) used to load the page, as
-opposed to relying solely on the referer property.
+opposed to relying solely on the Referer property.
</p><p>
@@ -853,7 +856,7 @@
In order to eliminate non-consensual linkability but still allow for sites
that utilize this property to function, we reset the window.name property of
-tabs in Torbutton every time we encounter a blank referer. This behavior
+tabs in Torbutton every time we encounter a blank Referer. This behavior
allows window.name to persist for the duration of a click-driven navigation
session, but as soon as the user enters a new URL or navigates between
https/http schemes, the property is cleared.
@@ -892,7 +895,7 @@
</p></li><li class="listitem">Exit node usage
<p><span class="command"><strong>Design Goal:</strong></span>
-Every distinct navigation session (as defined by a non-blank referer header)
+Every distinct navigation session (as defined by a non-blank Referer header)
MUST exit through a fresh Tor circuit in Tor Browser to prevent exit node
observers from linking concurrent browsing activity.
@@ -1178,27 +1181,30 @@
menu option in Torbutton. This context menu option is active if Torbutton can
read the environment variables $TOR_CONTROL_PASSWD and $TOR_CONTROL_PORT.
- </p><div class="sect3" title="Design Goal:"><div class="titlepage"><div><div><h4 class="title"><a id="idp5721200"></a>Design Goal:</h4></div></div></div><div class="blockquote"><blockquote class="blockquote">
+ </p><div class="sect3" title="Design Goal:"><div class="titlepage"><div><div><h4 class="title"><a id="idp5727952"></a>Design Goal:</h4></div></div></div><div class="blockquote"><blockquote class="blockquote">
All linkable identifiers and browser state MUST be cleared by this feature.
- </blockquote></div></div><div class="sect3" title="Implementation Status:"><div class="titlepage"><div><div><h4 class="title"><a id="idp5722448"></a>Implementation Status:</h4></div></div></div><div class="blockquote"><blockquote class="blockquote"><p>
+ </blockquote></div></div><div class="sect3" title="Implementation Status:"><div class="titlepage"><div><div><h4 class="title"><a id="idp5729200"></a>Implementation Status:</h4></div></div></div><div class="blockquote"><blockquote class="blockquote"><p>
First, Torbutton disables Javascript in all open tabs and windows by using
both the <a class="ulink" href="https://developer.mozilla.org/en-US/docs/XPCOM_Interface_Reference/nsIDocSh…" target="_top">browser.docShell.allowJavascript</a>
attribute as well as <a class="ulink" href="https://developer.mozilla.org/en-US/docs/XPCOM_Interface_Reference/nsIDOMWi…" target="_top">nsIDOMWindowUtil.suppressEventHandling()</a>.
We then stop all page activity for each tab using <a class="ulink" href="https://developer.mozilla.org/en-US/docs/XPCOM_Interface_Reference/nsIWebNa…" target="_top">browser.webNavigation.stop(nsIWebNavigation.STOP_ALL)</a>.
We then clear the site-specific Zoom by temporarily disabling the preference
-<span class="command"><strong>browser.zoom.siteSpecific</strong></span>, and clear the GeoIP wiki token
-URL and the last opened URL prefs (if they exist). Each tab is then closed.
+<span class="command"><strong>browser.zoom.siteSpecific</strong></span>, and clear the GeoIP wifi token URL
+<span class="command"><strong>geo.wifi.access_token</strong></span> and the last opened URL prefs (if
+they exist). Each tab is then closed.
</p><p>
-After closing all tabs, we then clear the following state: searchbox and
-findbox text, HTTP auth, SSL state, OCSP state, site-specific content
-preferences (including HSTS state), content and image cache, Cookies, DOM
-storage, safe browsing key, and the Google wifi geolocation token (if it
-exists).
+After closing all tabs, we then emit "<a class="ulink" href="https://developer.mozilla.org/en-US/docs/Supporting_private_browsing_mode#P…" target="_top">browser:purge-session-history</a>"
+(which instructs addons and various Firefox components to clear their session
+state), and then manually clear the following state: searchbox and findbox
+text, HTTP auth, SSL state, OCSP state, site-specific content preferences
+(including HSTS state), content and image cache, offline cache, Cookies, DOM
+storage, DOM local storage, the safe browsing key, and the Google wifi geolocation
+token (if it exists).
</p><p>
@@ -1207,7 +1213,7 @@
new circuit to be created.
</p><p>
Finally, a fresh browser window is opened, and the current browser window is
-closed.
+closed (this does not spawn a new Firefox process, only a new window).
</p></blockquote></div><div class="blockquote"><blockquote class="blockquote">
If the user chose to "protect" any cookies by using the Torbutton Cookie
Protections UI, those cookies are not cleared as part of the above.
@@ -1223,9 +1229,9 @@
Fingerprinting</a> is a statistical attack to attempt to recognize specific
encrypted website activity.
- </p><div class="sect3" title="Design Goal:"><div class="titlepage"><div><div><h4 class="title"><a id="idp5734960"></a>Design Goal:</h4></div></div></div><div class="blockquote"><blockquote class="blockquote"><p>
+ </p><div class="sect3" title="Design Goal:"><div class="titlepage"><div><div><h4 class="title"><a id="idp5743360"></a>Design Goal:</h4></div></div></div><div class="blockquote"><blockquote class="blockquote"><p>
-We want to deploy a mechanism that reduces the accuracy of features available
+We want to deploy a mechanism that reduces the accuracy of <a class="ulink" href="https://en.wikipedia.org/wiki/Feature_selection" target="_top">useful features</a> available
for classification. This mechanism would either impact the true and false
positive accuracy rates, <span class="emphasis"><em>or</em></span> reduce the number of webpages
that could be classified at a given accuracy rate.
@@ -1242,9 +1248,9 @@
Padding</a> and <a class="ulink" href="http://www.cs.sunysb.edu/~xcai/fp.pdf" target="_top">
Congestion-Sensitive BUFLO</a>. It may be also possible to <a class="ulink" href="https://trac.torproject.org/projects/tor/ticket/7028" target="_top">tune such
defenses</a> such that they only use existing spare Guard bandwidth capacity in the Tor
-network.
+network, making them also effectively no-overhead.
- </p></blockquote></div></div><div class="sect3" title="Implementation Status:"><div class="titlepage"><div><div><h4 class="title"><a id="idp5741184"></a>Implementation Status:</h4></div></div></div><div class="blockquote"><blockquote class="blockquote"><p>
+ </p></blockquote></div></div><div class="sect3" title="Implementation Status:"><div class="titlepage"><div><div><h4 class="title"><a id="idp5750176"></a>Implementation Status:</h4></div></div></div><div class="blockquote"><blockquote class="blockquote"><p>
Currently, we patch Firefox to <a class="ulink" href="https://gitweb.torproject.org/torbrowser.git/blob/maint-2.4:/src/current-pa…" target="_top">randomize
pipeline order and depth</a>. Unfortunately, pipelining is very fragile.
Many sites do not support it, and even sites that advertise support for
@@ -1385,7 +1391,9 @@
the number of times CSS and Javascript can cause font-family rules to
evaluate. Remote @font-face fonts are exempt from the limits imposed by this
patch, and remote fonts are given priority over local fonts whenever both
-appear in the same font-family rule.
+appear in the same font-family rule. We do this by explicitly altering the
+nsRuleNode rule represenation itself to remove the local font families before
+the rule hits the font renderer.
</p></li><li class="listitem"><a class="ulink" href="https://gitweb.torproject.org/torbrowser.git/blob/maint-2.4:/src/current-pa…" target="_top">Rebrand Firefox to Tor Browser</a><p>
@@ -1515,18 +1523,18 @@
</p><div class="sect1" title="A.1. Deprecation Wishlist"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a id="deprecate"></a>A.1. Deprecation Wishlist</h2></div></div></div><div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem">The Referer Header
<p>
-We haven't disabled or restricted the referer ourselves because of the
-non-trivial number of sites that rely on the referer header to "authenticate"
+We haven't disabled or restricted the Referer ourselves because of the
+non-trivial number of sites that rely on the Referer header to "authenticate"
image requests and deep-link navigation on their sites. Furthermore, there
seems to be no real privacy benefit to taking this action by itself in a
-vacuum, because many sites have begun encoding referer URL information into
+vacuum, because many sites have begun encoding Referer URL information into
GET parameters when they need it to cross http to https scheme transitions.
Google's +1 buttons are the best example of this activity.
</p><p>
Because of the availability of these other explicit vectors, we believe the
-main risk of the referer header is through inadvertent and/or covert data
+main risk of the Referer header is through inadvertent and/or covert data
leakage. In fact, <a class="ulink" href="http://www2.research.att.com/~bala/papers/wosn09.pdf" target="_top">a great deal of
personal data</a> is inadvertently leaked to third parties through the
source URL parameters.
@@ -1537,7 +1545,7 @@
transmit its URL to third party content elements during load or during
link-click, it should have to specify this as a property of the associated HTML
tag. With an explicit property, it would then be possible for the user agent to
-inform the user if they are about to click on a link that will transmit referer
+inform the user if they are about to click on a link that will transmit Referer
information (perhaps through something as subtle as a different color in the
lower toolbar for the destination URL). This same UI notification can also be
used for links with the <a class="ulink" href="https://developer.mozilla.org/en-US/docs/HTML/Element/a#Attributes" target="_top">"ping"</a>
@@ -1575,7 +1583,7 @@
ourselves</a>, as they are comparatively rare and can be handled with site
permissions.
- </p></li></ol></div></div><div class="sect1" title="A.2. Promising Standards"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a id="idp5836112"></a>A.2. Promising Standards</h2></div></div></div><div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"><a class="ulink" href="http://web-send.org" target="_top">Web-Send Introducer</a><p>
+ </p></li></ol></div></div><div class="sect1" title="A.2. Promising Standards"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a id="idp5839584"></a>A.2. Promising Standards</h2></div></div></div><div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"><a class="ulink" href="http://web-send.org" target="_top">Web-Send Introducer</a><p>
Web-Send is a browser-based link sharing and federated login widget that is
designed to operate without relying on third-party tracking or abusing other
1
0

r26095: {} publish my BFOC talk from today and associated images and pa (in projects/presentations: . images)
by Andrew Lewman 08 Mar '13
by Andrew Lewman 08 Mar '13
08 Mar '13
Author: phobos
Date: 2013-03-08 17:10:44 +0000 (Fri, 08 Mar 2013)
New Revision: 26095
Added:
projects/presentations/2013-03-08-BFOC-Presentation.pdf
projects/presentations/2013-03-08-BFOC-Presentation.txt
projects/presentations/images/ooni-site-headers.png
projects/presentations/images/wikipedia-internet-blackholes.pdf
projects/presentations/images/wikipedia-internet-blackholes.pdf_tex
projects/presentations/images/wikipedia-internet-blackholes.svg
Log:
publish my BFOC talk from today and associated images and pandoc source text file.
Added: projects/presentations/2013-03-08-BFOC-Presentation.pdf
===================================================================
(Binary files differ)
Property changes on: projects/presentations/2013-03-08-BFOC-Presentation.pdf
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: projects/presentations/2013-03-08-BFOC-Presentation.txt
===================================================================
--- projects/presentations/2013-03-08-BFOC-Presentation.txt (rev 0)
+++ projects/presentations/2013-03-08-BFOC-Presentation.txt 2013-03-08 17:10:44 UTC (rev 26095)
@@ -0,0 +1,61 @@
+% Everyone on the Internet knows you're a dog
+% Andrew Lewman andrew(a)torproject.org
+% 08 March 2013
+
+# Who is this guy?
+
+501(c)(3) non-profit organization dedicated to the research and development of technologies for online anonymity and privacy
+
+[https://www.torproject.org](https://www.torproject.org)
+
+\begin{center}
+\includegraphics[keepaspectratio,width=\textwidth, height=.8\textheight]{images/2009-oval_sticker_new}
+\end{center}
+
+# Internet Freedom
+
+> Governments of the Industrial World, you weary giants of flesh and steel, I come from Cyberspace, the new home of Mind. On behalf of the future, I ask you of the past to leave us alone. You are not welcome among us. You have no sovereignty where we gather.
+
+> — John Perry Barlow, "A Declaration of the Independence of Cyberspace"
+
+> February 8, 1996
+
+# ...applied theory...
+\begin{center}
+\includegraphics<1>[keepaspectratio,width=\textwidth, height=.8\textheight]{./images/2011-06-08-china-net-censorship-piracy-porn-crop}
+\includegraphics<2>[keepaspectratio,width=\textwidth, height=.8\textheight]{./images/cropped-saudi-arabia-filter-message}
+\includegraphics<3>[keepaspectratio,width=\textwidth, height=.8\textheight]{./images/wikipedia-internet-blackholes.pdf}
+\includegraphics<4>[keepaspectratio,width=\textwidth, height=.8\textheight]{./images/procera-evolved-dpi}
+\includegraphics<5>[keepaspectratio,width=\textwidth, height=.8\textheight]{./images/2011-10-arstechnica-major-isps-usa-6strikes}
+\includegraphics<6>[keepaspectratio,width=\textwidth, height=.8\textheight]{./images/iran-ssl-dpi-26-seconds-to-death}
+\includegraphics<7>[keepaspectratio,width=\textwidth, height=.8\textheight]{./images/2009-knowprivacy-report-webbug-domains}
+\includegraphics<8>[keepaspectratio,width=\textwidth, height=.8\textheight]{./images/dataflow-futureprivacychart}
+\end{center}
+
+# ...spring is in the air...
+\begin{center}
+\includegraphics[[keepaspectratio,width=\textwidth, height=.8\textheight]{./images/paco-primera-pagina-oleo-lienzo-110-x-150-cms-2008-red}
+\end{center}
+
+# Cannot manage what you cannot measure
+
+\includegraphics[scale=0.6]{./images/ooni-site-headers}
+
+[https://ooni.torproject.org](https://ooni.torproject.org)
+
+# Thanks!
+
+\begin{center}
+\includegraphics[keepaspectratio,width=\textwidth, height=.8\textheight]{images/thankyou_img}
+\end{center}
+
+Visit [https://www.torproject.org](https://www.torproject.org) for more information, links, and ideas.
+
+# Copyrights
+\begin{itemize}
+\item applied theory, first image: Reporters without Borders, http://www.rsf.org
+\item applied theory, second image: Tor Project, Inc, https://blog.torproject.org/blog/update-internet-censorship-iran
+\item applied theory, third image: Information Week,2011-04-09, http://www.informationweek.com/news/security/attacks/229400850
+\item applied theory, fourth image: Al Jazeera, February 2011
+\item spring is in the air, Paco Pomet, http://pacopomet.wordpress.com/
+\end{itemize}
Property changes on: projects/presentations/2013-03-08-BFOC-Presentation.txt
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: svn:eol-style
+ native
Added: projects/presentations/images/ooni-site-headers.png
===================================================================
(Binary files differ)
Property changes on: projects/presentations/images/ooni-site-headers.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Added: projects/presentations/images/wikipedia-internet-blackholes.pdf
===================================================================
(Binary files differ)
Property changes on: projects/presentations/images/wikipedia-internet-blackholes.pdf
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: projects/presentations/images/wikipedia-internet-blackholes.pdf_tex
===================================================================
--- projects/presentations/images/wikipedia-internet-blackholes.pdf_tex (rev 0)
+++ projects/presentations/images/wikipedia-internet-blackholes.pdf_tex 2013-03-08 17:10:44 UTC (rev 26095)
@@ -0,0 +1,54 @@
+%% Creator: Inkscape inkscape 0.48.3.1, www.inkscape.org
+%% PDF/EPS/PS + LaTeX output extension by Johan Engelen, 2010
+%% Accompanies image file 'wikipedia-internet-blackholes.pdf' (pdf, eps, ps)
+%%
+%% To include the image in your LaTeX document, write
+%% \input{<filename>.pdf_tex}
+%% instead of
+%% \includegraphics{<filename>.pdf}
+%% To scale the image, write
+%% \def\svgwidth{<desired width>}
+%% \input{<filename>.pdf_tex}
+%% instead of
+%% \includegraphics[width=<desired width>]{<filename>.pdf}
+%%
+%% Images with a different path to the parent latex file can
+%% be accessed with the `import' package (which may need to be
+%% installed) using
+%% \usepackage{import}
+%% in the preamble, and then including the image with
+%% \import{<path to file>}{<filename>.pdf_tex}
+%% Alternatively, one can specify
+%% \graphicspath{{<path to file>/}}
+%%
+%% For more information, please see info/svg-inkscape on CTAN:
+%% http://tug.ctan.org/tex-archive/info/svg-inkscape
+%%
+\begingroup%
+ \makeatletter%
+ \providecommand\color[2][]{%
+ \errmessage{(Inkscape) Color is used for the text in Inkscape, but the package 'color.sty' is not loaded}%
+ \renewcommand\color[2][]{}%
+ }%
+ \providecommand\transparent[1]{%
+ \errmessage{(Inkscape) Transparency is used (non-zero) for the text in Inkscape, but the package 'transparent.sty' is not loaded}%
+ \renewcommand\transparent[1]{}%
+ }%
+ \providecommand\rotatebox[2]{#2}%
+ \ifx\svgwidth\undefined%
+ \setlength{\unitlength}{751.79780273bp}%
+ \ifx\svgscale\undefined%
+ \relax%
+ \else%
+ \setlength{\unitlength}{\unitlength * \real{\svgscale}}%
+ \fi%
+ \else%
+ \setlength{\unitlength}{\svgwidth}%
+ \fi%
+ \global\let\svgwidth\undefined%
+ \global\let\svgscale\undefined%
+ \makeatother%
+ \begin{picture}(1,0.50729342)%
+ \put(0,0){\includegraphics[width=\unitlength]{wikipedia-internet-blackholes.pdf}}%
+ \end{picture}%
+\endgroup%
Added: projects/presentations/images/wikipedia-internet-blackholes.svg
===================================================================
(Binary files differ)
Property changes on: projects/presentations/images/wikipedia-internet-blackholes.svg
___________________________________________________________________
Added: svn:mime-type
+ image/svg+xml
1
0

r26094: {website} Dropping 'Website and video documentation update' project Th (website/trunk/getinvolved/en)
by Damian Johnson 08 Mar '13
by Damian Johnson 08 Mar '13
08 Mar '13
Author: atagar
Date: 2013-03-08 17:03:16 +0000 (Fri, 08 Mar 2013)
New Revision: 26094
Modified:
website/trunk/getinvolved/en/volunteer.wml
Log:
Dropping 'Website and video documentation update' project
The documentation update project (which mostly concerned video tutorials) was
fine for OPW but not for GSoC. Hiding it on the page for now.
Modified: website/trunk/getinvolved/en/volunteer.wml
===================================================================
--- website/trunk/getinvolved/en/volunteer.wml 2013-03-08 17:00:50 UTC (rev 26093)
+++ website/trunk/getinvolved/en/volunteer.wml 2013-03-08 17:03:16 UTC (rev 26094)
@@ -1930,6 +1930,7 @@
</li>
-->
+ <!--
<a id="docUpdate"></a>
<li>
<b>Website and video documentation update</b>
@@ -1948,6 +1949,7 @@
website tickets</a> for more information and a starting point.
</p>
</li>
+ -->
<li>
<b>Bring up new ideas!</b>
1
0

r26093: {website} Dropping stem's PathSupport project from the page Last year (website/trunk/getinvolved/en)
by Damian Johnson 08 Mar '13
by Damian Johnson 08 Mar '13
08 Mar '13
Author: atagar
Date: 2013-03-08 17:00:50 +0000 (Fri, 08 Mar 2013)
New Revision: 26093
Modified:
website/trunk/getinvolved/en/volunteer.wml
Log:
Dropping stem's PathSupport project from the page
Last year I proposed a stem counterpart for PathSupport as a project for GSoC.
This did not go very well since we really haven't a clue *what* we want from
such a project. Since then this has not changed and there's little reason to
leave it on the page (even commented out).
Modified: website/trunk/getinvolved/en/volunteer.wml
===================================================================
--- website/trunk/getinvolved/en/volunteer.wml 2013-03-08 16:57:52 UTC (rev 26092)
+++ website/trunk/getinvolved/en/volunteer.wml 2013-03-08 17:00:50 UTC (rev 26093)
@@ -1650,68 +1650,6 @@
</li>
-->
- <!--
- <a id="stemPathsupport"></a>
- <li>
- <b>Stem PathSupport Capabilities</b>
- <br>
- Effort Level: <i>High</i>
- <br>
- Skill Level: <i>Medium</i>
- <br>
- Likely Mentors: <i>Damian (atagar)</i>
- <p><a
- href="https://trac.torproject.org/projects/tor/wiki/doc/stem">Stem</a> is a
- python controller library for tor. Like it's predecessor, <a
- href="#project-torctl">TorCtl</a>, it uses tor's <a
- href="https://gitweb.torproject.org/torspec.git/blob/HEAD:/control-spec.txt">control
- protocol</a> to help developers program against the tor process, enabling
- them to build things similar to <a href="#project-vidalia">Vidalia</a> and
- <a href="#project-arm">arm</a>.</p>
-
- <p>While TorCtl provided a fine first draft for this sort of functionality,
- it has not proved to be extensible nor maintainable. Stem is a rewrite of
- TorCtl with a heavy focus on testing, documentation, and providing a
- developer friendly API.</p>
-
- <p>At the moment stem is still very much incomplete, missing several pieces
- of functionality that TorCtl provides. This is a project to fix that by
- porting TorCtl's <a
- href="https://gitweb.torproject.org/pytorctl.git/blob/HEAD:/PathSupport.py">PathSupport
- module</a> to stem, writing tests for it, and migrate a couple clients to
- use it.</p>
-
- <p>PathSupport provides applications with programmatic control over how
- tor's circuits are built, for instance letting you exit from particular
- relays. This is used by projects like <a href="#project-torbel">TorBEL</a>,
- <a href="#project-torflow">the Bandwidth Scanners, and SoaT</a>.</p>
-
- <p>This project can be broken into three parts...</p>
-
- <ol style="list-style-type: decimal">
- <li><p>Look at PathSupport's clients to figure out how it is used and
- come up with the API that we will use for stem. Note that the goal if
- this project is <b>not</b> to simply copy PathSupport, but to make it
- better. This task would ideally be done as part of writing the GSoC
- application.</p></li>
- <li><p>Implement the PathSupport counterpart for stem. This should be
- done in an incremental fashion, writing the feature, tests, and going
- through a code review before moving on. I'll be pretty anal about making
- it as good as we can during these code reviews so plan for this to take a
- while. ;)</p></li>
- <li><p>The real test of the API that you've developed will come when we
- use it in some real applications. Try to migrate a TorCtl client or two
- to stem, filling in functionality that we're missing and improving our
- API as we discover issues. A particularly good client to start with would
- be TorBEL.</p></li>
- </ol>
-
- <p><b>
- Upon reflection this is not an especially good project for this year's GSoC. You are still perfectly wecome to apply for this project, but <a href="https://trac.torproject.org/projects/tor/wiki/doc/stem">other stem related tasks</a> such as implementing a general controller, descriptor fetching, and client migrations would be better. For the discussion that lead to this see <a href="http://archives.seul.org/or/dev/Apr-2012/msg00006.html">this thread</a>.
- </b></p>
- </li>
- -->
-
<a id="stemUsability"></a>
<li>
<b>Stem Usability and Porting</b>
1
0

r26092: {website} Updating stem's usability improvements project idea Many of (website/trunk/getinvolved/en)
by Damian Johnson 08 Mar '13
by Damian Johnson 08 Mar '13
08 Mar '13
Author: atagar
Date: 2013-03-08 16:57:52 +0000 (Fri, 08 Mar 2013)
New Revision: 26092
Modified:
website/trunk/getinvolved/en/volunteer.wml
Log:
Updating stem's usability improvements project idea
Many of the subtasks for stem's usability project have been done. Replacing
those with other tasks I've come up since then. I'm also requiring a code
sample from applicants to better get them engaged during the application
process.
Modified: website/trunk/getinvolved/en/volunteer.wml
===================================================================
--- website/trunk/getinvolved/en/volunteer.wml 2013-03-08 09:58:38 UTC (rev 26091)
+++ website/trunk/getinvolved/en/volunteer.wml 2013-03-08 16:57:52 UTC (rev 26092)
@@ -660,7 +660,7 @@
<p>
<b>Project Ideas:</b><br />
- <i><a href="#stemUsability">Stem Usability Improvements</a></i>
+ <i><a href="#stemUsability">Stem Usability and Porting</a></i>
</p>
<a id="project-txtorcon"></a>
@@ -1714,7 +1714,7 @@
<a id="stemUsability"></a>
<li>
- <b>Stem Usability Improvements</b>
+ <b>Stem Usability and Porting</b>
<br>
Effort Level: <i>Medium</i>
<br>
@@ -1728,7 +1728,7 @@
href="https://gitweb.torproject.org/torspec.git/blob/HEAD:/control-spec.txt">control
protocol</a> to help developers program against the tor process, enabling
them to build things similar to <a href="#project-vidalia">Vidalia</a> and
- <a href="#project-arm">arm</a>.
+ <a href="http://www.atagar.com/arm/">arm</a>.
</p>
<p>
@@ -1739,29 +1739,23 @@
</p>
<p>
- Stem is very nearly feature complete but presently has no users. We
- want to change that prior to making our first release for a couple
- reasons...
+ Stem has largely met these goals but there's still plenty of low hanging
+ fruit in terms of usability improvements. Also, we have clients still using
+ TorCtl that need to be ported over. This project includes several subtasks,
+ see the tickets for additional context...
</p>
- <ul>
- <li>Make sure that we have a reasonably good API, and improve the rough
- edges that hurt its usability.</li>
- <li>Provide examples for how stem can be used.</li>
- </ul>
+ <ol>
+ <li>Come up with a better, more developer friendly "Module Overview" for our documentation (<a href="https://stem.torproject.org/api/control.html">example page</a>). For instance, it would be nice to provide interlinking between the overview and the classes/methods that it lists. This will probably involve asking for help from the <a href="http://sphinx-doc.org/">Sphinx user list</a>. (<a href="https://trac.torproject.org/7632">ticket</a>)</li>
+ <li>Navigation of <a href="https://stem.torproject.org">stem's site</a> is clunky, in large part due to the linear page flow supported by sphinx. One possible fix for this would be css-only menus, ideally as a sphinx plugin so we could contribute it back upstream.(<a href="https://trac.torproject.org/8431">ticket</a>)</li>
+ <li>After getting some exposure to stem it would be time to give using it a try. Tor has a couple clients (<a href="https://trac.torproject.org/8263">TorBEL</a> and <a href="https://trac.torproject.org/8264">Tor Weather</a>) that are ready to be moved to stem. Hopefully porting these will also provide us with some lessons on how we can further improve stem's API.</li>
+ <li><b>... other ideas?</b> The above are just some ideas I've come up with to improve usability and likely not enough to fill the summer. Feel free to suggest some of your own! For instance, one option would be to expand <a href="https://stem.torproject.org/tutorial.html">stem's tutorials</a> with more examples, maybe <a href="https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-dev/">contacting tor-dev@</a> to brainstorm ideas. This last bit is pretty open so I look forward to seeing what you come up with!</li>
+ </ol>
<p>
- This project involves several tasks...
+ <b>As part of your application for this project please write a script that does something interesting with stem.</b> Bonus points if this is something that we can <a href="https://stem.torproject.org/tutorial.html">make a tutorial</a> around!
</p>
- <ol>
- <li>Move stem's site to Tor's website (<a href="https://trac.torproject.org/projects/tor/ticket/7324">ticket</a>)</li>
- <li>Set up Piwik for our site (<a href="https://trac.torproject.org/projects/tor/ticket/7424">ticket</a>)</li>
- <li>Come up with a better, more developer friendly "Module Overview" for our documentation (<a href="https://stem.torproject.org/api/control.html">example page</a>). For instance, it would be nice to provide interlinking between the overview and the classes/methods that it lists. This will probably involve asking for help from the <a href="http://sphinx-doc.org/">Sphinx user list</a>.</li>
- <li>Finally get your hands dirty using stem. We want to expand stem's <a href="https://stem.torproject.org/tutorial.html">tutorial page</a> with more examples. To do this you'll want to both brainstorm some of your own and contact the <a href="https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-dev/">tor-dev@ email list</a> to solicit ideas. This last step is pretty open ended, so go nuts with whatever you think will improve stem's usability!</li>
- </ol>
- </li>
-
<!--
<a id="tailsServer"></a>
<li>
1
0