tor-commits
Threads by month
- ----- 2025 -----
- July
- 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
October 2019
- 22 participants
- 4141 discussions

[translation/torbutton-abouttbupdatedtd] https://gitweb.torproject.org/translation.git/commit/?h=torbutton-abouttbupdatedtd
by translation@torproject.org 25 Oct '19
by translation@torproject.org 25 Oct '19
25 Oct '19
commit db3ac083ce622e770ccf36a27af31b80bfe71c82
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Oct 25 11:51:37 2019 +0000
https://gitweb.torproject.org/translation.git/commit/?h=torbutton-abouttbup…
---
nl/abouttbupdate.dtd | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/nl/abouttbupdate.dtd b/nl/abouttbupdate.dtd
index c33192504..55c4de7a0 100644
--- a/nl/abouttbupdate.dtd
+++ b/nl/abouttbupdate.dtd
@@ -1,4 +1,4 @@
-<!ENTITY aboutTBUpdate.changelogTitle "Tor Browser-wijzigingslog">
+<!ENTITY aboutTBUpdate.changelogTitle "Tor Browser-changelog">
<!ENTITY aboutTBUpdate.updated "Tor Browser is bijgewerkt.">
<!ENTITY aboutTBUpdate.linkPrefix "Bezoek ">
<!ENTITY aboutTBUpdate.linkLabel "onze website">
1
0

[tor-browser-build/maint-9.0] Bug 32284: Remove checked binary after check
by boklm@torproject.org 25 Oct '19
by boklm@torproject.org 25 Oct '19
25 Oct '19
commit d9f378d284fb00021a73b72379863169322880e0
Author: Georg Koppen <gk(a)torproject.org>
Date: Fri Oct 25 08:23:49 2019 +0000
Bug 32284: Remove checked binary after check
When checking our .mar and .exe files for signing errors we keep the
checked files around until the whole check is done. This essentially
leads to doubling the amount of disk space for them during that time,
which could make the difference between someone being able to check
them successfully or not.
There is actually no need, though, to keep all the binaries until the
whole signature check is done and we remove the checked bundle from now
on immediately after a particular check finished.
---
tools/authenticode_check.sh | 3 ++-
tools/marsigning_check.sh | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/tools/authenticode_check.sh b/tools/authenticode_check.sh
index c94682d..819c9d1 100755
--- a/tools/authenticode_check.sh
+++ b/tools/authenticode_check.sh
@@ -1,6 +1,6 @@
#!/bin/sh
-# Copyright (c) 2017, The Tor Project, Inc.
+# Copyright (c) 2019, The Tor Project, Inc.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
@@ -74,6 +74,7 @@ for f in `ls *.exe`; do
echo "$f does not have the SHA-256 sum of the unsigned bundle!"
BADSIGNED_BUNDLES=`expr $BADSIGNED_BUNDLES + 1`
fi
+ rm $f
cd ..
fi
done
diff --git a/tools/marsigning_check.sh b/tools/marsigning_check.sh
index 41b3b4d..0663603 100755
--- a/tools/marsigning_check.sh
+++ b/tools/marsigning_check.sh
@@ -1,6 +1,6 @@
#!/bin/sh
-# Copyright (c) 2016, The Tor Project, Inc.
+# Copyright (c) 2019, The Tor Project, Inc.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
@@ -85,6 +85,7 @@ for f in `ls *.mar`; do
echo "$f does not have the SHA-256 sum of the unsigned MAR file!"
BADSIGNED_MARS=`expr $BADSIGNED_MARS + 1`
fi
+ rm $f
cd ..
fi
done
1
0

[tor-browser-build/master] Bug 32284: Remove checked binary after check
by boklm@torproject.org 25 Oct '19
by boklm@torproject.org 25 Oct '19
25 Oct '19
commit 3fe32dbea4f2f21a058b07a367df4f3e6c4e4538
Author: Georg Koppen <gk(a)torproject.org>
Date: Fri Oct 25 08:23:49 2019 +0000
Bug 32284: Remove checked binary after check
When checking our .mar and .exe files for signing errors we keep the
checked files around until the whole check is done. This essentially
leads to doubling the amount of disk space for them during that time,
which could make the difference between someone being able to check
them successfully or not.
There is actually no need, though, to keep all the binaries until the
whole signature check is done and we remove the checked bundle from now
on immediately after a particular check finished.
---
tools/authenticode_check.sh | 3 ++-
tools/marsigning_check.sh | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/tools/authenticode_check.sh b/tools/authenticode_check.sh
index c94682d..819c9d1 100755
--- a/tools/authenticode_check.sh
+++ b/tools/authenticode_check.sh
@@ -1,6 +1,6 @@
#!/bin/sh
-# Copyright (c) 2017, The Tor Project, Inc.
+# Copyright (c) 2019, The Tor Project, Inc.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
@@ -74,6 +74,7 @@ for f in `ls *.exe`; do
echo "$f does not have the SHA-256 sum of the unsigned bundle!"
BADSIGNED_BUNDLES=`expr $BADSIGNED_BUNDLES + 1`
fi
+ rm $f
cd ..
fi
done
diff --git a/tools/marsigning_check.sh b/tools/marsigning_check.sh
index 41b3b4d..0663603 100755
--- a/tools/marsigning_check.sh
+++ b/tools/marsigning_check.sh
@@ -1,6 +1,6 @@
#!/bin/sh
-# Copyright (c) 2016, The Tor Project, Inc.
+# Copyright (c) 2019, The Tor Project, Inc.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
@@ -85,6 +85,7 @@ for f in `ls *.mar`; do
echo "$f does not have the SHA-256 sum of the unsigned MAR file!"
BADSIGNED_MARS=`expr $BADSIGNED_MARS + 1`
fi
+ rm $f
cd ..
fi
done
1
0

[translation/tpo-web_completed] https://gitweb.torproject.org/translation.git/commit/?h=tpo-web_completed
by translation@torproject.org 25 Oct '19
by translation@torproject.org 25 Oct '19
25 Oct '19
commit e51cc5edf379d4f14fe842d0760ae8199642d75a
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Oct 25 11:22:56 2019 +0000
https://gitweb.torproject.org/translation.git/commit/?h=tpo-web_completed
---
contents+ca.po | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/contents+ca.po b/contents+ca.po
index e878b4c9d..c3e6cbc66 100644
--- a/contents+ca.po
+++ b/contents+ca.po
@@ -1177,7 +1177,7 @@ msgid ""
msgstr ""
"Els connectors o extensions podrien eludir el Tor o comprometre la vostra "
"privadesa. El Navegador Tor ja s'ofereix amb HTTPS Everywhere, NoScript i "
-"altres pedaços per protegir la vostra privadesa i seguretat."
+"altres pedaços per a protegir la vostra privadesa i seguretat."
#: templates/download.html:40
#, python-format
@@ -1197,9 +1197,9 @@ msgid ""
"We're a nonprofit organization and rely on supporters like you to help us "
"keep Tor robust and secure for millions of people worldwide."
msgstr ""
-"Som una organització sense ànim de lucre i ens refiem de l'ajuda dels "
-"col·laboradors per mantenir el Tor robust i segur per a milions de persones "
-"d'arreu del món."
+"Som una organització sense ànim de lucre i confiem en l'ajuda dels "
+"col·laboradors per a mantenir el Tor robust i segur per a milions de "
+"persones d'arreu del món."
#: templates/hero-download-languages.html:2
#: templates/hero-download-options.html:2
@@ -1384,12 +1384,12 @@ msgid ""
"to sign up for our dev mailing list to see what we're up to."
msgstr ""
"Inclús si no busquem personal, podeu contribuir al Tor. Estem oberts a idees"
-" i estudis per millorar el programari Tor. Si us dediqueu a desenvolupar, us"
-" animem a registrar-vos a la llista de correu dev per veure què fem."
+" i estudis per a millorar el programari Tor. Si us dediqueu a desenvolupar, "
+"us animem a registrar-vos a la llista de correu dev per veure què fem."
#: templates/people.html:31
msgid "Sign up for tor-dev"
-msgstr "Registreu-vos a tor-dev"
+msgstr "Registreu-vos al tor-dev"
#: templates/press.html:7
msgid "Get support"
@@ -1515,7 +1515,7 @@ msgstr ""
#: templates/thank-you.html:17
msgid "Run a relay to make the network faster and more decentralized."
msgstr ""
-"Manteniu un relé per fer que la xarxa sigui més ràpida i més "
+"Manteniu un relé per a fer que la xarxa sigui més ràpida i més "
"descentralitzada."
#: templates/thank-you.html:21
1
0

[translation/tpo-web] https://gitweb.torproject.org/translation.git/commit/?h=tpo-web
by translation@torproject.org 25 Oct '19
by translation@torproject.org 25 Oct '19
25 Oct '19
commit 0b3395ee1f1b48a19c07bab04c43d520d06fe736
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Oct 25 11:22:46 2019 +0000
https://gitweb.torproject.org/translation.git/commit/?h=tpo-web
---
contents+ca.po | 16 ++++++++--------
contents+nl.po | 28 ++++++++++++++--------------
2 files changed, 22 insertions(+), 22 deletions(-)
diff --git a/contents+ca.po b/contents+ca.po
index e878b4c9d..c3e6cbc66 100644
--- a/contents+ca.po
+++ b/contents+ca.po
@@ -1177,7 +1177,7 @@ msgid ""
msgstr ""
"Els connectors o extensions podrien eludir el Tor o comprometre la vostra "
"privadesa. El Navegador Tor ja s'ofereix amb HTTPS Everywhere, NoScript i "
-"altres pedaços per protegir la vostra privadesa i seguretat."
+"altres pedaços per a protegir la vostra privadesa i seguretat."
#: templates/download.html:40
#, python-format
@@ -1197,9 +1197,9 @@ msgid ""
"We're a nonprofit organization and rely on supporters like you to help us "
"keep Tor robust and secure for millions of people worldwide."
msgstr ""
-"Som una organització sense ànim de lucre i ens refiem de l'ajuda dels "
-"col·laboradors per mantenir el Tor robust i segur per a milions de persones "
-"d'arreu del món."
+"Som una organització sense ànim de lucre i confiem en l'ajuda dels "
+"col·laboradors per a mantenir el Tor robust i segur per a milions de "
+"persones d'arreu del món."
#: templates/hero-download-languages.html:2
#: templates/hero-download-options.html:2
@@ -1384,12 +1384,12 @@ msgid ""
"to sign up for our dev mailing list to see what we're up to."
msgstr ""
"Inclús si no busquem personal, podeu contribuir al Tor. Estem oberts a idees"
-" i estudis per millorar el programari Tor. Si us dediqueu a desenvolupar, us"
-" animem a registrar-vos a la llista de correu dev per veure què fem."
+" i estudis per a millorar el programari Tor. Si us dediqueu a desenvolupar, "
+"us animem a registrar-vos a la llista de correu dev per veure què fem."
#: templates/people.html:31
msgid "Sign up for tor-dev"
-msgstr "Registreu-vos a tor-dev"
+msgstr "Registreu-vos al tor-dev"
#: templates/press.html:7
msgid "Get support"
@@ -1515,7 +1515,7 @@ msgstr ""
#: templates/thank-you.html:17
msgid "Run a relay to make the network faster and more decentralized."
msgstr ""
-"Manteniu un relé per fer que la xarxa sigui més ràpida i més "
+"Manteniu un relé per a fer que la xarxa sigui més ràpida i més "
"descentralitzada."
#: templates/thank-you.html:21
diff --git a/contents+nl.po b/contents+nl.po
index 57bed7265..3688e7729 100644
--- a/contents+nl.po
+++ b/contents+nl.po
@@ -300,19 +300,19 @@ msgstr ""
msgid ""
"- Creating and deploying free and open anonymity and privacy technologies,"
msgstr ""
-"- vrije en open-broncode anonimiteits- en privacy-technologieën te "
-"ontwikkelen en te implementeren,…"
+"- Vrije en open anonimiteits- en privacytechnologieën te ontwikkelen en te "
+"implementeren,"
#: https//www.torproject.org/about/cy-pres/
#: (content/about/cy-pres/contents+en.lrpage.body)
msgid "- Supporting their unrestricted availability and use, and"
-msgstr "- de onbeperkte beschikbaarheid en het gebruik ervan te steunen en…"
+msgstr "- De onbeperkte beschikbaarheid en het gebruik ervan te steunen, en"
#: https//www.torproject.org/about/cy-pres/
#: (content/about/cy-pres/contents+en.lrpage.body)
msgid "- Furthering their scientific and popular understanding."
msgstr ""
-"- het begrip ervoor in de wetenschap en bij het algemeen publiek te "
+"- Het begrip ervan in de wetenschap en bij het algemeen publiek te "
"bevorderen."
#: https//www.torproject.org/about/cy-pres/
@@ -764,10 +764,10 @@ msgid ""
"alpha\">Tor Browser Project page</a> and also from our <a "
"href=\"/dist/torbrowser/8.5a10/\">distribution directory</a>."
msgstr ""
-"Tor Browser 8.5a10 is vanaf nu beschikbaar vanaf de <a "
+"Tor Browser 8.5a10 is nu beschikbaar vanaf de <a "
"href=\"https://www.torproject.org/projects/torbrowser.html.en#downloads-"
-"alpha\">Tor Browser Project-pagina</a> en ook van onze <a "
-"href=\"/dist/torbrowser/8.5a10/\">distributie directory</a>."
+"alpha\">Tor Browser Project-pagina</a>, en ook vanaf onze <a "
+"href=\"/dist/torbrowser/8.5a10/\">distributiedirectory</a>."
#: https//www.torproject.org/about/trademark/trademark-faq/
#: (content/about/trademark/trademark-faq/contents+en.lrtopic.title)
@@ -791,7 +791,7 @@ msgstr ""
#: lego/templates/footer.html:27 templates/footer.html:27
msgid "Our mission:"
-msgstr "Onze missie"
+msgstr "Onze missie:"
#: lego/templates/footer.html:28 templates/footer.html:28
msgid ""
@@ -800,15 +800,15 @@ msgid ""
"availability and use, and furthering their scientific and popular "
"understanding."
msgstr ""
-"Het bevorderen van rechten en vrijheden van de mens door vrije en open-"
-"broncode anonimiteits- en privacytechnologieën te ontwikkelen en te "
+"Het bevorderen van rechten en vrijheden van de mens door vrije en open "
+"source anonimiteits- en privacytechnologieën te ontwikkelen en te "
"implementeren, de onbeperkte beschikbaarheid en het gebruik ervan te "
-"steunen, en het begrip ervoor in de wetenschap en bij het algemeen publiek "
-"te bevorderen."
+"steunen, en het begrip ervan in de wetenschap en bij het algemeen publiek te"
+" bevorderen."
#: lego/templates/footer.html:54 templates/footer.html:54
msgid "Subscribe to our Newsletter"
-msgstr "Schijf je in voor onze nieuwsbrief"
+msgstr "Schijf u in voor onze nieuwsbrief"
#: lego/templates/footer.html:55 templates/footer.html:55
msgid "Get monthly updates and opportunities from the Tor Project:"
@@ -840,7 +840,7 @@ msgid ""
"The following visualization shows what information is visible to "
"eavesdroppers with and without Tor Browser and HTTPS encryption:"
msgstr ""
-"De volgende visualisatie toont welke gegevens zichtbaar zijn voor "
+"De volgende visualisatie toont welke informatie zichtbaar is voor "
"afluisteraars met en zonder Tor Browser en HTTPS-versleuteling:"
#: lego/templates/secure-connections.html:4
1
0

