tor-commits
Threads by month
- ----- 2025 -----
- 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
September 2019
- 21 participants
- 2044 discussions

[tech-reports/master] Don't assign the same report number twice.
by karsten@torproject.org 23 Sep '19
by karsten@torproject.org 23 Sep '19
23 Sep '19
commit ce8a199b104e3f300fad42be7733119a8a412b40
Author: Karsten Loesing <karsten.loesing(a)gmx.net>
Date: Mon Sep 23 10:23:24 2019 +0200
Don't assign the same report number twice.
---
2018/side-channel-analysis/side-channel-analysis.tex | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/2018/side-channel-analysis/side-channel-analysis.tex b/2018/side-channel-analysis/side-channel-analysis.tex
index 4824c3a..c712dad 100644
--- a/2018/side-channel-analysis/side-channel-analysis.tex
+++ b/2018/side-channel-analysis/side-channel-analysis.tex
@@ -3,7 +3,7 @@
\author{Nick Mathewson and Mike Perry}
\contact{\{nickm,mikeperry\}(a)torproject.org}
-\reportid{2018-11-001}
+\reportid{2018-11-002}
\date{November 27, 2018}
\title{Towards Side Channel Analysis of Datagram Tor vs Current Tor}
\maketitle
1
0

[tech-reports/master] Convert Nick's and Mike's whitepaper to LaTeX.
by karsten@torproject.org 23 Sep '19
by karsten@torproject.org 23 Sep '19
23 Sep '19
commit 5e5007b4d9f7d974c5780fc9f94b5ca1e2c75737
Author: Karsten Loesing <karsten.loesing(a)gmx.net>
Date: Mon Sep 16 10:41:12 2019 +0200
Convert Nick's and Mike's whitepaper to LaTeX.
---
...annel-analysis.md => side-channel-analysis.tex} | 122 +++++++++++----------
1 file changed, 64 insertions(+), 58 deletions(-)
diff --git a/2018/side-channel-analysis/side-channel-analysis.md b/2018/side-channel-analysis/side-channel-analysis.tex
similarity index 86%
rename from 2018/side-channel-analysis/side-channel-analysis.md
rename to 2018/side-channel-analysis/side-channel-analysis.tex
index f9454de..4824c3a 100644
--- a/2018/side-channel-analysis/side-channel-analysis.md
+++ b/2018/side-channel-analysis/side-channel-analysis.tex
@@ -1,17 +1,21 @@
-# Towards Side Channel Analysis of Datagram Tor vs Current Tor
+\documentclass{tortechrep}
+\begin{document}
- Version 0.6, 27 Nov 2018
+\author{Nick Mathewson and Mike Perry}
+\contact{\{nickm,mikeperry\}(a)torproject.org}
+\reportid{2018-11-001}
+\date{November 27, 2018}
+\title{Towards Side Channel Analysis of Datagram Tor vs Current Tor}
+\maketitle
- by Nick Mathewson and Mike Perry
-
-## Disclaimers
+\section{Disclaimers}
This whitepaper assumes that you know how Tor works.
There are probably some very good references here that we didn't
remember to cite.
-## Introduction
+\section{Introduction}
Tor's current design requires that its data cells be transmitted
from one end of a circuit to the other using a reliable, in-order
@@ -46,31 +50,33 @@ our description of the problem space will inspire, not discourage,
future experiments in this area, and help with a holistic understanding
of the risks, rewards, and future areas of work.
-### A toy system
+\subsection{A toy system}
We will be analyzing a system that differs from Tor in the following
ways.
- * The link between a client and its guard, and between each pair
+\begin{itemize}
+\item The link between a client and its guard, and between each pair
of relays uses DTLS over UDP: packets can be dropped or
re-ordered by an attacker on the link, but not modified, read,
or forged. Each DTLS packet contains an integer number of cells.
- * Each circuit between a client and an exit traverse several
+\item Each circuit between a client and an exit traverse several
relays, as before. The cells on a circuit are no longer
guaranteed to arrive reliably, but can be dropped or re-ordered
on the wire, or by a relay.
- * To provide reliable service end-to-end, the client and the
+\item To provide reliable service end-to-end, the client and the
exit each use a TCP-like protocol to track which application
bytes have been sent and received. Received data is
acknowledged; dropped data is retransmitted.
- * The cryptography to be used for circuit encryption is not
+\item The cryptography to be used for circuit encryption is not
specified here.
- * A reliable signaling mechanism between relays (to create,
+\item A reliable signaling mechanism between relays (to create,
destroy, and maintain circuits) is not specified here.
+\end{itemize}
(It is likely that many readers will be able to design a system that
resists the attacks below better than the design above. But please
@@ -80,7 +86,7 @@ clearly superior to Tor as it is today. Before we can deploy, we
will need not just defenses, but also a systemic way to compare the
effect of these defenses, used together, to the Tor status quo.)
-## Some preexisting attacks to consider
+\section{Some preexisting attacks to consider}
To put the datagram-based attacks into context, we'll start out by
listing some attacks against the current non-datagram Tor design
@@ -100,7 +106,7 @@ alter packet timing information in transit.
In many cases, we don't have good metrics or evaluation methodology
to determine how much harder or easier one attack is than another.
-### End-to-end passive traffic correlation attacks.
+\subsection{End-to-end passive traffic correlation attacks.}
Here's the gold-standard base-line attack: an attacker who can watch
any two points on the same circuit is assumed to be able to realize,
@@ -129,7 +135,7 @@ padding, it is not yet clear if we can use these defenses in an
affordable way against a correlation attack, and it is hard to
measure their effectiveness on a realistic Tor-sized network.
-### Data tagging side-channels by relays
+\subsection{Data tagging side-channels by relays}
If two relays are on the same circuit, they can surreptitiously
communicate with one another transforming the data in the RELAY
@@ -148,7 +154,7 @@ To defend against this, we plan to replace our encryption with a
non-malleable algorithm. See for example proposals 202, 261, and
295.
-### Destructive side-channels (internal)
+\subsection{Destructive side-channels (internal)}
Even if we remove the malleability in Tor's encryption, a smaller
side-channel remains: A dishonest relay can destroy a circuit at any
@@ -181,7 +187,7 @@ information that can be sent in this way rather than eliminate it.
We also lack methodology to measure the rate of information in this
case, to help determine if we can successfully reduce it further.
-### Destructive network probes (external)
+\subsection{Destructive network probes (external)}
Though TLS is resilient against many forms of active attacks, it
can't resist an attacker who focuses against the underlying TCP
@@ -195,7 +201,7 @@ than it would be against (some) datagram-based designs, since
datagram-based designs are resilient to more kinds of traffic
interference.
-### Timing-based watermarking attacks
+\subsection{Timing-based watermarking attacks}
Hostile relays can also introduce a side channels to a circuit by
introducing patterned delays into the cells. For example, a relay
@@ -206,21 +212,18 @@ in that time period.
An attacker can also mount this attack without controlling relays:
if the attacker performs a DoS attack against a relay or its
traffic, it can observe changes in the traffic volume elsewhere on
-the network.
-
-[See https://www.freehaven.net/anonbib/cache/ccs07-latency-leak.pdf and
-http://cybercentre.cs.ttu.ee/wp/wp-content/uploads/2017/01/crw2017_final.pdf ]
+the network.%
+\footnote{See \url{https://www.freehaven.net/anonbib/cache/ccs07-latency-leak.pdf} and
+\url{http://cybercentre.cs.ttu.ee/wp/wp-content/uploads/2017/01/crw2017_final.pdf}.}
The bandwidth of this side-channel will be limited, since other
relays on the network will naturally buffer and delay traffic,
obscuring the pattern some. There are also limits to how long
-packets can be delayed before the relay is no longer usable.
-
-[See:
- - Rainbow: https://www.freehaven.net/anonbib/cache/ndss09-rainbow.pdf
- - Swirl: https://www.freehaven.net/anonbib/cache/ndss11-swirl.pdf
- - Backlit (detection):
- https://www.freehaven.net/anonbib/cache/acsac11-backlit.pdf ]
+packets can be delayed before the relay is no longer usable.%
+\footnote{See:
+Rainbow (\url{https://www.freehaven.net/anonbib/cache/ndss09-rainbow.pdf});
+Swirl: (\url{https://www.freehaven.net/anonbib/cache/ndss11-swirl.pdf});
+Backlit (detection): (\url{https://www.freehaven.net/anonbib/cache/acsac11-backlit.pdf})}
Proposals for resisting this type of watermarking attack are mostly
of the same type that would be needed for resisting end-to-end
@@ -231,16 +234,15 @@ patterns. We lack a unified framework to tell us how much stronger
this adversary is than the passive one, especially against various
defenses.
-### Traffic injection attacks
+\subsection{Traffic injection attacks}
Related to the active timing attack, in some positions (like exit
and RP) relays can inject cells that are ignored by the other
endpoint. These injected patterns will not impact the user's
experience, but will allow unique traffic patterns to be sent and
-detected by the adversary at crucial times.
-
-[See
-https://petsymposium.org/2018/files/papers/issue2/popets-2018-0011.pdf]
+detected by the adversary at crucial times.%
+\footnote{See
+\url{https://petsymposium.org/2018/files/papers/issue2/popets-2018-0011.pdf}}
These injection attacks arise from former adherence to Postel's
Maxim. Tor has since departed from this maxim, and instead opted for
@@ -248,12 +250,12 @@ stricter forward compatibility through feature versioning, but
removing instances in the codebase where injected cells can be
permitted has proven challenging.
-## Attacks unique to datagram designs
+\section{Attacks unique to datagram designs}
Here are some attacks that are enabled by (or at any rate behave
differently under) datagram-based designs.
-### Traffic-stream tagging (by relays and internet links)
+\subsection{Traffic-stream tagging (by relays and internet links)}
Because the new system permits a number of transformations on
traffic that were not previously allowed, we need to look at how
@@ -291,7 +293,7 @@ the noise of this attack; we lack metrics to tell us how much, and
we have no framework as of yet to measure the throughput of the
resulting side channel in these conditions.
-### Traffic Fingerprinting of TCP-like systems
+\subsection{Traffic Fingerprinting of TCP-like systems}
Today, because Tor terminates TCP at the guard node, there is
limited ability for the exit node to fingerprint client TCP
@@ -324,7 +326,7 @@ OS-specific features or try to learn things about their environment
over time, across different connections.
-### Retransmit-based watermarking
+\subsection{Retransmit-based watermarking}
Even if all TCP-like implementations are identical, they will
retransmit with different timing and volume based on which cells
@@ -340,7 +342,7 @@ difference in degree would come from how much easier it is to
perform this attack than the delay based watermarking attacks on
traditional Tor above.
-### Congestion and flow control interference
+\subsection{Congestion and flow control interference}
To the extent that the TCP-like stack uses information learned from
one stream to alter its behavior on another stream, an attacker can
@@ -352,8 +354,8 @@ extent that their bandwidth is limited. But some may have more than
necessary.
-### Non-malleable encryption designs only currently exist for in-order
-transports (or the return of data tagging attacks)
+\subsection{Non-malleable encryption designs only currently exist for in-order
+transports (or the return of data tagging attacks)}
Our proposed defenses against data tagging require us to move to
non-malleable encryption, with each cell's encryption tweaked by a
@@ -382,7 +384,7 @@ a way to send a rolling MAC out of band, to ensure integrity of
packets between those cells. But can we do better? Can middle nodes
enforce integrity in some other way?
-### The risks of success: lower latency strengthens timing attacks?
+\subsection{The risks of success: lower latency strengthens timing attacks?}
There are two factors that make timing-correlation and
timing-watermark attacks more difficult in practice: similarity
@@ -392,8 +394,8 @@ extent we successfully reduce this distortion by lowering latency,
it seems that we'll make these attacks more powerful.
In particular, geolocation attacks based on observed circuit setup
-times may get worse [See again
-https://www.freehaven.net/anonbib/cache/ccs07-latency-leak.pdf].
+times may get worse.\footnote{See again
+\url{https://www.freehaven.net/anonbib/cache/ccs07-latency-leak.pdf}}
We're already making improvements to Tor that may make these attacks
worse -- Tor latency has dropped and will continue to drop due to
@@ -417,7 +419,7 @@ it is also not clear to what degree adding delay is more useful than
adding more padding.
-## Towards comparing attacks
+\section{Towards comparing attacks}
A high-bandwidth attack is worse than a low-bandwidth attack. One
bit is enough to send "is this the targeted user?", but 32 bits is
@@ -447,7 +449,7 @@ literature is often not reliable, due to differing implementations,
in addition to differing methodology and evaluation frameworks.
-## Open Questions
+\section{Open Questions}
Why permit reordering? There are schemes (like order-preserving
encryption) that we could deploy on middle nodes to prevent
@@ -461,11 +463,11 @@ lack the domain expertise to know what this tradeoff is.
Related: what cryptography to use? Our current stateful encryption
schemes benefit from having access to "all previous cells" when
encrypting or decrypting each following cell. If we allow a cell to
-be {de,en}crypted before previous cells are received, we'll need a
+be \{de,en\}crypted before previous cells are received, we'll need a
new model for onion-routing cryptography -- possibly one with
significantly bigger headers.
-## Future work
+\section{Future work}
We hope to investigate these issues with researchers and others in the
Tor community as we work towards solutions to help scale and strengthen
@@ -477,29 +479,33 @@ about improved network designs can bring answers and broader
improvements. We look forward to working with others interested in
helping solve these problems to design a better Tor.
-## Acknowledgments
+\section{Acknowledgments}
Our thanks to Chelsea Komlo for many helpful suggestions and
comments on earlier drafts of this whitepaper, and for writing the
request for future work.
-## Further reading
+\section{Further reading}
-Steven Murdoch, "Comparison of Tor Datagram Designs", 2011.
-https://murdoch.is/papers/tor11datagramcomparison.pdf
+\begin{itemize}
+\item Steven Murdoch, "Comparison of Tor Datagram Designs", 2011.
+\url{https://murdoch.is/papers/tor11datagramcomparison.pdf}
-Mashael AlSabah and Ian Goldberg. "PCTCP: per-circuit
+\item Mashael AlSabah and Ian Goldberg. "PCTCP: per-circuit
TCP-over-IPsec transport for anonymous communication overlay
networks", 2013.
-http://cacr.uwaterloo.ca/techreports/2013/cacr2013-09.pdf
+\url{http://cacr.uwaterloo.ca/techreports/2013/cacr2013-09.pdf}
-Michael F. Nowlan, David Wolinsky, and Bryan Ford.
+\item Michael F. Nowlan, David Wolinsky, and Bryan Ford.
"Reducing Latency in Tor Circuits with Unordered Delivery",
2013.
-https://www.usenix.org/system/files/conference/foci13/foci13-nowlan.pdf
+\url{https://www.usenix.org/system/files/conference/foci13/foci13-nowlan.pdf}
-Rob Jansen, Florian Tschorsch, Aaron Johnson, and Björn Scheuermann
+\item Rob Jansen, Florian Tschorsch, Aaron Johnson, and Björn Scheuermann
The Sniper attack: Anonymously Deanonymizing and Disabling the Tor
Network", 2013
-https://www.nrl.navy.mil/itd/chacs/sites/edit-www.nrl.navy.mil.itd.chacs/files/pdfs/13-1231-3743.pdf
+\url{https://www.nrl.navy.mil/itd/chacs/sites/edit-www.nrl.navy.mil.itd.chacs/files/pdfs/13-1231-3743.pdf}
+\end{itemize}
+
+\end{document}
1
0

[tech-reports/master] Also add template and .gitignore for Nick's/Nike's report.
by karsten@torproject.org 23 Sep '19
by karsten@torproject.org 23 Sep '19
23 Sep '19
commit 508515c916237001b209b320d276e50020ef06f2
Author: Karsten Loesing <karsten.loesing(a)gmx.net>
Date: Mon Sep 23 09:52:40 2019 +0200
Also add template and .gitignore for Nick's/Nike's report.
---
2018/side-channel-analysis/.gitignore | 2 ++
2018/side-channel-analysis/tortechrep.cls | 1 +
2 files changed, 3 insertions(+)
diff --git a/2018/side-channel-analysis/.gitignore b/2018/side-channel-analysis/.gitignore
new file mode 100644
index 0000000..e10caac
--- /dev/null
+++ b/2018/side-channel-analysis/.gitignore
@@ -0,0 +1,2 @@
+side-channel-analysis-2018-11-27.pdf
+
diff --git a/2018/side-channel-analysis/tortechrep.cls b/2018/side-channel-analysis/tortechrep.cls
new file mode 120000
index 0000000..4c24db2
--- /dev/null
+++ b/2018/side-channel-analysis/tortechrep.cls
@@ -0,0 +1 @@
+../../tortechrep.cls
\ No newline at end of file
1
0

23 Sep '19
commit 06ed620899c8e460369e21e15c5bdf9dc5a03e89
Author: Karsten Loesing <karsten.loesing(a)gmx.net>
Date: Mon Sep 16 10:11:24 2019 +0200
Add Nick's and Mike's whitepaper draft.
---
.../side-channel-analysis/side-channel-analysis.md | 505 +++++++++++++++++++++
1 file changed, 505 insertions(+)
diff --git a/2018/side-channel-analysis/side-channel-analysis.md b/2018/side-channel-analysis/side-channel-analysis.md
new file mode 100644
index 0000000..f9454de
--- /dev/null
+++ b/2018/side-channel-analysis/side-channel-analysis.md
@@ -0,0 +1,505 @@
+# Towards Side Channel Analysis of Datagram Tor vs Current Tor
+
+ Version 0.6, 27 Nov 2018
+
+ by Nick Mathewson and Mike Perry
+
+## Disclaimers
+
+This whitepaper assumes that you know how Tor works.
+
+There are probably some very good references here that we didn't
+remember to cite.
+
+## Introduction
+
+Tor's current design requires that its data cells be transmitted
+from one end of a circuit to the other using a reliable, in-order
+delivery mechanism. To meet this requirement, Tor relays need to
+buffer cells--spending resources, hurting performance, and risking
+susceptibility to out-of-memory attacks.
+
+In order to improve Tor's performance and resilience, researchers
+have made several proposals for ways to relax the requirement for
+reliable in-order delivery. In general, these "datagram-based"
+proposals would allow relays to drop or reorder cells as needed,
+and move the responsibility for providing a reliable stream protocol
+to the endpoints (the client and the exit relays).
+
+But by increasing flexibility for the relays, and by increasing the
+complexity of the endpoints, these datagram proposals also create
+some new attack vectors. Before we can deploy any of these designs,
+we need to consider whether these attacks weaken Tor's security, or
+whether they are irrelevant given other, stronger attacks against
+Onion Routing.
+
+This whitepaper tries to list these attacks, and to provide a
+framework for thinking about them as we move forward with our design
+analysis.
+
+We hope that this whitepaper will help researchers and others in the Tor
+community to understand these issues, so that we can work together to
+find new ideas to analyze and mitigate the attacks described here, and
+to help deploy a faster and more reliable network while still
+maintaining our current (or better) security guarantees. We hope that
+our description of the problem space will inspire, not discourage,
+future experiments in this area, and help with a holistic understanding
+of the risks, rewards, and future areas of work.
+
+### A toy system
+
+We will be analyzing a system that differs from Tor in the following
+ways.
+
+ * The link between a client and its guard, and between each pair
+ of relays uses DTLS over UDP: packets can be dropped or
+ re-ordered by an attacker on the link, but not modified, read,
+ or forged. Each DTLS packet contains an integer number of cells.
+
+ * Each circuit between a client and an exit traverse several
+ relays, as before. The cells on a circuit are no longer
+ guaranteed to arrive reliably, but can be dropped or re-ordered
+ on the wire, or by a relay.
+
+ * To provide reliable service end-to-end, the client and the
+ exit each use a TCP-like protocol to track which application
+ bytes have been sent and received. Received data is
+ acknowledged; dropped data is retransmitted.
+
+ * The cryptography to be used for circuit encryption is not
+ specified here.
+
+ * A reliable signaling mechanism between relays (to create,
+ destroy, and maintain circuits) is not specified here.
+
+(It is likely that many readers will be able to design a system that
+resists the attacks below better than the design above. But please
+remember as you do, that a design which improves a system in one way
+may constrain it in others, or may offer insufficient benefits to be
+clearly superior to Tor as it is today. Before we can deploy, we
+will need not just defenses, but also a systemic way to compare the
+effect of these defenses, used together, to the Tor status quo.)
+
+## Some preexisting attacks to consider
+
+To put the datagram-based attacks into context, we'll start out by
+listing some attacks against the current non-datagram Tor design
+(and proposed defenses for those, where they exist).
+
+We assume, as usual, an adversary who controls some but not all
+relays, and some but not all ISPs.
+
+A note on attack power: the accuracy of many of these attacks,
+particularly the passive ones, depends on the type of traffic being
+sent, the quantity of similar traffic elsewhere on the Tor network,
+the quantity of concurrent activity by the same client, the
+adversary's observation position and data retention resolution, the
+quantity of padding, and the tendency of the network to preserve or
+alter packet timing information in transit.
+
+In many cases, we don't have good metrics or evaluation methodology
+to determine how much harder or easier one attack is than another.
+
+### End-to-end passive traffic correlation attacks.
+
+Here's the gold-standard base-line attack: an attacker who can watch
+any two points on the same circuit is assumed to be able to realize,
+without having observed very much traffic at all, that the two
+points are indeed on the same circuit by correlating the timing and
+volume of data sent at those two points.
+
+When one of these points is also linked to the client, and one is
+linked to the client's activity, this attack deanonymizes the
+client.
+
+Tor's current design focuses on minimizing this probability, and
+also shifting its characteristics, through things like network
+diversity and long-term entry points. The attack may also become
+harder (and/or slower) when there is a lot of similar concurrent
+traffic on the Tor
+network, which means that adding users who use Tor for many things
+is in itself a form of mitigation.
+
+Proposed defenses in this area include deliberate obfuscation of
+message volume through padding, and of message timing through random
+delays, as well as things like traffic splitting and more complex
+traffic scheduling for loud flows. While we have completed some work on
+link padding, and are progressing on a deployment for circuit
+padding, it is not yet clear if we can use these defenses in an
+affordable way against a correlation attack, and it is hard to
+measure their effectiveness on a realistic Tor-sized network.
+
+### Data tagging side-channels by relays
+
+If two relays are on the same circuit, they can surreptitiously
+communicate with one another transforming the data in the RELAY
+cells, and un-transforming the data before passing it on. Since
+Tor's current encryption protocol is malleable, this allows them to
+send a large number of bits per cell.
+
+This attack can also be used when two relays do not know if they are
+on the same circuit. One relay modifies a cell, and the other one
+looks for such modifications. If the data is processed by an honest
+relay, it will destroy the circuit, but the client may or may not
+notice that the circuit has destroyed. (And the dishonest relay may
+delay informing the client!)
+
+To defend against this, we plan to replace our encryption with a
+non-malleable algorithm. See for example proposals 202, 261, and
+295.
+
+### Destructive side-channels (internal)
+
+Even if we remove the malleability in Tor's encryption, a smaller
+side-channel remains: A dishonest relay can destroy a circuit at any
+time, either by corrupting the circuit or simply sending a DESTROY
+cell along it. A third party can destroy a large number of circuits
+at once by remotely attacking a client or relay -- either disabling
+that relay, or making it close circuits because of the OOM
+handler. (See the Sniper Attack paper.)
+
+If a circuit is corrupted (as would happen if a relay attempted data
+tagging against one of the non-malleable cryptographic algorithms
+mentioned above), other points on the circuit can tell which cell is
+the first corrupted cell. If a circuit is destroyed at one point,
+other points on the circuit can tell how many cells were sent before
+the destruction.
+
+It is likely that based on data or traffic patterns, most parties on
+a circuit will be able to distinguish a prematurely destroyed
+circuit from one that was shut down normally.
+
+In each case, this attack can be used to send (log n) bits of
+information per circuit, at the cost of destroying the circuit,
+where n is the number of cells that might be sent over the circuit in
+total. Some noise will exist, since we expect some circuits to be
+prematurely closed on their own. We don't know how much noise.
+
+We also have various heuristics that can attempt to detect if this
+happens too often; however at best they likely reduce the rate that
+information that can be sent in this way rather than eliminate it.
+We also lack methodology to measure the rate of information in this
+case, to help determine if we can successfully reduce it further.
+
+### Destructive network probes (external)
+
+Though TLS is resilient against many forms of active attacks, it
+can't resist an attacker who focuses against the underlying TCP
+layer. Such an attacker can, by forging TCP resets, cause all the
+entire TLS connection to be dropped, thereby closing all the circuits
+on it. This kind of attack can be observed at other points on the
+network in a way similar to the destructive side-channels noted above.
+
+This class of attack seems to be easier against Tor's current design
+than it would be against (some) datagram-based designs, since
+datagram-based designs are resilient to more kinds of traffic
+interference.
+
+### Timing-based watermarking attacks
+
+Hostile relays can also introduce a side channels to a circuit by
+introducing patterned delays into the cells. For example, a relay
+could buffer a large number of cells, then transmit a "1" bit by
+sending a cell in a given time period, or a "0" by not sending cells
+in that time period.
+
+An attacker can also mount this attack without controlling relays:
+if the attacker performs a DoS attack against a relay or its
+traffic, it can observe changes in the traffic volume elsewhere on
+the network.
+
+[See https://www.freehaven.net/anonbib/cache/ccs07-latency-leak.pdf and
+http://cybercentre.cs.ttu.ee/wp/wp-content/uploads/2017/01/crw2017_final.pdf ]
+
+The bandwidth of this side-channel will be limited, since other
+relays on the network will naturally buffer and delay traffic,
+obscuring the pattern some. There are also limits to how long
+packets can be delayed before the relay is no longer usable.
+
+[See:
+ - Rainbow: https://www.freehaven.net/anonbib/cache/ndss09-rainbow.pdf
+ - Swirl: https://www.freehaven.net/anonbib/cache/ndss11-swirl.pdf
+ - Backlit (detection):
+ https://www.freehaven.net/anonbib/cache/acsac11-backlit.pdf ]
+
+Proposals for resisting this type of watermarking attack are mostly
+of the same type that would be needed for resisting end-to-end
+correlation. An adversary that can perform active attacks to
+introduce their own unique traffic patterns intuitively seems much
+stronger than one that must passively use potentially common
+patterns. We lack a unified framework to tell us how much stronger
+this adversary is than the passive one, especially against various
+defenses.
+
+### Traffic injection attacks
+
+Related to the active timing attack, in some positions (like exit
+and RP) relays can inject cells that are ignored by the other
+endpoint. These injected patterns will not impact the user's
+experience, but will allow unique traffic patterns to be sent and
+detected by the adversary at crucial times.
+
+[See
+https://petsymposium.org/2018/files/papers/issue2/popets-2018-0011.pdf]
+
+These injection attacks arise from former adherence to Postel's
+Maxim. Tor has since departed from this maxim, and instead opted for
+stricter forward compatibility through feature versioning, but
+removing instances in the codebase where injected cells can be
+permitted has proven challenging.
+
+## Attacks unique to datagram designs
+
+Here are some attacks that are enabled by (or at any rate behave
+differently under) datagram-based designs.
+
+### Traffic-stream tagging (by relays and internet links)
+
+Because the new system permits a number of transformations on
+traffic that were not previously allowed, we need to look at how
+those transformations can be used to attack users.
+
+As a trivial example, any router can relay an arbitrary subset of
+the cells that it receives on a circuit, in an arbitrary order, due
+to the exact properties the reliable transport aims to provide. The
+pattern induced in this way will be detectable by the exit relay
+when it attempts to reconstruct the stream. Because we explicitly
+allow this kind of transformation, the circuit will not be killed
+after a single dropped cell, but rather will continue working
+silently.
+
+Moreover, any ISP can mount the same attack by dropping and/or
+re-ordering DTLS calls.
+
+A remote attacker may also be able to mount this attack by flooding
+any router between a client and its guard, thereby causing some of
+the DTLS messages to get dropped.
+
+If we are using TCP between client and exit, the acknowledgments
+sent by each endpoint will provide confirmation about which data it
+received and which it did not. If instead of TCP, we use some other
+protocol where the end-points communicate even more information
+about which packets they did and did not receive, this can provide
+an even higher-bandwidth side-channel.
+
+The bandwidth of this side-channel is fairly high, since it allows
+the attacker to send over a bit per cell. But it will be somewhat
+noisy, since some cells will dropped and reordered naturally.
+
+Padding, traffic splitting, and concurrent activity will increase
+the noise of this attack; we lack metrics to tell us how much, and
+we have no framework as of yet to measure the throughput of the
+resulting side channel in these conditions.
+
+### Traffic Fingerprinting of TCP-like systems
+
+Today, because Tor terminates TCP at the guard node, there is
+limited ability for the exit node to fingerprint client TCP
+behavior (aside from perhaps measuring some effects on traffic
+volume, but those are not likely preserved across the Tor network).
+
+However, when using a TCP-like system for end-to-end congestion
+control, flow control, and reliability, the exit relay will be able
+to make inferences about client implementation and conditions based
+on its behavior.
+
+Different implementations of TCP-like systems behave differently.
+Either party on a stream can observe the packets as they arrive to
+notice cells from an unusual implementation. They can probe the
+other side of the stream, nmap-style, to see how it responds to
+various inputs.
+
+If two TCP-like implementations differ in their retransmit or timeout
+behavior, an attacker can use this to distinguish them by carefully
+chosen patterns of dropped traffic. Such an attacker does not even
+need to be a relay, if it can cause DTLS packets between relays to
+be dropped or reordered.
+
+This class of attacks is solvable, especially if the exact same
+TCP-like implementation is used by all clients, but it also requires
+careful consideration and additional constraints to be placed on the
+TCP stack(s) in use that are not usually considered by TCP
+implementations -- particularly to ensure that they do not depend on
+OS-specific features or try to learn things about their environment
+over time, across different connections.
+
+
+### Retransmit-based watermarking
+
+Even if all TCP-like implementations are identical, they will
+retransmit with different timing and volume based on which cells
+have been acked or not acked. These differences may be observable
+from many points on the circuit, or from outside the network. Such
+retransmissions can be induced from outside the network, by hostile
+relays, or even by a hostile endpoint that pretends not to have
+received some of the packets.
+
+We again lack metrics to indicate that it is substantially worse
+(or not worse) than other similar attacks. Intuitively, the key
+difference in degree would come from how much easier it is to
+perform this attack than the delay based watermarking attacks on
+traditional Tor above.
+
+### Congestion and flow control interference
+
+To the extent that the TCP-like stack uses information learned from
+one stream to alter its behavior on another stream, an attacker can
+exploit this interference between streams make all of the streams
+from a given party more linkable.
+
+All implementations will have some amount of interference, to the
+extent that their bandwidth is limited. But some may have more than
+necessary.
+
+
+### Non-malleable encryption designs only currently exist for in-order
+transports (or the return of data tagging attacks)
+
+Our proposed defenses against data tagging require us to move to
+non-malleable encryption, with each cell's encryption tweaked by a
+function of all previous cells, so that if even a single cell is
+modified, not only is that cell corrupted, but no subsequent cell
+can be decrypted.
+
+It seems nontrivial to achieve this property with datagram based
+designs, since we require that cells on a circuit can be decrypted
+even when previous cells have not arrived. We can achieve
+data-based non-malleability by using a per-hop MAC for each cell --
+but we would no longer be able to get the property that a since
+altered cell would make the whole circuit unrecoverable. This would
+enable a one-bit-per-cell side-channel, similar but possibly more
+powerful than the packet dropping side-channel above. (Because the
+congestion window is essentially a bit vector of received cells,
+the adversary in this scenario gets to corrupt cells in carefully
+chosen ways instead of merely dropping them.)
+
+Perhaps other cryptographic schemes could be found to resist
+data-tagging in a datagram-based environment or limit its impact,
+but we'll need to figure out what the requirements and models are.
+
+As a proof-by-example of a mitigating system: Proposal 253 describes
+a way to send a rolling MAC out of band, to ensure integrity of
+packets between those cells. But can we do better? Can middle nodes
+enforce integrity in some other way?
+
+### The risks of success: lower latency strengthens timing attacks?
+
+There are two factors that make timing-correlation and
+timing-watermark attacks more difficult in practice: similarity
+between different users' traffic, and distortion in timing patterns
+caused by variance in cell latency on the network. To whatever
+extent we successfully reduce this distortion by lowering latency,
+it seems that we'll make these attacks more powerful.
+
+In particular, geolocation attacks based on observed circuit setup
+times may get worse [See again
+https://www.freehaven.net/anonbib/cache/ccs07-latency-leak.pdf].
+
+We're already making improvements to Tor that may make these attacks
+worse -- Tor latency has dropped and will continue to drop due to
+improvements like KIST, more relays, and better load balancing.
+Further incremental improvements like explicit congestion control on
+the existing Tor network will reduce latency even further.
+
+It may be that a more performant Tor becomes less safe than a
+slower, less usable Tor. On the other hand, a more usable Tor will
+likely be used by more people, which we know makes many forms of
+traffic analysis harder (slower?) in general. However, we have no way to
+measure this tradeoff on many different attack types.
+
+Delay and latency can also be added back in, and this has been a common
+defense against both active adversaries and timing attacks in the
+anonymity literature, but such delays have user-facing consequences,
+unless they are carefully restricted to the cases where the
+adversary can directly measure RTT and can be amortized away by
+things like pre-emptive circuit building. In this and other cases,
+it is also not clear to what degree adding delay is more useful than
+adding more padding.
+
+
+## Towards comparing attacks
+
+A high-bandwidth attack is worse than a low-bandwidth attack. One
+bit is enough to send "is this the targeted user?", but 32 bits is
+enough to send a whole IP address.
+
+The impact of these attacks become worse if they can be repeated
+over time.
+
+An attack that can be performed by an ISP relaying traffic is worse
+than one that can be performed by a relay. An attack that can be
+performed remotely against either of these is worse still.
+
+We need some kind of methodology to help us compare the new side
+channels that datagram transports may enable to the existing side
+channels in Tor, particularly delay-based and congestion-based side
+channels. Ideally, these metrics or evaluation methodology would
+also allow us to compare these side channels under various forms of
+defense, such as padding.
+
+At the very least, we need some way to compare the side channels in
+datagram transports to those that already exist.
+
+We also likely need a common reference research prototype and/or
+platform to experiment with and study, so that attacks and defenses
+are reproducibly comparable. Reproducibility in attack and defense
+literature is often not reliable, due to differing implementations,
+in addition to differing methodology and evaluation frameworks.
+
+
+## Open Questions
+
+Why permit reordering? There are schemes (like order-preserving
+encryption) that we could deploy on middle nodes to prevent
+reordering, without allowing earlier nodes to differentiate
+padding from non-padding. Do we derive any benefit by allowing a
+relay to send cells on a single circuit in a different order than
+the order in which it receives those cells on that circuit? This
+may be an answered question in congestion control research, but we
+lack the domain expertise to know what this tradeoff is.
+
+Related: what cryptography to use? Our current stateful encryption
+schemes benefit from having access to "all previous cells" when
+encrypting or decrypting each following cell. If we allow a cell to
+be {de,en}crypted before previous cells are received, we'll need a
+new model for onion-routing cryptography -- possibly one with
+significantly bigger headers.
+
+## Future work
+
+We hope to investigate these issues with researchers and others in the
+Tor community as we work towards solutions to help scale and strengthen
+the Tor network. Understanding the risks and rewards that datagram-based
+transports introduce to Tor is important to help us select designs that
+both help improve performance but also guarantee safety for Tor
+users. We hope that by cataloging these risks, future conversations
+about improved network designs can bring answers and broader
+improvements. We look forward to working with others interested in
+helping solve these problems to design a better Tor.
+
+## Acknowledgments
+
+Our thanks to Chelsea Komlo for many helpful suggestions and
+comments on earlier drafts of this whitepaper, and for writing the
+request for future work.
+
+## Further reading
+
+Steven Murdoch, "Comparison of Tor Datagram Designs", 2011.
+https://murdoch.is/papers/tor11datagramcomparison.pdf
+
+Mashael AlSabah and Ian Goldberg. "PCTCP: per-circuit
+TCP-over-IPsec transport for anonymous communication overlay
+networks", 2013.
+http://cacr.uwaterloo.ca/techreports/2013/cacr2013-09.pdf
+
+Michael F. Nowlan, David Wolinsky, and Bryan Ford.
+"Reducing Latency in Tor Circuits with Unordered Delivery",
+2013.
+https://www.usenix.org/system/files/conference/foci13/foci13-nowlan.pdf
+
+Rob Jansen, Florian Tschorsch, Aaron Johnson, and Björn Scheuermann
+The Sniper attack: Anonymously Deanonymizing and Disabling the Tor
+Network", 2013
+https://www.nrl.navy.mil/itd/chacs/sites/edit-www.nrl.navy.mil.itd.chacs/files/pdfs/13-1231-3743.pdf
+
1
0

[translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal
by translation@torproject.org 23 Sep '19
by translation@torproject.org 23 Sep '19
23 Sep '19
commit 4d2bf2c1121dfcaf150c04194c1f05041b0a2f5b
Author: Translation commit bot <translation(a)torproject.org>
Date: Mon Sep 23 06:23:00 2019 +0000
https://gitweb.torproject.org/translation.git/commit/?h=support-portal
---
contents+tr.po | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/contents+tr.po b/contents+tr.po
index 87e63d713..c66fe6af5 100644
--- a/contents+tr.po
+++ b/contents+tr.po
@@ -2542,6 +2542,9 @@ msgid ""
"enabling the [Guardian Project's "
"Repository](https://guardianproject.info/fdroid/)."
msgstr ""
+"O zamana kadar [Guardian Project "
+"Deposunu](https://guardianproject.info/fdroid/) etkinleştirerek F-Droid "
+"üzerinden Android için Tor Browser uygulamasını indirebilirsiniz."
#: https//support.torproject.org/tormobile/tormobile-7/
#: (content/tormobile/tormobile-7/contents+en.lrquestion.description)
@@ -2549,6 +2552,8 @@ msgid ""
"[Learn how to add a repository to F-Droid](https://f-droid.org/en/tutorials"
"/add-repo/)."
msgstr ""
+"[F-Droid üzerine bir deponun nasıl ekleneceğini "
+"öğrenin](https://f-droid.org/en/tutorials/add-repo/)."
#: https//support.torproject.org/gettor/gettor-1/
#: (content/gettor/gettor-1/contents+en.lrquestion.title)
1
0

[translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal
by translation@torproject.org 23 Sep '19
by translation@torproject.org 23 Sep '19
23 Sep '19
commit 3026b2482fd2d77c37f5d10f7f0088dbec8c5b53
Author: Translation commit bot <translation(a)torproject.org>
Date: Mon Sep 23 04:53:10 2019 +0000
https://gitweb.torproject.org/translation.git/commit/?h=support-portal
---
contents+tr.po | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/contents+tr.po b/contents+tr.po
index f5759a2ef..87e63d713 100644
--- a/contents+tr.po
+++ b/contents+tr.po
@@ -2528,12 +2528,12 @@ msgstr ""
#: https//support.torproject.org/tormobile/tormobile-7/
#: (content/tormobile/tormobile-7/contents+en.lrquestion.title)
msgid "Is Tor Browser available on F-Droid?"
-msgstr ""
+msgstr "Tor Browser F-Droid üzerinde yer alıyor mu?"
#: https//support.torproject.org/tormobile/tormobile-7/
#: (content/tormobile/tormobile-7/contents+en.lrquestion.description)
msgid "It will be, _soon_."
-msgstr ""
+msgstr "_Yakında_ alacak."
#: https//support.torproject.org/tormobile/tormobile-7/
#: (content/tormobile/tormobile-7/contents+en.lrquestion.description)
1
0

[translation/tpo-web_completed] https://gitweb.torproject.org/translation.git/commit/?h=tpo-web_completed
by translation@torproject.org 23 Sep '19
by translation@torproject.org 23 Sep '19
23 Sep '19
commit 56c065e7f90613406b835a898fcb9baece6e11ea
Author: Translation commit bot <translation(a)torproject.org>
Date: Mon Sep 23 04:52:48 2019 +0000
https://gitweb.torproject.org/translation.git/commit/?h=tpo-web_completed
---
contents+tr.po | 1432 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 1432 insertions(+)
diff --git a/contents+tr.po b/contents+tr.po
new file mode 100644
index 000000000..c282c67f9
--- /dev/null
+++ b/contents+tr.po
@@ -0,0 +1,1432 @@
+# Translators:
+# erinm, 2019
+# T. E. Kalayci <tekrei(a)gmail.com>, 2019
+# Emma Peel, 2019
+# Kaya Zeren <kayazeren(a)gmail.com>, 2019
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2019-09-17 15:46+CET\n"
+"PO-Revision-Date: 2019-03-09 10:41+0000\n"
+"Last-Translator: Kaya Zeren <kayazeren(a)gmail.com>, 2019\n"
+"Language-Team: Turkish (https://www.transifex.com/otf/teams/1519/tr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: tr\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: https//www.torproject.org/ (content/contents+en.lrpage.title)
+msgid "Anonymity Online"
+msgstr "Çevrimiçi Anonimlik"
+
+#: https//www.torproject.org/ (content/contents+en.lrpage.section)
+msgid "home"
+msgstr "ana sayfa"
+
+#: https//www.torproject.org/ (content/contents+en.lrpage.body)
+msgid "###### ABOUT US ######"
+msgstr "###### HAKKIMIZDA ######"
+
+#: https//www.torproject.org/ (content/contents+en.lrpage.body)
+msgid ""
+"We believe everyone should be able to explore the internet with privacy."
+msgstr ""
+"İsteyen herkesin İnternet üzerinde kişisel gizliliğini koruyarak "
+"dolaşabilmesi gerektiğine inanıyoruz."
+
+#: https//www.torproject.org/ (content/contents+en.lrpage.body)
+msgid "We are the Tor Project, a 501(c)3 US nonprofit."
+msgstr ""
+"Tor Projesi olarak Birleşik Devletlerde 501(c)(3) kapsamında çalışan kar "
+"amacı gütmeyen bir kuruluşuz."
+
+#: https//www.torproject.org/ (content/contents+en.lrpage.body)
+msgid ""
+"We advance human rights and defend your privacy online through free software"
+" and open networks. [Meet our team](about/people)."
+msgstr ""
+"Ücretsiz yazılımlar ve açık ağlar sağlayarak insan haklarını geliştiriyoruz ve çevrimiçi kişisel gizliliğinizi koruyoruz.\n"
+"[Ekibimizle tanışın](about/people)"
+
+#: https//www.torproject.org/contact/
+#: (content/contact/contents+en.lrpage.title)
+msgid "Contact"
+msgstr "İletişim"
+
+#: https//www.torproject.org/contact/
+#: (content/contact/contents+en.lrpage.section)
+#: https//www.torproject.org/thank-you/
+#: (content/thank-you/contents+en.lrpage.section)
+msgid "The Tor Project"
+msgstr "Tor Projesi"
+
+#: https//www.torproject.org/contact/
+#: (content/contact/contents+en.lrpage.body)
+msgid "### Get Support"
+msgstr "### Destek Alın"
+
+#: https//www.torproject.org/contact/
+#: (content/contact/contents+en.lrpage.body)
+msgid ""
+"Need help? Visit our [Support Portal](https://support.torproject.org) for "
+"answers to frequently asked questions about connecting to Tor, circumventing"
+" censorship, using onion services, and more."
+msgstr ""
+"Yardıma gerek duyuyorsanız, Tor, engellemeleri aşmak, onion hizmetlerini "
+"kullanmak ve diğer konularda sık sorulan soruların yanıtlarını görmek için "
+"[Destek Sitemize](https://support.torproject.org/tr/) bakabilirsiniz."
+
+#: https//www.torproject.org/download/
+#: (content/download/contents+en.lrpage.title)
+#: (content/download/contents+en.lrpage.section)
+#: https//www.torproject.org/download/alpha/
+#: (content/download/alpha/contents+en.lrpage.section)
+#: https//www.torproject.org/download/languages/
+#: (content/download/languages/contents+en.lrpage.section)
+#: https//www.torproject.org/download/tor/
+#: (content/download/tor/contents+en.lrpage.section)
+msgid "Download"
+msgstr "İndir"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
+msgid "Sponsors"
+msgstr "Destekçiler"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
+#: https//www.torproject.org/about/cy-pres/
+#: (content/about/cy-pres/contents+en.lrpage.section)
+#: https//www.torproject.org/about/trademark/
+#: (content/about/trademark/contents+en.lrtrademark.section)
+#: https//www.torproject.org/about/history/
+#: (content/about/history/contents+en.lrpage.section)
+#: https//www.torproject.org/about/people/
+#: (content/about/people/contents+en.lrpeople.section)
+#: https//www.torproject.org/about/sponsors/
+#: (content/about/sponsors/contents+en.lrsponsors.section)
+#: https//www.torproject.org/about/reports/
+#: (content/about/reports/contents+en.lrreports.section)
+#: https//www.torproject.org/about/jobs/
+#: (content/about/jobs/contents+en.lrjobs.section)
+msgid "About"
+msgstr "Hakkında"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.body)
+msgid "Documentation"
+msgstr "Belgeler"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.body)
+msgid "Press"
+msgstr "Basın"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.body)
+msgid "Support"
+msgstr "Destek"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.body)
+msgid "Jobs"
+msgstr "İş Olanakları"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.body)
+msgid "Blog"
+msgstr "Günlük"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.body)
+msgid "Donate"
+msgstr "Bağış Yapın"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.body)
+msgid "Donate Now"
+msgstr "Şimdi Bağış Yapın"
+
+#: https//www.torproject.org/thank-you/
+#: (content/thank-you/contents+en.lrpage.title)
+msgid "Success"
+msgstr "Tamamdır"
+
+#: https//www.torproject.org/thank-you/
+#: (content/thank-you/contents+en.lrpage.body)
+msgid "You're equipped to browse freely."
+msgstr "Özgürce gezinmeye hazırsınız."
+
+#: 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, çevrimiçi özgürlüğü sağlamak ve kişisel gizliliği korumak için en güçlü"
+" araçtır."
+
+#: https//www.torproject.org/thank-you/
+#: (content/thank-you/contents+en.lrpage.body)
+msgid ""
+"It is free and open source software maintained by the Tor Project and a "
+"community of volunteers worldwide."
+msgstr ""
+"Tor Projesi tarafından Dünya çapında bir gönüllü topluluğu ile birlikte "
+"geliştirilen ücretsiz ve açık kaynaklı bir yazılımdır."
+
+#: https//www.torproject.org/thank-you/
+#: (content/thank-you/contents+en.lrpage.body)
+msgid ""
+"We need your help to keep Tor secure and safe for millions across the globe."
+" [Donate Now](https://donate.torproject.org/)"
+msgstr ""
+"Tor uygulamasını koruyup güvende tutarak dünya çapındaki milyonlarca insana "
+"sunabilmek için desteğiniz gerekiyor. [Bağış "
+"Yapın](https://donate.torproject.org/tr)"
+
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.title)
+#: https//www.torproject.org/about/history/
+#: (content/about/history/contents+en.lrpage.title)
+msgid "History"
+msgstr "Geçmiş"
+
+#: https//www.torproject.org/download/alpha/
+#: (content/download/alpha/contents+en.lrpage.title)
+msgid "Download Tor Browser Alpha"
+msgstr "Tor Browser Alpha sürümünü indirin"
+
+#: https//www.torproject.org/download/alpha/
+#: (content/download/alpha/contents+en.lrpage.body)
+msgid ""
+"Before we release a stable version of our software, we release an alpha "
+"version to test features and find bugs."
+msgstr ""
+"Yeni bir kararlı Tor Browser sürümü yayınlamadan önce, yeni eklenen "
+"özellikleri denemek ve hataları bulmak için bir alfa sürümü yayınlıyoruz."
+
+#: https//www.torproject.org/download/alpha/
+#: (content/download/alpha/contents+en.lrpage.body)
+msgid ""
+"Please only download an alpha if you are okay with some things not working "
+"properly, want to help us find and [report "
+"bugs](https://support.torproject.org/misc/bug-or-feedback/), and are not "
+"putting yourself at risk."
+msgstr ""
+"Lütfen alfa sürümlerini yalnız bazı şeylerin düzgün çalışmamasına "
+"hazırsanız, hataları bulmaya ve "
+"[bildirmeye](https://support.torproject.org/misc/bug-or-feedback/) yardım "
+"etmek istiyorsanız ve kendinizi riske atmayacaksanız indirin."
+
+#: https//www.torproject.org/download/languages/
+#: (content/download/languages/contents+en.lrpage.title)
+msgid "Download Tor Browser in your language"
+msgstr "Kendi dilinizdeki Tor Browser uygulamasını indirin"
+
+#: https//www.torproject.org/download/languages/
+#: (content/download/languages/contents+en.lrpage.body)
+msgid ""
+"We want everyone to be able to enjoy Tor Browser in their own language. Tor "
+"Browser is now available in 25 different languages, and we are working to "
+"add more. Want to help us translate? [See here](https://tb-"
+"manual.torproject.org/becoming-tor-translator/)"
+msgstr ""
+"Herkesin Tor Browser uygulamasını kendi dilinde kullanma zevkini tatmasını "
+"istiyoruz. Tor Browser bugün 25 farklı dilde sunuluyor ve daha fazlasını "
+"eklemek için çalışıyoruz. Çevirilere yardımcı olmak ister misiniz? [Buraya "
+"bakabilirsiniz](https://tb-manual.torproject.org/tr/becoming-tor-"
+"translator/)"
+
+#: https//www.torproject.org/download/tor/
+#: (content/download/tor/contents+en.lrpage.title)
+msgid "Download Tor Source Code"
+msgstr "Tor Kaynak Kodunu İndirin"
+
+#: https//www.torproject.org/about/cy-pres/
+#: (content/about/cy-pres/contents+en.lrpage.title)
+msgid "Cy Pres Awards"
+msgstr "Cy Pres Ödülleri"
+
+#: https//www.torproject.org/about/cy-pres/
+#: (content/about/cy-pres/contents+en.lrpage.body)
+msgid "### Cy Pres Awards – Consumer Privacy and Privacy Online"
+msgstr "### Cy Pres Awards – Kullanıcı Gizliliği ve Çevrimiçi Gizlilik"
+
+#: https//www.torproject.org/about/cy-pres/
+#: (content/about/cy-pres/contents+en.lrpage.body)
+msgid ""
+"_Cy pres_ awards are funds distributed as a part of class action lawsuit "
+"settlements in the United States. When the totality of the funds cannot be "
+"distributed to class members, they can be distributed to nonprofit, "
+"advocacy, and research groups that generally represent the class members. "
+"Consumer privacy _cy pres_ awards can help the Tor Project to educate "
+"individuals and organizations about how to retain their privacy online, "
+"advocate for privacy protections, and build important free, open source "
+"technologies that prioritize privacy."
+msgstr ""
+"_Cy pres_ ödülleri Birleşik Devletler'deki grup davalarındaki anlaşmalarının"
+" bir parçası olarak dağıtılan fonlardır. Fonların tamamı grup üyelerine "
+"dağıtılamadığında, kar amacı gütmeyen kuruluşlara ve grup üyelerini temsil "
+"eden araştırma gruplarına aktarılır. Kişisel gizlilik _cy pres_ ödülleri, "
+"Tor Projesinin kişi ve kurumları kişisel gizliliklerinin korunması hakkında "
+"eğitmek, kişisel gizliliği savunmanın önemini vurgulamak ve kişisel "
+"gizliliği öne alan özgür ve açık kaynaklı teknolojiler geliştirmek gibi "
+"amaçlarını gerçekleştirmesine yardımcı olabilir."
+
+#: https//www.torproject.org/about/cy-pres/
+#: (content/about/cy-pres/contents+en.lrpage.body)
+msgid "#### About the Tor Project"
+msgstr "#### Tor Projesi Hakkında"
+
+#: https//www.torproject.org/about/cy-pres/
+#: (content/about/cy-pres/contents+en.lrpage.body)
+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 ""
+"Tor Project Inc. 2006 yılında 501(c)(3) kapsamında kar amacı gütmeyen bir "
+"kuruluş olarak insan hakları ve özgürlükleri alanında şu çalışmaları yapmak "
+"üzere hayata geçti:"
+
+#: https//www.torproject.org/about/cy-pres/
+#: (content/about/cy-pres/contents+en.lrpage.body)
+msgid ""
+"- Creating and deploying free and open anonymity and privacy technologies,"
+msgstr ""
+"- Özgür ve açık kaynaklı anonimlik ve kişisel gizlilik teknolojileri "
+"oluşturmak ve dağıtmak,"
+
+#: https//www.torproject.org/about/cy-pres/
+#: (content/about/cy-pres/contents+en.lrpage.body)
+msgid "- Supporting their unrestricted availability and use, and"
+msgstr "- Sınırsız erişim ve kullanımı desteklemek ve"
+
+#: https//www.torproject.org/about/cy-pres/
+#: (content/about/cy-pres/contents+en.lrpage.body)
+msgid "- Furthering their scientific and popular understanding."
+msgstr "- Bilimsel ve popüler anlaşılırlığı arttırmak."
+
+#: https//www.torproject.org/about/cy-pres/
+#: (content/about/cy-pres/contents+en.lrpage.body)
+msgid ""
+"The Tor Project and its surrounding community develops and distributes some "
+"of the most popular and widely used free, open source privacy technologies: "
+"Tor Browser and the Tor network."
+msgstr ""
+"Tor Projesi ve çevresindeki topluluk, en çok beğenilen ve kullanılan "
+"ücretsiz, açık kaynaklı gizlilik teknolojilerinden bazılarını geliştirip "
+"dağıtmaktadır: Tor Tarayıcı ve Tor ağı."
+
+#: https//www.torproject.org/about/cy-pres/
+#: (content/about/cy-pres/contents+en.lrpage.body)
+msgid ""
+"Beyond developing technology, the organization helps people retain their "
+"privacy online. The Tor Project has educated thousands of activists, "
+"journalists, human rights defenders, librarians, consumers, and average "
+"internet users about how to protect and retain their privacy online."
+msgstr ""
+"Kuruluş, teknoloji geliştirmenin ötesinde, kişilerin çevrimiçi "
+"gizliliklerini korumalarına yardımcı olur. Tor Projesi, bugüne kadar "
+"binlerce aktivistin, gazetecinin, insan hakları savunucusunun, "
+"kütüphanecilerin, tüketicilerin ve ortalama İnternet kullanıcılarının, "
+"çevrimiçi kişisel gizliliklerini nasıl koruyacakları hakkında bilgi sahibi "
+"olmasını sağlamıştır."
+
+#: https//www.torproject.org/about/cy-pres/
+#: (content/about/cy-pres/contents+en.lrpage.body)
+msgid ""
+"The Tor Project is recognized as a leading expert on privacy online, and is "
+"[often turned to by the media for information about how individuals and "
+"consumers can protect their privacy](https://www.torproject.org/press/)."
+msgstr ""
+"Tor Projesi çevrimiçi gizlilik konusunda uzman bir lider olarak kabul "
+"edilmektedir ve [sıklıkla basın tarafından bireylerin ve tüketicilerin "
+"mahremiyetlerini nasıl koruyabilecekleri hakkında bilgi sağlamak için "
+"kullanılır] (https://www.torproject.org/press/)"
+
+#: https//www.torproject.org/about/cy-pres/
+#: (content/about/cy-pres/contents+en.lrpage.body)
+msgid ""
+"In the past, the Tor Project has been the recipient of consumer privacy _cy "
+"pres_ awards through the Rose Foundation's Consumer Privacy grants. The "
+"organization has more than a decade of experience successfully delivering on"
+" projects with funders and partners as varied as the U.S. State Department –"
+" Bureau of Democracy, Human Rights, and Labor; National Science Foundation; "
+"Defense Advanced Research Projects Agency (DARPA); and the Media Democracy "
+"Fund."
+msgstr ""
+"Tor Projesi geçmişte, Rose Foundation tarafından verilen kullanıcı gizliliği"
+" ödülleri kapsamında _cy pres_ ödülünü kazanmıştır. Kuruluş on yılı aşkın "
+"bir deneyime sahiptir ve ABD Dış İşleri Bakanlığı Demokrasi Bürosu, İşçi ve "
+"İnsan Hakları, Ulusal Bilim Vakfı, Gelişmiş Savunma Araştırmaları Ajansı "
+"(DARPA) ve Medya Demokrasi Fonu gibi çok çeşitli fon sağlayıcıları ve iş "
+"ortakları olan projeleri başarılı bir şekilde gerçekleştirmiştir."
+
+#: https//www.torproject.org/about/cy-pres/
+#: (content/about/cy-pres/contents+en.lrpage.body)
+msgid "#### Contact the Tor Project about a Cy Pres Award"
+msgstr "#### Tor Projesi ile bir Cy Basın Ödülü hakkında görüşmek"
+
+#: https//www.torproject.org/about/cy-pres/
+#: (content/about/cy-pres/contents+en.lrpage.body)
+msgid ""
+"If you would like to speak to somebody at the Tor Project about whether or "
+"not the organization might be appropriate for a _cy pres_ award, please "
+"contact Sarah Stevenson, Fundraising Director, at "
+"[sstevenson@torproject.org](mailto:sstevenson@torproject.org)."
+msgstr ""
+"Kuruluşunuzun verdiği bir _cy pres_ ödülü için Tor Projesinden bir kişiye "
+"ulaşmak isterseniz, lütfen "
+"[sstevenson@torproject.org](mailto:sstevenson@torproject.org) adresinden Fon"
+" Yöneticisi Sarah Stevenson ile görüşün."
+
+#: https//www.torproject.org/about/cy-pres/
+#: (content/about/cy-pres/contents+en.lrpage.body)
+msgid "#### Further Reading"
+msgstr "#### Diğer Okumalar"
+
+#: https//www.torproject.org/about/cy-pres/
+#: (content/about/cy-pres/contents+en.lrpage.body)
+msgid "- [The Tor Project in the Media](https://www.torproject.org/press/)"
+msgstr "- [Basında Tor Projesi](https://www.torproject.org/press/)"
+
+#: https//www.torproject.org/about/cy-pres/
+#: (content/about/cy-pres/contents+en.lrpage.body)
+msgid ""
+"- [The Tor Project Financial "
+"Reports](https://www.torproject.org/about/reports/)"
+msgstr ""
+"- [Tor Projesi Mali Raporları](https://www.torproject.org/about/reports/)"
+
+#: https//www.torproject.org/about/cy-pres/
+#: (content/about/cy-pres/contents+en.lrpage.body)
+msgid ""
+"- [The Tor Project Board Members and "
+"Staff](https://www.torproject.org/about/people/)"
+msgstr ""
+"- [Tor Projesi Yönetim Kurulu Üyeleri ve "
+"Ekibi](https://www.torproject.org/about/people/)"
+
+#: https//www.torproject.org/about/history/
+#: (content/about/history/contents+en.lrpage.body)
+msgid ""
+"The Tor Project, Inc, became a 501(c)3 nonprofit in 2006, but the idea of "
+"\"onion routing\" began in the mid 1990s."
+msgstr ""
+"Tor Project Inc. 2006 yılında 501(c)(3) kapsamında kar amacı gütmeyen bir "
+"kuruluş olarak hayata geçti. Ancak \"onion yöneltme\" fikri 90'lı yılların "
+"ortalarında ortaya çıkmıştı."
+
+#: https//www.torproject.org/about/history/
+#: (content/about/history/contents+en.lrpage.body)
+msgid ""
+"**Just like Tor users, the developers, researchers, and founders who've made"
+" Tor possible are a diverse group of people. But all of the people who have "
+"been involved in Tor are united by a common belief: internet users should "
+"have private access to an uncensored web.**"
+msgstr ""
+"**Tıpkı Tor kullanıcıları gibi, Tor projesini hayata geçirenler de "
+"geliştiriciler, araştırmacılar ve kurucular gibi çok farklı kişilerden "
+"oluşur. Ancak Tor projesine katılan herkesin ortak bir inancı vardır: "
+"İnsanların izlenmeden ve sansüre uğramadan İnternet kullanabilmesi "
+"gerekir.**"
+
+#: https//www.torproject.org/about/history/
+#: (content/about/history/contents+en.lrpage.body)
+msgid ""
+"In the 1990s, the lack of security on the internet and its ability to be "
+"used for tracking and surveillance was becoming clear, and in 1995, David "
+"Goldschlag, Mike Reed, and Paul Syverson at the U.S. Naval Research Lab "
+"(NRL) asked themselves if there was a way to create internet connections "
+"that don't reveal who is talking to whom, even to someone monitoring the "
+"network."
+msgstr ""
+"90'lı yıllarda İnternet üzerinde güvenliğin yetersiz olduğu ve kişilerin "
+"izlenip gözetlenebileceği anlaşıldı. 1995 yılında Birleşik Devletler Deniz "
+"Araştırma Laboratuvarından (NRL) David Goldschlag, Mike Reed ve Paul "
+"Syverson, ağ izleniyor olsa bile İnternet bağlantılarını kimin kiminle "
+"görüştüğünü gizleyebilecek şekilde kurmanın bir yolu olup olamayacağını "
+"araştırmaya başladı."
+
+#: https//www.torproject.org/about/history/
+#: (content/about/history/contents+en.lrpage.body)
+msgid ""
+"Their answer was to create and deploy the first research designs and "
+"prototypes of onion routing."
+msgstr ""
+"Bu çalışmaların sonucunda, onion yöneltmesi ile ilgili ilk araştırma "
+"tasarımlarını ve uygulamaları geliştirip dağıtmaya başladılar."
+
+#: https//www.torproject.org/about/history/
+#: (content/about/history/contents+en.lrpage.body)
+msgid ""
+"The goal of onion routing was to have a way to use the internet with as much"
+" privacy as possible, and the idea was to route traffic through multiple "
+"servers and encrypt it each step of the way."
+msgstr ""
+"Onion yöneltmesinin amacı, İnternet kullanırken kişisel gizliliği "
+"olabildiğince korumanın bir yolunu bulmaktı. Çözüm, trafiği birden fazla "
+"sunucu üzerinden geçirmek ve her adımda şifrelemek oldu."
+
+#: https//www.torproject.org/about/history/
+#: (content/about/history/contents+en.lrpage.body)
+msgid "This is still a simple explanation for how Tor works today."
+msgstr "Tor bugünlere nasıl geldi kısaca bakalım. "
+
+#: https//www.torproject.org/about/history/
+#: (content/about/history/contents+en.lrpage.body)
+msgid ""
+"In the early 2000s, Roger Dingledine, a recent [Massachusetts Institute of "
+"Technology (MIT)](https://web.mit.edu/) graduate, began working on an NRL "
+"onion routing project with Paul Syverson."
+msgstr ""
+"2000'li yılların başında, taze [Massachusetts Teknoloji Enstitüsü "
+"(MIT)](https://web.mit.edu/) mezunu Roger Dingledine, Paul Syverson ile bir "
+"NRL onion yöneltme projesi üzerinde çalışmaya başladı."
+
+#: https//www.torproject.org/about/history/
+#: (content/about/history/contents+en.lrpage.body)
+msgid ""
+"To distinguish this original work at NRL from other onion routing efforts "
+"that were starting to pop up elsewhere, Roger called the project Tor, which "
+"stood for The Onion Routing. Nick Mathewson, a classmate of Roger's at MIT, "
+"joined the project soon after."
+msgstr ""
+"Roger, NRL içinde yapılan bu özgün çalışmayı, ortaya çıkmakta olan diğer "
+"onion yöneltme çalışmalarından ayırmak için Tor olarak adlandırdı. Kısa bir "
+"süre sonra Roger'ın MIT'deki sınıf arkadaşı Nick Mathewson da projeye "
+"katıldı."
+
+#: https//www.torproject.org/about/history/
+#: (content/about/history/contents+en.lrpage.body)
+msgid ""
+"From its inception in the 1990s, onion routing was conceived to rely on a "
+"decentralized network. The network needed to be operated by entities with "
+"diverse interests and trust assumptions, and the software needed to be free "
+"and open to maximize transparency and separation."
+msgstr ""
+"1990'lı yıllarda ortaya çıkmasından bu yana, onion yöneltme, merkezi olmayan"
+" bir ağ üzerine tasarlandı. Şeffaflığını ve korumasını en üst düzeye "
+"çıkarmak için, ağın farklı ilgi alanlarından çeşitli güvenirlik düzeyine "
+"sahip kuruluşlar tarafından işletilmesi ve bunu sağlayacak yazılımın özgür "
+"ve açık kaynaklı olması gerekiyordu."
+
+#: https//www.torproject.org/about/history/
+#: (content/about/history/contents+en.lrpage.body)
+msgid ""
+"That's why in October 2002 when the Tor network was initially deployed, its "
+"code was released under a free and open software license."
+msgstr ""
+"Bu nedenle Ekim 2002’de Tor ağı ilk kez yayınlandığında, program kaynak kodu"
+" özgür ve açık bir yazılım lisansı altında yayınlandı."
+
+#: https//www.torproject.org/about/history/
+#: (content/about/history/contents+en.lrpage.body)
+msgid ""
+"By the end of 2003, the network had about a dozen volunteer nodes, mostly in"
+" the U.S., plus one in Germany."
+msgstr ""
+"2003 yılının sonunda, çoğu Birleşik Devletler ve Almanya'da bulunan bir "
+"düzine civarında gönüllü durağı çalışıyordu."
+
+#: https//www.torproject.org/about/history/
+#: (content/about/history/contents+en.lrpage.body)
+msgid ""
+"Recognizing the benefit of Tor to digital rights, the [Electronic Frontier "
+"Foundation (EFF)](https://www.eff.org/) began funding Roger's and Nick's "
+"work on Tor in 2004. In 2006, the Tor Project, Inc., a 501(c)3 nonprofit "
+"organization, was founded to maintain Tor's development."
+msgstr ""
+"[Electronic Frontier Foundation (EFF)](https://www.eff.org/) 2004 yılında "
+"Tor'un sayısal haklar alanında sağladığı yararları görerek, Roger ve Nick'in"
+" Tor çalışmalarına bağış yapmaya başladı. 2006 yılında, Tor projesini "
+"geliştirmek için 501(c)(3) kapsamında kar amacı gütmeyen bir kuruluş olan "
+"Tor Project, Inc. kuruldu."
+
+#: https//www.torproject.org/about/history/
+#: (content/about/history/contents+en.lrpage.body)
+msgid ""
+"In 2007, the organization began developing bridges to the Tor network to "
+"address censorship, such as the need to get around government firewalls, in "
+"order for its users to access the open web."
+msgstr ""
+"2007 yılında, kullanıcıların açık ağa erişebilmeleri için devletin güvenlik "
+"duvarlarını aşma gereksinimi gibi sansür uygulamalarına karşı Tor ağı "
+"köprüleri geliştirilmeye başlandı."
+
+#: https//www.torproject.org/about/history/
+#: (content/about/history/contents+en.lrpage.body)
+msgid ""
+"Tor began gaining popularity among activists and tech-savvy users interested"
+" in privacy, but it was still difficult for less-technically savvy people to"
+" use, so starting in 2005, development of tools beyond just the Tor proxy "
+"began."
+msgstr ""
+"Tor, kişisel gizliliklerine önem veren aktivistler ve teknoloji meraklısı "
+"kullanıcılar arasında yayılmaya başladı. Ancak teknik konularda bilgisi az "
+"olan kişiler kullanmakta zorlanıyordu. 2005 yılından başlayarak Tor vekil "
+"sunucusundan başka araçlar da geliştirilmeye başlandı."
+
+#: https//www.torproject.org/about/history/
+#: (content/about/history/contents+en.lrpage.body)
+msgid ""
+"Development of Tor Browser began in "
+"[2008](https://lists.torproject.org/pipermail/tor-"
+"talk/2008-January/007837.html)."
+msgstr ""
+"[2008](https://lists.torproject.org/pipermail/tor-"
+"talk/2008-January/007837.html) yılında Tor Browser uygulaması geliştirilmeye"
+" başlandı."
+
+#: https//www.torproject.org/about/history/
+#: (content/about/history/contents+en.lrpage.body)
+msgid ""
+"With Tor Browser having made Tor more accessible to everyday internet users "
+"and activists, Tor was an instrumental tool during the [Arab "
+"Spring](https://www.theguardian.com/us-news/the-nsa-files) beginning in late"
+" 2010. It not only protected people's identity online but also allowed them "
+"to access critical resources, social media, and websites which were blocked."
+msgstr ""
+"Tor Browser, sıradan günlük İnternet kullanıcıları ve aktivistler için Tor "
+"kullanımını kolaylaştırdı ve 2010 yılı sonundaki [Arap "
+"Baharı](https://www.theguardian.com/us-news/the-nsa-files) döneminde etkili "
+"şekilde kullanıldı. Yalnız insanların çevrimiçi kimliklerini korumakla "
+"kalmadı, aynı zamanda kritik kaynaklara, sosyal ağlara ve engellenen web "
+"sitelerine erişebilmelerini sağladı."
+
+#: https//www.torproject.org/about/history/
+#: (content/about/history/contents+en.lrpage.body)
+msgid ""
+"The need for tools safeguarding against mass surveillance became a "
+"mainstream concern thanks to the [Snowden revelations in "
+"2013](https://www.theguardian.com/us-news/the-nsa-files)."
+msgstr ""
+"Kitlesel gözetlemeye karşı koruma sağlayan araçlara duyulan gereksinim [2013"
+" yılındaki Snowden sızıntıları](https://www.theguardian.com/us-news/the-nsa-"
+"files) üzerine önemli bir gündem maddesi haline geldi."
+
+#: https//www.torproject.org/about/history/
+#: (content/about/history/contents+en.lrpage.body)
+msgid ""
+"Not only was Tor instrumental to Snowden's whistleblowing, but content of "
+"the documents also upheld assurances that, at that time, [Tor could not be "
+"cracked](https://www.wired.com/story/the-grand-tor/)."
+msgstr ""
+"Tor, Snowden'in bilgi sızdırmasına aracı olmakla kalmadı, aynı zamanda "
+"belgelerin içeriği de o zaman [Tor ağının "
+"kırılamayacağına](https://www.wired.com/story/the-grand-tor/) dair bir "
+"güvence sağladı."
+
+#: https//www.torproject.org/about/history/
+#: (content/about/history/contents+en.lrpage.body)
+msgid ""
+"People's awareness of tracking, surveillance, and censorship may have "
+"increased, but so has the prevalence of these hindrances to internet "
+"freedom."
+msgstr ""
+"İnsanların izlenme, gözetlenme ve sansür konusundaki farkındalığı artmış "
+"olabilir, ancak bu engellemelerin İnternet özgürlüğünü kısıtlama oranı da "
+"arttı."
+
+#: https//www.torproject.org/about/history/
+#: (content/about/history/contents+en.lrpage.body)
+msgid ""
+"Today, the network has [thousands of relays](https://metrics.torproject.org)"
+" run by volunteers and millions of users worldwide. And it is this diversity"
+" that keeps Tor users safe."
+msgstr ""
+"Bugün, ağda dünya çapında gönüllüler tarafından işletilen [binlerce "
+"aktarıcı](https://metrics.torproject.org) ve milyonlarca kullanıcı "
+"bulunuyor. Bu çeşitlilik Tor kullanıcılarını güvende tutuyor."
+
+#: https//www.torproject.org/about/history/
+#: (content/about/history/contents+en.lrpage.body)
+msgid ""
+"We, at the Tor Project, fight every day for everyone to have private access "
+"to an uncensored internet, and Tor has become the world's strongest tool for"
+" privacy and freedom online."
+msgstr ""
+"Tor Projesi olarak her gün, insanların kişisel gizliliğini koruyarak "
+"İnternete sansürsüz olarak erişebilmesi için mücadele ediyoruz. Tor "
+"çevrimiçi kişisel gizliliği ve özgürlüğü sağlamak için dünyanın en güçlü "
+"aracı haline geldi."
+
+#: https//www.torproject.org/about/history/
+#: (content/about/history/contents+en.lrpage.body)
+msgid ""
+"But Tor is more than just software. It is a labor of love produced by an "
+"international community of people devoted to human rights. The Tor Project "
+"is [deeply committed](https://blog.torproject.org/tor-social-contract) to "
+"transparency and the safety of its users."
+msgstr ""
+"Ancak Tor bir yazılımdan çok daha fazlasıdır. İnsan haklarına adanmış "
+"uluslararası bir insan topluluğu tarafından üretilen bir sevgi emeğidir. Tor"
+" Projesi, şeffaflığa ve kullanıcılarının güvenliğine "
+"[derinden](https://blog.torproject.org/tor-social-contract) bağlıdır."
+
+#: https//www.torproject.org/about/people/
+#: (content/about/people/contents+en.lrpeople.title)
+msgid "People"
+msgstr "Kişiler"
+
+#: https//www.torproject.org/about/people/
+#: (content/about/people/contents+en.lrpeople.body)
+msgid ""
+"We are an international team who believes everyone should have private "
+"access to the uncensored web."
+msgstr ""
+"Herkesin kişisel gizliliğini koruyarak ağa sansürsüz olarak erişebilmesi "
+"gerektiğine inanan uluslararası bir ekibiz."
+
+#: https//www.torproject.org/about/sponsors/
+#: (content/about/sponsors/contents+en.lrsponsors.body)
+msgid ""
+"Having a diverse user base means we have diverse funding sources, too. Our "
+"goal is to continue diversifying our funding. To inquire about sponsorship, "
+"please email giving(at)torproject.org."
+msgstr ""
+"Farklı kullanıcılardan oluşan bir topluluğa sahip olmak, farklı fon "
+"kaynaklarına sahip olmamız anlamına gelir. Fonlarımızı çeşitlendirmeye devam"
+" etmeyi amaçlıyoruz. Proje destekçisi olmak hakkında bilgi almak için, "
+"lütfen giving(at)torproject.org adresine bir e-posta gönderin."
+
+#: https//www.torproject.org/about/reports/
+#: (content/about/reports/contents+en.lrreports.body)
+msgid ""
+"The Tor Project, Inc. is a US 501(c)(3) nonprofit organization committed to "
+"transparency in its work and reporting."
+msgstr ""
+"The Tor Project, Inc. US 501(c)(3) kapsamında çalışmalarını ve raporlarını "
+"herkese açık olarak sunan kar amacı gütmeyen bir kuruluştur. "
+
+#: https//www.torproject.org/press/-new-release-tails/
+#: (content/press/new-release-tails/contents+en.lrpost.title)
+msgid "New Release: Tails 3.12"
+msgstr "Yeni Sürüm: Tails 3.12"
+
+#: https//www.torproject.org/press/-new-release-tails/
+#: (content/press/new-release-tails/contents+en.lrpost.summary)
+msgid ""
+"This release fixes many security vulnerabilities. You should upgrade as soon"
+" as possible."
+msgstr ""
+"Bu sürümde pek çok güvenlik açığı kapatılmıştır. İlk fırsatta bu sürüme "
+"geçmelisiniz."
+
+#: https//www.torproject.org/press/-new-release-tails/
+#: (content/press/new-release-tails/contents+en.lrpost.summary)
+msgid ""
+"The biggest news for 3.12 is that we completely changed the installation "
+"methods for Tails."
+msgstr ""
+"3.12 sürümündeki en büyük gelişme Tails kurulum yöntemlerinin tamamen "
+"değiştirilmiş olmasıdır."
+
+#: https//www.torproject.org/press/-new-release-tor/
+#: (content/press/new-release-tor/contents+en.lrpost.title)
+msgid "New Release: Tor 0.4.0.1-alpha"
+msgstr "Yeni Sürüm: Tor 0.4.0.1-alpha"
+
+#: https//www.torproject.org/press/-new-release-tor/
+#: (content/press/new-release-tor/contents+en.lrpost.summary)
+msgid ""
+"There's a new alpha release available for download. If you build Tor from "
+"source, you can download the source code for 0.4.0.1-alpha from the usual "
+"place on the website."
+msgstr ""
+"İndirilmeye hazır yeni bir alfa sürümü yayınlanmış. Tor uygulamasını kaynak "
+"kodundan derlemek istiyorsanız web sitesindeki her zamanki yerinden "
+"0.4.0.1-alpha sürümünün kaynak kodunu indirebilirsiniz."
+
+#: https//www.torproject.org/press/-new-release-tor-browser/
+#: (content/press/new-release-tor-browser/contents+en.lrpost.title)
+msgid "New Release: Tor Browser 8.5a10"
+msgstr "Yeni Sürüm: Tor Browser 8.5a10"
+
+#: https//www.torproject.org/press/-new-release-tor-browser/
+#: (content/press/new-release-tor-browser/contents+en.lrpost.summary)
+msgid ""
+"Tor Browser 8.5a10 is now available from the <a "
+"href=\"https://www.torproject.org/projects/torbrowser.html.en#downloads-"
+"alpha\">Tor Browser Project page</a> and also from our <a "
+"href=\"https://www.torproject.org/dist/torbrowser/8.5a10/\">distribution "
+"directory</a>."
+msgstr ""
+"Tor Browser 8.5a10 <a href=\"https://www.torproject.org/download\">Tor "
+"Browser Proje sayfasından</a> ve <a "
+"href=\"https://www.torproject.org/dist/torbrowser/8.5a10/\">dağıtım "
+"dizinimizden</a> indirilebilir."
+
+#: https//www.torproject.org/about/trademark/trademark-faq/
+#: (content/about/trademark/trademark-faq/contents+en.lrtopic.title)
+msgid "Tor Trademark Frequently Asked Questions"
+msgstr "Tor Markası Hakkında Sık Sorulan Sorular"
+
+#: lego/templates/footer.html:9 lego/templates/footer.html:18
+#: lego/templates/navbar.html:73 templates/footer.html:9
+#: templates/footer.html:18 templates/hero-home.html:13
+#: templates/navbar.html:73
+msgid "Download Tor Browser"
+msgstr "Tor Browser uygulamasını indirin"
+
+#: lego/templates/footer.html:10 templates/footer.html:10
+msgid ""
+"Download Tor Browser to experience real private browsing without tracking, "
+"surveillance, or censorship."
+msgstr ""
+"İzleme, gözetleme ya da engelleme olmadan kişisel gizliliğinizi "
+"koruyabileceğiniz gerçek taramayı deneyimlemek için Tor Browser uygulamasını"
+" indirin."
+
+#: lego/templates/footer.html:27 templates/footer.html:27
+msgid "Our mission:"
+msgstr "Misyonumuz:"
+
+#: lego/templates/footer.html:28 templates/footer.html:28
+msgid ""
+"To advance human rights and freedoms by creating and deploying free and open"
+" source anonymity and privacy technologies, supporting their unrestricted "
+"availability and use, and furthering their scientific and popular "
+"understanding."
+msgstr ""
+"Özgür ve açık kaynaklı anonimlik ve kişisel gizlilik teknolojileri "
+"geliştirerek insan hakları ve özgürlükleri geliştirmek, bu teknolojilere "
+"kısıtlamasız olarak erişilebilmesini sağlamak ile bilimsel ve yaygın olarak "
+"anlaşılmasını sağlamak."
+
+#: lego/templates/footer.html:54 templates/footer.html:54
+msgid "Subscribe to our Newsletter"
+msgstr "Duyurularımıza Abone Olun"
+
+#: lego/templates/footer.html:55 templates/footer.html:55
+msgid "Get monthly updates and opportunities from the Tor Project:"
+msgstr ""
+"Tor Projesi ile ilgili güncelleme ve bilgileri aylık olarak alabilirsiniz:"
+
+#: lego/templates/footer.html:56 templates/footer.html:56
+msgid "Sign up"
+msgstr "Kayıt olun"
+
+#: lego/templates/footer.html:75 templates/footer.html:75
+#, python-format
+msgid ""
+"Trademark, copyright notices, and rules for use by third parties can be "
+"found in our %(link_to_faq)s"
+msgstr ""
+"Üçüncü tarafların kullanabileceği patent, telif hakkı ve ilkeleri şurada "
+"bulabilirsiniz %(link_to_faq)s"
+
+#: lego/templates/navbar.html:20 templates/navbar.html:20
+msgid "Menu"
+msgstr "Menü"
+
+#: lego/templates/search.html:5 templates/search.html:5
+msgid "Search"
+msgstr "Arama"
+
+#: templates/contact.html:8
+msgid "Chat with us on"
+msgstr "Bizimle şuradan sohbet edebilirsiniz"
+
+#: templates/contact.html:9
+msgid "Ask questions about using Tor."
+msgstr "Tor kullanımı hakkında sorularınızı sorabilirsiniz."
+
+#: templates/contact.html:10
+msgid "Discuss Tor-related coding and protocols. Ideas are welcome."
+msgstr ""
+"Tor ile ilgili kodlama ve iletişim kuralları üzerine konuşabilirsiniz. "
+"Fikirlerinizi bekliyoruz."
+
+#: templates/contact.html:11
+msgid "Get in touch with other translators"
+msgstr "Diğer çevirmenler ile tanışın"
+
+#: templates/contact.html:12
+msgid "Watch or join publicly logged team meetings."
+msgstr ""
+"Tutanakları herkese açık olarak sunulan toplantıları izleyip "
+"katılabilirsiniz."
+
+#: templates/contact.html:13
+msgid ""
+"Discuss organization and community related topics: meetups and outreach."
+msgstr ""
+"Kuruluş ve topluluk ile ilgili konularda konuşun: Buluşma ve etkinlikler."
+
+#: templates/contact.html:14
+msgid "Discuss running a Tor relay."
+msgstr "Bir tor aktarıcısı işletmek üzerine konuşabilirsiniz."
+
+#: templates/contact.html:15
+msgid "Talk with Tor's global south community."
+msgstr "Tor güney küresel topluluğu ile konuşabilirsiniz."
+
+#: templates/contact.html:16
+msgid "Talk with us about improvements on our websites."
+msgstr "Bizimle web sitelerimizde yapabileceklerimiz hakkında konuşun."
+
+#: templates/contact.html:17
+msgid "Discuss UX related ideas."
+msgstr "Kullanıcı arayüzü ile ilgili konuları tartışın."
+
+#: templates/contact.html:23
+msgid "Find us on Social Media"
+msgstr "Bizi Sosyal Ağlardan İzleyin"
+
+#: templates/contact.html:37
+msgid "Volunteer with Tor"
+msgstr "Tor Projesine Gönüllüsü Katkıda Bulunun"
+
+#: templates/contact.html:41
+msgid "Get Involved"
+msgstr "Katkıda Bulunun"
+
+#: templates/contact.html:47
+msgid "Join an email list"
+msgstr "E-posta listesine katılın"
+
+#: templates/contact.html:50
+msgid ""
+"Our teams collaborate in open channels, including email lists, you are "
+"welcome to join. If you have a question for a specific team not answered on "
+"our support portal, you can ask the appropriate list. You're welcome to "
+"subscribe and just watch, too :)"
+msgstr ""
+"Ekiplerimiz, e-posta listelerinin de bulunduğu açık kanallarda işbirliği "
+"yapıyor. Destek sitemizde yanıtını bulamadığınız ve belirli bir ekibe sormak"
+" istediğiniz bir sorunuz varsa, hangi listeye yazmanız gerektiğini "
+"sorabilirsiniz. Bu listelere üye olup izleyebilirsiniz :)"
+
+#: templates/contact.html:63
+msgid "Report a bug or give feedback."
+msgstr "Bir hata bildirin ya da düşüncelerinizi iletin."
+
+#: templates/contact.html:64
+msgid ""
+"Tor relies on the support of users and volunteers around the world to help "
+"us improve our software and resources, so your feedback is extremely "
+"valuable to us (and to all Tor users)."
+msgstr ""
+"Tor, yazılımlarımızı ve kaynaklarımızı geliştirmemize yardımcı olmaları için"
+" dünya çapındaki kullanıcı ve gönüllülerin desteğine güvenmektedir. Bu "
+"nedenle geri bildirimleriniz bizim için (ve tüm Tor kullanıcıları için) çok "
+"değerlidir."
+
+#: templates/contact.html:70
+msgid "Tell us about a bad relay."
+msgstr "Çalışmayan aktarıcıları bildirin."
+
+#: templates/contact.html:71
+msgid ""
+"If you find a relay that you think is malicious, misconfigured, or otherwise"
+" broken, please check out our wiki page and blog post on how to report it."
+msgstr ""
+"Kötü niyetli, hatalı yapılandırılmış ya da başka bir şekilde çalışmadığını "
+"düşündüğünüz bir aktarıcı bulursanız, nasıl bildireceğinizi öğrenmek için "
+"wiki sayfamıza ve günlük yazılarına bakabilirsiniz."
+
+#: templates/contact.html:79
+msgid "Report a security issue."
+msgstr "Bir güvenlik sorununu bildirin."
+
+#: templates/contact.html:80
+msgid ""
+"If you've found a security issue in one of our projects or in our "
+"infrastructure, please email tor-security(a)lists.torproject.org. If you want "
+"to encrypt your mail, you can get the GPG public key for the list by "
+"contacting tor-security-sendkey(a)lists.torproject.org or from pool.sks-"
+"keyservers.net. Here is the fingerprint:"
+msgstr ""
+"Projelerimizden birinde ya da altyapımızda bir güvenlik sorunu bulursanız, "
+"lütfen tor-security(a)lists.torproject.org adresine e-posta ile bildirin. "
+"Postanızı şifrelemek istiyorsanız, bu listenin GPG genel anahtarını tor-"
+"security-sendkey(a)lists.torproject.org ya da pool.sks-keyservers.net "
+"adresinden alabilirsiniz. Parmak izi:"
+
+#: templates/contact.html:100
+msgid "Email us"
+msgstr "Bize e-posta gönderin"
+
+#: templates/contact.html:101
+msgid ""
+"For questions and comments about Tor the non-profit organization: trademark "
+"questions, affiliation and coordination, contract inquiries, etc, please "
+"email frontdesk(a)rt.torproject.org. For donor-related questions, contact "
+"giving(a)torproject.org"
+msgstr ""
+"Ticari marka soruları, üyelik ve koordinasyon, sözleşme istekleri gibi kar "
+"amacı gütmeyen Tor kuruluşu hakkında soru ve yorumlarınız için: Lütfen "
+"frontdesk(a)rt.torproject.org adresine e-posta gönderin. Bağışlarla ilgili "
+"sorularınız için giving(a)torproject.org adresine e-posta gönderebilirsiniz."
+
+#: templates/contact.html:107
+msgid "Send us Mail"
+msgstr "Bize Posta Gönderin"
+
+#: templates/download-android.html:12
+msgid "Get Tor Browser for Android."
+msgstr "Android için Tor Browser Uygulamasını Alın."
+
+#: templates/download-android.html:15 templates/hero-download.html:5
+msgid "Protect yourself against tracking, surveillance, and censorship."
+msgstr "Kendinizi ağın izlenmesine, gözetlenmesine ve sansüre karşı koruyun."
+
+#: templates/download-android.html:20 templates/download-android.html:22
+msgid "Download .apk"
+msgstr ".apk Dosyasını İndirin"
+
+#: templates/download-android.html:24
+msgid "Go to Google Play"
+msgstr "Google Play Uygulamasına Gidin"
+
+#: templates/download-android.html:26
+msgid "Go to F-Droid"
+msgstr "F-Droid sitesine git"
+
+#: templates/download-android.html:36
+msgid "Are you an iOS user? We encourage you to try Onion Browser."
+msgstr "iOS kullanıyorsanız Onion Browser uygulamasını denemenizi öneririz."
+
+#: templates/download-languages.html:11 templates/download-options.html:11
+msgid "Language"
+msgstr "Dil"
+
+#: templates/download-tor.html:25 templates/download-tor.html:30
+msgid "sig"
+msgstr "imza"
+
+#: templates/download.html:5
+msgid "Get Connected"
+msgstr "Bağlantı Kurun"
+
+#: templates/download.html:7
+msgid "Get connected"
+msgstr " Bağlantı kurun"
+
+#: templates/download.html:9
+msgid ""
+"If you are in a country where Tor is blocked, you can configure Tor to "
+"connect to a bridge during the setup process."
+msgstr ""
+"Tor ağının engellendiği bir ülkede bulunuyorsanız, kurulum sırasında Tor "
+"Browser uygulamasını bir köprüye bağlanacak şekilde yapılandırabilirsiniz."
+
+#: templates/download.html:10
+msgid "Select \"Tor is censored in my country.\""
+msgstr "\"Bulunduğum ülkede Tor ağı engelleniyor\" seçeneğini işaretleyin."
+
+#: templates/download.html:13
+msgid ""
+"If Tor is not censored, one of the most common reasons Tor won't connect is "
+"an incorrect system clock. Please make sure it's set correctly."
+msgstr ""
+"Tor engellenmiyorsa, Tor Browser uygulamasının bağlantı kuramamasının sık "
+"karşılaşılan nedenlerinden biri bilgisayar saatinin hatalı olmasıdır. Lütfen"
+" bilgisayar saat ve tarihinin doğru ayarlanmış olduğundan emin olun."
+
+#: templates/download.html:14
+msgid "Support Portal"
+msgstr "Destek Sitesi"
+
+#: templates/download.html:14
+msgid "Read other FAQs at our Support Portal"
+msgstr ""
+"Destek Sitemizde diğer sık sorulan soruların yanıtlarını bulabilirsiniz"
+
+#: templates/download.html:19 templates/download.html:21
+msgid "Stay safe"
+msgstr "Güvende kalın"
+
+#: templates/download.html:23
+msgid "Please do not torrent over Tor."
+msgstr "Lütfen Tor üzerinden torrent indirmeye çalışmayın."
+
+#: templates/download.html:24
+msgid ""
+"Tor Browser will block browser plugins such as Flash, RealPlayer, Quicktime,"
+" and others: they can be manipulated into revealing your IP address."
+msgstr ""
+"Tor Browser, Flash, RealPlayer ve Quicktime gibi tarayıcı eklentilerini "
+"engeller. Bu eklentiler IP adresinizi açığa çıkarmak için kullanılabilir."
+
+#: templates/download.html:27
+msgid ""
+"We do not recommend installing additional add-ons or plugins into Tor "
+"Browser"
+msgstr ""
+"Tor Browser üzerine başka eklenti ya da uygulama ekleri kurmanız önerilmez"
+
+#: templates/download.html:28
+msgid ""
+"Plugins or addons may bypass Tor or compromise your privacy. Tor Browser "
+"already comes with HTTPS Everywhere, NoScript, and other patches to protect "
+"your privacy and security."
+msgstr ""
+"Eklentiler ya da uygulama ekleri Tor ağını atlayarak kişisel gizliliğinizi "
+"tehlikeye atabilir. Tor Browser kişisel gizliliğinizi ve güvenliğinizi "
+"korumak için HTTPS Everywhere ve NoScript gibi yamalar ile birlikte gelir."
+
+#: templates/download.html:40
+#, python-format
+msgid "Check out the %s for more troubleshooting tips."
+msgstr "Diğer sorun çözme ipuçları için %s üzerine bakabilirsiniz."
+
+#: templates/download.html:49
+msgid "Verify Tor Browser signature"
+msgstr "Tor Browser imzasını doğrulayın"
+
+#: templates/download.html:54
+msgid "Stand up for privacy and freedom online."
+msgstr "Çevrimiçi özgürlük ve kişisel gizliliği savunun."
+
+#: templates/download.html:55
+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 ""
+"Kar amacı gütmeyen bir kuruluş olarak, dünyadaki milyonlarca insana yardımcı"
+" olan Tor projesini sağlam ve güvende tutmak için sizin gibi "
+"destekçilerimize güveniyoruz."
+
+#: templates/hero-download-languages.html:2
+#: templates/hero-download-options.html:2
+msgid "DEFEND YOURSELF"
+msgstr "KENDİNİZİ KORUYUN"
+
+#: templates/hero-download-tor.html:2
+msgid "GROW THE NETWORK"
+msgstr "AĞI BÜYÜTÜN"
+
+#: templates/hero-download.html:2
+msgid "Defend yourself."
+msgstr "Kendinizi koruyun."
+
+#: templates/hero-download.html:45
+msgid "Download in another language or platform"
+msgstr "Başka bir dil ya da platform için indirmelere bakın"
+
+#: templates/hero-download.html:46
+msgid "Download the latest alpha build"
+msgstr "Son alfa sürümünü indir"
+
+#: templates/hero-download.html:50
+msgid "Read the latest release announcements"
+msgstr "Yeni yayınlanan sürümler hakkında bilgileri okuyun"
+
+#: templates/hero-home.html:2
+msgid "Browse Privately."
+msgstr "İnternet Üzerinde Kişisel Gizliliğinizi Koruyarak Gezinin."
+
+#: templates/hero-home.html:5
+msgid "Explore Freely."
+msgstr "Özgürce Keşfedin."
+
+#: templates/hero-home.html:8 templates/meta.html:5 templates/meta.html:12
+msgid ""
+"Defend yourself against tracking and surveillance. Circumvent censorship."
+msgstr "Kendinizi ağın izlenmesinden ve gözetlenmekten koruyun. Sansürü aşın."
+
+#: templates/home.html:7
+msgid "Block Trackers"
+msgstr "İzleme Hizmetlerini Engelleyin"
+
+#: templates/home.html:11
+msgid "BLOCK TRACKERS"
+msgstr "İZLEME HİZMETLERİNİ ENGELLEYİN"
+
+#: templates/home.html:12
+msgid ""
+"Tor Browser isolates each website you visit so third-party trackers and ads "
+"can't follow you. Any cookies automatically clear when you're done browsing."
+" So will your browsing history."
+msgstr ""
+"Tor Browser, ziyaret ettiğiniz her web sitesi için farklı bir bağlantı "
+"kullanır. Böylece üçüncü taraf izleme ve reklam hizmetleri, ziyaret "
+"ettiğiniz web sitelerini ilişkilendirerek sizin hakkınızda bilgi toplayamaz."
+" Gezinmeyi tamamladığınızda çerezler ve gezinme geçmişiniz otomatik olarak "
+"temizlenir."
+
+#: templates/home.html:24
+msgid "Defend Against Surveillance"
+msgstr "Gözetlenmeye Karşı Korunun"
+
+#: templates/home.html:28
+msgid "DEFEND AGAINST SURVEILLANCE"
+msgstr "İZLEMEYE KARŞI KORUNUN"
+
+#: templates/home.html:29
+msgid ""
+"Tor Browser prevents someone watching your connection from knowing what "
+"websites you visit. All anyone monitoring your browsing habits can see is "
+"that you're using Tor."
+msgstr ""
+"Tor Browser, sizi izliyor olabilecek kişilerin hangi siteleri ziyaret "
+"ettiğinizi görmesini engeller. Tek görebilecekleri Tor kullandığınız olur."
+
+#: templates/home.html:41
+msgid "Resist Fingerprinting"
+msgstr "Parmak İzinizin Alınmasına Karşı Koyun"
+
+#: templates/home.html:45
+msgid "RESIST FINGERPRINTING"
+msgstr "PARMAK İZİNİZİN ALINMASINA KARŞI KOYUN"
+
+#: templates/home.html:46
+msgid ""
+"Tor Browser aims to make all users look the same making it difficult for you"
+" to be fingerprinted based on your browser and device information."
+msgstr ""
+"Tor Browser, tarayıcı ve aygıt bilgilerine bakılarak sizi belirleyebilecek "
+"sayısal parmak izinizin alınmasını engeller ve tüm kullanıcıların ayırt "
+"edilemeyecek şekilde aynı görünmesini amaçlar."
+
+#: templates/home.html:58
+msgid "Multi-layered Encryption"
+msgstr "Çok Katmanlı Şifreleme"
+
+#: templates/home.html:62
+msgid "MULTI-LAYERED ENCRYPTION"
+msgstr "ÇOK KATMANLI ŞİFRELEME"
+
+#: templates/home.html:63
+msgid ""
+"Your traffic is relayed and encrypted three times as it passes over the Tor "
+"network. The network is comprised of thousands of volunteer-run servers "
+"known as Tor relays."
+msgstr ""
+"Bağlantı trafiğiniz Tor ağı üzerinde aktarılırken üç ayrı duraktan geçirilir"
+" ve her defasında şifrelenir. Tor ağı, Tor aktarıcıları olarak bilinen ve "
+"binlerce gönüllü tarafından işletilen sunuculardan oluşur."
+
+#: templates/home.html:75
+msgid "Browse Freely"
+msgstr "Özgürce Gezinin"
+
+#: templates/home.html:79
+msgid "BROWSE FREELY"
+msgstr "ÖZGÜRCE GEZİNİN"
+
+#: templates/home.html:80
+msgid ""
+"With Tor Browser, you are free to access sites your home network may have "
+"blocked."
+msgstr ""
+"Tor Browser ile bağlı olduğunuz ağ tarafından engelleniyor olabilecek "
+"sitelere özgürce erişebilirsiniz."
+
+#: templates/jobs.html:2
+msgid "Current Openings"
+msgstr "Güncel Konumlar"
+
+#: templates/jobs.html:13
+msgid ""
+"At the moment, we don't have any official open positions. Please check back "
+"soon, though!"
+msgstr ""
+"Şu anda herhangi bir resmi açık pozisyonumuz yok. Lütfen daha sonra yeniden "
+"bakın!"
+
+#: templates/jobs.html:18 templates/projects.html:5
+msgid "Previous Openings"
+msgstr "Daha Önceki Konumlar"
+
+#: templates/jobs.html:32 templates/projects.html:33
+msgid ""
+"Think you could help us in a position that's not listed? We also rely on a "
+"vast community of volunteer contributors and many have become paid staff."
+msgstr ""
+"Bize listede olmayan bir konumda yardımcı olabileceğinizi mi düşünüyorsunuz?"
+" Geniş bir gönüllü katılımcı topluluğundan destek alıyoruz ve gönüllü olarak"
+" başlayıp bir süre sonra profesyonel çalışanımız olan pek çok kişi var."
+
+#: templates/jobs.html:32 templates/projects.html:33
+msgid "We invite you to join us on IRC to find how you can get involved."
+msgstr ""
+"Nasıl katkıda bulunabileceğinizi öğrenmek için sizi IRC sohbetlerimize "
+"bekliyoruz."
+
+#: templates/meta.html:11
+msgid "The Tor Project | Privacy & Freedom Online"
+msgstr "Tor Projesi | Çevrimiçi Kişisel Gizlilik ve Özgürlük"
+
+#: templates/meta.html:17
+msgid "Tor Project"
+msgstr "Tor Projesi"
+
+#: templates/people.html:2
+msgid "Board of Directors"
+msgstr "Yönetim Kurulu"
+
+#: templates/people.html:3 templates/people.html:15
+msgid "Core Tor"
+msgstr "Çekirdek Tor"
+
+#: templates/people.html:28
+msgid "Join Our Team"
+msgstr "Ekibimize Katılın"
+
+#: templates/people.html:29
+msgid ""
+"Even if we aren't hiring, you can contribute to Tor. We are open to ideas "
+"and studies to improve Tor software. If you're a developer, we welcome you "
+"to sign up for our dev mailing list to see what we're up to."
+msgstr ""
+"Sizi işe almasak bile, Tor projesine katkıda bulunabilirsiniz. Tor "
+"yazılımını geliştirmek için fikir ve desteğe açığız. Bir yazılım geliştirici"
+" iseniz yaptıklarımızı görmek için geliştirici e-posta listemize kayıt "
+"olabilirsiniz."
+
+#: templates/people.html:31
+msgid "Sign up for tor-dev"
+msgstr "tor-dev listesine kayıt olun"
+
+#: templates/press.html:7
+msgid "Get support"
+msgstr "Destek alın"
+
+#: templates/press.html:9
+msgid "Visit our Support Portal"
+msgstr "Destek Sitemize Bakın"
+
+#: templates/press.html:12
+msgid "Ask us on #tor"
+msgstr "Bize #tor üzerinden ulaşın"
+
+#: templates/press.html:15
+msgid "Write to a mailing list"
+msgstr "E-posta listesine yazın"
+
+#: templates/press.html:22
+msgid "Brand Assets"
+msgstr "Marka Varlıkları"
+
+#: templates/press.html:27
+msgid "The Tor Browser"
+msgstr "Tor Browser"
+
+#: templates/press.html:30
+msgid "Onion Services"
+msgstr "Onion Hizmetleri"
+
+#: templates/press.html:40
+msgid "Press Releases"
+msgstr "Basın Bültenleri"
+
+#: templates/press.html:54
+msgid "Coverage"
+msgstr "Kapsama"
+
+#: templates/press.html:61
+msgid "Date"
+msgstr "Tarih"
+
+#: templates/press.html:62
+msgid "Publication"
+msgstr "Yayın"
+
+#: templates/press.html:63
+msgid "Topic"
+msgstr "Konu"
+
+#: templates/reports.html:2
+msgid "Founding Documents"
+msgstr "Temel Belgeler"
+
+#: templates/reports.html:16
+msgid "Reports"
+msgstr "Raporlar"
+
+#: templates/reports.html:22
+msgid "Year"
+msgstr "Yıl"
+
+#: templates/reports.html:23
+msgid "Type"
+msgstr "Tür"
+
+#: templates/reports.html:24
+msgid "Title"
+msgstr "Başlık"
+
+#: templates/sidenav.html:4 templates/sidenav.html:35
+msgid "Topics"
+msgstr "Konular"
+
+#: templates/sponsors.html:2
+msgid ""
+"Thank you to all the people and groups who have made Tor possible so far, "
+"and thank you especially to the individual volunteers who have made non-"
+"financial contributions: coding, testing, documenting, translating, "
+"educating, researching, and running the relays that make up the Tor network."
+msgstr ""
+"Şimdiye kadar Tor projesinin var olmasında emeği geçen tüm kişi ve gruplara "
+"teşekkür ederiz. Özellikle kodlama, deneme, belgeleme, çeviri, eğitim, "
+"araştırma ve Tor ağını oluşturan aktarıcıları çalıştırma gibi maddi olmayan "
+"katkılarda bulunan bireysel gönüllülere minnettarız."
+
+#: templates/sponsors.html:5
+msgid "Active Sponsors"
+msgstr "Güncel Destekçiler"
+
+#: templates/sponsors.html:17
+msgid "Past Sponsors"
+msgstr "Daha Önceki Destekçiler"
+
+#: templates/sponsors.html:35
+msgid ""
+"This sponsors page is based upon un-audited and un-reviewed financial and "
+"in-kind donations, contract, and other data."
+msgstr ""
+"Bu destekçiler sayfasındaki bilgiler, denetlenmemiş ve incelenmemiş finansal"
+" ve ayni bağışlara, sözleşmelere ve diğer verilere dayanmaktadır."
+
+#: templates/sponsors.html:36
+msgid ""
+"Further details about our audited and reviewed funding can be found with our"
+" Financial Reports."
+msgstr ""
+"Denetlenmiş ve incelenmiş bağışlarımız hakkında ayrıntılı bilgi almak için "
+"Finansal Raporlarımıza bakabilirsiniz."
+
+#: templates/thank-you.html:6
+msgid "Want to join our community? Getting involved with Tor is easy."
+msgstr ""
+"Topluluğumuza katılmak ister misiniz? Tor projesine katılmak çok kolaydır."
+
+#: templates/thank-you.html:13
+msgid ""
+"Sign up for Tor News and get updates and opportunities from across the "
+"organization and community."
+msgstr ""
+"Tor News duyurularına kayıt olarak kuruluş ile topluluk hakkındaki güncel "
+"bilgileri alabilirsiniz."
+
+#: templates/thank-you.html:17
+msgid "Run a relay to make the network faster and more decentralized."
+msgstr "Dah ahızlı ve dağıtılmış bir ağ için bir aktarıcı işletebilirsiniz."
+
+#: templates/thank-you.html:21
+msgid "Use your skills to volunteer."
+msgstr "Becerilerinizi kullanarak gönüllü katkıda bulunabilirsiniz."
+
+#: templates/macros/downloads.html:68
+msgid "Tor Browser manual"
+msgstr "Tor Browser Rehberi"
+
+#: templates/macros/jobs.html:11
+msgid "Read more."
+msgstr "Ayrıntılı bilgi alın."
+
+#: templates/macros/question.html:12
+msgid "Contributors to this page:"
+msgstr "Bu sayfaya katkıda bulunanlar:"
+
+#: templates/macros/question.html:14
+msgid "Edit this page"
+msgstr "Bu sayfayı düzenleyin"
+
+#: templates/macros/question.html:15
+msgid "Suggest Feedback"
+msgstr "Öneride Bulunun"
+
+#: templates/macros/question.html:16
+msgid "Permalink"
+msgstr "Kalıcı bağlantı"
+
+#: templates/macros/reports.html:5 templates/macros/reports.html:19
+msgid "View PDF"
+msgstr "PDF Belgesi"
1
0

[translation/tpo-web] https://gitweb.torproject.org/translation.git/commit/?h=tpo-web
by translation@torproject.org 23 Sep '19
by translation@torproject.org 23 Sep '19
23 Sep '19
commit 79042f975fb09bd92cbf85216179be77ee24248b
Author: Translation commit bot <translation(a)torproject.org>
Date: Mon Sep 23 04:52:39 2019 +0000
https://gitweb.torproject.org/translation.git/commit/?h=tpo-web
---
contents+tr.po | 21 +++++++++++++--------
1 file changed, 13 insertions(+), 8 deletions(-)
diff --git a/contents+tr.po b/contents+tr.po
index c98c39606..c282c67f9 100644
--- a/contents+tr.po
+++ b/contents+tr.po
@@ -1,8 +1,8 @@
# Translators:
# erinm, 2019
# T. E. Kalayci <tekrei(a)gmail.com>, 2019
-# Kaya Zeren <kayazeren(a)gmail.com>, 2019
# Emma Peel, 2019
+# Kaya Zeren <kayazeren(a)gmail.com>, 2019
#
msgid ""
msgstr ""
@@ -10,7 +10,7 @@ msgstr ""
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-17 15:46+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Emma Peel, 2019\n"
+"Last-Translator: Kaya Zeren <kayazeren(a)gmail.com>, 2019\n"
"Language-Team: Turkish (https://www.transifex.com/otf/teams/1519/tr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -206,6 +206,10 @@ msgid ""
"bugs](https://support.torproject.org/misc/bug-or-feedback/), and are not "
"putting yourself at risk."
msgstr ""
+"Lütfen alfa sürümlerini yalnız bazı şeylerin düzgün çalışmamasına "
+"hazırsanız, hataları bulmaya ve "
+"[bildirmeye](https://support.torproject.org/misc/bug-or-feedback/) yardım "
+"etmek istiyorsanız ve kendinizi riske atmayacaksanız indirin."
#: https//www.torproject.org/download/languages/
#: (content/download/languages/contents+en.lrpage.title)
@@ -749,7 +753,7 @@ msgstr ""
#: https//www.torproject.org/about/trademark/trademark-faq/
#: (content/about/trademark/trademark-faq/contents+en.lrtopic.title)
msgid "Tor Trademark Frequently Asked Questions"
-msgstr ""
+msgstr "Tor Markası Hakkında Sık Sorulan Sorular"
#: lego/templates/footer.html:9 lego/templates/footer.html:18
#: lego/templates/navbar.html:73 templates/footer.html:9
@@ -829,7 +833,7 @@ msgstr ""
#: templates/contact.html:11
msgid "Get in touch with other translators"
-msgstr ""
+msgstr "Diğer çevirmenler ile tanışın"
#: templates/contact.html:12
msgid "Watch or join publicly logged team meetings."
@@ -841,6 +845,7 @@ msgstr ""
msgid ""
"Discuss organization and community related topics: meetups and outreach."
msgstr ""
+"Kuruluş ve topluluk ile ilgili konularda konuşun: Buluşma ve etkinlikler."
#: templates/contact.html:14
msgid "Discuss running a Tor relay."
@@ -852,11 +857,11 @@ msgstr "Tor güney küresel topluluğu ile konuşabilirsiniz."
#: templates/contact.html:16
msgid "Talk with us about improvements on our websites."
-msgstr ""
+msgstr "Bizimle web sitelerimizde yapabileceklerimiz hakkında konuşun."
#: templates/contact.html:17
msgid "Discuss UX related ideas."
-msgstr ""
+msgstr "Kullanıcı arayüzü ile ilgili konuları tartışın."
#: templates/contact.html:23
msgid "Find us on Social Media"
@@ -970,7 +975,7 @@ msgstr "Google Play Uygulamasına Gidin"
#: templates/download-android.html:26
msgid "Go to F-Droid"
-msgstr ""
+msgstr "F-Droid sitesine git"
#: templates/download-android.html:36
msgid "Are you an iOS user? We encourage you to try Onion Browser."
@@ -1096,7 +1101,7 @@ msgstr "Başka bir dil ya da platform için indirmelere bakın"
#: templates/hero-download.html:46
msgid "Download the latest alpha build"
-msgstr ""
+msgstr "Son alfa sürümünü indir"
#: templates/hero-download.html:50
msgid "Read the latest release announcements"
1
0

[translation/donatepages-messagespot_completed] https://gitweb.torproject.org/translation.git/commit/?h=donatepages-messagespot_completed
by translation@torproject.org 23 Sep '19
by translation@torproject.org 23 Sep '19
23 Sep '19
commit e1654bb3f10a324219c992fbd55984970bc10181
Author: Translation commit bot <translation(a)torproject.org>
Date: Mon Sep 23 04:45:49 2019 +0000
https://gitweb.torproject.org/translation.git/commit/?h=donatepages-message…
---
locale/tr/LC_MESSAGES/messages.po | 1185 +++++++++++++++++++++++++++----------
1 file changed, 869 insertions(+), 316 deletions(-)
diff --git a/locale/tr/LC_MESSAGES/messages.po b/locale/tr/LC_MESSAGES/messages.po
index c9d76205c..0d1771236 100644
--- a/locale/tr/LC_MESSAGES/messages.po
+++ b/locale/tr/LC_MESSAGES/messages.po
@@ -4,13 +4,13 @@
# escher <escherichia2(a)msn.com>, 2018
# Hakan Y <hakan_yalniz(a)live.com>, 2018
# psiphon3 <psiphon3(a)gmail.com>, 2018
-# Alperen Kitapçı <alperenmirac(a)gmail.com>, 2019
# Cenk Yıldızlı <goncagul(a)national.shitposting.agency>, 2019
# Lale Fatoş Tunçman <latuna63(a)gmail.com>, 2019
# Taha Karadoğan <tahakaradogan(a)gmail.com>, 2019
# T. E. Kalayci <tekrei(a)gmail.com>, 2019
# erinm, 2019
# Arda Büyükkaya <ardabuyukkaya(a)protonmail.com>, 2019
+# Alperen Kitapçı <alperenmirac(a)gmail.com>, 2019
# Kaya Zeren <kayazeren(a)gmail.com>, 2019
#
msgid ""
@@ -21,12 +21,20 @@ msgstr ""
"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/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:68
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:91
+#: 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
msgid "Tor: Strength in Numbers"
msgstr "Tor: Birlikten Kuvvet Doğar"
@@ -34,6 +42,12 @@ msgstr "Tor: Birlikten Kuvvet Doğar"
#: 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
msgid ""
"Stand up for the universal human rights to privacy and freedom and help keep"
" Tor robust and secure."
@@ -43,10 +57,206 @@ 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
msgid "Mozilla will match your gift and double your impact."
msgstr "Mozilla eşit miktarda bir bağış yapacak ve bağışınız katlanacak."
+#: tmp/cache_locale/fc/fcfb13bee445d3be78c8c44f5b32d0cb2cbb9a1865494b454e2ca509ee6160f4.php:34
+#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:53
+msgid "Subscribed | Tor"
+msgstr "Abone Olundu | Tor"
+
+#: tmp/cache_locale/fc/fcfb13bee445d3be78c8c44f5b32d0cb2cbb9a1865494b454e2ca509ee6160f4.php:44
+#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:64
+msgid "Subscription Confirmed!"
+msgstr "Abonelik Onaylandı!"
+
+#: 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 ""
+"E-posta listemize katıldığınız için teşekkür ederiz. Yakında bizden haber "
+"alacaksınız!"
+
+#: 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 ""
+"O zamana kadar <a target=\"_blank\" "
+"href=\"https://twitter.com/torproject\">@TorProject</a> Twitter hesabını "
+"takibe alabilirsiniz."
+
+#: 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 ""
+"Kâr amacı gütmeyen bir kuruluş olarak, her gün gezinmek, iletişim kurmak ve "
+"kendilerini ifade etmek isteyen milyonlarca kişi tarafından kullanılan bir "
+"teknolojinin oluşturulması ve sürdürülmesi için bize vereceğiniz desteğe "
+"güveniyoruz."
+
+#: tmp/cache_locale/fc/fcfb13bee445d3be78c8c44f5b32d0cb2cbb9a1865494b454e2ca509ee6160f4.php:65
+#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:86
+msgid "Every little bit helps"
+msgstr "Her küçük desteğin yardımı olur"
+
+#: tmp/cache_locale/fc/fcfb13bee445d3be78c8c44f5b32d0cb2cbb9a1865494b454e2ca509ee6160f4.php:67
+#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:88
+msgid "please donate today"
+msgstr "lütfen bugün bağış yapın"
+
+#: tmp/cache_locale/fc/fcfb13bee445d3be78c8c44f5b32d0cb2cbb9a1865494b454e2ca509ee6160f4.php:71
+#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:92
+msgid "Donate Now"
+msgstr "Bağış Yapın"
+
+#: 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 "Tor Projesine Hemen Destek Olabilirsiniz!"
+
+#: 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 "Tor Projesine bağış yaparak milyonlarca kişinin gizliliğini koruyun."
+
+#: 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 "Anonimlik birlikteliği sever."
+
+#: 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 "ozet_buyuk_gorsel"
+
+#: 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 "@torproject"
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:101
+#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:83
+msgid "Become a Defender of Privacy!"
+msgstr "Bir Kişisel Gizlilik Savunucusu Olun!"
+
+#: 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 ""
+"Tor Projesinin - Kişisel Gizlilik Savunucuları programına katılın. Bağış "
+"yaparak kişisel gizliliğin korunmasına katkıda bulunan kişileri her ay "
+"onurlandırıyoruz."
+
+#: 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 ""
+"Kişisel Gizlilik Savunucuları her ay küçük bir tutar bağışlayarak, kararlı "
+"ve güvenilir bir bağış kaynağı sağlar. Böylece sürekli değişen kişisel "
+"gizlilik ortamına uygun değişiklikleri hızlıca yapabiliriz. "
+"Minnettarlığımızın ifadesi olarak size özel hediyelerimizden göndereceğiz!"
+
+#: 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 ""
+"Tor Projesi, çevrimiçi ortamda kişilerin kimliğini ve gizliliğini koruyan "
+"araçlar sağlama misyonumuzu sürdürmek için Gizlilik Savunucularımızın "
+"desteğine güveniyor."
+
+#: 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 ""
+"Sizin de yardımınızla, Tor ağını herkesin erişebileceği hale getireceğiz!"
+
+#: 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 "Birlikte, evrensel kişisel gizlilik hakkını savunacağız."
+
+#: 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 ""
+"Lütfen bu kritik zamanda şimdi aylık bağış yaparak Tor Projesi'ne destek "
+"olun."
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:127
+#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:109
+msgid "Want to make a one time donation instead?"
+msgstr "Aylık bağış yerine bir kerelik bir bağış yapmak ister misiniz?"
+
+#: 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 ""
+"Bu sayfada PayPal ya da kredi kartı ile ödeme için\n"
+"JavaScript kullanılır. Ancak JavaScript devre dışı gibi görünüyor."
+
+#: 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 ""
+"JavaScript özelliğini etkinleştirmeden bağış yapmak istiyorsanız <a "
+"href=\"https://www.torproject.org/donate/donate-options.html.en\">diğer "
+"bağış yöntemleri</a> bölümüne bakabilirsiniz."
+
#: 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."
@@ -55,101 +265,293 @@ msgstr ""
"isteyebilirsiniz."
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:54
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:36
msgid "Fit"
msgstr "Kesim"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:58
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:40
msgid "Select Fit"
msgstr "Kesim Seçin"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:62
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:44
msgid "Slim"
msgstr "Dar"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:66
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:48
msgid "Classic"
msgstr "Klasik"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:74
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:56
msgid "European"
msgstr "Avrupa"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:84
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:66
msgid "Size"
msgstr "Beden"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:88
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:70
msgid "Select Size"
msgstr "Beden Seçin"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:92
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:74
msgid "S"
msgstr "S"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:96
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:78
msgid "M"
msgstr "M"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:100
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:82
msgid "L"
msgstr "L"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:104
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:86
msgid "XL"
msgstr "XL"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:108
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:90
msgid "XXL"
msgstr "XXL"
-#: tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:47
-#: tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:70
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:72
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:95
-msgid "Donate to the Tor Project and protect the privacy of millions."
-msgstr "Tor Projesine bağış yaparak milyonlarca kişinin gizliliğini koruyun."
+#: tmp/cache_locale/e1/e1e12763540d9524f8871157240d5a8fbf2ea77ace1c46527b3031db68943acc.php:34
+#: tmp/cache_locale/05/05c65ace52301a00198c48e1d823da2c14fbd489e7fb45efbca4e79e5709cbdb.php:53
+msgid "Processing Donation - Tor"
+msgstr "Bağışınız İşleniyor - Tor"
-#: tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:49
-#: tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:72
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:74
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:97
-msgid "Anonymity loves company."
-msgstr "Anonimlik birlikteliği sever."
+#: tmp/cache_locale/e1/e1e12763540d9524f8871157240d5a8fbf2ea77ace1c46527b3031db68943acc.php:44
+#: tmp/cache_locale/05/05c65ace52301a00198c48e1d823da2c14fbd489e7fb45efbca4e79e5709cbdb.php:64
+msgid "Processing Donation. Please Wait..."
+msgstr "Bağışınız işleniyor. Lütfen bekleyin..."
-#: tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:58
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:83
-msgid "summary_large_image"
-msgstr "ozet_buyuk_gorsel"
+#: 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 "Tor Size Teşekkür Ediyor"
-#: tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:62
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:87
-msgid "@torproject"
-msgstr "@torproject"
+#: 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 "Teşekkürler!"
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:54
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:54
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:54
-msgid "Support the Tor Project Today!"
-msgstr "Tor Projesine Hemen Destek Olabilirsiniz!"
+#: 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 ""
+"Tor Strength in Numbers (Birlikten Kuvvet Doğar) kampanyasına destek "
+"olduğunuz için teşekkür ederiz."
+
+#: 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 "Faturanız kısa süre içinde e-posta adresinize gönderilecek."
+
+#: 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 ""
+"Desteğiniz ve cömert Mozilla bağış katlama fonları sayesinde, mobil aygıtlar"
+" için daha güvenli ve gizliliği arttıracak bir tarayıcı geliştirmenin "
+"yanında üçüncü taraf geliştiricilerin uygulamalarını Tor ile "
+"bütünleştirmesini kolaylaştırmak gibi iddialı projelere girişebileceğiz. ."
+
+#: 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 ""
+"Çevrimiçi özgürlük ve kişisel gizlilik için verdiğiniz desteğe teşekkür "
+"ederiz."
+
+#: 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 ""
+"Yaptığınız kripto para birimi bağışı ile Tor Projesinin milyonlarca insana "
+"kişisel gizliliklerini koruyarak açık web erişimi sağlamasına yardımcı "
+"oldunuz."
+
+#: 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 ""
+"Bağışınız sayesinde Tor otoriter rejimlere ve kişisel gizliliğe saldıran "
+"kuruluşlara karşı daha güçlü olacak."
+
+#: 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 "Cüzdan adreslerimizi aşağıda bulabilirsiniz."
+
+#: 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 ""
+"Lütfen bağışınızı yaparken cüzdan adreslerini tam olarak doğru "
+"kopyaladığınızdan emin olun. Yanlış cüzdana gönderilen bağışları geri "
+"alamayız."
+
+#: 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 "TOR PROJESİNİ PAYLAŞIN"
+
+#: 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 "Destek olabilecek yetenekleriniz mi var?"
+
+#: 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 "Tor ağı gönüllülerin desteğiyle çalışır."
+
+#: 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 ""
+"Tor aktarıcıları işletecek, kod yazacak, topluluk oluşturacak ve iyi "
+"çalışmalarımızın yayılmasını sağlayacak kişilere ihtiyacımız var."
+
+#: 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 "Nasıl yardım edebileceğinizi öğrenin."
+
+#: 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 "Gönüllü Katkıda Bulunmak İstiyorum"
+
+#: 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 "Bilgileriniz"
+
+#: 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 "Ad"
+
+#: 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 "Soyad"
+
+#: tmp/cache_locale/ce/cec5a6fe643ad38144e0af02cadfaaf024540f1f46db44998f6c033630795bef.php:41
+#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:59
+msgid "Estimated Donation Date:"
+msgstr "Öngörülen Bağış Tarihi:"
+
+#: tmp/cache_locale/ce/cec5a6fe643ad38144e0af02cadfaaf024540f1f46db44998f6c033630795bef.php:46
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:188
+#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:64
+msgid "Email"
+msgstr "E-posta"
+
+#: 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"
+msgstr "Bir Para Birimi Seçin"
+
+#: tmp/cache_locale/ce/cec5a6fe643ad38144e0af02cadfaaf024540f1f46db44998f6c033630795bef.php:73
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:178
+#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:91
+msgid "Currency Amount"
+msgstr "Para Birimi Tutarı"
+
+#: tmp/cache_locale/ce/cec5a6fe643ad38144e0af02cadfaaf024540f1f46db44998f6c033630795bef.php:80
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:200
+#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:98
+msgid "Report Donation"
+msgstr "Bağış Bildirimi"
+
+#: tmp/cache_locale/ce/cec5a6fe643ad38144e0af02cadfaaf024540f1f46db44998f6c033630795bef.php:87
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:208
+#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:105
+msgid "Wallet Addresses"
+msgstr "Cüzdan Adresleri"
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:83
+#: tmp/cache_locale/70/70a3de9c7fb70a68cae132efaa24457b72f71189189cd4c8c492f3cd459b6483.php:61
msgid "Want to donate by credit card or PayPal?"
msgstr "Kredi kartı ya da PayPal ile bağış yapmak ister misiniz?"
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:92
-msgid ""
-"Thanks for your interest in donating cryptocurrency to the Tor Project."
-msgstr ""
-"Tor projesine kripto para birimi ile bağış yapmaya gösterdiğiniz ilgi için "
-"teşekkür ederiz."
+msgid "Donate using BTCPayServer"
+msgstr "BTCPayServer ile bağış yapın"
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:99
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:126
+msgid "Donate using wallet addresses"
+msgstr "Cüzdan adresi ile bağış yapın"
+
+#: 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 "Lütfen bu formu doldurup kripto paralarınızı ilgili cüzdana gönderin."
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:101
+#: 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 "
@@ -159,19 +561,22 @@ msgstr ""
"daha çabuk haberimiz olur, iletişim bilgilerinizi alabilir ve size "
"işleminizle ilgili bilgi verebiliriz."
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:107
+#: 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 ""
"Aşağıda kabul ettiğimiz kripto para birimlerini ve cüzdan adreslerimizi "
"bulabilirsiniz."
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:109
+#: 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 "Cüzdan adresleri formu doldurduktan sonra da yeniden görüntülenir."
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:111
+#: 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."
@@ -179,7 +584,8 @@ msgstr ""
"Lütfen bağışınızı yaparken cüzdan adreslerini doğru kopyaladığınızdan emin "
"olun. Yanlış cüzdana gönderilen bağışları geri alamayız."
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:117
+#: 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."
@@ -188,79 +594,41 @@ msgstr ""
"aşağıdaki listede bulunmuyorsa giving(a)torproject.org adresine "
"yazabilirsiniz."
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:132
-msgid "Copied"
-msgstr "Kopyalandı"
-
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:136
-msgid "Currency Amount must be a number."
-msgstr "Para birimi tutarı bir sayı olmalıdır."
-
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:140
-#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:69
-msgid "Choose a Currency"
-msgstr "Bir Para Birimi Seçin"
-
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:144
-#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:91
-msgid "Currency Amount"
-msgstr "Para Birimi Tutarı"
-
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:146
-msgid "Estimated Donation Date"
-msgstr "Öngörülen Bağış Tarihi"
-
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:150
-msgid "I'd like to make my donation anonymous."
-msgstr "Bağış yaptığımın bilinmesini istemiyorum. "
-
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:154
-#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:64
-msgid "Email"
-msgstr "E-posta"
-
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:158
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:342
-#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:47
-msgid "First Name"
-msgstr "Ad"
-
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:162
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:346
-#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:51
-msgid "Last Name"
-msgstr "Soyad"
-
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:166
-#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:98
-msgid "Report Donation"
-msgstr "Bağış Bildirimi"
+msgid "Copied"
+msgstr "Kopyalandı"
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:170
+msgid "Currency Amount must be a number."
+msgstr "Para birimi tutarı bir sayı olmalıdır."
+
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:180
+msgid "Estimated Donation Date"
+msgstr "Öngörülen Bağış Tarihi"
+
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:184
+msgid "I'd like to make my donation anonymous."
+msgstr "Bağış yaptığımın bilinmesini istemiyorum. "
+
+#: 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 "Bana Tor Projesi hakkında e-posta güncellemeleri gönderilsin!"
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:174
-#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:105
-msgid "Wallet Addresses"
-msgstr "Cüzdan Adresleri"
-
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:178
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:333
-#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:42
-msgid "Your Info"
-msgstr "Bilgileriniz"
-
#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:53
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:34
msgid "Tor Privacy Policy"
msgstr "Tor Gizlilik İlkesi"
#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:64
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:44
msgid "Donor privacy policy"
msgstr "Bağışçı gizlilik ilkesi"
#: 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 ""
@@ -268,6 +636,7 @@ msgstr ""
" kabul eder."
#: 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 "
@@ -277,6 +646,7 @@ msgstr ""
"bilgilerinizi içermeyen bir yöntem ile bağış yapmaktır."
#: 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 "
@@ -287,6 +657,7 @@ msgstr ""
"tarafından toplanıp saklanabilir."
#: 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."
@@ -296,6 +667,7 @@ msgstr ""
"hizmet sağlayıcılar bilgilerinizi toplayabilir ve kullanabilir."
#: 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"
@@ -307,6 +679,7 @@ msgstr ""
" hakkında bilgi edinmenizi öneririz."
#: 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 "
@@ -317,6 +690,7 @@ msgstr ""
"ve/veya posta adresinizi ve vereceğiniz diğer bilgileri öğrenebiliriz."
#: 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."
@@ -324,6 +698,7 @@ msgstr ""
"Ayrıca bağışınızın tarih ve saati gibi anlık bilgileri de öğrenebiliriz."
#: 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."
@@ -332,6 +707,7 @@ msgstr ""
"bilgilerinizi korumaya özen gösteririz."
#: 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."
@@ -340,6 +716,7 @@ msgstr ""
"bir kez e-posta göndereceğiz."
#: 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 ""
@@ -347,6 +724,7 @@ msgstr ""
"gönderebiliriz."
#: 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\" "
@@ -359,6 +737,7 @@ msgstr ""
"maddesinde</a> vergi dairesine bildirmemiz gerekiyor."
#: 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."
@@ -367,17 +746,20 @@ msgstr ""
"gizleyeceğiz."
#: 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 "İzniniz olmadan asla sizi bağışçımız olarak ilan etmeyeceğiz."
#: 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 ""
"Sizinle ilgili herhangi bir bilgiyi yayınlamayacağız, satmayacağız, takas "
"etmeyeceğiz ya da kiralamayacağız."
#: 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."
@@ -386,6 +768,7 @@ msgstr ""
"bilgilerinizi tutacağız."
#: 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 "
@@ -395,6 +778,7 @@ msgstr ""
"gibi işleri gereği erişmesi gereken kişiler dışında kimse bakmayacak. "
#: 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>."
@@ -403,119 +787,139 @@ msgstr ""
"uygulamasını desteklediğiniz için teşekkürler</span>."
#: 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 "Bağış Sayfasına Geri Dön"
#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:40
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:22
msgid "See if your employer offers employee gift matching"
msgstr ""
"Kuruluşunuzun çalışanlarına bağış katlama kampanyası yapıp yapmadığını "
"öğrenin"
#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:70
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:52
msgid "Company"
msgstr "Kuruluş"
#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:78
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:60
msgid "Matching Conditions"
msgstr "Bağış Katlama Kampanyası Koşulları"
#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:86
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:68
msgid "Contact Information"
msgstr "İletişim Bilgileri"
#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:94
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:76
msgid "Additional Notes"
msgstr "Ek Notlar"
#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:102
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:84
msgid "Procedure"
msgstr "Süreç"
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:84
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:156
-msgid ""
-"This page requires Javascript to do PayPal or credit card\n"
-" donations, but it appears you have Javascript disabled."
-msgstr ""
-"Bu sayfada PayPal ya da kredi kartı ile ödeme için\n"
-"JavaScript kullanılır. Ancak JavaScript devre dışı gibi görünüyor."
-
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:88
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:160
-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 ""
-"JavaScript özelliğini etkinleştirmeden bağış yapmak istiyorsanız <a "
-"href=\"https://www.torproject.org/donate/donate-options.html.en\">diğer "
-"bağış yöntemleri</a> bölümüne bakabilirsiniz."
-
#: 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 "Bağış Sayısı"
#: 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 "Toplam Bağış Tutarı"
#: 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 "Mozilla Bağış Katlama Kampanyası ile Toplam Tutar"
#: 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 "bağış yapın"
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:154
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:172
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:132
msgid "once"
msgstr "bir kez"
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:160
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:178
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:138
msgid "monthly"
msgstr "aylık"
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:167
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:145
msgid "Want to donate cryptocurrency?"
msgstr "Kripto para ile bağış yapmak ister misiniz?"
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:172
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:150
msgid "Want to donate stock or via postal mail?"
msgstr "Hisse senedi ya da normal posta ile bağış yapmak ister misiniz?"
#: 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 "tutar geçersiz"
#: 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 "En az bağış tutarı $2"
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:196
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:209
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:174
msgid "$ other"
msgstr "$ diğer"
#: 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 "Minnettarlığımızın ifadesi olarak hediyenizi seçin."
#: 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 "Teşekkürler, bir hediye istemiyorum."
#: 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 "Bağışımın tamamının Tor Projesi çalışmasına aktarılmasını yeğlerim."
#: 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 "etiket paketi"
#: 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."
@@ -524,20 +928,28 @@ msgstr ""
"beğenilen logo etiketleri paketi."
#: 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 "tişört"
#: 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 ""
"Sınırlı sayıda üretilmiş Tor: Strength in Numbers (Birlikten Kuvvet Doğar) "
"yazılı tişört."
#: 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 "tişört paketi"
#: 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 "
@@ -550,208 +962,267 @@ msgstr ""
"birisi ile."
#: 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 ""
"Tor at the Heart of Internet Freedom (Tor İnternet Özgürlüğünün Kalbinde)"
#: 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 "Powering the Digital Resistance (Sayısal Direnişe Katıl)"
#: 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 "Open Observatory of Network Interference (Açık Ağ İzleme Gözlemevi)"
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:294
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:313
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:272
msgid "sweatshirt"
msgstr "svetşört"
#: 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 ""
"Cömert bağışınıza karşılık Tor tarafından kaliteli fermuarlı bir kapüşonlu "
"svetşört hediyesi alabilirsiniz."
#: 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 "nasıl <span class=\"green\">BAĞIŞ YAPMAK</span> istersiniz?"
#: 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 "Kredi Kartı"
#: 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 ""
"Bitcoin, hisse senedi ya da normal posta ile bağış yapmak ister misiniz?"
#: 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 " * ile işaretli alanların doldurulması zorunludur"
#: 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 "Adres"
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:356
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:375
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:334
msgid "Apt."
msgstr "Ap."
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:366
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:385
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:344
msgid "City"
msgstr "İlçe"
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:370
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:389
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:348
msgid "State"
msgstr "İl"
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:375
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:394
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:353
msgid "Zip"
msgstr "Posta Kodu"
#: 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 "E-posta adresinizi yazın"
#: 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 "Alındınızı e-posta ile göndereceğiz"
#: 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 "Kart Numarası"
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:406
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:425
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:384
msgid "MM"
msgstr "AA"
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:410
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:429
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:388
msgid "YY"
msgstr "YY"
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:414
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:433
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:392
msgid "CVC"
msgstr "CVC"
#: 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
msgid "Choose your size and fit."
msgstr "Beden ve kesimi seçin."
#: 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 "Tişört:"
#: 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 "Yorumlar"
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:457
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:476
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:435
msgid "Donating:"
msgstr "Yapılan Bağış:"
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:469
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:483
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:443
msgid "Donate"
msgstr "Bağış Yapın"
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:479
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:453
msgid "Gift Selected"
msgstr "Hediye Seçildi"
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:483
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:457
msgid "No Gift Selected"
msgstr "Hediye Seçilmedi"
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:487
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:461
msgid "Sticker Pack"
msgstr "Çıkartma Paketi"
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:495
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:497
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:469
msgid "T-Shirt"
msgstr "Tişört"
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:499
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:501
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:473
msgid "Choose your size and fit for each shirt."
msgstr "Her bir tişörtün beden ve kesimini seçin."
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:503
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:477
msgid "T-Shirt Pack"
msgstr "Tişört Paketi"
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:511
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:513
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:485
msgid "Choose your size."
msgstr "Bedeni seçin."
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:515
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:517
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:489
msgid "Sweatshirt"
msgstr "Svetşört"
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:519
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:521
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:493
msgid "A required field is missing from the form."
msgstr "Doldurulması zorunlu bir form alanı boş bırakılmış."
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:521
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:523
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:495
msgid "Please reload the page and try again."
msgstr "Lütfen sayfayı yenileyip yeniden deneyin."
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:525
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:527
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:499
msgid "There was a problem submitting your request to the server:<br>"
msgstr "İsteğiniz sunucuya iletilirken bir sorun çıktı:<br>"
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:529
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:531
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:503
msgid "validation failed"
msgstr "doğrulanamadı"
#. 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
msgid "__field_name__ must be filled out."
msgstr "__field_name__ alanı boş bırakılamaz."
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:540
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:542
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:514
msgid "This field is required"
msgstr "Bu alanın doldurulması zorunludur"
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:544
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:546
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:518
msgid "Invalid email address."
msgstr "E-posta adresi geçersiz"
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:548
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:550
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:522
msgid "per month"
msgstr "aylık"
-#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:59
-msgid "Estimated Donation Date:"
-msgstr "Öngörülen Bağış Tarihi:"
-
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:123
-msgid "Become a Defender of Privacy!"
-msgstr "Bir Kişisel Gizlilik Savunucusu Olun!"
-
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:127
-msgid ""
-"Join the Tor Project - Defenders of Privacy program - a monthly giving "
-"circle designed to honor donors that make privacy a priority."
-msgstr ""
-"Tor Projesinin - Kişisel Gizlilik Savunucuları programına katılın. Bağış "
-"yaparak kişisel gizliliğin korunmasına katkıda bulunan kişileri her ay "
-"onurlandırıyoruz."
-
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:131
-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 ""
-"Kişisel Gizlilik Savunucuları her ay küçük bir tutar bağışlayarak, kararlı "
-"ve güvenilir bir bağış kaynağı sağlar. Böylece sürekli değişen kişisel "
-"gizlilik ortamına uygun değişiklikleri hızlıca yapabiliriz. "
-"Minnettarlığımızın ifadesi olarak size özel hediyelerimizden göndereceğiz!"
-
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:135
+#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:95
msgid ""
"The Tor Project counts on the support of our Defenders of Privacy to "
"continue our mission to provide tools that protect people's privacy and "
@@ -761,28 +1232,33 @@ msgstr ""
"araçlar sağlama misyonumuzu sürdürmek için Gizlilik Savunucularımızın "
"desteğine güveniyor."
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:137
-msgid "With your help, we will make the Tor network accessible to everyone!"
-msgstr ""
-"Sizin de yardımınızla, Tor ağını herkesin erişebileceği hale getireceğiz!"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:259
+msgid "$15"
+msgstr "$15"
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:141
-msgid "Together, we will stand up for the universal right to privacy."
-msgstr "Birlikte, evrensel kişisel gizlilik hakkını savunacağız."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:261
+msgid "OFF"
+msgstr "KAPALI"
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:143
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:505
msgid ""
-"Please make your monthly donation now and stand with the Tor Project at this"
-" critical time."
+"Tor at the Heart of Internet, Powering Digital Resistance or Open "
+"Observvatory of Network Interference (OONI) T-Shirt"
msgstr ""
-"Lütfen bu kritik zamanda şimdi aylık bağış yaparak Tor Projesi'ne destek "
-"olun."
+"Tor at the Heart of Internet (Tor İnternet Özgürlüğünün Kalbi), Powering "
+"Digital Resistance (Sayısal Direnişe Katıl) ya da Open Observvatory of "
+"Network Interference (OONI) (Açık Ağ İzleme Gözlemevi) tişörtü"
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:149
-msgid "Want to make a one time donation instead?"
-msgstr "Aylık bağış yerine bir kerelik bir bağış yapmak ister misiniz?"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:509
+msgid "Strength in Numbers T-Shirt"
+msgstr "Strength in Numbers (Birlikten Kuvvet Doğar) tişörtü"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:564
+msgid "One moment while we shovel coal into our servers."
+msgstr "Biz sunucularımıza bir kürek kömür atarken biraz bekleyin."
#: 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"
@@ -796,26 +1272,32 @@ msgstr ""
"amacıyla çalışan kar amacı gütmeyen bir kuruluştur."
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:49
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:31
msgid "Subscribe to Our Newsletter"
msgstr "Bültenimize Abone Olun"
#: 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 "Tor Projesi hakkında aylık güncelleme ve fırsatları alın."
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:57
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:39
msgid "Sign Up"
msgstr "Kayıt Olun"
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:65
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:47
msgid "Donate FAQs"
msgstr "Bağış Hakkında Sorular"
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:69
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:51
msgid "Privacy Policy"
msgstr "Gizlilik İlkesi"
#: 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\" "
@@ -826,14 +1308,17 @@ msgstr ""
"tasarlanıp geliştirilmiştir."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:53
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:34
msgid "Tor Donor FAQ"
msgstr "Tor Bağışçısı Soruları"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:64
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:44
msgid "Questions?"
msgstr "Sorularınız mı var?"
#: 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 "
@@ -847,10 +1332,12 @@ msgstr ""
"gönderebilirsiniz."
#: 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 "Tor Projesi nedir ve ne yapar?"
#: 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, "
@@ -863,6 +1350,7 @@ msgstr ""
" ve herkes tarafından erişebilmesini sağlamaktır."
#: 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 "
@@ -873,6 +1361,7 @@ msgstr ""
" kalarak dolaşabilmesini sağlar."
#: 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."
@@ -881,14 +1370,17 @@ msgstr ""
"gütmeyen Boston, Massachusetts merkezli bir kuruluştur."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:97
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:76
msgid "It was founded in 2006."
msgstr "2006 yılında kurulmuştur."
#: 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 "Tor Projesinin çalışanları kimlerdir ve ne yaparlar?"
#: 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, "
@@ -902,12 +1394,14 @@ msgstr ""
"yapılmıyor."
#: 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 ""
"Tor Projesinin ücretli çalışan sayısı çok azdır: toplam 47 kişi civarında."
#: 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\" "
@@ -920,10 +1414,12 @@ msgstr ""
"class=\"links\">Çekirdek Tor Ekibi</span></a> bölümüne bakabilirsiniz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:116
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:95
msgid "Who uses Tor?"
msgstr "Kimler Tor kullanır?"
#: 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."
@@ -932,6 +1428,7 @@ msgstr ""
"isteyen ya da İnternet kullanımına engeller konulmuş sıradan insanlardır."
#: 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."
@@ -941,14 +1438,17 @@ msgstr ""
"ile araştırma kuruluşlarıdır."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:128
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:107
msgid "Can anyone use Tor?"
msgstr "Herkes Tor kullanabilir mi?"
#: 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 "Kesinlikle! Tor ücretsizdir ve isteyen herkes kullanabilir."
#: 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 "
@@ -959,6 +1459,7 @@ msgstr ""
"class=\"links\">Tor Browser uygulamasını indirmeniz </span></a> gerekir."
#: 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\" "
@@ -977,14 +1478,17 @@ msgstr ""
" için indirme işleminin nasıl yapılacağını anlattık."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:142
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:121
msgid "What kinds of people support Tor?"
msgstr "Tor kimler tarafından desteklenir?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:146
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:125
msgid "All kinds of people."
msgstr "Her çeşit insan tarafından."
#: 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 "
@@ -1002,6 +1506,7 @@ msgstr ""
"çeşitli kuruluşlardan da destek aldık."
#: 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."
@@ -1011,6 +1516,7 @@ msgstr ""
"işletebilirler."
#: 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 "
@@ -1021,10 +1527,12 @@ msgstr ""
"kişiyi tanımlamak da o kadar zor olur."
#: 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 "Tor kişilerin anonim kalmasını nasıl sağlar?"
#: 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 "
@@ -1034,6 +1542,7 @@ msgstr ""
"dağılmış gönüllüler tarafından işletilen Tor ağında dolaştırır."
#: 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."
@@ -1042,6 +1551,7 @@ msgstr ""
"sitelerinin görülmesini önler."
#: 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 ""
@@ -1049,6 +1559,7 @@ msgstr ""
"öğrenmesini önler."
#: 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\" "
@@ -1060,6 +1571,7 @@ msgstr ""
"bakabilirsiniz."
#: 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."
@@ -1068,6 +1580,7 @@ msgstr ""
"aktarıcının nasıl işletileceği hakkında ayrıntılı bilgi almak istiyorum."
#: 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 "
@@ -1078,10 +1591,12 @@ msgstr ""
"bölümünde tüm bu soruların ve fazlasının yanıtlarını bulabilirsiniz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:185
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:164
msgid "Does the Tor software work?"
msgstr "Tor gerçekten işe yarıyor mu?"
#: 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"
@@ -1092,6 +1607,7 @@ msgstr ""
"tarayıcı\" kipi gibi diğer seçeneklerden daha başarılı olduğunu biliyoruz."
#: 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."
@@ -1100,6 +1616,7 @@ msgstr ""
"çalışıldığını ancak başarılı olunamadığını biliyoruz."
#: 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\" "
@@ -1116,10 +1633,12 @@ msgstr ""
"anonimliğinizi korumak için en iyi aracın Tor olduğunu\" yazdı."
#: 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 "Tor yasal mı? Kullandığım için başım derde girer mi?"
#: 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."
@@ -1128,6 +1647,7 @@ msgstr ""
"yasaldır."
#: 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."
@@ -1136,6 +1656,7 @@ msgstr ""
"yaptığınız anlamına gelmez."
#: 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 "
@@ -1147,6 +1668,7 @@ msgstr ""
"değiştirmeye çalışıyoruz) kaynaklanır."
#: 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."
@@ -1155,6 +1677,7 @@ msgstr ""
"yaşamamalısınız."
#: 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\" "
@@ -1166,6 +1689,7 @@ msgstr ""
"bakabilirsiniz."
#: 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?"
@@ -1174,6 +1698,7 @@ msgstr ""
"ulaşabilirim?"
#: 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 "
@@ -1184,10 +1709,12 @@ msgstr ""
"ve Form 990</a> bilgilerine bakabilirsiniz."
#: 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 "Tor Projesi gelirini nereden sağlıyor?"
#: 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 "
@@ -1198,6 +1725,7 @@ msgstr ""
"gibi 20.000 üzerinde kişiden gelen bağışlarla destekleniyor."
#: 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>"
@@ -1209,6 +1737,7 @@ msgstr ""
" sayfasına bakabilirsiniz."
#: 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."
@@ -1217,6 +1746,7 @@ msgstr ""
"bağlı kalmasını istemeyiz."
#: 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 "
@@ -1228,6 +1758,7 @@ msgstr ""
"sağlıyor."
#: 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"
@@ -1238,16 +1769,19 @@ msgstr ""
" desteklemenizi istiyoruz. "
#: 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 ""
"Tor Projesi yıllık ne kadar para harcıyor ve bu parayı ne için kullanıyor?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:249
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:228
msgid "The Tor Project spends about $4 million annually."
msgstr "Tor Projesi yıllık 4 milyon $ civarında para harcıyor. "
#: 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 "
@@ -1257,6 +1791,7 @@ msgstr ""
"mühendislerine gidiyor."
#: 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."
@@ -1265,6 +1800,7 @@ msgstr ""
"harcanıyor."
#: 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."
@@ -1273,10 +1809,12 @@ msgstr ""
"Tor için önemli çünkü Tor dünya çapında bir topluluğa sahip."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:261
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:240
msgid "Is my donation tax-deductible?"
msgstr "Bağışımı vergiden düşebilir miyim?"
#: 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."
@@ -1285,11 +1823,13 @@ msgstr ""
"bağışların tamamını yasal olarak kadar vergiden düşebilirsiniz."
#: 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 ""
"Raporlama için gerek duyabileceğiniz bilgileri aşağıda bulabilirsiniz:"
#: 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"
@@ -1308,14 +1848,17 @@ msgstr ""
" <b>İlgili kişi:</b> Isabela Bagueros, İdari Müdür <br>"
#: 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 "Birleşik Devletler'de olmasam da bağış yapabilir miyim?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:289
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:268
msgid "Yes, definitely."
msgstr "Evet, kesinlikle."
#: 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."
@@ -1324,6 +1867,7 @@ msgstr ""
"kazancınızdan ödemiyorsanız) ancak desteğinize minnettar oluruz."
#: 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?"
@@ -1333,10 +1877,13 @@ 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 "Hayır, maalesef."
#: 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 "
@@ -1346,6 +1893,7 @@ msgstr ""
" dairesi bu parayı ayrıca takip etmemizi ve raporlamamızı ister."
#: 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."
@@ -1354,6 +1902,7 @@ msgstr ""
"bizim için uygun bir seçenek olmadığını düşünüyoruz."
#: 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."
@@ -1362,6 +1911,7 @@ msgstr ""
"isteriz."
#: 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."
@@ -1370,16 +1920,19 @@ msgstr ""
"iletmekten çekinmeyin. "
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:315
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:294
msgid "Can I donate while using Tor Browser?"
msgstr "Tor Browser kullanırken bağış yapabilir miyim?"
#: 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 ""
"Evet! Yaptığımız denemelerde, Tor Browser üzerinden bağış yapılabildiğini "
"gördük."
#: 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>."
@@ -1388,6 +1941,7 @@ msgstr ""
"adresine e-posta ile bildirin."
#: 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."
@@ -1396,6 +1950,7 @@ msgstr ""
"sorunsuz bağış yapanlar oldu."
#: 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."
@@ -1404,14 +1959,17 @@ msgstr ""
"PayPal hesabı geçici olarak donduruldu."
#: 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 "PayPal üzerinden bağış yapmakta sorun yaşarsanız, lütfen bize iletin."
#: 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 "Banka ya da kredi kartı ile bağış yapabilir miyim?"
#: 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 "
@@ -1422,10 +1980,12 @@ msgstr ""
"href=\"https://donate.torproject.org\">bağış sayfamıza</a> bakın."
#: 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 "Neden adresimi ve benzer bilgileri istiyorsunuz?"
#: 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 "
@@ -1435,6 +1995,7 @@ msgstr ""
"sizden ekstre adresiniz gibi bazı bilgiler istenir."
#: 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."
@@ -1444,6 +2005,7 @@ msgstr ""
"gereklidir."
#: 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."
@@ -1451,10 +2013,12 @@ msgstr ""
"Sizden ödeme aracısının gerek duyduğundan başka bir bilgi istemiyoruz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:359
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:338
msgid "Why is there a minimum donation?"
msgstr "Neden bir alt bağış sınırı var?"
#: 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."
@@ -1464,6 +2028,7 @@ msgstr ""
"yapar."
#: 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."
@@ -1472,10 +2037,12 @@ msgstr ""
" 1 dolarlık bir bağış tutarının bu kişileri caydırmaya yeteceğini düşündük. "
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:371
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:350
msgid "Is there a maximum donation?"
msgstr "Bağış için bir üst sınır var mı?"
#: 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 "
@@ -1488,10 +2055,12 @@ msgstr ""
"istediğimiz şeyleri yapabilmemiz demektir."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:381
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:360
msgid "Can I donate via bitcoin?"
msgstr "Bitcoin ile bağış yapabilir miyim?"
#: 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 "
@@ -1502,6 +2071,7 @@ msgstr ""
"üzerinden bitcoin</a> kabul ediyoruz."
#: 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?"
@@ -1509,6 +2079,7 @@ msgstr ""
"Kimliğimi belirtmeden bağış yapmak istersem, bunun için en iyi yol nedir?"
#: 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-"
@@ -1519,6 +2090,7 @@ msgstr ""
" havalesi ile bağış yapabilirsiniz.</a>"
#: 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."
@@ -1527,10 +2099,12 @@ msgstr ""
"yapabilirsiniz."
#: 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 "Hediye kartları satın alıp bize gönderebilirsiniz."
#: 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 :)"
@@ -1539,6 +2113,7 @@ msgstr ""
"kimliğinizi gizleyerek bağış yapabilirsiniz :)"
#: 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?"
@@ -1547,6 +2122,7 @@ msgstr ""
"hükümeti ya da başka bir otoriteye veriyor mu?"
#: 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"
@@ -1558,6 +2134,7 @@ msgstr ""
"bildirmemiz gerekiyor."
#: 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 "
@@ -1568,6 +2145,7 @@ msgstr ""
"ve biz de öyle yaparız."
#: 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."
@@ -1576,6 +2154,7 @@ msgstr ""
"ve biz de bildirmiyoruz."
#: 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.)"
@@ -1584,6 +2163,7 @@ msgstr ""
"bağışlayabilirsiniz.)"
#: 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."
@@ -1592,14 +2172,17 @@ msgstr ""
"herkese açık olarak duyurmayacağınızı belirtmişsiniz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:426
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:405
msgid "What does that mean?"
msgstr "Bu ne anlama geliyor?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:430
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:409
msgid "Yes, that's right."
msgstr "Evet, bu doğru."
#: 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."
@@ -1608,6 +2191,7 @@ msgstr ""
" bağış ile ilgili bilgisi olur."
#: 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."
@@ -1616,6 +2200,7 @@ msgstr ""
" açık şekilde duyurmayız."
#: 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 "
@@ -1625,6 +2210,7 @@ msgstr ""
"ya da sizi herhangi bir şekilde bağışçımız olarak duyurmayız."
#: 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."
@@ -1633,6 +2219,7 @@ msgstr ""
"bunu öncelikle size sorup onayınızı almadan yapmayacağız."
#: 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."
@@ -1641,6 +2228,7 @@ msgstr ""
"Devletler'de ödemiyorum. "
#: 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."
@@ -1649,6 +2237,7 @@ msgstr ""
"vergiden düşülebiliyor. "
#: 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"
@@ -1659,6 +2248,7 @@ msgstr ""
" deneyelim."
#: 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\" "
@@ -1673,6 +2263,7 @@ msgstr ""
"sağlayabilir."
#: 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?"
@@ -1681,6 +2272,7 @@ msgstr ""
"başka bir yolu var mı?"
#: 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 "
@@ -1691,10 +2283,12 @@ msgstr ""
"burada görebilirsiniz</a>."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:469
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:448
msgid "What is your donor privacy policy?"
msgstr "Bağışçıların kişisel verilerini gizleme ilkeniz nedir?"
#: 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>."
@@ -1704,10 +2298,12 @@ msgstr ""
"ilkesine</a> bakabilirsiniz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:479
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:458
msgid "What is your refund policy?"
msgstr "Geri ödeme ilkeniz nedir?"
#: 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>."
@@ -1717,6 +2313,7 @@ msgstr ""
"iletin."
#: 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 "
@@ -1727,11 +2324,13 @@ msgstr ""
"gerekiyor."
#: 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 ""
"Ayrıca lütfen bize neden bağışınızın geri ödenmesini istediğinizi de iletin."
#: 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 "
@@ -1742,15 +2341,19 @@ msgstr ""
"nedenle geri ödeme yapabilmek için bazı ek bilgilere gerek duyabiliriz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:495
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:474
msgid "Can I donate by mail?"
msgstr "Posta yoluyla bağış yapabilir miyim?"
#: 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 "Evet."
#: 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"
@@ -1759,18 +2362,22 @@ msgstr ""
"#4903,Seattle WA 98194, USA "
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:507
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:486
msgid "Do you accept cash donations?"
msgstr "Nakit bağış kabul ediyor musunuz?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:511
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:490
msgid "Yes"
msgstr "Evet"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:517
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:496
msgid "Does Tor Project accept matching donations?"
msgstr "Tor Projesi bağış katlama kampanyası yapıyor mu? "
#: 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 "
@@ -1781,6 +2388,7 @@ msgstr ""
"bağış kadar bağış yaparak toplam bağış tutarını katlıyor."
#: 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"
@@ -1795,6 +2403,7 @@ msgstr ""
"bakabilirsiniz. "
#: 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."
@@ -1803,6 +2412,7 @@ msgstr ""
"yapmıyorsa, gerekli kağıt işlerine yardımcı olmaktan mutluluk duyarız."
#: 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>."
@@ -1811,16 +2421,19 @@ msgstr ""
"class=\"email\">giving(at)torproject.org</a> adresinden ulaşabilirsiniz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:533
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:512
msgid "Can I become a Tor Project member?"
msgstr "Tor Projesine katılabilir miyim?"
#: 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 "Şimdilik herhangi bir üyelik programımız yok. Ancak ileride olabilir."
#: 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\" "
@@ -1833,10 +2446,12 @@ msgstr ""
"başlayabilirsiniz</a>."
#: 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 "Tor tişörtü veya çıkartmalarını nereden alabilirim?"
#: 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 "
@@ -1847,6 +2462,7 @@ msgstr ""
"hediyelerimiz var."
#: 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?"
@@ -1855,6 +2471,7 @@ msgstr ""
" ne yapmalıyım?"
#: 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 "
@@ -1872,6 +2489,7 @@ msgstr ""
"edebilirsiniz</a>."
#: 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 ""
@@ -1879,10 +2497,12 @@ msgstr ""
"programına katılıyor mu?"
#: 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 "Hayır, Tor şu anda CFC programına katılmıyor."
#: 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."
@@ -1891,12 +2511,14 @@ msgstr ""
" harika olur: Yardıma gerek duyarsanız lütfen bize haber verin."
#: 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 ""
"Uçuş millerimi, bedava uçuşlarımı ya da otel puanlarımı bağışlayabilir "
"miyim? "
#: 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."
@@ -1905,14 +2527,17 @@ msgstr ""
"Bunu belki gelecekte yapabiliriz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:589
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:568
msgid "Can I donate hardware?"
msgstr "Donanım bağışlayabilir miyim?"
#: 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 "Genellikle donanım bağışı kabul etmiyoruz."
#: 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 "
@@ -1923,10 +2548,12 @@ msgstr ""
"e-posta gönderebilirsiniz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:601
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:580
msgid "Can I donate my time?"
msgstr "Zamanımı bağışlayabilir miyim? "
#: 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 "
@@ -1937,14 +2564,17 @@ msgstr ""
"ayırarak bize yardımcı olabileceğiniz bazı konulara</a> bakabilirsiniz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:613
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:592
msgid "I would like my company to support Tor."
msgstr "Şirketimin Tor Projesini desteklemesini istiyorum."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:615
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:594
msgid "What can we do to help?"
msgstr "Yardım etmek için ne yapabiliriz?"
#: 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."
@@ -1953,6 +2583,7 @@ msgstr ""
"harika olur."
#: 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."
@@ -1961,6 +2592,7 @@ msgstr ""
" için teşvik edebilirsiniz."
#: 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\" "
@@ -1972,6 +2604,7 @@ msgstr ""
"aktarıcısı işletmek</a> isteyebilir."
#: 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."
@@ -1981,24 +2614,29 @@ msgstr ""
"yararlanıyoruz."
#: 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 "Size bağış yapabileceğim yolların hiç biri bana uygun değil."
#: 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 "Size başka bağış yöntemleri önerebilir miyim?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:637
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:616
msgid "Sure."
msgstr "Elbette."
#: 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 ""
"<span class=\"email\">giving(at)torproject.org</span></a> adresine bir "
"e-posta atmanız yeterli."
#: 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?"
@@ -2007,28 +2645,34 @@ msgstr ""
"kuruluşlardan gelen bağışları reddediyor musunuz?"
#: 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 "Bağışları kabul etmeme hakkımızı saklı tutuyoruz."
#: 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 "Ancak bugüne kadar bu hakkımızı kullanmamız gerekmedi."
#: 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 ""
"Tor uygulamasının geniş bir topluluk tarafından kullanılması ve "
"desteklenmesi bizi mutlu ediyor."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:659
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:638
msgid "I have more questions."
msgstr "Başka sorularım var."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:661
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:640
msgid "How can I get answers?"
msgstr "Yanıtlarını nasıl öğrenebilirim?"
#: 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>."
@@ -2038,6 +2682,7 @@ msgstr ""
"gönderebilirsiniz."
#: 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."
@@ -2045,163 +2690,19 @@ msgstr ""
"Sizi yanıtlamaya çalışacağız. Ayrıca sorunuzu ve yanıtını buraya "
"ekleyebiliriz."
-#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:53
-msgid "Subscribed | Tor"
-msgstr "Abone Olundu | Tor"
-
-#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:64
-msgid "Subscription Confirmed!"
-msgstr "Abonelik Onaylandı!"
-
-#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:78
-msgid "Thanks for joining our email list - you'll hear from us soon!"
-msgstr ""
-"E-posta listemize katıldığınız için teşekkür ederiz. Yakında bizden haber "
-"alacaksınız!"
-
-#: 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 ""
-"O zamana kadar <a target=\"_blank\" "
-"href=\"https://twitter.com/torproject\">@TorProject</a> Twitter hesabını "
-"takibe alabilirsiniz."
-
-#: 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 ""
-"Kâr amacı gütmeyen bir kuruluş olarak, her gün gezinmek, iletişim kurmak ve "
-"kendilerini ifade etmek isteyen milyonlarca kişi tarafından kullanılan bir "
-"teknolojinin oluşturulması ve sürdürülmesi için bize vereceğiniz desteğe "
-"güveniyoruz."
-
-#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:86
-msgid "Every little bit helps"
-msgstr "Her küçük desteğin yardımı olur"
-
-#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:88
-msgid "please donate today"
-msgstr "lütfen bugün bağış yapın"
-
-#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:92
-msgid "Donate Now"
-msgstr "Bağış Yapın"
-
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:53
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:53
-msgid "Tor Thanks You"
-msgstr "Tor Size Teşekkür Ediyor"
-
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:64
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:64
-msgid "Thank you!"
-msgstr "Teşekkürler!"
-
-#: 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 ""
-"Tor Strength in Numbers (Birlikten Kuvvet Doğar) kampanyasına destek "
-"olduğunuz için teşekkür ederiz."
-
-#: 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 "Faturanız kısa süre içinde e-posta adresinize gönderilecek."
-
-#: 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 ""
-"Desteğiniz ve cömert Mozilla bağış katlama fonları sayesinde, mobil aygıtlar"
-" için daha güvenli ve gizliliği arttıracak bir tarayıcı geliştirmenin "
-"yanında üçüncü taraf geliştiricilerin uygulamalarını Tor ile "
-"bütünleştirmesini kolaylaştırmak gibi iddialı projelere girişebileceğiz. ."
-
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:81
-msgid "Thank you for standing up for privacy and freedom online."
-msgstr ""
-"Çevrimiçi özgürlük ve kişisel gizlilik için verdiğiniz desteğe teşekkür "
-"ederiz."
-
-#: 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 ""
-"Yaptığınız kripto para birimi bağışı ile Tor Projesinin milyonlarca insana "
-"kişisel gizliliklerini koruyarak açık web erişimi sağlamasına yardımcı "
-"oldunuz."
-
-#: 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 ""
-"Bağışınız sayesinde Tor otoriter rejimlere ve kişisel gizliliğe saldıran "
-"kuruluşlara karşı daha güçlü olacak."
-
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:91
-msgid "For your convenience, our wallet addresses are listed below."
-msgstr "Cüzdan adreslerimizi aşağıda bulabilirsiniz."
-
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:93
+#: tmp/cache_locale/70/70a3de9c7fb70a68cae132efaa24457b72f71189189cd4c8c492f3cd459b6483.php:70
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 ""
-"Lütfen bağışınızı yaparken cüzdan adreslerini tam olarak doğru "
-"kopyaladığınızdan emin olun. Yanlış cüzdana gönderilen bağışları geri "
-"alamayız."
-
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:97
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:97
-msgid "SHARE THE TOR PROJECT"
-msgstr "TOR PROJESİNİ PAYLAŞIN"
-
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:166
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:136
-msgid "Got Skills?"
-msgstr "Destek olabilecek yetenekleriniz mi var?"
-
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:172
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:142
-msgid "The Tor network depends on volunteers."
-msgstr "Tor ağı gönüllülerin desteğiyle çalışır."
-
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:178
-#: 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."
+"Thanks for your interest in donating cryptocurrency to the Tor Project."
msgstr ""
-"Tor aktarıcıları işletecek, kod yazacak, topluluk oluşturacak ve iyi "
-"çalışmalarımızın yayılmasını sağlayacak kişilere ihtiyacımız var."
-
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:180
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:150
-msgid "Learn how you can help."
-msgstr "Nasıl yardım edebileceğinizi öğrenin."
-
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:188
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:158
-msgid "I Want To Volunteer"
-msgstr "Gönüllü Katkıda Bulunmak İstiyorum"
+"Tor projesine kripto para birimi ile bağış yapmaya gösterdiğiniz ilgi için "
+"teşekkür ederiz."
+#: 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 "Tor Projesini desteklediğiniz için teşekkürler."
+#: 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 "
@@ -2214,6 +2715,7 @@ msgstr ""
"uygulamalarını Tor ile bütünleştirmesini kolaylaştırmak gibi iddialı "
"projelere girişebileceğiz. ."
+#: 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 "
@@ -2221,6 +2723,7 @@ msgid ""
msgstr ""
"Dünya lideri güvenlik ve gizlilik yazılımı için ayağa kalkmanın tam zamanı."
+#: 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 "
@@ -2229,10 +2732,60 @@ msgstr ""
"Gizlilik ve güvenliğinizi Tor ile sağladığınızı arkadaşlarınıza ve ailenize "
"duyurun!"
-#: tmp/cache_locale/05/05c65ace52301a00198c48e1d823da2c14fbd489e7fb45efbca4e79e5709cbdb.php:53
-msgid "Processing Donation - Tor"
-msgstr "Bağışınız İşleniyor - Tor"
+#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:83
+msgid ""
+"Champions of Privacy make a significant pledge of $1,000 or morecreating a "
+"steady, reliable source of funds to help us be agile in our defense against "
+"the growing threats to privacy, freedom of expression, and access to "
+"information online."
+msgstr ""
+"Gizlilik Koruyucuları, $1,000 ve üzerinde olan önemli miktarda bağış "
+"yaparak, giderek artan kişisel gizliliğin korunmasına, ifade özgürlüğüne ve "
+"çevrimiçi bilgiye erişilmesine yönelik tehditlere hızla önlem almamızı "
+"sağlayan, kararlı ve güvenilir bir bağış kaynağı sağlar."
-#: tmp/cache_locale/05/05c65ace52301a00198c48e1d823da2c14fbd489e7fb45efbca4e79e5709cbdb.php:64
-msgid "Processing Donation. Please Wait..."
-msgstr "Bağışınız işleniyor. Lütfen bekleyin..."
+#: 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."
+msgstr ""
+"Bir Gizlilik Koruyucusu olduğunuzda, çeşitli hediyelerin yanında, Tor "
+"projesinde neler olduğunu içeriden görebileceğiniz çevrimiçi etkinliklere "
+"çağrılırsınız."
+
+#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:91
+msgid ""
+"We believe everyone in the world should be able to enjoy the luxury our "
+"tools provide: private access to the open web."
+msgstr ""
+"Dünya üzerindeki her insanın, açık web üzerine kişisel gizliliğini koruyarak"
+" erişebilmesi amacıyla sağladığımız araçları kullanabilmesini istiyoruz."
+
+#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:93
+msgid ""
+"The Tor Project counts on the support of our Champions of Privacy to keep "
+"our software strong and available to everyone who needs it."
+msgstr ""
+"Tor Projesi, yazılımlarını güçlü kılmak ve gerek duyan herkesin kullanımına "
+"sunmak için destek veren Güvenlik Koruyucularını önemsiyor."
+
+#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:95
+msgid "With your help, we can make the Tor network accessible to all."
+msgstr "Yardımlarınızla Tor ağını herkesin kullanımına sunabiliriz."
+
+#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:99
+msgid "Were standing up for the universal human right to privacy."
+msgstr ""
+"Evrensel bir insan hakkı olan kişisel gizliliğin korunmasını savunuyoruz."
+
+#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:101
+msgid "Join us by becoming a Champion of Privacy today."
+msgstr "Gizlilik Koruyucusu olarak hemen aramıza katılın."
+
+#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:108
+msgid "Join with a monthly gift of $84 per month, or more."
+msgstr "Aylık $84 ya da üzerinde bir bağış ile katkıda bulunun."
+
+#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:114
+msgid "Join with cryptocurrency."
+msgstr "Kripto para birimi ile katkıda bulunun."
1
0

[translation/donatepages-messagespot] https://gitweb.torproject.org/translation.git/commit/?h=donatepages-messagespot
by translation@torproject.org 23 Sep '19
by translation@torproject.org 23 Sep '19
23 Sep '19
commit b5b5d8f7ac8ffe87efcd278adfac71275394155b
Author: Translation commit bot <translation(a)torproject.org>
Date: Mon Sep 23 04:45:42 2019 +0000
https://gitweb.torproject.org/translation.git/commit/?h=donatepages-message…
---
locale/tr/LC_MESSAGES/messages.po | 28 ++++++++++++++++++++--------
1 file changed, 20 insertions(+), 8 deletions(-)
diff --git a/locale/tr/LC_MESSAGES/messages.po b/locale/tr/LC_MESSAGES/messages.po
index 15cf7876a..0d1771236 100644
--- a/locale/tr/LC_MESSAGES/messages.po
+++ b/locale/tr/LC_MESSAGES/messages.po
@@ -10,12 +10,12 @@
# T. E. Kalayci <tekrei(a)gmail.com>, 2019
# erinm, 2019
# Arda Büyükkaya <ardabuyukkaya(a)protonmail.com>, 2019
-# Kaya Zeren <kayazeren(a)gmail.com>, 2019
# Alperen Kitapçı <alperenmirac(a)gmail.com>, 2019
+# Kaya Zeren <kayazeren(a)gmail.com>, 2019
#
msgid ""
msgstr ""
-"Last-Translator: Alperen Kitapçı <alperenmirac(a)gmail.com>, 2019\n"
+"Last-Translator: Kaya Zeren <kayazeren(a)gmail.com>, 2019\n"
"Language-Team: Turkish (https://www.transifex.com/otf/teams/1519/tr/)\n"
"Language: tr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
@@ -537,11 +537,11 @@ msgstr "Kredi kartı ya da PayPal ile bağış yapmak ister misiniz?"
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:92
msgid "Donate using BTCPayServer"
-msgstr ""
+msgstr "BTCPayServer ile bağış yapın"
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:126
msgid "Donate using wallet addresses"
-msgstr ""
+msgstr "Cüzdan adresi ile bağış yapın"
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:133
#: tmp/cache_locale/70/70a3de9c7fb70a68cae132efaa24457b72f71189189cd4c8c492f3cd459b6483.php:77
@@ -2739,41 +2739,53 @@ msgid ""
"the growing threats to privacy, freedom of expression, and access to "
"information online."
msgstr ""
+"Gizlilik Koruyucuları, $1,000 ve üzerinde olan önemli miktarda bağış "
+"yaparak, giderek artan kişisel gizliliğin korunmasına, ifade özgürlüğüne ve "
+"çevrimiçi bilgiye erişilmesine yönelik tehditlere hızla önlem almamızı "
+"sağlayan, kararlı ve güvenilir bir bağış kaynağı sağlar."
#: 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."
msgstr ""
+"Bir Gizlilik Koruyucusu olduğunuzda, çeşitli hediyelerin yanında, Tor "
+"projesinde neler olduğunu içeriden görebileceğiniz çevrimiçi etkinliklere "
+"çağrılırsınız."
#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:91
msgid ""
"We believe everyone in the world should be able to enjoy the luxury our "
"tools provide: private access to the open web."
msgstr ""
+"Dünya üzerindeki her insanın, açık web üzerine kişisel gizliliğini koruyarak"
+" erişebilmesi amacıyla sağladığımız araçları kullanabilmesini istiyoruz."
#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:93
msgid ""
"The Tor Project counts on the support of our Champions of Privacy to keep "
"our software strong and available to everyone who needs it."
msgstr ""
+"Tor Projesi, yazılımlarını güçlü kılmak ve gerek duyan herkesin kullanımına "
+"sunmak için destek veren Güvenlik Koruyucularını önemsiyor."
#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:95
msgid "With your help, we can make the Tor network accessible to all."
-msgstr ""
+msgstr "Yardımlarınızla Tor ağını herkesin kullanımına sunabiliriz."
#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:99
msgid "Were standing up for the universal human right to privacy."
msgstr ""
+"Evrensel bir insan hakkı olan kişisel gizliliğin korunmasını savunuyoruz."
#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:101
msgid "Join us by becoming a Champion of Privacy today."
-msgstr ""
+msgstr "Gizlilik Koruyucusu olarak hemen aramıza katılın."
#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:108
msgid "Join with a monthly gift of $84 per month, or more."
-msgstr ""
+msgstr "Aylık $84 ya da üzerinde bir bağış ile katkıda bulunun."
#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:114
msgid "Join with cryptocurrency."
-msgstr ""
+msgstr "Kripto para birimi ile katkıda bulunun."
1
0