[translation/tpo-web_completed] https://gitweb.torproject.org/translation.git/commit/?h=tpo-web_completed
by translation@torproject.org 25 Oct '19
by translation@torproject.org 25 Oct '19
25 Oct '19
commit e959e7ba040a53495be8e6974516719025c8ba4d
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Oct 25 10:52:54 2019 +0000
https://gitweb.torproject.org/translation.git/commit/?h=tpo-web_completed
---
contents+ca.po | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/contents+ca.po b/contents+ca.po
index c7ddac7d1..e878b4c9d 100644
--- a/contents+ca.po
+++ b/contents+ca.po
@@ -798,9 +798,9 @@ msgid ""
"understanding."
msgstr ""
"Promoure els drets humans i les llibertats per mitjà de la creació i la "
-"implementació de tecnologies d'anonimat i privadesa gratuïtes i de codi "
-"obert, el suport a la seva disponibilitat i la utilització sense "
-"restriccions i el foment de la seva comprensió científica i popular."
+"implementació de tecnologies d'anonimat i privadesa lliures i de codi obert,"
+" el suport a la seva disponibilitat i la utilització sense restriccions i el"
+" foment de la seva comprensió científica i popular."
#: lego/templates/footer.html:54 templates/footer.html:54
msgid "Subscribe to our Newsletter"
@@ -844,8 +844,8 @@ msgid ""
"Click the “Tor” button to see what data is visible to observers when you're "
"using Tor. The button will turn green to indicate that Tor is on."
msgstr ""
-"Feu clic al botó «Tor» per saber quines dades poden veure els observadors "
-"quan utilitzeu el Tor. El botó es posarà de color verd per indicar que el "
+"Feu clic al botó «Tor» per a saber quines dades poden veure els observadors "
+"quan utilitzeu el Tor. El botó es posarà de color verd per a indicar que el "
"Tor està encès."
#: lego/templates/secure-connections.html:5
@@ -853,9 +853,9 @@ msgid ""
"Click the “HTTPS” button to see what data is visible to observers when "
"you're using HTTPS. The button will turn green to indicate that HTTPS is on."
msgstr ""
-"Feu clic al botó «HTTPS» per saber quines dades poden veure els observadors "
-"quan utilitzeu HTTPS. El botó es posarà de color verd per indicar que el Tor"
-" està encès."
+"Feu clic al botó «HTTPS» per a saber quines dades poden veure els "
+"observadors quan utilitzeu HTTPS. El botó es posarà de color verd per a "
+"indicar que el Tor està encès."
#: lego/templates/secure-connections.html:6
msgid ""
@@ -1008,7 +1008,7 @@ msgid ""
"us improve our software and resources, so your feedback is extremely "
"valuable to us (and to all Tor users)."
msgstr ""
-"El Tor es refia de l'ajuda d'usuaris i voluntaris d'arreu del món per "
+"El Tor confia en l'ajuda d'usuaris i voluntaris d'arreu del món per a "
"millorar el nostre programari i recursos. Així doncs, apreciem molt els "
"vostres comentaris (nosaltres i tots els usuaris del Tor)."
1
0

[translation/tpo-web] https://gitweb.torproject.org/translation.git/commit/?h=tpo-web
by translation@torproject.org 25 Oct '19
by translation@torproject.org 25 Oct '19
25 Oct '19
commit b510f851c5c3ae86fea4d81019a2e990b2c51404
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Oct 25 10:52:43 2019 +0000
https://gitweb.torproject.org/translation.git/commit/?h=tpo-web
---
contents+ca.po | 18 +++++++++---------
contents+nl.po | 34 +++++++++++++++++-----------------
2 files changed, 26 insertions(+), 26 deletions(-)
diff --git a/contents+ca.po b/contents+ca.po
index c7ddac7d1..e878b4c9d 100644
--- a/contents+ca.po
+++ b/contents+ca.po
@@ -798,9 +798,9 @@ msgid ""
"understanding."
msgstr ""
"Promoure els drets humans i les llibertats per mitjà de la creació i la "
-"implementació de tecnologies d'anonimat i privadesa gratuïtes i de codi "
-"obert, el suport a la seva disponibilitat i la utilització sense "
-"restriccions i el foment de la seva comprensió científica i popular."
+"implementació de tecnologies d'anonimat i privadesa lliures i de codi obert,"
+" el suport a la seva disponibilitat i la utilització sense restriccions i el"
+" foment de la seva comprensió científica i popular."
#: lego/templates/footer.html:54 templates/footer.html:54
msgid "Subscribe to our Newsletter"
@@ -844,8 +844,8 @@ msgid ""
"Click the “Tor” button to see what data is visible to observers when you're "
"using Tor. The button will turn green to indicate that Tor is on."
msgstr ""
-"Feu clic al botó «Tor» per saber quines dades poden veure els observadors "
-"quan utilitzeu el Tor. El botó es posarà de color verd per indicar que el "
+"Feu clic al botó «Tor» per a saber quines dades poden veure els observadors "
+"quan utilitzeu el Tor. El botó es posarà de color verd per a indicar que el "
"Tor està encès."
#: lego/templates/secure-connections.html:5
@@ -853,9 +853,9 @@ msgid ""
"Click the “HTTPS” button to see what data is visible to observers when "
"you're using HTTPS. The button will turn green to indicate that HTTPS is on."
msgstr ""
-"Feu clic al botó «HTTPS» per saber quines dades poden veure els observadors "
-"quan utilitzeu HTTPS. El botó es posarà de color verd per indicar que el Tor"
-" està encès."
+"Feu clic al botó «HTTPS» per a saber quines dades poden veure els "
+"observadors quan utilitzeu HTTPS. El botó es posarà de color verd per a "
+"indicar que el Tor està encès."
#: lego/templates/secure-connections.html:6
msgid ""
@@ -1008,7 +1008,7 @@ msgid ""
"us improve our software and resources, so your feedback is extremely "
"valuable to us (and to all Tor users)."
msgstr ""
-"El Tor es refia de l'ajuda d'usuaris i voluntaris d'arreu del món per "
+"El Tor confia en l'ajuda d'usuaris i voluntaris d'arreu del món per a "
"millorar el nostre programari i recursos. Així doncs, apreciem molt els "
"vostres comentaris (nosaltres i tots els usuaris del Tor)."
diff --git a/contents+nl.po b/contents+nl.po
index e61cc36bd..57bed7265 100644
--- a/contents+nl.po
+++ b/contents+nl.po
@@ -291,9 +291,9 @@ msgid ""
"The Tor Project is a U.S.-based 501(c)3 nonprofit founded in 2006 with the "
"mission of advancing human rights and freedoms by:"
msgstr ""
-"Het Tor Project is een in 2006 in de VS gevestigde 501(c)(3)-organisatie "
-"zonder winstoogmerk, met als doelstelling het bevorderen van de rechten en "
-"vrijheden van de mens. Dit doel behartigen we door:"
+"Het Tor Project is een in 2006 opgerichte 501(c)(3)-non-profitorganisatie in"
+" de VS met als doelstelling het bevorderen van rechten en vrijheden van de "
+"mens. Dit doel behartigen we door:"
#: https//www.torproject.org/about/cy-pres/
#: (content/about/cy-pres/contents+en.lrpage.body)
@@ -385,7 +385,7 @@ msgid ""
"[sstevenson@torproject.org](mailto:sstevenson@torproject.org)."
msgstr ""
"Als u iemand van het Tor Project wilt spreken over of de organisatie wel of "
-"niet geschikt is voor een _Cy-Près_-prijs, neem dan contact op met Sarah "
+"niet geschikt is voor een _cy pres_-prijs, neem dan contact op met Sarah "
"Stevenson, directeur Fondsenwerving, via "
"[sstevenson@torproject.org](mailto:sstevenson@torproject.org)."
@@ -840,7 +840,7 @@ msgid ""
"The following visualization shows what information is visible to "
"eavesdroppers with and without Tor Browser and HTTPS encryption:"
msgstr ""
-"De volgende visualisatie laat zien welke informatie zichtbaar is voor "
+"De volgende visualisatie toont welke gegevens zichtbaar zijn voor "
"afluisteraars met en zonder Tor Browser en HTTPS-versleuteling:"
#: lego/templates/secure-connections.html:4
@@ -848,9 +848,9 @@ msgid ""
"Click the “Tor” button to see what data is visible to observers when you're "
"using Tor. The button will turn green to indicate that Tor is on."
msgstr ""
-"Klik die \"Tor\" knop om te zien welke gegevens zichtbaar zijn voor "
-"waarnemers wanneer u Tor gebruikt. De knop zal groen kleuren om aan te geven"
-" dat Tor actief is."
+"Klik op de knop ‘Tor’ om te zien welke gegevens voor waarnemers zichtbaar "
+"zijn wanneer u Tor gebruikt. De knop wordt groen om aan te geven dat Tor is "
+"ingeschakeld."
#: lego/templates/secure-connections.html:5
msgid ""
@@ -866,16 +866,16 @@ msgid ""
"When both buttons are green, you see the data that is visible to observers "
"when you are using both tools."
msgstr ""
-"Wanneer beide knoppen groen zijn, ziet u de gegevens welke zichtbaar zijn "
-"voor waarnemers wanneer u beide gereedschappen gebruikt."
+"Wanneer beide knoppen groen zijn, ziet u de gegevens die voor waarnemers "
+"zichtbaar zijn wanneer u beide hulpmiddelen gebruikt."
#: lego/templates/secure-connections.html:7
msgid ""
"When both buttons are grey, you see the data that is visible to observers "
"when you don't use either tool."
msgstr ""
-"Wanneer beide knoppen grijs zijn, ziet u de gegevens welke zichtbaar zij "
-"voor waarnemers wanneer u geen enkel gereedschap gebruikt."
+"Wanneer beide knoppen grijs zijn, ziet u de gegevens die voor waarnemers "
+"zichtbaar zijn wanneer u geen enkel hulpmiddel gebruikt."
#: lego/templates/secure-connections.html:11
msgid "HTTPS"
@@ -923,7 +923,7 @@ msgid ""
"Network location of the computer used to visit the website (the public IP "
"address)."
msgstr ""
-"Netwerklocatie van de computer, gebruikt om de website te bezoeken (het "
+"Netwerklocatie van de gebruikte computer om de website te bezoeken (het "
"publieke IP-adres)."
#: lego/templates/secure-connections.html:68
@@ -998,11 +998,11 @@ msgid ""
"our support portal, you can ask the appropriate list. You're welcome to "
"subscribe and just watch, too :)"
msgstr ""
-"Ons team werkt samen via open kanalen, waaronder e-maillijsten, waarvan u "
+"Ons team werkt samen via open kanalen, waaronder mailinglijsten, waarvan u "
"lid mag worden. Als u een vraag hebt voor een bepaald team die nog niet op "
-"ons ondersteuningsportaal is beantwoord, kunt u die stellen via de daarvoor "
-"aangewezen e-maillijst. Het staat u ook vrij om u in te schrijven en alleen "
-"mee te lezen. :)"
+"onze ondersteuningsportal is beantwoord, kunt u die stellen via de daarvoor "
+"aangewezen mailinglijst. Het staat u ook vrij om u in te schrijven en alleen"
+" mee te lezen. :)"
#: templates/contact.html:63
msgid "Report a bug or give feedback."
1
0

[translation/tpo-web_completed] https://gitweb.torproject.org/translation.git/commit/?h=tpo-web_completed
by translation@torproject.org 25 Oct '19
by translation@torproject.org 25 Oct '19
25 Oct '19
commit ac45403fde8556973228890734918779e6ce9cac
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Oct 25 10:23:17 2019 +0000
https://gitweb.torproject.org/translation.git/commit/?h=tpo-web_completed
---
contents+ca.po | 37 +++++++++++++++++++------------------
1 file changed, 19 insertions(+), 18 deletions(-)
diff --git a/contents+ca.po b/contents+ca.po
index 24b1b8b47..c7ddac7d1 100644
--- a/contents+ca.po
+++ b/contents+ca.po
@@ -320,7 +320,7 @@ msgid ""
"of the most popular and widely used free, open source privacy technologies: "
"Tor Browser and the Tor network."
msgstr ""
-"El Tor Project i la comunitat que l'envolta, desenvolupa i distribueix "
+"El Tor Project i la comunitat que l'envolta desenvolupa i distribueix "
"algunes de les tecnologies de privadesa gratuïtes i de codi obert més "
"populars i àmpliament utilitzades: el Navegador Tor i la xarxa Tor."
@@ -346,8 +346,8 @@ msgid ""
"consumers can protect their privacy](https://www.torproject.org/press/)."
msgstr ""
"El Tor Project és considerat un capdavanter de la privadesa en línia, i [els"
-" mitjans de comunicació el consulten sovint per obtenir informació sobre com"
-" els individus i els consumidors poden protegir la seva "
+" mitjans de comunicació el consulten sovint per a obtenir informació sobre "
+"com els individus i els consumidors poden protegir la seva "
"privadesa](https://www.torproject.org/ca/press/)."
#: https//www.torproject.org/about/cy-pres/
@@ -503,9 +503,9 @@ msgid ""
"stood for The Onion Routing. Nick Mathewson, a classmate of Roger's at MIT, "
"joined the project soon after."
msgstr ""
-"Per diferenciar aquest treball original de l'NRL dels altres intents "
+"Per a diferenciar aquest treball original de l'NRL dels altres intents "
"d'encaminament onion que començaven a aparèixer arreu, Roger va batejar el "
-"projecte amb el nom de Tor, les sigles de \"The Onion Routing\". Nick "
+"projecte amb el nom de Tor, les sigles de «The Onion Routing». Nick "
"Mathewson, un company de classe de Roger del MIT, es va unir al projecte poc"
" després."
@@ -517,10 +517,11 @@ msgid ""
"diverse interests and trust assumptions, and the software needed to be free "
"and open to maximize transparency and separation."
msgstr ""
-"Des del seu origen als anys 90, l'encaminament onion es va concebre per "
+"Des del seu origen als anys 90, l'encaminament onion es va concebre per a "
"dependre d'una xarxa descentralitzada. Calia que la xarxa l'operessin "
"entitats amb interessos i intencions diverses, i que el programari fos "
-"gratuït i obert per maximitzar la transparència i la independència."
+"gratuït, lliure i obert per a maximitzar la transparència i la "
+"independència."
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.body)
@@ -530,7 +531,7 @@ msgid ""
msgstr ""
"És per això que, l'octubre de 2002, quan la xarxa Tor es va començar a "
"implementar, el seu codi es va publicar amb una llicència de programari "
-"gratuït i obert."
+"lliure i obert."
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.body)
@@ -563,8 +564,8 @@ msgid ""
"order for its users to access the open web."
msgstr ""
"El 2007, l'organització va començar a desenvolupar ponts cap a la xarxa Tor "
-"per afrontar la censura, com ara per esquivar els tallafocs dels governs i "
-"permetre que els seus usuaris accedissin a la web oberta."
+"per a afrontar la censura, com ara esquivar els tallafocs dels governs i "
+"permetre que els seus usuaris accedissin a la xarxa oberta."
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.body)
@@ -576,7 +577,7 @@ msgid ""
msgstr ""
"El Tor va començar a fer-se popular entre els activistes i els usuaris amb "
"coneixements tècnics interessats en la privadesa, però encara era difícil "
-"d'utilitzar, per als menys versats. Per això, a partir de 2005 es van "
+"d'utilitzar per als menys versats. Per això, a partir de 2005 es van "
"començar a desenvolupar eines addicionals al servidor intermediari Tor."
#: https//www.torproject.org/about/history/
@@ -604,7 +605,7 @@ msgstr ""
"finals del 2010, gràcies al fet que el Navegador Tor va fer més accessible "
"per als usuaris i activistes corrents la xarxa Tor. No només protegia la "
"identitat de la gent en línia, sinó que també els permetia accedir a "
-"recursos bàsics, xarxes socials i llocs web que estaven bloquejats."
+"recursos bàsics, xarxes socials i llocs web que estaven blocats."
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.body)
@@ -624,9 +625,9 @@ msgid ""
"the documents also upheld assurances that, at that time, [Tor could not be "
"cracked](https://www.wired.com/story/the-grand-tor/)."
msgstr ""
-"Tor no només va ser fonamental per a les filtracions d'Snowden, sinó que el "
-"contingut dels documents també sostenia que, en aquell moment, [el Tor no es"
-" podia piratejar](https://www.wired.com/story/the-grand-tor/)."
+"El Tor no només va ser fonamental per a les filtracions d'Snowden, sinó que "
+"el contingut dels documents també sostenia que, en aquell moment, [el Tor no"
+" es podia piratejar](https://www.wired.com/story/the-grand-tor/)."
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.body)
@@ -648,7 +649,7 @@ msgid ""
msgstr ""
"Actualment, la xarxa té [milers de relés](https://metrics.torproject.org) "
"mantinguts per voluntaris i milions d'usuaris d'arreu del món. I és aquesta "
-"diversitat, la que protegeix els usuaris del Tor."
+"diversitat la que protegeix els usuaris del Tor."
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.body)
@@ -686,7 +687,7 @@ msgid ""
"access to the uncensored web."
msgstr ""
"Som un equip internacional que creu que tothom hauria de tenir accés privat "
-"a una web sense censures."
+"a una xarxa sense censures."
#: https//www.torproject.org/about/sponsors/
#: (content/about/sponsors/contents+en.lrsponsors.body)
@@ -720,7 +721,7 @@ msgid ""
" as possible."
msgstr ""
"Aquesta versió corregeix moltes vulnerabilitats de seguretat. L'hauríeu "
-"d'actualitzar al més aviat possible."
+"d'actualitzar el més aviat possible."
#: https//www.torproject.org/press/-new-release-tails/
#: (content/press/new-release-tails/contents+en.lrpost.summary)
1
0

[translation/tpo-web] https://gitweb.torproject.org/translation.git/commit/?h=tpo-web
by translation@torproject.org 25 Oct '19
by translation@torproject.org 25 Oct '19
25 Oct '19
commit 4928a20535107f3c4fb3c75da0538d2ae4ec0612
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Oct 25 10:23:06 2019 +0000
https://gitweb.torproject.org/translation.git/commit/?h=tpo-web
---
contents+ca.po | 37 +++++++++++++++++++------------------
contents+nl.po | 57 +++++++++++++++++++++++++++------------------------------
2 files changed, 46 insertions(+), 48 deletions(-)
diff --git a/contents+ca.po b/contents+ca.po
index 24b1b8b47..c7ddac7d1 100644
--- a/contents+ca.po
+++ b/contents+ca.po
@@ -320,7 +320,7 @@ msgid ""
"of the most popular and widely used free, open source privacy technologies: "
"Tor Browser and the Tor network."
msgstr ""
-"El Tor Project i la comunitat que l'envolta, desenvolupa i distribueix "
+"El Tor Project i la comunitat que l'envolta desenvolupa i distribueix "
"algunes de les tecnologies de privadesa gratuïtes i de codi obert més "
"populars i àmpliament utilitzades: el Navegador Tor i la xarxa Tor."
@@ -346,8 +346,8 @@ msgid ""
"consumers can protect their privacy](https://www.torproject.org/press/)."
msgstr ""
"El Tor Project és considerat un capdavanter de la privadesa en línia, i [els"
-" mitjans de comunicació el consulten sovint per obtenir informació sobre com"
-" els individus i els consumidors poden protegir la seva "
+" mitjans de comunicació el consulten sovint per a obtenir informació sobre "
+"com els individus i els consumidors poden protegir la seva "
"privadesa](https://www.torproject.org/ca/press/)."
#: https//www.torproject.org/about/cy-pres/
@@ -503,9 +503,9 @@ msgid ""
"stood for The Onion Routing. Nick Mathewson, a classmate of Roger's at MIT, "
"joined the project soon after."
msgstr ""
-"Per diferenciar aquest treball original de l'NRL dels altres intents "
+"Per a diferenciar aquest treball original de l'NRL dels altres intents "
"d'encaminament onion que començaven a aparèixer arreu, Roger va batejar el "
-"projecte amb el nom de Tor, les sigles de \"The Onion Routing\". Nick "
+"projecte amb el nom de Tor, les sigles de «The Onion Routing». Nick "
"Mathewson, un company de classe de Roger del MIT, es va unir al projecte poc"
" després."
@@ -517,10 +517,11 @@ msgid ""
"diverse interests and trust assumptions, and the software needed to be free "
"and open to maximize transparency and separation."
msgstr ""
-"Des del seu origen als anys 90, l'encaminament onion es va concebre per "
+"Des del seu origen als anys 90, l'encaminament onion es va concebre per a "
"dependre d'una xarxa descentralitzada. Calia que la xarxa l'operessin "
"entitats amb interessos i intencions diverses, i que el programari fos "
-"gratuït i obert per maximitzar la transparència i la independència."
+"gratuït, lliure i obert per a maximitzar la transparència i la "
+"independència."
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.body)
@@ -530,7 +531,7 @@ msgid ""
msgstr ""
"És per això que, l'octubre de 2002, quan la xarxa Tor es va començar a "
"implementar, el seu codi es va publicar amb una llicència de programari "
-"gratuït i obert."
+"lliure i obert."
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.body)
@@ -563,8 +564,8 @@ msgid ""
"order for its users to access the open web."
msgstr ""
"El 2007, l'organització va començar a desenvolupar ponts cap a la xarxa Tor "
-"per afrontar la censura, com ara per esquivar els tallafocs dels governs i "
-"permetre que els seus usuaris accedissin a la web oberta."
+"per a afrontar la censura, com ara esquivar els tallafocs dels governs i "
+"permetre que els seus usuaris accedissin a la xarxa oberta."
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.body)
@@ -576,7 +577,7 @@ msgid ""
msgstr ""
"El Tor va començar a fer-se popular entre els activistes i els usuaris amb "
"coneixements tècnics interessats en la privadesa, però encara era difícil "
-"d'utilitzar, per als menys versats. Per això, a partir de 2005 es van "
+"d'utilitzar per als menys versats. Per això, a partir de 2005 es van "
"començar a desenvolupar eines addicionals al servidor intermediari Tor."
#: https//www.torproject.org/about/history/
@@ -604,7 +605,7 @@ msgstr ""
"finals del 2010, gràcies al fet que el Navegador Tor va fer més accessible "
"per als usuaris i activistes corrents la xarxa Tor. No només protegia la "
"identitat de la gent en línia, sinó que també els permetia accedir a "
-"recursos bàsics, xarxes socials i llocs web que estaven bloquejats."
+"recursos bàsics, xarxes socials i llocs web que estaven blocats."
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.body)
@@ -624,9 +625,9 @@ msgid ""
"the documents also upheld assurances that, at that time, [Tor could not be "
"cracked](https://www.wired.com/story/the-grand-tor/)."
msgstr ""
-"Tor no només va ser fonamental per a les filtracions d'Snowden, sinó que el "
-"contingut dels documents també sostenia que, en aquell moment, [el Tor no es"
-" podia piratejar](https://www.wired.com/story/the-grand-tor/)."
+"El Tor no només va ser fonamental per a les filtracions d'Snowden, sinó que "
+"el contingut dels documents també sostenia que, en aquell moment, [el Tor no"
+" es podia piratejar](https://www.wired.com/story/the-grand-tor/)."
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.body)
@@ -648,7 +649,7 @@ msgid ""
msgstr ""
"Actualment, la xarxa té [milers de relés](https://metrics.torproject.org) "
"mantinguts per voluntaris i milions d'usuaris d'arreu del món. I és aquesta "
-"diversitat, la que protegeix els usuaris del Tor."
+"diversitat la que protegeix els usuaris del Tor."
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.body)
@@ -686,7 +687,7 @@ msgid ""
"access to the uncensored web."
msgstr ""
"Som un equip internacional que creu que tothom hauria de tenir accés privat "
-"a una web sense censures."
+"a una xarxa sense censures."
#: https//www.torproject.org/about/sponsors/
#: (content/about/sponsors/contents+en.lrsponsors.body)
@@ -720,7 +721,7 @@ msgid ""
" as possible."
msgstr ""
"Aquesta versió corregeix moltes vulnerabilitats de seguretat. L'hauríeu "
-"d'actualitzar al més aviat possible."
+"d'actualitzar el més aviat possible."
#: https//www.torproject.org/press/-new-release-tails/
#: (content/press/new-release-tails/contents+en.lrpost.summary)
diff --git a/contents+nl.po b/contents+nl.po
index 878077675..e61cc36bd 100644
--- a/contents+nl.po
+++ b/contents+nl.po
@@ -5,9 +5,9 @@
# ducki2p <ducki2p(a)gmail.com>, 2019
# Emma Peel, 2019
# erinm, 2019
-# Tonnes <tonnes.mb(a)gmail.com>, 2019
# bacovane <bart-ts(a)tushmail.com>, 2019
# Meteor 0id, 2019
+# Tonnes <tonnes.mb(a)gmail.com>, 2019
#
msgid ""
msgstr ""
@@ -15,7 +15,7 @@ msgstr ""
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-10-22 18:47+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Meteor 0id, 2019\n"
+"Last-Translator: Tonnes <tonnes.mb(a)gmail.com>, 2019\n"
"Language-Team: Dutch (https://www.transifex.com/otf/teams/1519/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -44,8 +44,7 @@ msgstr ""
#: https//www.torproject.org/ (content/contents+en.lrpage.body)
msgid "We are the Tor Project, a 501(c)3 US nonprofit."
msgstr ""
-"Wij zijn het Tor Project, een 501(c)(3)-organisatie zonder winstoogmerk "
-"gevestigd in de VS."
+"Wij zijn het Tor Project, een 501(c)(3)-non-profitorganisatie in de VS."
#: https//www.torproject.org/ (content/contents+en.lrpage.body)
msgid ""
@@ -91,8 +90,8 @@ msgid ""
"answers to frequently asked questions about connecting to Tor, circumventing"
" censorship, using onion services, and more."
msgstr ""
-"Hulp nodig? Bezoek ons "
-"[Ondersteuningsportaal](https://support.torproject.org) voor antwoorden op "
+"Hulp nodig? Bezoek onze "
+"[Ondersteuningsportal](https://support.torproject.org) voor antwoorden op "
"veelgestelde vragen over verbinden met Tor, het omzeilen van censuur, het "
"gebruik van onion-diensten en meer."
@@ -172,7 +171,7 @@ msgstr "U bent uitgerust om in vrijheid te surfen."
#: https//www.torproject.org/thank-you/
#: (content/thank-you/contents+en.lrpage.body)
msgid "Tor is the strongest tool for privacy and freedom online."
-msgstr "Tor is het sterkste gereedschap voor privacy en vrijheid online."
+msgstr "Tor is het sterkste hulpmiddel voor privacy en vrijheid online."
#: https//www.torproject.org/thank-you/
#: (content/thank-you/contents+en.lrpage.body)
@@ -710,9 +709,8 @@ msgid ""
"The Tor Project, Inc. is a US 501(c)(3) nonprofit organization committed to "
"transparency in its work and reporting."
msgstr ""
-"Het Tor Project Inc. is een in de VS gevestigde 501(c)(3)-organisatie zonder"
-" winstoogmerk gecommitteerd aan transparantie in haar werk en "
-"verslaglegging."
+"Het Tor Project Inc. is een 501(c)(3)-non-profitorganisatie in de VS die "
+"streeft naar transparantie in haar werk en verslaglegging."
#: https//www.torproject.org/press/-new-release-tails/
#: (content/press/new-release-tails/contents+en.lrpost.title)
@@ -859,9 +857,9 @@ msgid ""
"Click the “HTTPS” button to see what data is visible to observers when "
"you're using HTTPS. The button will turn green to indicate that HTTPS is on."
msgstr ""
-"Klik de \"HTTPS\" knop om te zien welke gegevens zichtbaar zijn voor "
-"waarnemers wanneer u HTTPS gebruikt. De knop zal rood kleuren om aan te "
-"geven dat HTTPS actief is."
+"Klik op de knop ‘HTTPS’ om te zien welke gegevens voor waarnemers zichtbaar "
+"zijn wanneer u HTTPS gebruikt. De knop wordt groen om aan te geven dat HTTPS"
+" is ingeschakeld."
#: lego/templates/secure-connections.html:6
msgid ""
@@ -991,7 +989,7 @@ msgstr "Doe mee"
#: templates/contact.html:47
msgid "Join an email list"
-msgstr "Word lid van een e-maillijst"
+msgstr "Word lid van een mailinglijst"
#: templates/contact.html:50
msgid ""
@@ -1008,7 +1006,7 @@ msgstr ""
#: templates/contact.html:63
msgid "Report a bug or give feedback."
-msgstr "Rapporteer een bug of geef ons terugkoppeling."
+msgstr "Meld een bug of geef feedback."
#: templates/contact.html:64
msgid ""
@@ -1018,8 +1016,7 @@ msgid ""
msgstr ""
"Tor is afhankelijk van de steun van haar wereldwijde gebruikers en "
"vrijwilligers om te helpen onze software en middelen te verbeteren, dus uw "
-"terugkoppeling is voor ons (en voor alle Tor-gebruikers) van bijzondere "
-"waarde."
+"feedback is voor ons (en voor alle Tor-gebruikers) van bijzondere waarde."
#: templates/contact.html:70
msgid "Tell us about a bad relay."
@@ -1045,8 +1042,8 @@ msgid ""
"found a security bug in Tor or Tor Browser, feel free to submit it for our"
msgstr ""
"Als u een beveiligingsprobleem in een van onze projecten of in onze "
-"infrastructuur heeft ontdekt, stuur dan een e-mail naar tor-"
-"security(a)lists.torproject.org. Als u een beveiligingsprobleem in Tor of Tor "
+"infrastructuur hebt ontdekt, stuur dan een e-mail naar tor-"
+"security(a)lists.torproject.org. Als u een beveiligingsbug in Tor of Tor "
"Browser hebt ontdekt, voel u dan vrij om die in te dienen voor ons"
#: templates/contact.html:80
@@ -1060,7 +1057,7 @@ msgid ""
".sks-keyservers.net. Here is the fingerprint:"
msgstr ""
"Als u uw e-mail wilt versleutelen, kunt u de publieke GPG-sleutel voor de "
-"e-maillijst ontvangen door contact op te nemen met tor-security-"
+"mailinglijst ontvangen door contact op te nemen met tor-security-"
"sendkey(a)lists.torproject.org, of vanaf pool.sks-keyservers.net. Hier is de "
"vingerafdruk:"
@@ -1075,10 +1072,10 @@ msgid ""
"email frontdesk(a)torproject.org. For donor-related questions, contact "
"giving(a)torproject.org"
msgstr ""
-"Stuur voor vragen en opmerkingen over Tor, de organisatie zonder "
-"winstoogmerk, handelsnaamvragen, affiliaties en coördinatie, vragen over "
-"contracten etc. een e-mail naar frontdesk(a)torproject.org. Neem voor "
-"donatiegerelateerde vragen contact op met giving(a)torproject.org."
+"Stuur voor vragen en opmerkingen over Tor, de non-profitorganisatie, "
+"handelsnaamvragen, aansluitingen en coördinatie, contractverzoeken etc. een "
+"e-mail naar frontdesk(a)torproject.org. Neem voor donatiegerelateerde vragen "
+"contact op met giving(a)torproject.org."
#: templates/contact.html:107
msgid "Send us Mail"
@@ -1263,9 +1260,9 @@ msgid ""
"can't follow you. Any cookies automatically clear when you're done browsing."
" So will your browsing history."
msgstr ""
-"Tor Browser isoleert alle websites die u bezoekt, zodat volgers van derden "
-"en advertenties u niet kunnen volgen. Alle cookies worden automatisch gewist"
-" wanneer u klaar bent met surfen. Hetzelfde gebeurt met uw "
+"Tor Browser isoleert alle websites die u bezoekt, zodat trackers van derden "
+"en advertenties u niet kunnen volgen. Cookies worden automatisch gewist "
+"wanneer u klaar bent met surfen. Hetzelfde gebeurt met uw "
"browsergeschiedenis."
#: templates/home.html:24
@@ -1300,8 +1297,8 @@ msgid ""
" to be fingerprinted based on your browser and device information."
msgstr ""
"Tor Browser probeert alle gebruikers hetzelfde te laten lijken, waardoor het"
-" voor anderen moeilijk wordt om u te fingerprinten op basis van uw "
-"webbrowser en apparaatgegevens."
+" voor anderen moeilijk wordt om u te fingerprinten op basis van uw browser "
+"en apparaatgegevens."
#: templates/home.html:58
msgid "Multi-layered Encryption"
@@ -1396,7 +1393,7 @@ msgid ""
msgstr ""
"Zelfs als we geen vacatures open hebben, kunt u aan Tor bijdragen. We staan "
"open voor ideeën en studies om Tor-software te verbeteren. Als u een "
-"ontwikkelaar bent, kunt u zich inschrijven voor onze dev-e-maillijst om te "
+"ontwikkelaar bent, kunt u zich inschrijven voor onze dev-mailinglijst om te "
"zien waar we mee bezig zijn."
#: templates/people.html:31
1
0

[translation/donatepages-messagespot_completed] https://gitweb.torproject.org/translation.git/commit/?h=donatepages-messagespot_completed
by translation@torproject.org 25 Oct '19
by translation@torproject.org 25 Oct '19
25 Oct '19
commit 14b5af577c94eef80ab90b0648f46b85a46fb858
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Oct 25 10:15:47 2019 +0000
https://gitweb.torproject.org/translation.git/commit/?h=donatepages-message…
---
locale/de/LC_MESSAGES/messages.po | 1026 ++++++++++---------------------------
1 file changed, 272 insertions(+), 754 deletions(-)
diff --git a/locale/de/LC_MESSAGES/messages.po b/locale/de/LC_MESSAGES/messages.po
index 185ede3d0..1e55dfb73 100644
--- a/locale/de/LC_MESSAGES/messages.po
+++ b/locale/de/LC_MESSAGES/messages.po
@@ -5,483 +5,127 @@
# RiseT, 2018
# Ettore Atalan <atalanttore(a)googlemail.com>, 2018
# cy Berta <cyberta(a)riseup.net>, 2018
+# Emma Peel, 2018
# Traumschule Riebau <traumschuleriebau(a)riseup.net>, 2019
# erinm, 2019
# c8faa9c4b9d81319c5c2fd62ae3a9956, 2019
-# Emma Peel, 2019
-# Philipp, 2019
# Curtis Baltimore <curtisbaltimore(a)protonmail.com>, 2019
+# John Weber, 2019
#
msgid ""
msgstr ""
-"Last-Translator: Curtis Baltimore <curtisbaltimore(a)protonmail.com>, 2019\n"
+"Last-Translator: John Weber, 2019\n"
"Language-Team: German (https://www.transifex.com/otf/teams/1519/de/)\n"
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: tmp/cache_locale/ff/ffee28cfc961a339d813aed75493753fcc9e985dfa212e1af03fc089d5c3fdb0.php:92
-#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:48
-#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:71
-#: tmp/cache_locale/eb/eba664d7c34b5e9dc599e5803f583f25e99c16ec96f31536baeeabb9c42131a3.php:25
-#: tmp/cache_locale/eb/eba664d7c34b5e9dc599e5803f583f25e99c16ec96f31536baeeabb9c42131a3.php:48
#: tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:43
#: tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:66
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:507
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:632
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:48
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:71
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:647
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:481
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:612
-#: tmp/cache_locale/03/03963079e40d8bba608baf2120533e119d90cb2cfc82fee9e293708eb548373f.php:75
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:511
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:656
msgid "Tor: Strength in Numbers"
msgstr ""
#: tmp/cache_locale/ff/ffee28cfc961a339d813aed75493753fcc9e985dfa212e1af03fc089d5c3fdb0.php:99
#: tmp/cache_locale/ff/ffee28cfc961a339d813aed75493753fcc9e985dfa212e1af03fc089d5c3fdb0.php:107
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:639
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:647
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:654
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:662
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:619
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:627
-#: tmp/cache_locale/03/03963079e40d8bba608baf2120533e119d90cb2cfc82fee9e293708eb548373f.php:82
-#: tmp/cache_locale/03/03963079e40d8bba608baf2120533e119d90cb2cfc82fee9e293708eb548373f.php:90
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:663
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:671
msgid ""
"Stand up for the universal human rights to privacy and freedom and help keep"
" Tor robust and secure."
msgstr ""
#: tmp/cache_locale/ff/ffee28cfc961a339d813aed75493753fcc9e985dfa212e1af03fc089d5c3fdb0.php:101
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:641
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:656
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:621
-#: tmp/cache_locale/03/03963079e40d8bba608baf2120533e119d90cb2cfc82fee9e293708eb548373f.php:84
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:665
msgid "Mozilla will match your gift and double your impact."
msgstr ""
-#: tmp/cache_locale/fc/fcfb13bee445d3be78c8c44f5b32d0cb2cbb9a1865494b454e2ca509ee6160f4.php:34
-#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:53
-msgid "Subscribed | Tor"
-msgstr ""
-
-#: tmp/cache_locale/fc/fcfb13bee445d3be78c8c44f5b32d0cb2cbb9a1865494b454e2ca509ee6160f4.php:44
-#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:64
-msgid "Subscription Confirmed!"
-msgstr ""
-
-#: tmp/cache_locale/fc/fcfb13bee445d3be78c8c44f5b32d0cb2cbb9a1865494b454e2ca509ee6160f4.php:57
-#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:78
-msgid "Thanks for joining our email list - you'll hear from us soon!"
-msgstr ""
-
-#: tmp/cache_locale/fc/fcfb13bee445d3be78c8c44f5b32d0cb2cbb9a1865494b454e2ca509ee6160f4.php:59
-#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:80
-msgid ""
-"In the meantime, follow <a target=\"_blank\" "
-"href=\"https://twitter.com/torproject\">@TorProject</a> on Twitter to keep "
-"in touch."
-msgstr ""
-
-#: tmp/cache_locale/fc/fcfb13bee445d3be78c8c44f5b32d0cb2cbb9a1865494b454e2ca509ee6160f4.php:63
-#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:84
-msgid ""
-"As a non-profit organization, we rely on contributions from people like you "
-"to help us create and maintain technology used by millions of users daily to"
-" browse, communicate, and express themselves online privately."
-msgstr ""
-
-#: tmp/cache_locale/fc/fcfb13bee445d3be78c8c44f5b32d0cb2cbb9a1865494b454e2ca509ee6160f4.php:65
-#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:86
-msgid "Every little bit helps"
-msgstr ""
-
-#: tmp/cache_locale/fc/fcfb13bee445d3be78c8c44f5b32d0cb2cbb9a1865494b454e2ca509ee6160f4.php:67
-#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:88
-msgid "please donate today"
-msgstr ""
-
-#: tmp/cache_locale/fc/fcfb13bee445d3be78c8c44f5b32d0cb2cbb9a1865494b454e2ca509ee6160f4.php:71
-#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:92
-msgid "Donate Now"
-msgstr ""
-
-#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:35
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:54
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:54
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:54
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:35
-#: tmp/cache_locale/70/70a3de9c7fb70a68cae132efaa24457b72f71189189cd4c8c492f3cd459b6483.php:35
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:35
-#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:54
-msgid "Support the Tor Project Today!"
-msgstr ""
-
-#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:52
-#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:75
-#: tmp/cache_locale/eb/eba664d7c34b5e9dc599e5803f583f25e99c16ec96f31536baeeabb9c42131a3.php:29
-#: tmp/cache_locale/eb/eba664d7c34b5e9dc599e5803f583f25e99c16ec96f31536baeeabb9c42131a3.php:52
-#: tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:47
-#: tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:70
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:52
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:75
-msgid "Donate to the Tor Project and protect the privacy of millions."
-msgstr ""
-
-#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:54
-#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:77
-#: tmp/cache_locale/eb/eba664d7c34b5e9dc599e5803f583f25e99c16ec96f31536baeeabb9c42131a3.php:31
-#: tmp/cache_locale/eb/eba664d7c34b5e9dc599e5803f583f25e99c16ec96f31536baeeabb9c42131a3.php:54
-#: tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:49
-#: tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:72
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:54
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:77
-msgid "Anonymity loves company."
-msgstr ""
-
-#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:63
-#: tmp/cache_locale/eb/eba664d7c34b5e9dc599e5803f583f25e99c16ec96f31536baeeabb9c42131a3.php:40
-#: tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:58
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:63
-msgid "summary_large_image"
-msgstr ""
-
-#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:67
-#: tmp/cache_locale/eb/eba664d7c34b5e9dc599e5803f583f25e99c16ec96f31536baeeabb9c42131a3.php:44
-#: tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:62
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:67
-msgid "@torproject"
-msgstr ""
-
-#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:101
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:83
-msgid "Become a Defender of Privacy!"
-msgstr ""
-
-#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:105
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:87
-msgid ""
-"Join the Tor Project - Defenders of Privacy program - a monthly giving "
-"circle designed to honor donors that make privacy a priority."
-msgstr ""
-
-#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:109
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:91
-msgid ""
-"Defenders of Privacy pledge a modest amount each month - creating a steady, "
-"reliable source of funds to help us be agile in an ever-changing privacy "
-"landscape and we send you exclusive gifts to show our appreciation!"
-msgstr ""
-
-#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:113
-msgid ""
-"The Tor Project counts on the support of our Defenders of Privacy to "
-"continue our mission to provide tools that protect peoples privacy and "
-"identity online."
-msgstr ""
-
-#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:115
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:97
-msgid "With your help, we will make the Tor network accessible to everyone!"
-msgstr ""
-
-#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:119
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:101
-msgid "Together, we will stand up for the universal right to privacy."
-msgstr ""
-
-#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:121
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:103
-msgid ""
-"Please make your monthly donation now and stand with the Tor Project at this"
-" critical time."
-msgstr ""
-
-#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:127
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:109
-msgid "Want to make a one time donation instead?"
-msgstr ""
-
-#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:134
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:84
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:116
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:102
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:62
-#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:122
-msgid ""
-"This page requires Javascript to do PayPal or credit card\n"
-" donations, but it appears you have Javascript disabled."
-msgstr ""
-
-#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:138
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:88
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:120
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:106
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:66
-#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:126
-msgid ""
-"If you wish to donate without enabling Javascript, please take a look at our"
-" <a href=\"https://www.torproject.org/donate/donate-options.html.en\">other "
-"donations options page</a>."
-msgstr ""
-
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:47
-#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:29
msgid ""
"The European shirt fits run a little small so you might want to consider "
"sizing up."
msgstr ""
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:54
-#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:36
msgid "Fit"
msgstr ""
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:58
-#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:40
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:527
msgid "Select Fit"
msgstr ""
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:62
-#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:44
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:519
msgid "Slim"
msgstr ""
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:66
-#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:48
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:515
msgid "Classic"
msgstr ""
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:74
-#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:56
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:523
msgid "European"
msgstr ""
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:84
-#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:66
msgid "Size"
msgstr ""
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:88
-#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:70
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:531
msgid "Select Size"
msgstr ""
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:92
-#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:74
msgid "S"
msgstr ""
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:96
-#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:78
msgid "M"
msgstr ""
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:100
-#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:82
msgid "L"
msgstr ""
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:104
-#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:86
msgid "XL"
msgstr ""
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:108
-#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:90
msgid "XXL"
msgstr ""
-#: tmp/cache_locale/e1/e1e12763540d9524f8871157240d5a8fbf2ea77ace1c46527b3031db68943acc.php:34
-#: tmp/cache_locale/05/05c65ace52301a00198c48e1d823da2c14fbd489e7fb45efbca4e79e5709cbdb.php:53
-msgid "Processing Donation - Tor"
-msgstr ""
-
-#: tmp/cache_locale/e1/e1e12763540d9524f8871157240d5a8fbf2ea77ace1c46527b3031db68943acc.php:44
-#: tmp/cache_locale/05/05c65ace52301a00198c48e1d823da2c14fbd489e7fb45efbca4e79e5709cbdb.php:64
-msgid "Processing Donation. Please Wait..."
-msgstr ""
-
-#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:34
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:53
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:34
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:53
-msgid "Tor Thanks You"
-msgstr ""
-
-#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:44
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:64
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:44
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:64
-msgid "Thank you!"
-msgstr ""
-
-#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:51
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:71
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:51
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:71
-msgid "Thank you for supporting Tor's Strength in Numbers campaign."
-msgstr ""
-
-#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:53
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:73
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:53
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:63
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:73
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:83
-msgid "You should receive an email receipt shortly."
-msgstr ""
-
-#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:55
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:75
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:55
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:75
-msgid ""
-"With your support and the generous matching funds from Mozilla, we'll be "
-"able to tackle ambitious projects, such as developing a more secure, "
-"privacy-enhancing browser for mobile devices and making it easier for third-"
-"party developers to integrate Tor into their applications."
-msgstr ""
-
-#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:61
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:81
-msgid "Thank you for standing up for privacy and freedom online."
-msgstr ""
-
-#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:63
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:83
-msgid ""
-"With your gift of cryptocurrency, you're helping the Tor Project give "
-"millions of people private access to the open web."
-msgstr ""
-
-#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:65
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:85
-msgid ""
-"Your contribution helps make Tor an even stronger tool against authoritarian"
-" governments and privacy-invading corporations."
-msgstr ""
-
-#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:71
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:91
-msgid "For your convenience, our wallet addresses are listed below."
-msgstr ""
-
-#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:73
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:93
-msgid ""
-"Please make sure to copy the wallet addresses exactly when making your "
-"donation, as we are unable to recover funds sent to the wrong wallet."
-msgstr ""
-
-#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:77
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:97
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:77
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:97
-msgid "SHARE THE TOR PROJECT"
-msgstr ""
-
-#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:145
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:166
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:115
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:136
-msgid "Got Skills?"
-msgstr ""
-
-#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:151
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:172
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:121
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:142
-msgid "The Tor network depends on volunteers."
-msgstr ""
-
-#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:157
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:178
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:127
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:148
-msgid ""
-"We need people to run relays, write code, organize the community and spread "
-"the word about our good work."
-msgstr ""
-
-#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:159
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:180
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:129
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:150
-msgid "Learn how you can help."
-msgstr ""
-
-#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:167
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:188
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:137
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:158
-msgid "I Want To Volunteer"
-msgstr ""
-
-#: tmp/cache_locale/ce/cec5a6fe643ad38144e0af02cadfaaf024540f1f46db44998f6c033630795bef.php:24
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:212
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:333
-#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:42
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:352
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:311
-msgid "Your Info"
-msgstr ""
-
-#: tmp/cache_locale/ce/cec5a6fe643ad38144e0af02cadfaaf024540f1f46db44998f6c033630795bef.php:29
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:192
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:342
-#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:47
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:361
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:320
-msgid "First Name"
-msgstr ""
-
-#: tmp/cache_locale/ce/cec5a6fe643ad38144e0af02cadfaaf024540f1f46db44998f6c033630795bef.php:33
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:196
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:346
-#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:51
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:365
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:324
-msgid "Last Name"
-msgstr ""
-
-#: tmp/cache_locale/ce/cec5a6fe643ad38144e0af02cadfaaf024540f1f46db44998f6c033630795bef.php:41
-#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:59
-msgid "Estimated Donation Date:"
-msgstr ""
-
-#: tmp/cache_locale/ce/cec5a6fe643ad38144e0af02cadfaaf024540f1f46db44998f6c033630795bef.php:46
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:188
-#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:64
-msgid "Email"
+#: tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:47
+#: tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:70
+msgid "Donate to the Tor Project and protect the privacy of millions."
msgstr ""
-#: tmp/cache_locale/ce/cec5a6fe643ad38144e0af02cadfaaf024540f1f46db44998f6c033630795bef.php:51
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:174
-#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:69
-msgid "Choose a Currency"
+#: tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:49
+#: tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:72
+msgid "Anonymity loves company."
msgstr ""
-#: tmp/cache_locale/ce/cec5a6fe643ad38144e0af02cadfaaf024540f1f46db44998f6c033630795bef.php:73
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:178
-#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:91
-msgid "Currency Amount"
+#: tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:58
+msgid "summary_large_image"
msgstr ""
-#: tmp/cache_locale/ce/cec5a6fe643ad38144e0af02cadfaaf024540f1f46db44998f6c033630795bef.php:80
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:200
-#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:98
-msgid "Report Donation"
+#: tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:62
+msgid "@torproject"
msgstr ""
-#: tmp/cache_locale/ce/cec5a6fe643ad38144e0af02cadfaaf024540f1f46db44998f6c033630795bef.php:87
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:208
-#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:105
-msgid "Wallet Addresses"
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:54
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:54
+#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:54
+#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:54
+msgid "Support the Tor Project Today!"
msgstr ""
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:83
-#: tmp/cache_locale/70/70a3de9c7fb70a68cae132efaa24457b72f71189189cd4c8c492f3cd459b6483.php:61
msgid "Want to donate by credit card or PayPal?"
msgstr ""
@@ -494,14 +138,12 @@ msgid "Donate using wallet addresses"
msgstr ""
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:133
-#: tmp/cache_locale/70/70a3de9c7fb70a68cae132efaa24457b72f71189189cd4c8c492f3cd459b6483.php:77
msgid ""
"Please fill out this form and then send your coins to the appropriate "
"wallet."
msgstr ""
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:135
-#: tmp/cache_locale/70/70a3de9c7fb70a68cae132efaa24457b72f71189189cd4c8c492f3cd459b6483.php:79
msgid ""
"Filling out the form is not necessary, but doing so will notify us about "
"your donation quickly, allow us to send you an acknowledgement, and let us "
@@ -509,26 +151,22 @@ msgid ""
msgstr ""
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:141
-#: tmp/cache_locale/70/70a3de9c7fb70a68cae132efaa24457b72f71189189cd4c8c492f3cd459b6483.php:85
msgid ""
"Below you will find the cryptocurrencies we accept and our wallet addresses."
msgstr ""
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:143
-#: tmp/cache_locale/70/70a3de9c7fb70a68cae132efaa24457b72f71189189cd4c8c492f3cd459b6483.php:87
msgid ""
"The wallet addresses will be displayed again after you complete the form."
msgstr ""
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:145
-#: tmp/cache_locale/70/70a3de9c7fb70a68cae132efaa24457b72f71189189cd4c8c492f3cd459b6483.php:89
msgid ""
"Please make sure to copy the wallet addresses exactly when making your "
"donation, as we cannot recover funds sent to the wrong wallet."
msgstr ""
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:151
-#: tmp/cache_locale/70/70a3de9c7fb70a68cae132efaa24457b72f71189189cd4c8c492f3cd459b6483.php:95
msgid ""
"If you have any questions, or would like to donate a cryptocurrency not "
"listed below, please email us at giving(a)torproject.org."
@@ -542,6 +180,16 @@ msgstr ""
msgid "Currency Amount must be a number."
msgstr ""
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:174
+#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:69
+msgid "Choose a Currency"
+msgstr ""
+
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:178
+#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:91
+msgid "Currency Amount"
+msgstr ""
+
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:180
msgid "Estimated Donation Date"
msgstr ""
@@ -550,31 +198,58 @@ msgstr ""
msgid "I'd like to make my donation anonymous."
msgstr ""
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:188
+#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:64
+msgid "Email"
+msgstr ""
+
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:192
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:342
+#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:47
+msgid "First Name"
+msgstr ""
+
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:196
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:346
+#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:51
+msgid "Last Name"
+msgstr ""
+
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:200
+#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:98
+msgid "Report Donation"
+msgstr ""
+
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:204
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:392
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:411
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:370
msgid "Start sending me email updates about the Tor Project!"
msgstr ""
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:208
+#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:105
+msgid "Wallet Addresses"
+msgstr ""
+
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:212
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:333
+#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:42
+msgid "Your Info"
+msgstr ""
+
#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:53
-#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:34
msgid "Tor Privacy Policy"
msgstr ""
#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:64
-#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:44
msgid "Donor privacy policy"
msgstr ""
#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:79
-#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:58
msgid ""
"The Tor Project respects donor privacy and welcomes anonymous donations."
msgstr ""
#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:81
-#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:60
msgid ""
"If being anonymous is important to you, the best way to preserve your "
"anonymity is by donating using a method that doesn't disclose your personal "
@@ -582,7 +257,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:86
-#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:65
msgid ""
"If you provide personal information as part of the donation process, it may "
"be collected and retained by third-party service providers and/or the Tor "
@@ -590,14 +264,12 @@ msgid ""
msgstr ""
#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:88
-#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:67
msgid ""
"The Tor Project has very little influence over how third-party service "
"providers, such as PayPal, may collect and use your information."
msgstr ""
#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:90
-#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:69
msgid ""
"We recommend you familiarize yourself with their <a class=\"hyperlinks "
"links\" target=\"_blank\" href=\"https://www.paypal.com/webapps/mpp/ua"
@@ -605,7 +277,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:95
-#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:74
msgid ""
"When you donate to the Tor Project, depending what mechanism you use, we may"
" learn your name, the amount you donated, your email address, phone number "
@@ -613,34 +284,29 @@ msgid ""
msgstr ""
#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:97
-#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:76
msgid ""
"We may also learn incidental data such as the date and time of your "
"donation."
msgstr ""
#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:99
-#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:78
msgid ""
"The Tor Project will never have access to your financial data, such as your "
"credit card information.We aim to be careful with your information."
msgstr ""
#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:104
-#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:83
msgid ""
"If you have provided your email address, we will email you once to thank you"
" and give you a receipt."
msgstr ""
#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:106
-#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:85
msgid ""
"If you opt in during the donation process, we may email you again in future."
msgstr ""
#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:108
-#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:87
msgid ""
"If you donate more than $5,000 and we know your name and address, we are "
"required to disclose it to the IRS in <a class=\"hyperlinks links\" "
@@ -649,32 +315,27 @@ msgid ""
msgstr ""
#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:110
-#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:89
msgid ""
"But, that information is redacted from the publicly-available version of our"
" Form 990."
msgstr ""
#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:112
-#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:91
msgid ""
"We will never publicly identify you as a donor without your permission."
msgstr ""
#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:117
-#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:96
msgid "We do not publish, sell, trade, or rent any information about you."
msgstr ""
#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:119
-#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:98
msgid ""
"For our records, we retain your name, the amount of your donation, the date "
"of the donation, and your contact information."
msgstr ""
#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:121
-#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:100
msgid ""
"Access to that information is restricted inside the Tor Project to people "
"who need it to do their work, for example by thanking you or mailing you a "
@@ -682,170 +343,138 @@ msgid ""
msgstr ""
#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:126
-#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:105
msgid ""
"<span class=\"bold\">The Tor Project very much appreciates all its donors. "
"Thank you for supporting Tor</span>."
msgstr ""
#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:134
-#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:113
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:677
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:656
msgid "Back to Donate Page"
msgstr ""
#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:40
-#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:22
msgid "See if your employer offers employee gift matching"
msgstr ""
#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:70
-#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:52
msgid "Company"
msgstr ""
#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:78
-#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:60
msgid "Matching Conditions"
msgstr ""
#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:86
-#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:68
msgid "Contact Information"
msgstr ""
#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:94
-#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:76
msgid "Additional Notes"
msgstr ""
#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:102
-#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:84
msgid "Procedure"
msgstr ""
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:84
+#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:116
+#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:122
+msgid ""
+"This page requires Javascript to do PayPal or credit card\n"
+" donations, but it appears you have Javascript disabled."
+msgstr ""
+
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:88
+#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:120
+#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:126
+msgid ""
+"If you wish to donate without enabling Javascript, please take a look at our"
+" <a href=\"https://www.torproject.org/donate/donate-options.html.en\">other "
+"donations options page</a>."
+msgstr ""
+
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:109
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:127
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:87
msgid "Number of Donations"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:125
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:143
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:103
msgid "Total Donated"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:141
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:159
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:119
msgid "Total Raised with Mozilla's Match"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:152
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:158
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:170
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:176
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:130
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:136
msgid "donate"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:154
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:172
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:132
msgid "once"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:160
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:178
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:138
msgid "monthly"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:167
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:145
msgid "Want to donate cryptocurrency?"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:172
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:150
msgid "Want to donate stock or via postal mail?"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:188
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:201
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:166
msgid "invalid amount"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:192
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:205
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:170
msgid "$2 minimum donation"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:196
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:209
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:174
msgid "$ other"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:203
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:216
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:181
msgid "Choose your gift as a token of our thanks."
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:210
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:223
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:188
msgid "No thanks, I don't want a gift."
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:212
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:225
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:190
#, php-format
msgid "I would prefer 100% of my donation to go to the Tor Project's work."
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:223
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:236
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:201
msgid "sticker Pack"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:230
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:243
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:208
msgid ""
"A collection of our favorite logo stickers for decorating your stuff and "
"covering your cams."
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:240
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:253
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:218
msgid "t-shirt"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:248
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:267
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:226
msgid "Get our limited edition Tor: Strength in Numbers shirt."
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:259
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:278
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:237
msgid "t-shirt pack"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:269
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:288
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:247
msgid ""
"Our Tor: Strength in Numbers t-shirt, plus one of either our Tor: Powering "
"the Digital Resistance, Open Observatory of Network Interference (OONI), or "
@@ -853,262 +482,200 @@ msgid ""
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:275
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:294
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:253
msgid "Tor at the Heart of Internet Freedom"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:279
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:298
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:257
msgid "Powering the Digital Resistance"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:283
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:302
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:261
msgid "Open Observatory of Network Interference"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:294
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:313
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:272
msgid "sweatshirt"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:301
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:320
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:279
msgid "Your generous support of Tor gets you this high-quality zip hoodie."
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:311
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:330
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:289
msgid "how do you want to <span class=\"green\">DONATE</span>?"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:317
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:336
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:295
msgid "Credit Card"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:326
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:185
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:345
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:304
msgid "Want to donate Bitcoin, Stock, or via snail mail?"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:337
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:356
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:315
msgid "* required fields"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:352
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:371
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:330
msgid "Street Address"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:356
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:375
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:334
msgid "Apt."
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:366
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:385
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:344
msgid "City"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:370
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:389
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:348
msgid "State"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:375
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:394
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:353
msgid "Zip"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:381
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:400
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:359
msgid "Enter email"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:385
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:404
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:363
msgid "We‘ll email you your receipt"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:399
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:418
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:377
msgid "Card Number"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:406
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:425
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:384
msgid "MM"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:410
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:429
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:388
msgid "YY"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:414
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:433
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:392
msgid "CVC"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:422
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:491
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:441
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:493
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:400
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:465
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:495
msgid "Choose your size and fit."
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:427
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:435
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:446
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:454
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:405
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:413
msgid "T-shirt:"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:445
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:449
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:451
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:464
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:468
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:470
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:423
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:427
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:429
msgid "Comments"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:457
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:476
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:435
msgid "Donating:"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:469
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:483
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:443
msgid "Donate"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:479
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:453
-msgid "Gift Selected"
+msgid "State/Province/Region"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:483
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:457
-msgid "No Gift Selected"
+msgid "Gift Selected:"
msgstr ""
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:487
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:461
+msgid "No Gift Selected"
+msgstr ""
+
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:491
msgid "Sticker Pack"
msgstr ""
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:495
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:497
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:469
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:499
msgid "T-Shirt"
msgstr ""
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:499
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:501
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:473
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:503
msgid "Choose your size and fit for each shirt."
msgstr ""
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:503
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:477
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:507
msgid "T-Shirt Pack"
msgstr ""
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:511
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:513
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:485
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:535
msgid "Choose your size."
msgstr ""
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:515
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:517
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:489
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:539
msgid "Sweatshirt"
msgstr ""
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:519
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:521
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:493
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:543
msgid "A required field is missing from the form."
msgstr ""
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:521
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:523
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:495
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:545
msgid "Please reload the page and try again."
msgstr ""
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:525
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:527
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:499
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:549
msgid "There was a problem submitting your request to the server:<br>"
msgstr ""
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:529
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:531
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:503
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:553
msgid "validation failed"
msgstr ""
#. notes: __field_name__ will be replaced with the field name in the
#. javascript.
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:535
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:537
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:509
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:559
msgid "__field_name__ must be filled out."
msgstr ""
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:540
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:542
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:514
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:564
msgid "This field is required"
msgstr ""
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:544
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:546
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:518
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:568
msgid "Invalid email address."
msgstr ""
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:548
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:550
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:522
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:572
msgid "per month"
msgstr ""
+#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:59
+msgid "Estimated Donation Date:"
+msgstr ""
+
+#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:83
+msgid "Become a Defender of Privacy!"
+msgstr ""
+
+#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:87
+msgid ""
+"Join the Tor Project - Defenders of Privacy program - a monthly giving "
+"circle designed to honor donors that make privacy a priority."
+msgstr ""
+
+#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:91
+msgid ""
+"Defenders of Privacy pledge a modest amount each month - creating a steady, "
+"reliable source of funds to help us be agile in an ever-changing privacy "
+"landscape and we send you exclusive gifts to show our appreciation!"
+msgstr ""
+
#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:95
msgid ""
"The Tor Project counts on the support of our Defenders of Privacy to "
@@ -1116,30 +683,25 @@ msgid ""
"identity online."
msgstr ""
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:259
-msgid "$15"
+#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:97
+msgid "With your help, we will make the Tor network accessible to everyone!"
msgstr ""
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:261
-msgid "OFF"
+#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:101
+msgid "Together, we will stand up for the universal right to privacy."
msgstr ""
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:505
+#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:103
msgid ""
-"Tor at the Heart of Internet, Powering Digital Resistance or Open "
-"Observvatory of Network Interference (OONI) T-Shirt"
-msgstr ""
-
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:509
-msgid "Strength in Numbers T-Shirt"
+"Please make your monthly donation now and stand with the Tor Project at this"
+" critical time."
msgstr ""
-#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:564
-msgid "One moment while we shovel coal into our servers."
+#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:109
+msgid "Want to make a one time donation instead?"
msgstr ""
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:43
-#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:25
msgid ""
"The Tor Project is a US 501(c)(3) non-profit organization advancing human "
"rights and freedoms by creating and deploying free and open source anonymity"
@@ -1148,32 +710,26 @@ msgid ""
msgstr ""
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:49
-#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:31
msgid "Subscribe to Our Newsletter"
msgstr ""
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:53
-#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:35
msgid "Get monthly updates and opportunities from the Tor Project."
msgstr ""
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:57
-#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:39
msgid "Sign Up"
msgstr ""
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:65
-#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:47
msgid "Donate FAQs"
msgstr ""
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:69
-#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:51
msgid "Privacy Policy"
msgstr ""
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:85
-#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:68
msgid ""
"Designed and built by <span class=\"stamp-bold\"><a "
"href=\"https://www.giantrabbit.com/\" class=\"stamp-bold\" "
@@ -1181,17 +737,14 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:53
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:34
msgid "Tor Donor FAQ"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:64
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:44
msgid "Questions?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:80
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:59
msgid ""
"If your question isn’t answered below, email <span "
"class=\"email\">frontdesk(at)rt.torproject.org</span> with general Tor "
@@ -1200,12 +753,10 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:87
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:66
msgid "What is the Tor Project and what does it do?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:91
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:70
msgid ""
"The Tor Project’s mission is to advance human rights and freedoms by "
"creating and deploying free and open anonymity and privacy technologies, "
@@ -1214,7 +765,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:93
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:72
msgid ""
"The main product of the Tor Project is <a "
"href=\"https://www.torproject.org/download/download-easy.html.en\">Tor "
@@ -1222,24 +772,20 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:95
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:74
msgid ""
"The Tor Project is a 501(c)3 tax-exempt non-profit organization based in "
"Boston, Massachusetts."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:97
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:76
msgid "It was founded in 2006."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:103
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:82
msgid "Who works for the Tor Project, and what do they do?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:107
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:86
msgid ""
"Thousands of people around the world actively support the work of the Tor "
"Project, including developers, designers, relay operators, researchers, "
@@ -1248,13 +794,11 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:109
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:88
msgid ""
"The paid staff of the Tor Project is very small: about 47 people in total."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:111
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:90
msgid ""
"You can read about the core contributors to the Tor Project on our <a "
"class=\"hyperlinks\" target=\"_blank\" "
@@ -1263,36 +807,30 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:116
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:95
msgid "Who uses Tor?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:120
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:99
msgid ""
"The vast majority of Tor users are ordinary people who want control of their"
" privacy online or people whose internet use is censored."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:122
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:101
msgid ""
"Other Tor users are journalists, human rights defenders, domestic violence "
"survivors, policymakers, diplomats, and academic and research institutions."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:128
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:107
msgid "Can anyone use Tor?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:132
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:111
msgid "Yes! Tor is free, and anyone can use it."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:134
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:113
msgid ""
"To get started, you will need to <a class=\"hyperlinks\" target=\"_blank\" "
"href=\"https://www.torproject.org/projects/torbrowser.html.en\"><span "
@@ -1300,7 +838,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:136
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:115
msgid ""
"We offer instructions on how to download for <a class=\"hyperlinks links\" "
"target=\"_blank\" "
@@ -1312,17 +849,14 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:142
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:121
msgid "What kinds of people support Tor?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:146
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:125
msgid "All kinds of people."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:148
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:127
msgid ""
"Thousands of individuals have donated to support the Tor Project, and we "
"have also received funding from a wide range of organizations including "
@@ -1334,14 +868,12 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:150
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:129
msgid ""
"People also support Tor in non-financial ways, for example by running Tor "
"relays to help carry traffic for other users."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:152
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:131
msgid ""
"In addition, everybody who uses Tor is helping to keep other users safe and "
"anonymous, because the more people using Tor, the harder it is to identify "
@@ -1349,12 +881,10 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:158
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:137
msgid "How does the Tor software work to protect people's anonymity?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:162
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:141
msgid ""
"Tor protects you by bouncing your communications around the Tor network, "
"which is a distributed network of relays run by volunteers all around the "
@@ -1362,20 +892,17 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:164
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:143
msgid ""
"If someone is watching your internet connection, Tor prevents them from "
"finding out what sites you are visiting."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:166
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:145
msgid ""
"It also prevents sites you visit from finding out where you're located."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:168
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:147
msgid ""
"You can read more about how Tor works on our <a class=\"hyperlinks links\" "
"target=\"_blank\" "
@@ -1383,14 +910,12 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:175
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:154
msgid ""
"I would like to know more about how Tor works, what onion services are, or "
"how to run a relay."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:179
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:158
msgid ""
"<a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"https://www.torproject.org/docs/faq.html.en\">This Tor Project "
@@ -1398,12 +923,10 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:185
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:164
msgid "Does the Tor software work?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:189
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:168
msgid ""
"We believe Tor is the best solution available today, and we know that it "
"does a better job of keeping you safely anonymous than other options such as"
@@ -1411,14 +934,12 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:191
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:170
msgid ""
"We know that both the Russian government and the NSA have tried in the past "
"to crack Tor, and failed."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:193
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:172
msgid ""
"The Electronic Frontier Foundation says that Tor offers <a "
"class=\"hyperlinks links\" target=\"_blank\" "
@@ -1429,26 +950,22 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:199
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:178
msgid "Is what Tor does legal? Can I get in trouble for using it?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:203
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:182
msgid ""
"Downloading Tor Browser or using the Tor network is legal in nearly every "
"country."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:205
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:184
msgid ""
"A few web sites occasionally block Tor, but that doesn't mean you're doing "
"anything wrong."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:207
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:186
msgid ""
"Usually it means that site has had difficulties with visitors who've been "
"using Tor in the past, or that they misunderstand what Tor is and how it "
@@ -1456,14 +973,12 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:209
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:188
msgid ""
"But it is not illegal to use Tor, and you shouldn't get in trouble for doing"
" it."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:211
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:190
msgid ""
"You can find more information about Tor's legal status on the <a "
"class=\"hyperlinks links\" target=\"_blank\" "
@@ -1471,14 +986,12 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:217
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:196
msgid ""
"Where can I find out more about the Tor Project, especially financial "
"information?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:221
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:200
msgid ""
"Here are the Tor Project's <a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"https://www.torproject.org/about/financials.html.en\">financial "
@@ -1486,12 +999,10 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:227
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:206
msgid "Where does the Tor Project's money come from?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:231
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:210
msgid ""
"Tor is supported by United States government funding agencies, NGOs, private"
" foundations, research institutions, private companies, and over 20,000 "
@@ -1499,7 +1010,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:233
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:212
msgid ""
"(See <a class=\"hyperlinks links single-link\" target=\"_blank\" "
"href=\"https://www.torproject.org/about/sponsors.html.en\">https://www.torproject.org/about/sponsors</a>"
@@ -1507,14 +1017,12 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:235
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:214
msgid ""
"While we are grateful for this funding, we don't want the Tor Project to "
"become too dependent on any single source."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:237
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:216
msgid ""
"Crowdfunding allows us to diversify our donor base and is unrestricted -- it"
" allows us to spend the money on the projects we think are most important "
@@ -1522,7 +1030,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:239
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:218
msgid ""
"And so, we are asking you to help financially support us, to increase the "
"Tor Project's independence and ensure the sustainability of the products and"
@@ -1530,18 +1037,15 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:245
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:224
msgid ""
"How much money does the Tor Project spend annually, and what is it used for?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:249
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:228
msgid "The Tor Project spends about $4 million annually."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:251
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:230
#, php-format
msgid ""
"About 80% of the Tor Project's spending goes to staffing, mostly software "
@@ -1549,38 +1053,32 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:253
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:232
msgid ""
"About 10% goes towards administrative costs such as accounting and legal "
"costs and bank fees."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:255
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:234
msgid ""
"The remaining 10% is spent on travel, meetings and conferences, which are "
"important for Tor because the Tor community is global."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:261
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:240
msgid "Is my donation tax-deductible?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:265
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:244
msgid ""
"If you pay taxes in the United States, your donation to Tor is tax "
"deductible to the full extent required by law."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:267
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:246
msgid "Following is information you may need for reporting purposes:"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:272
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:251
msgid ""
"<b>Tor Project Tax ID Number (EIN #):</b> 20-8096820<br>\n"
" <b>Address:</b><br>\n"
@@ -1592,24 +1090,20 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:285
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:264
msgid "If I am not in the United States, can I still donate?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:289
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:268
msgid "Yes, definitely."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:291
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:270
msgid ""
"Your donation probably isn't tax-deductible (unless you pay taxes on U.S. "
"income) but we would very much appreciate your support."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:297
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:276
msgid ""
"Can I donate to a specific project, or restrict my donation to a particular "
"purpose?"
@@ -1617,13 +1111,10 @@ msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:301
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:581
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:280
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:560
msgid "No, sorry."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:303
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:282
msgid ""
"If we accept a donation from someone who has specified how they want it "
"used, we're required by the IRS to track and report separately on that "
@@ -1631,69 +1122,58 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:305
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:284
msgid ""
"That would be a big administrative burden for a small organization, and we "
"don't think it's a good idea for us."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:307
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:286
msgid ""
"However, we would be very happy to hear your ideas and feedback about our "
"work."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:309
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:288
msgid ""
"If you're donating using a mechanism that allows for comments, feel free to "
"send your thoughts that way."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:315
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:294
msgid "Can I donate while using Tor Browser?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:319
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:298
msgid "Yes! In our testing, donation works via Tor Browser."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:321
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:300
msgid ""
"If you run into problems, please contact <span "
"class=\"email\">giving(at)torproject.org</span>."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:325
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:304
msgid ""
"For users logging in to Paypal: some people had no problem donating via "
"PayPal while using Tor Browser."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:327
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:306
msgid ""
"In past years, some people couldn't complete the donation process, and one "
"person had their PayPal account temporarily frozen."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:329
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:308
msgid "If you run into any problems donating via PayPal, please let us know."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:335
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:314
msgid "How can I donate via debit or credit card?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:339
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:318
msgid ""
"To donate using a major credit card or debit card (VISA, MasterCard, "
"Discover or American Express) or via PayPal, please visit our <a "
@@ -1701,12 +1181,10 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:345
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:324
msgid "Why do you ask for my address and similar information?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:349
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:328
msgid ""
"If you donate by credit card, you will be asked for some information that's "
"required to process your credit card payment, including your billing "
@@ -1714,45 +1192,38 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:351
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:330
msgid ""
"This allows our payment processor to verify your identity, process your "
"payment, and prevent fraudulent charges to your credit card."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:353
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:332
msgid ""
"We don't ask for information beyond what's required by the payment "
"processor."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:359
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:338
msgid "Why is there a minimum donation?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:363
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:342
msgid ""
"People who have stolen credit card information often donate to nonprofits as"
" a way of testing whether the card works."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:365
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:344
msgid ""
"These people typically use a very small amount for their testing, and we've "
"found that setting a $1 minimum donation seems to deter them."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:371
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:350
msgid "Is there a maximum donation?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:375
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:354
msgid ""
"No, no, no! More funding from you means we can do more things we are excited"
" to do, like hire a person to monitor the Tor network full time, or "
@@ -1761,12 +1232,10 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:381
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:360
msgid "Can I donate via bitcoin?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:385
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:364
msgid ""
"Yes! We accept <a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"https://www.torproject.org/donate/donate-options.html.en\">bitcoin "
@@ -1774,14 +1243,12 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:391
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:370
msgid ""
"If I want my donation to be anonymous, what is the best way for me to "
"donate?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:395
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:374
msgid ""
"You can donate by <a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"https://www.torproject.org/donate/donate-"
@@ -1789,33 +1256,28 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:397
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:376
msgid ""
"You can donate via bitcoin if you have bitcoin set up in a way that "
"preserves your anonymity."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:399
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:378
msgid "You can buy cash gift cards and mail them to us."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:401
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:380
msgid ""
"There are probably other ways to donate anonymously that we haven't thought "
"of-- maybe you will :)"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:408
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:387
msgid ""
"Is the Tor Project required to identify me as a donor to the United States "
"government, or to any other authority?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:412
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:391
msgid ""
"If you donate $5,000 or more to the Tor Project in a single year, we are "
"required to report the donation amount and your name and address (if we have"
@@ -1823,7 +1285,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:414
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:393
msgid ""
"However, it's normal for nonprofits to redact individual donor information "
"from the copy of the 990 that's made publicly-available, and that's what we "
@@ -1831,52 +1292,44 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:416
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:395
msgid ""
"We are not required to identify donors to any other organization or "
"authority, and we do not."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:418
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:397
msgid ""
"(Also, if you wanted, you could give us $4,999 in late 2018 and $4,999 in "
"early 2019.)"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:424
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:403
msgid ""
"In your privacy policy, you say you will never publicly identify me as a "
"donor without my permission."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:426
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:405
msgid "What does that mean?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:430
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:409
msgid "Yes, that's right."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:432
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:411
msgid ""
"If you donate to the Tor Project, there will be some people at the Tor "
"Project who know about your donation."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:434
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:413
msgid ""
"However, we will never publicly identify you as a donor, unless you have "
"given us permission to do so."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:436
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:415
msgid ""
"That means we won't post your name on our website, thank you on Twitter, or "
"do anything else that would publicly identify you as someone who has "
@@ -1884,28 +1337,24 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:438
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:417
msgid ""
"If we decide we would like to publicly name you as a donor, we will ask you "
"first, and will not do it until and unless you say it's okay."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:444
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:423
msgid ""
"It's important to me that my donation be tax-deductible, but I don't pay "
"taxes in the United States."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:448
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:427
msgid ""
"Right now, we can only offer tax-deductibility to donors who pay taxes in "
"the United States."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:450
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:429
msgid ""
"If it's important to you that your donations be tax-deductible in a "
"different country, let us know and we will try to offer tax-deductibility in"
@@ -1913,7 +1362,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:452
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:431
msgid ""
"Or, if you are in Germany, France or Sweden, <a class=\"hyperlinks links\" "
"target=\"_blank\" "
@@ -1923,14 +1371,12 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:458
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:437
msgid ""
"What if I don't want to use credit card or PayPal? Is there another way I "
"can donate?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:462
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:441
msgid ""
"Yes! Here is a list of <a href=\"https://www.torproject.org/donate/donate-"
"options.html.en\" class=\"hyperlinks links\" target=\"_blank\">other ways "
@@ -1938,31 +1384,26 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:469
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:448
msgid "What is your donor privacy policy?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:473
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:452
msgid ""
"Here is the Tor Project <a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"/%langcode%/privacy-policy\">donor privacy policy</a>."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:479
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:458
msgid "What is your refund policy?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:483
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:462
msgid ""
"If you want your donation refunded, please tell us by emailing <span "
"class=\"email\">giving(at)torproject.org</span>."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:485
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:464
msgid ""
"To process your refund we'll need to know the date of your donation, the "
"amount you donated, your full name, the payment method you used and your "
@@ -1970,12 +1411,10 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:487
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:466
msgid "Please also tell us why you're asking for a refund."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:489
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:468
msgid ""
"Please note that some payment methods won't support refunds, or require them"
" to be made in a specific way, so we may need additional information from "
@@ -1983,41 +1422,33 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:495
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:474
msgid "Can I donate by mail?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:499
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:605
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:478
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:584
msgid "Yes."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:501
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:480
msgid ""
"Our mailing address is The Tor Project, 217 First Avenue South #4903, "
"Seattle WA 98194, USA"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:507
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:486
msgid "Do you accept cash donations?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:511
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:490
msgid "Yes"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:517
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:496
msgid "Does Tor Project accept matching donations?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:521
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:500
msgid ""
"Yes! Many companies --such as Google, Microsoft, eBay, PayPal, Apple, "
"Verizon, Red Hat, many universities, and others-- will match donations made "
@@ -2025,7 +1456,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:523
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:502
msgid ""
"The fastest way to find out if your company matches donations is usually by "
"checking with your HR department, or you can search for your company name at"
@@ -2034,33 +1464,28 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:525
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:504
msgid ""
"If your company isn't currently set up to match donations to the Tor "
"Project, we would be happy to help with the paperwork."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:527
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:506
msgid ""
"If you want help figuring out the process, write us at <span "
"class=\"email\">giving(at)torproject.org</a>."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:533
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:512
msgid "Can I become a Tor Project member?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:537
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:516
msgid ""
"Right now, we don't have a membership program, but we may set one up in the "
"future."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:539
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:518
msgid ""
"If you want to get involved with the Tor Project, <a class=\"hyperlinks "
"links\" target=\"_blank\" "
@@ -2069,12 +1494,10 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:545
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:524
msgid "How can I get a Tor t-shirt or stickers?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:549
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:528
msgid ""
"A variety of thank-you gifts for donors, including t-shirts, hoodies and "
"stickers, are presented on our main <a "
@@ -2082,14 +1505,12 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:555
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:534
msgid ""
"If I want to stay in touch with the Tor Project, what's the best way for me "
"to do that?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:559
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:538
msgid ""
"You can sign up to receive <a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"https://newsletter.torproject.org/\">Tor News</a>, read the <a "
@@ -2100,47 +1521,39 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:565
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:544
msgid ""
"Does the Tor Project participate in the Combined Federal Campaign program?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:569
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:548
msgid "No, Tor doesn't currently participate in the CFC program."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:571
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:550
msgid ""
"If you'd like to get Tor added to the CFC program in your location, that "
"would be great: please let us know if you need any help."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:577
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:556
msgid "Can I donate my airline miles, flight vouchers, or hotel points?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:583
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:562
msgid ""
"We would like to accept your miles, vouchers and hotel points, and in the "
"future we may be able to."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:589
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:568
msgid "Can I donate hardware?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:593
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:572
msgid "Typically no, we don't encourage people to donate hardware."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:595
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:574
msgid ""
"But if you want to make a hardware donation that you think might be "
"especially useful for us, please mail <span "
@@ -2148,12 +1561,10 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:601
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:580
msgid "Can I donate my time?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:607
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:586
msgid ""
"Here's a <a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">list of "
@@ -2161,31 +1572,26 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:613
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:592
msgid "I would like my company to support Tor."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:615
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:594
msgid "What can we do to help?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:619
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:598
msgid ""
"Your company could match donations made by its employees to the Tor Project"
"--that would be wonderful."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:621
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:600
msgid ""
"Your company may operate a corporate foundation that gives out grants, and "
"if so, you should encourage it to fund us."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:623
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:602
msgid ""
"Maybe your company would be willing to <a class=\"hyperlinks links\" "
"target=\"_blank\" "
@@ -2194,89 +1600,195 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:625
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:604
msgid ""
"If your company sells cloud services, perhaps it could donate these to Tor: "
"We use them in some anti-censorship projects."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:631
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:610
msgid "You don't support my preferred way to donate."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:633
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:612
msgid "Can I recommend a new donation method to you?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:637
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:616
msgid "Sure."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:639
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:618
msgid "Just mail us at <span class=\"email\">giving(at)torproject.org</span></a>."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:645
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:624
msgid ""
"Will the Tor Project accept donations from anybody, or do you reserve the "
"right to reject support from specific organizations or individuals?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:649
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:628
msgid "We do reserve the right to reject a donation."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:651
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:630
msgid "To date though, we haven't exercised that right."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:653
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:632
msgid "We are happy that a broad range of people use and support Tor."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:659
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:638
msgid "I have more questions."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:661
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:640
msgid "How can I get answers?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:665
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:644
msgid ""
"Feel free to send questions to <span "
"class=\"email\">frontdesk(at)rt.torproject.org</span>."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:667
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:646
msgid ""
"We will try to answer you, and we'll also post your question (and the "
"answer) here."
msgstr ""
-#: tmp/cache_locale/70/70a3de9c7fb70a68cae132efaa24457b72f71189189cd4c8c492f3cd459b6483.php:70
+#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:53
+msgid "Subscribed | Tor"
+msgstr ""
+
+#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:64
+msgid "Subscription Confirmed!"
+msgstr ""
+
+#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:78
+msgid "Thanks for joining our email list - you'll hear from us soon!"
+msgstr ""
+
+#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:80
+msgid ""
+"In the meantime, follow <a target=\"_blank\" "
+"href=\"https://twitter.com/torproject\">@TorProject</a> on Twitter to keep "
+"in touch."
+msgstr ""
+
+#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:84
+msgid ""
+"As a non-profit organization, we rely on contributions from people like you "
+"to help us create and maintain technology used by millions of users daily to"
+" browse, communicate, and express themselves online privately."
+msgstr ""
+
+#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:86
+msgid "Every little bit helps"
+msgstr ""
+
+#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:88
+msgid "please donate today"
+msgstr ""
+
+#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:92
+msgid "Donate Now"
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:53
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:53
+msgid "Tor Thanks You"
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:64
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:64
+msgid "Thank you!"
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:71
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:71
+msgid "Thank you for supporting Tor's Strength in Numbers campaign."
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:73
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:73
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:83
+msgid "You should receive an email receipt shortly."
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:75
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:75
+msgid ""
+"With your support and the generous matching funds from Mozilla, we'll be "
+"able to tackle ambitious projects, such as developing a more secure, "
+"privacy-enhancing browser for mobile devices and making it easier for third-"
+"party developers to integrate Tor into their applications."
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:81
+msgid "Thank you for standing up for privacy and freedom online."
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:83
+msgid ""
+"With your gift of cryptocurrency, you're helping the Tor Project give "
+"millions of people private access to the open web."
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:85
+msgid ""
+"Your contribution helps make Tor an even stronger tool against authoritarian"
+" governments and privacy-invading corporations."
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:91
+msgid "For your convenience, our wallet addresses are listed below."
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:93
+msgid ""
+"Please make sure to copy the wallet addresses exactly when making your "
+"donation, as we are unable to recover funds sent to the wrong wallet."
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:97
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:97
+msgid "SHARE THE TOR PROJECT"
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:166
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:136
+msgid "Got Skills?"
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:172
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:142
+msgid "The Tor network depends on volunteers."
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:178
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:148
msgid ""
-"Thanks for your interest in donating cryptocurrency to the Tor Project."
+"We need people to run relays, write code, organize the community and spread "
+"the word about our good work."
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:180
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:150
+msgid "Learn how you can help."
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:188
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:158
+msgid "I Want To Volunteer"
msgstr ""
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:61
#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:81
msgid "Thank you for your support of the Tor Project."
msgstr ""
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:65
#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:85
msgid ""
"With your support, we'll be able to tackle ambitious projects, such as "
@@ -2285,20 +1797,26 @@ msgid ""
"applications."
msgstr ""
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:71
#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:91
msgid ""
"It's an incredible time to stand up for world-leading security and privacy "
"software."
msgstr ""
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:73
#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:93
msgid ""
"Tell family, friends, and colleagues that you're supporting privacy and "
"security with Tor!"
msgstr ""
+#: tmp/cache_locale/05/05c65ace52301a00198c48e1d823da2c14fbd489e7fb45efbca4e79e5709cbdb.php:53
+msgid "Processing Donation - Tor"
+msgstr ""
+
+#: tmp/cache_locale/05/05c65ace52301a00198c48e1d823da2c14fbd489e7fb45efbca4e79e5709cbdb.php:64
+msgid "Processing Donation. Please Wait..."
+msgstr ""
+
#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:83
msgid ""
"Champions of Privacy make a significant pledge of $1,000 or morecreating a "
@@ -2309,8 +1827,8 @@ msgstr ""
#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:87
msgid ""
-"As a Champion of Privacy, youll receive exclusive gifts and invitations to "
-"online events that will give you insider access to whats happening at Tor."
+"As a Champion of Privacy, you'll receive exclusive gifts and invitations to "
+"online events that will give you insider access to what's happening at Tor."
msgstr ""
#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:91
@@ -2330,7 +1848,7 @@ msgid "With your help, we can make the Tor network accessible to all."
msgstr ""
#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:99
-msgid "Were standing up for the universal human right to privacy."
+msgid "We're standing up for the universal human right to privacy."
msgstr ""
#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:101
1
0