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

23 Feb '19
commit 7c42d62b3a39385470c5db0bf16262e58e1f0ff7
Author: juga0 <juga(a)riseup.net>
Date: Wed Jan 9 15:49:26 2019 +0000
scanner: exit after the first loop in test networks
In order to run the scanner as part of the integration tests.
---
sbws/core/scanner.py | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/sbws/core/scanner.py b/sbws/core/scanner.py
index 7246f12..791d719 100644
--- a/sbws/core/scanner.py
+++ b/sbws/core/scanner.py
@@ -382,6 +382,11 @@ def run_speedtest(args, conf):
loop_tstop = time.time()
loop_tdelta = (loop_tstop - loop_tstart) / 60
log.info("Measured %s relays in %s minutes", num_relays, loop_tdelta)
+ # In a testing network, exit after first loop
+ if controller.get_conf('TestingTorNetwork') == '1':
+ log.info("In a testing network, exiting after the first loop.")
+ # Threads should be closed nicely in some refactor
+ exit(0)
def gen_parser(sub):
1
0
commit 689ce5abd177a45235cb020d4f108f78535d3e93
Author: juga0 <juga(a)riseup.net>
Date: Sat Feb 23 11:30:02 2019 +0000
scanner: Stop threads in a test network
after finishing the first loop.
As noted in bug28933_01.
---
sbws/core/scanner.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/sbws/core/scanner.py b/sbws/core/scanner.py
index b486dd9..78cc165 100644
--- a/sbws/core/scanner.py
+++ b/sbws/core/scanner.py
@@ -480,7 +480,8 @@ def main_loop(args, conf, controller, relay_list, circuit_builder, result_dump,
if controller.get_conf('TestingTorNetwork') == '1':
log.info("In a testing network, exiting after the first loop.")
# Threads should be closed nicely in some refactor
- exit(0)
+ stop_threads(signal.SIGTERM, None)
+
def run_speedtest(args, conf):
"""Initializes all the data and threads needed to measure the relays.
1
0
commit adcaf04d52d2e11bec2cf63f31b153e76aea3ecd
Author: juga0 <juga(a)riseup.net>
Date: Wed Jan 9 18:23:26 2019 +0000
CI: run scanner using the test network
as part of the integration tests.
Fixes bug #28933. Bugfix v0.1.0.
---
tox.ini | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/tox.ini b/tox.ini
index eb6a958..d8fd1c4 100644
--- a/tox.ini
+++ b/tox.ini
@@ -43,15 +43,21 @@ whitelist_externals =
bash
sleep
wget
+ mkdir
commands =
tar -C {envtmpdir} -vxf {toxinidir}/tests/integration/net.tar
bash {envtmpdir}/net/start.sh
bash -c "time python3 {envtmpdir}/net/wait.py {envtmpdir}/net/{auth,relay,exit}*"
bash -c "python3 {toxinidir}/scripts/tools/sbws-http-server.py --port 28888 &>/dev/null &"
- sleep 15
+ sleep 1
wget -O/dev/null http://127.0.0.1:28888/sbws.bin
+ ; Run actually the scanner
+ mkdir -p /tmp/.sbws
+ ; This add around 3min more to the tests
+ sbws -c {toxinidir}/tests/integration/sbws_testnet.ini scanner
coverage run -a --rcfile={toxinidir}/.coveragerc --source=sbws -m pytest -s {toxinidir}/tests/integration -vv
bash {envtmpdir}/net/stop.sh
+ rm -rf /tmp/.sbws
[testenv:lint]
skip_install = True
1
0
commit 65e7e29de0746b69265bd24451d9f59bbec1921c
Merge: 09ea037 adcaf04
Author: juga0 <juga(a)riseup.net>
Date: Sat Feb 23 11:32:38 2019 +0000
Merge branch 'bug28933_01'
Solved conflicts:
sbws/core/scanner.py
tox.ini
sbws/core/scanner.py | 6 +++++-
tests/integration/sbws_testnet.ini | 26 ++++++++++++++++++++++++++
tox.ini | 8 +++++++-
3 files changed, 38 insertions(+), 2 deletions(-)
diff --cc sbws/core/scanner.py
index 72df4c0,791d719..b486dd9
--- a/sbws/core/scanner.py
+++ b/sbws/core/scanner.py
@@@ -391,111 -330,7 +391,115 @@@ def result_putter_error(target)
return closure
+def main_loop(args, conf, controller, relay_list, circuit_builder, result_dump,
+ relay_prioritizer, destinations, max_pending_results, pool):
+ """Starts and reuse the threads that measure the relays forever.
+
+ It starts a loop that will be run while there is not and event signaling
+ that sbws is stopping (because of SIGTERM or SIGINT).
+
+ Then, it starts a second loop with an ordered list (generator) of relays
+ to measure that might a subset of all the current relays in the Network.
+
+ For every relay, it starts a new thread which runs ``measure_relay`` to
+ measure the relay until there are ``max_pending_results`` threads.
+ After that, it will reuse a thread that has finished for every relay to
+ measure.
+ It is the the pool method ``apply_async`` which starts or reuse a thread.
+ This method returns an ``ApplyResult`` immediately, which has a ``ready``
+ methods that tells whether the thread has finished or not.
+
+ When the thread finish, ie. ``ApplyResult`` is ``ready``, it triggers
+ ``result_putter`` callback, which put the ``Result`` in ``ResultDump``
+ queue and complete immediately.
+
+ ``ResultDump`` thread (started before and out of this function) will get
+ the ``Result`` from the queue and write it to disk, so this doesn't block
+ the measurement threads.
+
+ If there was an exception not catched by ``measure_relay``, it will call
+ instead ``result_putter_error``, which logs the error and complete
+ immediately.
+
+ Before iterating over the next relay, it waits (non blocking, since it
+ happens in the main thread) until one of the ``max_pending_results``
+ threads has finished.
+
+ This is not needed, since otherwise async_result will queue the relays to
+ measure in order and won't start reusing a thread to measure a relay until
+ other thread has finished. But it makes the logic a bit more sequential.
+
+ Before the outer loop iterates, it also waits (again non blocking) that all
+ the ``Results`` are ready.
+ This avoid to start measuring the same relay which might still being
+ measured.
+
+ """
+ pending_results = []
+ # Set the time to wait for a thread to finish as the half of an HTTP
+ # request timeout.
+ time_to_sleep = conf.getfloat('general', 'http_timeout') / 2
+ # Do not start a new loop if sbws is stopping.
+ while not settings.end_event.is_set():
+ log.debug("Starting a new measurement loop.")
+ num_relays = 0
+ loop_tstart = time.time()
+ for target in relay_prioritizer.best_priority():
+ # Don't start measuring a relay if sbws is stopping.
+ if settings.end_event.is_set():
+ break
+ num_relays += 1
+ # callback and callback_err must be non-blocking
+ callback = result_putter(result_dump)
+ callback_err = result_putter_error(target)
+ async_result = pool.apply_async(
+ dispatch_worker_thread,
+ [args, conf, destinations, circuit_builder, relay_list,
+ target], {}, callback, callback_err)
+ pending_results.append(async_result)
+ # Instead of letting apply_async to queue the relays in order until
+ # a thread has finished, wait here until a thread has finished.
+ while len(pending_results) >= max_pending_results:
+ # sleep is non-blocking since happens in the main process.
+ time.sleep(time_to_sleep)
+ pending_results = [r for r in pending_results if not r.ready()]
+ time_waiting = 0
+ while (len(pending_results) > 0
+ and time_waiting <= TIMEOUT_MEASUREMENTS):
+ log.debug("Number of pending measurement threads %s after "
+ "a prioritization loop.", len(pending_results))
+ time.sleep(time_to_sleep)
+ time_waiting += time_to_sleep
+ pending_results = [r for r in pending_results if not r.ready()]
+ if time_waiting > TIMEOUT_MEASUREMENTS:
+ dumpstacks()
+ loop_tstop = time.time()
+ loop_tdelta = (loop_tstop - loop_tstart) / 60
+ log.debug("Measured %s relays in %s minutes", num_relays, loop_tdelta)
-
++ # In a testing network, exit after first loop
++ if controller.get_conf('TestingTorNetwork') == '1':
++ log.info("In a testing network, exiting after the first loop.")
++ # Threads should be closed nicely in some refactor
++ exit(0)
+
def run_speedtest(args, conf):
+ """Initializes all the data and threads needed to measure the relays.
+
+ It launches or connect to Tor in a thread.
+ It initializes the list of relays seen in the Tor network.
+ It starts a thread to read the previous measurements and wait for new
+ measurements to write them to the disk.
+ It initializes a class that will be used to order the relays depending
+ on their measurements age.
+ It initializes the list of destinations that will be used for the
+ measurements.
+ It initializes the thread pool that will launch the measurement threads.
+ The pool starts 3 other threads that are not the measurement (worker)
+ threads.
+ Finally, it calls the function that will manage the measurement threads.
+
+ """
+ global rd, pool, controller
controller, _ = stem_utils.init_controller(
path=conf.getpath('tor', 'control_socket'))
if not controller:
diff --cc tox.ini
index 4aca0ca,d8fd1c4..5094b78
--- a/tox.ini
+++ b/tox.ini
@@@ -43,16 -43,21 +43,22 @@@ whitelist_externals
bash
sleep
wget
+ mkdir
commands =
- tar -C {envtmpdir} -vxf {toxinidir}/tests/integration/net.tar
+ cp -af {toxinidir}/tests/integration/net {envtmpdir}
bash {envtmpdir}/net/start.sh
bash -c "time python3 {envtmpdir}/net/wait.py {envtmpdir}/net/{auth,relay,exit}*"
bash -c "python3 {toxinidir}/scripts/tools/sbws-http-server.py --port 28888 &>/dev/null &"
- sleep 15
+ sleep 1
wget -O/dev/null http://127.0.0.1:28888/sbws.bin
+ ; Run actually the scanner
+ mkdir -p /tmp/.sbws
+ ; This add around 3min more to the tests
+ sbws -c {toxinidir}/tests/integration/sbws_testnet.ini scanner
coverage run -a --rcfile={toxinidir}/.coveragerc --source=sbws -m pytest -s {toxinidir}/tests/integration -vv
bash {envtmpdir}/net/stop.sh
+ # no need to remove .tox/net directory.
+ rm -rf /tmp/.sbws
[testenv:lint]
skip_install = True
1
0
commit caa2b83f247d60ae22506244a0c80b097bda1560
Author: juga0 <juga(a)riseup.net>
Date: Sat Feb 23 15:58:48 2019 +0000
CI: Add forgotten command to whitelist
---
tox.ini | 1 +
1 file changed, 1 insertion(+)
diff --git a/tox.ini b/tox.ini
index 5094b78..eb8e3a1 100644
--- a/tox.ini
+++ b/tox.ini
@@ -44,6 +44,7 @@ whitelist_externals =
sleep
wget
mkdir
+ rm
commands =
cp -af {toxinidir}/tests/integration/net {envtmpdir}
bash {envtmpdir}/net/start.sh
1
0

[translation/support-portal] Update translations for support-portal
by translation@torproject.org 23 Feb '19
by translation@torproject.org 23 Feb '19
23 Feb '19
commit 33befa969e69684d3360e16771fd34280470d3d3
Author: Translation commit bot <translation(a)torproject.org>
Date: Sat Feb 23 15:50:21 2019 +0000
Update translations for support-portal
---
contents+tr.po | 17 +++++++++++------
1 file changed, 11 insertions(+), 6 deletions(-)
diff --git a/contents+tr.po b/contents+tr.po
index b8f4167b1..0c309f5c4 100644
--- a/contents+tr.po
+++ b/contents+tr.po
@@ -3,6 +3,7 @@
# erinm, 2019
# Emma Peel, 2019
# Alperen Kitapçı <alperenmirac(a)gmail.com>, 2019
+# ilkeryus <ilkeryus(a)gmail.com>, 2019
#
msgid ""
msgstr ""
@@ -10,7 +11,7 @@ msgstr ""
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-28 19:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
-"Last-Translator: Alperen Kitapçı <alperenmirac(a)gmail.com>, 2019\n"
+"Last-Translator: ilkeryus <ilkeryus(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"
@@ -2348,7 +2349,7 @@ msgstr ""
#: https//support.torproject.org/becoming-tor-translator/
#: (content/becoming-tor-translator/contents+en.lrquestion.description)
msgid "<img class=\"col-md-6\" src=\"../../static/images/tr1.png\">"
-msgstr ""
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/tr1.png\">"
#: https//support.torproject.org/becoming-tor-translator/
#: (content/becoming-tor-translator/contents+en.lrquestion.description)
@@ -2362,7 +2363,7 @@ msgstr ""
#: https//support.torproject.org/becoming-tor-translator/
#: (content/becoming-tor-translator/contents+en.lrquestion.description)
msgid "<img class=\"col-md-6\" src=\"../../static/images/tr2.png\">"
-msgstr ""
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/tr2.png\">"
#: https//support.torproject.org/becoming-tor-translator/
#: (content/becoming-tor-translator/contents+en.lrquestion.description)
@@ -2397,7 +2398,7 @@ msgstr "* Sağ taraftaki mavi 'Takıma Katılın' düğmesine tıklayın:"
#: https//support.torproject.org/becoming-tor-translator/
#: (content/becoming-tor-translator/contents+en.lrquestion.description)
msgid "<img class=\"col-md-6\" src=\"../../static/images/tr3.png\">"
-msgstr ""
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/tr3.png\">"
#: https//support.torproject.org/becoming-tor-translator/
#: (content/becoming-tor-translator/contents+en.lrquestion.description)
@@ -2408,7 +2409,7 @@ msgstr "* Açılan menüden çevirmek istediğiniz dili seçin:"
#: https//support.torproject.org/becoming-tor-translator/
#: (content/becoming-tor-translator/contents+en.lrquestion.description)
msgid "<img class=\"col-md-6\" src=\"../../static/images/tr4.png\">"
-msgstr ""
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/tr4.png\">"
#: https//support.torproject.org/becoming-tor-translator/
#: (content/becoming-tor-translator/contents+en.lrquestion.description)
@@ -2418,7 +2419,7 @@ msgstr "* Sayfanın üst bölümünde şu şekilde bir bildirim görüntülenir:
#: https//support.torproject.org/becoming-tor-translator/
#: (content/becoming-tor-translator/contents+en.lrquestion.description)
msgid "<img class=\"col-md-6\" src=\"../../static/images/tr5.png\">"
-msgstr ""
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/tr5.png\">"
#: https//support.torproject.org/becoming-tor-translator/
#: (content/becoming-tor-translator/contents+en.lrquestion.description)
@@ -2439,6 +2440,10 @@ msgid ""
"There you will find translation guidelines and resources that will help you "
"contribute to Tor translations."
msgstr ""
+"Tercüme etmeden önce, lütfen [Yerelleştirme Lab Wiki] 'deki Tor Projesi "
+"sayfasını okuyun (https://wiki.localizationlab.org/index.php/Tor) Burada "
+"Tor çevirilerine katkıda bulunmanıza yardımcı olacak çeviri yönergeleri ve "
+"kaynakları bulacaksınız."
#: https//support.torproject.org/becoming-tor-translator/
#: (content/becoming-tor-translator/contents+en.lrquestion.description)
1
0

[translation/tbmanual-contentspot_completed] Update translations for tbmanual-contentspot_completed
by translation@torproject.org 23 Feb '19
by translation@torproject.org 23 Feb '19
23 Feb '19
commit 9cffc9de91fef03cad93f51f56728c251c1bd322
Author: Translation commit bot <translation(a)torproject.org>
Date: Sat Feb 23 15:47:44 2019 +0000
Update translations for tbmanual-contentspot_completed
---
contents+tr.po | 2364 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 2364 insertions(+)
diff --git a/contents+tr.po b/contents+tr.po
new file mode 100644
index 000000000..56c4767aa
--- /dev/null
+++ b/contents+tr.po
@@ -0,0 +1,2364 @@
+# Translators:
+# Emma Peel, 2018
+# erinm, 2018
+# Alperen Kitapçı <alperenmirac(a)gmail.com>, 2019
+# cenk y. <goncagul(a)national.shitposting.agency>, 2019
+# Hasan Tayyar BESIK <tayyar.besik(a)gmail.com>, 2019
+# Kaya Zeren <kayazeren(a)gmail.com>, 2019
+# ilkeryus <ilkeryus(a)gmail.com>, 2019
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2019-01-23 12:08+CET\n"
+"PO-Revision-Date: 2018-11-14 12:31+0000\n"
+"Last-Translator: ilkeryus <ilkeryus(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//tb-manual.torproject.org/en-US/
+#: (content/contents+en-US.lrshowcase.title)
+msgid "Tor Browser User Manual"
+msgstr "Tor Browser Kullanıcı Rehberi"
+
+#: https//tb-manual.torproject.org/en-US/menu/
+#: (content/menu/contents+en-US.lrtopic.body)
+msgid "About"
+msgstr "Hakkında"
+
+#: https//tb-manual.torproject.org/en-US/menu/
+#: (content/menu/contents+en-US.lrtopic.body)
+msgid "Documentation"
+msgstr "Belgeler"
+
+#: https//tb-manual.torproject.org/en-US/menu/
+#: (content/menu/contents+en-US.lrtopic.body)
+msgid "Press"
+msgstr "Basın"
+
+#: https//tb-manual.torproject.org/en-US/menu/
+#: (content/menu/contents+en-US.lrtopic.body)
+msgid "Blog"
+msgstr "Günlük"
+
+#: https//tb-manual.torproject.org/en-US/menu/
+#: (content/menu/contents+en-US.lrtopic.body)
+msgid "Newsletter"
+msgstr "Bülten"
+
+#: https//tb-manual.torproject.org/en-US/menu/
+#: (content/menu/contents+en-US.lrtopic.body)
+msgid "Contact"
+msgstr "İletişim"
+
+#: https//tb-manual.torproject.org/en-US/about/
+#: (content/about/contents+en-US.lrtopic.title)
+msgid "About Tor Browser"
+msgstr "Tor Browser Hakkında"
+
+#: https//tb-manual.torproject.org/en-US/about/
+#: (content/about/contents+en-US.lrtopic.description)
+msgid "Learn what Tor Browser can do to protect your privacy and anonymity"
+msgstr ""
+"Tor Browser tarafından kişisel verilerinizin gizliliğinin ve İnternet "
+"üzerinde anonim kalmanızın nasıl sağlanabileceğini öğrenin"
+
+#: https//tb-manual.torproject.org/en-US/about/
+#: (content/about/contents+en-US.lrtopic.body)
+msgid ""
+"Tor Browser uses the Tor network to protect your privacy and anonymity. "
+"Using the Tor network has two main properties:"
+msgstr ""
+"Tor Browser kişisel gizliliğinizi ve ağ üzerinde anonim kalmanızı sağlamak "
+"için Tor ağını kullanır. Tor ağı kullanmanın iki temel amacı vardır:"
+
+#: https//tb-manual.torproject.org/en-US/about/
+#: (content/about/contents+en-US.lrtopic.body)
+msgid ""
+"* Your internet service provider, and anyone watching your connection "
+"locally, will not be able to track your internet activity, including the "
+"names and addresses of the websites you visit."
+msgstr ""
+"* İnternet hizmeti sağlayıcınız ya da bağlantınızı yerel olarak izleyenler, "
+"İnternet üzerinde yaptığınız işlemleri ve ziyaret ettiğiniz web sitelerinin "
+"ad ve adreslerini izleyemez."
+
+#: https//tb-manual.torproject.org/en-US/about/
+#: (content/about/contents+en-US.lrtopic.body)
+msgid ""
+"* The operators of the websites and services that you use, and anyone "
+"watching them, will see a connection coming from the Tor network instead of "
+"your real Internet (IP) address, and will not know who you are unless you "
+"explicitly identify yourself."
+msgstr ""
+"* Web sitesi ve kullandığınız hizmetleri sağlayanlar ile onları izleyenler "
+"gerçek İnternet (IP) adresiniz yerine yalnız Tor ağından bir bağlantı "
+"geldiğini görür ve siz kendinizi açık etmedikçe kim olduğunuzu bilemez."
+
+#: https//tb-manual.torproject.org/en-US/about/
+#: (content/about/contents+en-US.lrtopic.body)
+msgid ""
+"In addition, Tor Browser is designed to prevent websites from "
+"“fingerprinting” or identifying you based on your browser configuration."
+msgstr ""
+"Ek olarak Tor Browser, web sitelerinin \"parmak izi\" taraması yapmasını ya "
+"da web tarayıcı ayarlarınıza göre sizin kim olduğunuzun belirlenmesini "
+"engeller."
+
+#: https//tb-manual.torproject.org/en-US/about/
+#: (content/about/contents+en-US.lrtopic.body)
+msgid ""
+"By default, Tor Browser does not keep any browsing history. Cookies are only"
+" valid for a single session (until Tor Browser is exited or a <a href"
+"=\"/managing-identities/#new-identity\">New Identity</a> is requested)."
+msgstr ""
+"Varsayılan olarak Tor Browser geçmişinizi kaydetmez. Çerezler sadece siz "
+"tarayıcıdan çıkana kadar (ya da siz <a href=\"/managing-identities/#new-"
+"identity\">New Identity</a> tuşuna basana kadar) tutulur."
+
+#: https//tb-manual.torproject.org/en-US/about/
+#: (content/about/contents+en-US.lrtopic.body)
+msgid "##### How Tor works"
+msgstr "##### Tor nasıl çalışır"
+
+#: https//tb-manual.torproject.org/en-US/about/
+#: (content/about/contents+en-US.lrtopic.body)
+msgid ""
+"Tor is a network of virtual tunnels that allows you to improve your privacy "
+"and security on the Internet. Tor works by sending your traffic through "
+"three random servers (also known as *relays*) in the Tor network. The last "
+"relay in the circuit (the “exit relay”) then sends the traffic out onto the "
+"public Internet."
+msgstr ""
+"Tor, Internet üzerinde kişisel gizliliğinizi ve güvenliğinizi arttıran bir "
+"sanal tüneller ağıdır. Tor trafiğinizi rastgele seçilmiş üç sunucu üzerinden"
+" Internet üzerine ulaştırır (bunlar *aktarıcı* olarak da bilinir). Devredeki"
+" son aktarıcı (\"çıkış aktarıcısı\") trafiği herkese açık İnternet üzerine "
+"aktarır."
+
+#: https//tb-manual.torproject.org/en-US/about/
+#: (content/about/contents+en-US.lrtopic.body)
+msgid ""
+"<img class=\"\" src=\"../static/images/how-tor-works.png\" alt=\"How Tor "
+"Browser works\">"
+msgstr ""
+"<img class=\"\" src=\"../static/images/how-tor-works.png\" alt=\"How Tor "
+"Browser works\">"
+
+#: https//tb-manual.torproject.org/en-US/about/
+#: (content/about/contents+en-US.lrtopic.body)
+msgid ""
+"The image above illustrates a user browsing to different websites over Tor. "
+"The green middle computers represent relays in the Tor network, while the "
+"three keys represent the layers of encryption between the user and each "
+"relay."
+msgstr ""
+"Yukarıdaki görsel farklı sitelere Tor üzerinden nasıl erişildiğini gösterir."
+" Ortadaki yeşil bilgisayarlar Tor ağındaki aktarıcıları, üç anahtar da "
+"kullanıcı ve her bir aktarıcı arasındaki şifreleme katmanlarını temsil eder."
+
+#: https//tb-manual.torproject.org/en-US/downloading/
+#: (content/downloading/contents+en-US.lrtopic.title)
+msgid "Downloading"
+msgstr "İndiriliyor"
+
+#: https//tb-manual.torproject.org/en-US/downloading/
+#: (content/downloading/contents+en-US.lrtopic.description)
+msgid "How to download Tor Browser"
+msgstr "Tor Browser nasıl indirilir"
+
+#: https//tb-manual.torproject.org/en-US/downloading/
+#: (content/downloading/contents+en-US.lrtopic.body)
+msgid ""
+"The safest and simplest way to download Tor Browser is from the official Tor"
+" Project website at https://www.torproject.org. Your connection to the site "
+"will be secured using <a href=\"https://tb-manual.torproject.org/en-US"
+"/secure-connections.html\">HTTPS</a>, which makes it much harder for "
+"somebody to tamper with."
+msgstr ""
+"Tor Browser uygulamasını indirmenin en güvenli ve basit yolu, "
+"https://www.torproject.org adresindeki resmi Tor Project web sitesinden "
+"indirmektir. Siteyle olan bağlantınızın güvenliği <a href=\"https://tb-"
+"manual.torproject.org/en-US/secure-connections.html\">HTTPS</a> kullanılarak"
+" sağlanır ve bu da bazı kişilerin bağlantınızı kurcalamasını oldukça "
+"zorlaştırır."
+
+#: https//tb-manual.torproject.org/en-US/downloading/
+#: (content/downloading/contents+en-US.lrtopic.body)
+msgid ""
+"However, there may be times when you cannot access the Tor Project website: "
+"for example, it could be blocked on your network. If this happens, you can "
+"use one of the alternative download methods listed below."
+msgstr ""
+"Bununla birlikte, Tor Project web sitesine erişemediğiniz zamanlar olabilir:"
+" örneğin, ağınızda Tor engellenmiş olabilir. Böyle bir durumda, aşağıda "
+"listelenen alternatif indirme yöntemlerinden birini kullanabilirsiniz."
+
+#: https//tb-manual.torproject.org/en-US/downloading/
+#: (content/downloading/contents+en-US.lrtopic.body)
+msgid "##### Mirrors"
+msgstr "##### Yansılar"
+
+#: https//tb-manual.torproject.org/en-US/downloading/
+#: (content/downloading/contents+en-US.lrtopic.body)
+msgid ""
+"If you're unable to download Tor Browser from the official Tor Project "
+"website, you can instead try downloading it from one of our official "
+"mirrors, either through [EFF](https://tor.eff.org) or [Calyx "
+"Institute](https://tor.calyxinstitute.org)."
+msgstr ""
+"Eğer Tor Browser'ı resmi siteden indiremiyorsanız alternatif olarak "
+"[EFF](https://tor.eff.org) ya da [Calyx "
+"Institute](https://tor.calyxinstitute.org) linklerini deneyebilirsiniz."
+
+#: https//tb-manual.torproject.org/en-US/downloading/
+#: (content/downloading/contents+en-US.lrtopic.body)
+msgid "##### GetTor"
+msgstr "##### GetTor"
+
+#: https//tb-manual.torproject.org/en-US/downloading/
+#: (content/downloading/contents+en-US.lrtopic.body)
+msgid ""
+"GetTor is a service that automatically responds to messages with links to "
+"the latest version of Tor Browser, hosted at a variety of locations, such as"
+" Dropbox, Google Drive and GitHub."
+msgstr ""
+"GetTor; iletileri otomatik olarak yanıtlayarak, Dropbox, Google Drive ve "
+"GitHub gibi çeşitli konumlarda barındırılan en son Tor Browser sürümü "
+"bağlantılarını gönderen bir hizmettir."
+
+#: https//tb-manual.torproject.org/en-US/downloading/
+#: (content/downloading/contents+en-US.lrtopic.body)
+msgid "###### To use GetTor via email:"
+msgstr "##### E-posta ile GetTor kullanımı:"
+
+#: https//tb-manual.torproject.org/en-US/downloading/
+#: (content/downloading/contents+en-US.lrtopic.body)
+msgid ""
+"Send an email to gettor(a)torproject.org, and in the body of the message "
+"simply write “windows”, “osx”, or “linux”, (without quotation marks) "
+"depending on your operating system."
+msgstr ""
+"gettor(a)torproject.org adresine bir e-posta gönderin ve ileti metnine işletim"
+" sisteminize bağlı olarak \"windows\", \"osx\" ya da \"linux\" (tırnak "
+"işaretleri olmadan) yazın."
+
+#: https//tb-manual.torproject.org/en-US/downloading/
+#: (content/downloading/contents+en-US.lrtopic.body)
+msgid ""
+"GetTor will respond with an email containing links from which you can "
+"download the Tor Browser package, the cryptographic signature (needed for "
+"verifying the download), the fingerprint of the key used to make the "
+"signature, and the package’s checksum. You may be offered a choice of "
+"“32-bit” or “64-bit” software: this depends on the model of the computer you"
+" are using."
+msgstr ""
+"GetTor, Tor Browser paketini indirebileceğiniz bağlantılar, şifrelenmiş imza"
+" (indirmeyi doğrulamak için), imzayı oluşturmak için kullanılan parmak izi "
+"ve paketin sağlama değerini içeren bir e-posta ile yanıt verir. "
+"Kullandığınız bilgisayarın modeline bağlı olarak \"32-bit\" ya da \"64-bit\""
+" uygulamalardan birini seçmeniz istenebilir."
+
+#: https//tb-manual.torproject.org/en-US/downloading/
+#: (content/downloading/contents+en-US.lrtopic.body)
+msgid "###### To use GetTor via Twitter:"
+msgstr "##### Twitter ile GetTor kullanımı:"
+
+#: https//tb-manual.torproject.org/en-US/downloading/
+#: (content/downloading/contents+en-US.lrtopic.body)
+msgid ""
+"To get links for downloading Tor Browser in English for OS X, send a Direct "
+"Message to @get_tor with the words \"osx en\" in it (you don't need to "
+"follow the account)."
+msgstr ""
+"OS X üzerinde çalışacak İngilizce Tor Browser indirme bağlantılarını almak "
+"için @get_tor'a içinde \"osx en\" sözcükleri bulunan doğrudan bir ileti "
+"gönderin (hesabı takip etmeniz gerekmez)."
+
+#: https//tb-manual.torproject.org/en-US/downloading/
+#: (content/downloading/contents+en-US.lrtopic.body)
+msgid "###### To use GetTor via Jabber/XMPP (Jitsi, CoyIM, etc.):"
+msgstr "##### Jabber/XMPP ile GetTor kullanımı (Jitsi, CoyIM, vb):"
+
+#: https//tb-manual.torproject.org/en-US/downloading/
+#: (content/downloading/contents+en-US.lrtopic.body)
+msgid ""
+"To get links for downloading Tor Browser in Chinese for Linux, send a "
+"message to gettor(a)torproject.org with the words \"linux zh\" in it."
+msgstr ""
+"Linux üzerinde çalışacak Çince Tor Browser indirme bağlantılarını almak için"
+" gettor(a)torproject.org adresine içinde \"linux zh\" sözcükleri bulunan bir "
+"ileti gönderin."
+
+#: https//tb-manual.torproject.org/en-US/running-tor-browser/
+#: (content/running-tor-browser/contents+en-US.lrtopic.title)
+msgid "Running Tor Browser for the first time"
+msgstr "Tor Browser uygulamasını ilk kez çalıştırma"
+
+#: https//tb-manual.torproject.org/en-US/running-tor-browser/
+#: (content/running-tor-browser/contents+en-US.lrtopic.description)
+msgid "Learn how to use Tor Browser for the first time"
+msgstr "Tor Browser ilk kez kullanıldığında neler yapmak gerekir"
+
+#: https//tb-manual.torproject.org/en-US/running-tor-browser/
+#: (content/running-tor-browser/contents+en-US.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the Tor Network "
+"Settings window. This offers you the option to connect directly to the Tor "
+"network, or to configure Tor Browser for your connection."
+msgstr ""
+"Tor Browser ilk kez çalıştırıldığında, Tor Ağ Ayarları penceresi "
+"görüntülenir. Bu pencerede, doğrudan Tor ağına bağlanma ya da bağlantı "
+"şeklinize göre Tor Browser ayarlarını yapılandırma seçeneği sunulur."
+
+#: https//tb-manual.torproject.org/en-US/running-tor-browser/
+#: (content/running-tor-browser/contents+en-US.lrtopic.body)
+msgid "##### Connect"
+msgstr "##### Bağlanma"
+
+#: https//tb-manual.torproject.org/en-US/running-tor-browser/
+#: (content/running-tor-browser/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/troubleshooting/
+#: (content/troubleshooting/contents+en-US.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
+
+#: https//tb-manual.torproject.org/en-US/running-tor-browser/
+#: (content/running-tor-browser/contents+en-US.lrtopic.body)
+msgid ""
+"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
+"network without any further configuration. Once clicked, a status bar will "
+"appear, showing Tor’s connection progress. If you are on a relatively fast "
+"connection, but this bar seems to get stuck at a certain point, see the <a "
+"href=\"/troubleshooting\">Troubleshooting</a> page for help solving the "
+"problem."
+msgstr ""
+"Çoğu durumda, \"Bağlan\" üzerine tıklamak başka bir yapılandırmaya gerek "
+"duymadan Tor ağına bağlanmanızı sağlar. Bağlan üzerine tıklandığında, Tor "
+"bağlantısının ilerleme durumunu gösteren bir durum çubuğu görüntülenir. "
+"Nispeten hızlı bir bağlantınız olduğu halde durum çubuğu belli bir noktada "
+"takılıp kalıyorsa, sorunu çözmek üzere yardım almak için <a "
+"href=\"/troubleshooting\">Sorun Giderme</a> bölümüne bakabilirsiniz."
+
+#: https//tb-manual.torproject.org/en-US/running-tor-browser/
+#: (content/running-tor-browser/contents+en-US.lrtopic.body)
+msgid "##### Configure"
+msgstr "##### Yapılandırma"
+
+#: https//tb-manual.torproject.org/en-US/running-tor-browser/
+#: (content/running-tor-browser/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/circumvention/
+#: (content/circumvention/contents+en-US.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
+
+#: https//tb-manual.torproject.org/en-US/running-tor-browser/
+#: (content/running-tor-browser/contents+en-US.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, or uses a proxy, you should "
+"select this option. Tor Browser will take you through a series of "
+"configuration options."
+msgstr ""
+"Bağlantınızın sansürlendiğini ya da vekil sunucu kullandığını biliyorsanız, "
+"bu seçeneği seçmelisiniz. Tor Browser size bir dizi yapılandırma seçeneği "
+"sunar."
+
+#: https//tb-manual.torproject.org/en-US/running-tor-browser/
+#: (content/running-tor-browser/contents+en-US.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection. If you do not believe this is the case, select “No”. If "
+"you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, select “Yes”."
+" You will then be taken to the <a href=\"/circumvention\">Circumvention</a> "
+"screen to configure a pluggable transport."
+msgstr ""
+"İlk bölümde, bağlantınız üzerinden Tor ağına erişimin engellenmesi ya da "
+"sansürlenmesi ile ilgili bilgi alınır. Durumun böyle olmadığını "
+"düşünüyorsanız, \"Hayır\" üzerine tıklayın. Bağlantınızın sansürlendiğini "
+"biliyorsanız ya da Tor ağına bağlanmayı deneyip bağlanamadıysanız ve başka "
+"bir çözüm işe yaramadıysa, \"Evet\" üzerine tıklayın. Böylece, bir "
+"Değiştirilebilir Taşıyıcıyı yapılandırabileceğiniz <a "
+"href=\"/circumvention\">Engelleri Aşma</a> bölümüne yönlendirilirsiniz."
+
+#: https//tb-manual.torproject.org/en-US/running-tor-browser/
+#: (content/running-tor-browser/contents+en-US.lrtopic.body)
+msgid ""
+"The next screen asks if your connection uses a proxy. In most cases, this is"
+" not necessary. You will usually know if you need to answer “Yes”, as the "
+"same settings will be used for other browsers on your system. If possible, "
+"ask your network administrator for guidance. If your connection does not use"
+" a proxy, click “Continue”."
+msgstr ""
+"Sonraki bölümde bağlantınızın bir vekil sunucu kullanıp kullanmadığı "
+"hakkında bilgi alınır. Çoğu durumda, bu gerekli değildir. Sisteminizdeki "
+"diğer tarayıcılar için de aynı ayarlar kullanıldığından \"Evet\" olarak "
+"seçmeniz gerekiyorsa genellikle bunu bilirsiniz. Olabiliyorsa, ağ "
+"yöneticinizden yardım isteyin. Bağlantınız bir vekil sunucu kullanmıyorsa, "
+"\"Devam\" üzerine tıklayın."
+
+#: https//tb-manual.torproject.org/en-US/running-tor-browser/
+#: (content/running-tor-browser/contents+en-US.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/en-US/running-tor-browser/
+#: (content/running-tor-browser/contents+en-US.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+
+#: https//tb-manual.torproject.org/en-US/bridges/
+#: (content/bridges/contents+en-US.lrtopic.title)
+msgid "Bridges"
+msgstr "Köprüler"
+
+#: https//tb-manual.torproject.org/en-US/bridges/
+#: (content/bridges/contents+en-US.lrtopic.description)
+msgid ""
+"Most Pluggable Transports, such as obfs3 and obfs4, rely on the use of "
+"“bridge” relays."
+msgstr ""
+"obfs3 ve obfs4 gibi çoğu Değiştirilebilir Taşıyıcılar, “köprü” aktarıcılar "
+"kullanır. "
+
+#: https//tb-manual.torproject.org/en-US/bridges/
+#: (content/bridges/contents+en-US.lrtopic.body)
+msgid ""
+"Most <a href=\"/transports\">Pluggable Transports</a>, such as obfs3 and "
+"obfs4, rely on the use of “bridge” relays. Like ordinary Tor relays, bridges"
+" are run by volunteers; unlike ordinary relays, however, they are not listed"
+" publicly, so an adversary cannot identify them easily. Using bridges in "
+"combination with pluggable transports helps to disguise the fact that you "
+"are using Tor."
+msgstr ""
+"obfs3 ve obfs4 gibi çoğu <a href=\"/transports\">Değiştirilebilir "
+"Taşıyıcılar</a>, “köprü” aktarıcılar kullanır. Sıradan Tor aktarıcıları gibi"
+" köprüler de gönüllüler tarafından işletilir. Ancak sıradan aktarıcılardan "
+"farklı olarak herkese açık olarak duyurulmazlar. Böylece izleme yapanlar "
+"köprüleri kolayca belirleyemez. Köprülerin Değiştirilebilir Taşıyıcılar ile "
+"birlikte kullanılması trafiğinizin Tor ile gizlenmesine yardımcı olur."
+
+#: https//tb-manual.torproject.org/en-US/bridges/
+#: (content/bridges/contents+en-US.lrtopic.body)
+msgid ""
+"Other pluggable transports, like meek, use different anti-censorship "
+"techniques that do not rely on bridges. You do not need to obtain bridge "
+"addresses in order to use these transports."
+msgstr ""
+"Meek gibi diğer Değiştirilebilir Taşıyıcılar, köprülerden yararlanan farklı "
+"karşı-sansür teknikleri kullanır. Bu aktarımları kullanmak için köprü "
+"adreslerinin eklenmesi gerekmez."
+
+#: https//tb-manual.torproject.org/en-US/bridges/
+#: (content/bridges/contents+en-US.lrtopic.body)
+msgid "##### Getting bridge addresses"
+msgstr "##### Köprü adreslerini edinme"
+
+#: https//tb-manual.torproject.org/en-US/bridges/
+#: (content/bridges/contents+en-US.lrtopic.body)
+msgid ""
+"Because bridge addresses are not public, you will need to request them "
+"yourself. You have two options:"
+msgstr ""
+"Köprü adresleri herkese açık olarak duyurulmadığından, istekte bulunmanız "
+"gerekir. Kullanılabilecek iki seçenek vardır:"
+
+#: https//tb-manual.torproject.org/en-US/bridges/
+#: (content/bridges/contents+en-US.lrtopic.body)
+msgid ""
+"* Visit https://bridges.torproject.org/ and follow the instructions, or"
+msgstr ""
+"* https://bridges.torproject.org/ adresine giderek yönergeleri izleyin"
+
+#: https//tb-manual.torproject.org/en-US/bridges/
+#: (content/bridges/contents+en-US.lrtopic.body)
+msgid ""
+"* Email bridges(a)torproject.org from a Gmail, Yahoo, or Riseup email address"
+msgstr ""
+"* bridges(a)torproject.org'a Gmail, Yahoo ya da Riseup aracılığıyla bir "
+"e-posta atın"
+
+#: https//tb-manual.torproject.org/en-US/bridges/
+#: (content/bridges/contents+en-US.lrtopic.body)
+msgid "##### Entering bridge addresses"
+msgstr "##### Köprü adreslerini yazma"
+
+#: https//tb-manual.torproject.org/en-US/bridges/
+#: (content/bridges/contents+en-US.lrtopic.body)
+msgid ""
+"Once you have obtained some bridge addresses, you will need to enter them "
+"into Tor Launcher."
+msgstr "Aldığınız köprü adreslerini Tor Başlatıcı içine yazmanız gerekir."
+
+#: https//tb-manual.torproject.org/en-US/bridges/
+#: (content/bridges/contents+en-US.lrtopic.body)
+msgid ""
+"If you're starting Tor Browser for the first time, click 'Configure' to open"
+" the Tor Network Settings window. Otherwise, click the Torbutton to the left"
+" of the URL bar, then select 'Tor Network Settings...' to access these "
+"options."
+msgstr ""
+"Tor Browser'ı ilk defa kullanıyorsanız, ekranın sağ üst köşesindeki "
+"\"Yapılandır\" tuşuna basarak Tor Browser Ayarları penceresini açın. Bu "
+"pencereye URL barının solundaki Tor tuşuna basıp \"Tor Ağ Ayarları...\"'nı "
+"seçerek de erişebilirsiniz."
+
+#: https//tb-manual.torproject.org/en-US/bridges/
+#: (content/bridges/contents+en-US.lrtopic.body)
+msgid ""
+"In the Tor Network Settings window, select 'Tor is censored in my country.' "
+"Then, select 'Provide a bridge I know' and enter each bridge address on a "
+"separate line."
+msgstr ""
+"Tor Ağ Ayarları peneresinde 'Tor benim ülkemde sansürlendi.' seçeneğini "
+"seçip 'Bildiğim bir köprü kullan' bölümüne girin ve her bir köprüyü farklı "
+"satırlar halinde girin."
+
+#: https//tb-manual.torproject.org/en-US/bridges/
+#: (content/bridges/contents+en-US.lrtopic.body)
+msgid ""
+"<img class=\"col-md-6\" src=\"../../static/images/tor-launcher-custom-"
+"bridges.png\">"
+msgstr ""
+"<img class=\"col-md-6\" src=\"../../static/images/tor-launcher-custom-"
+"bridges.png\">"
+
+#: https//tb-manual.torproject.org/en-US/bridges/
+#: (content/bridges/contents+en-US.lrtopic.body)
+msgid ""
+"Click “OK” to save your settings. Using bridges may slow down the connection"
+" compared to using ordinary Tor relays."
+msgstr ""
+"\"Tamam\"'a basarak seçeneklerinizi kaydedin. Köprü kullanmak normal Tor "
+"bağlantılarına göre daha yavaş olabilir."
+
+#: https//tb-manual.torproject.org/en-US/bridges/
+#: (content/bridges/contents+en-US.lrtopic.body)
+msgid ""
+"If the connection fails, the bridges you received may be down. Please use "
+"one of the above methods to obtain more bridge addresses, and try again."
+msgstr ""
+"Eğer bağlantı başarısız olursa kullanmaya çalıştığınız köprüler yanlış ya da"
+" kapalı olabilir. Lütfen yukarıdaki yöntemleri kullanarak daha fazla köprü "
+"adresi bulup tekrar deneyin."
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.title)
+msgid "Pluggable transports"
+msgstr "Değiştirilebilir Taşıyıcılar"
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.description)
+msgid ""
+"Pluggable transports are tools that Tor can use to disguise the traffic it "
+"sends out."
+msgstr ""
+"Takılabilir aktarımlar, Tor'un gönderdiği trafiği gizlemek için "
+"kullanabileceği araçlardır."
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid ""
+"Pluggable transports are tools that Tor can use to disguise the traffic it "
+"sends out. This can be useful in situations where an Internet Service "
+"Provider or other authority is actively blocking connections to the Tor "
+"network."
+msgstr ""
+"Değiştirilebilir Taşıyıcılar, Tor tarafından gönderilen veri trafiğinin "
+"gizlenmesi için kullanılan araçlardır ve İnternet Hizmeti Sağlayıcısı ya da "
+"devlet kuruluşlarının Tor ağına olan bağlantıları etkin olarak engellediği "
+"durumlarda işe yarayabilir."
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid "##### Types of pluggable transport"
+msgstr "##### Değiştirilebilir Taşıyıcı Türleri"
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid ""
+"Currently there are six pluggable transports available, but more are being "
+"developed."
+msgstr ""
+"Şu anda altı Değiştirilebilir Taşıyıcı kullanılabilir, ancak daha fazlası "
+"geliştiriliyor."
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid "<table>"
+msgstr "<table>"
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid "<tbody>"
+msgstr "<tbody>"
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid "<tr class=\"odd\">"
+msgstr "<tr class=\"odd\">"
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid "<td>"
+msgstr "<td>"
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid "obfs3"
+msgstr "obfs3"
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid "</td>"
+msgstr "</td>"
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid ""
+"obfs3 makes Tor traffic look random, so that it does not look like Tor or "
+"any other protocol. While still included by default, it is reccomended to "
+"use obfs4 instead, as it has several security improvements over obfs3."
+msgstr ""
+"obfs3, Tor trafiğinin rastgeleymiş gibi görünmesini sağlar. Böylece Tor ya "
+"da başka herhangi bir iletişim kuralına benzemez. Hala varsayılan olarak "
+"kullanılsa da obfs3 yerine bazı güvenlik geliştirmeleri yapılmış obfs4 "
+"köprülerinin kullanılması önerilir."
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid "</tr>"
+msgstr "</tr>"
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid "<tr class=\"even\">"
+msgstr "<tr class=\"even\">"
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid "obfs4"
+msgstr "obfs4"
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid ""
+"obfs4 makes Tor traffic look random like obfs3, and also prevents censors "
+"from finding bridges by Internet scanning. obfs4 bridges are less likely to "
+"be blocked than obfs3 bridges."
+msgstr ""
+"obfs4, obfs3 gibi Tor trafiğinin rastgele görünmesini sağlar ve ayrıca ağı "
+"izleyenlerin İnternet taraması ile köprüleri bulmasını önler. obfs4 "
+"köprülerinin engellenme olasılığı, obfs3 köprülerine göre daha azdır."
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid "FTE"
+msgstr "FTE"
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid ""
+"FTE (format-transforming encryption) disguises Tor traffic as ordinary web "
+"(HTTP) traffic."
+msgstr ""
+"FTE (format-transforming encryption; biçim dönüştüren şifreleme), Tor "
+"trafiğini sıradan bir web (HTTP) trafiği gibi gizler."
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid "meek"
+msgstr "meek"
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid ""
+"meek transports all make it look like you are browsing a major web site "
+"instead of using Tor. meek-amazon makes it look like you are using Amazon "
+"Web Services; meek-azure makes it look like you are using a Microsoft web "
+"site; and meek-google makes it look like you are using Google search."
+msgstr ""
+"meek aktarımlarının hepsi Tor kullanıyor gibi görünmek yerine büyük bir web "
+"sitesinde geziliyormuş gibi görünmeyi sağlar. meek-amazon Amazon Web "
+"Hizmetleri kullanılıyormuş gibi; meek-azure, Microsoft web sitesi "
+"kullanılıyormuş gibi; meek-google, Google araması kullanılıyormuş gibi "
+"görünmeyi sağlar."
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid "Snowflake"
+msgstr "Snowflake"
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid ""
+"Snowflake is an improvement upon Flashproxy. It sends your traffic through "
+"WebRTC, a peer-to-peer protocol with built-in NAT punching."
+msgstr ""
+"Snowflake, Flashproxy uygulamasının geliştirilmiş bir sürümüdür. Ağ "
+"trafiğinizin kendi NAT işaretlemesini kullanan eşten eşe bir iletişim kuralı"
+" olan WebRTC üzerinden geçirilmesini sağlar."
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid "</tbody>"
+msgstr "</tbody>"
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid "</table>"
+msgstr "</table>"
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid "##### How to use pluggable transports"
+msgstr "##### Değiştirilebilir Taşıyıcılar nasıl kullanılır"
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid ""
+"To use a pluggable transport, first click the onion icon to the left of the "
+"URL bar, or click 'Configure' when starting Tor Browser for the first time."
+msgstr ""
+"Takılabilir bir aktarımı kullanmak için önce URL çubuğunun solundaki soğan "
+"simgesini tıklayın veya Tor Browser'ı ilk kez başlatırken 'Yapılandır'ı "
+"tıklayın."
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid "Next, select 'Tor Network Settings' from the drop-down menu."
+msgstr "Sonraki adım, Açılan menüden 'Tor Ağı Ayarları'nı seçin"
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid ""
+"In the window that appears, check 'Tor is censored in my country,' then "
+"click 'Select a built-in bridge.'"
+msgstr ""
+"Görünen pencerede 'Tor ülkemde sansürlendi' seçeneğini işaretleyin ve "
+"ardından 'Yerleşik köprü seçin' seçeneğini tıklayın."
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid ""
+"From the drop-down menu, select whichever pluggable transport you'd like to "
+"use."
+msgstr ""
+"Açılan menüden kullanmak istediğiniz Değiştirilebilir Taşıyıcıyı seçin"
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid ""
+"<img class=\"col-md-6\" "
+"src=\"../../static/images/pluggable_transport_network_settings.png\">"
+msgstr ""
+"<img class=\"col-md-6\" "
+"src=\"../../static/images/pluggable_transport_network_settings.png\">"
+
+#: https//tb-manual.torproject.org/en-US/transports/
+#: (content/transports/contents+en-US.lrtopic.body)
+msgid ""
+"Once you've selected the pluggable transport you'd like to use, click 'OK' "
+"to save your settings."
+msgstr ""
+"Kullanmak istediğiniz takılabilir aktarımı seçtikten sonra, ayarlarınızı "
+"kaydetmek için 'Tamam'ı tıklayın."
+
+#: https//tb-manual.torproject.org/en-US/circumvention/
+#: (content/circumvention/contents+en-US.lrtopic.title)
+msgid "Circumvention"
+msgstr "Engellemeyi aşma"
+
+#: https//tb-manual.torproject.org/en-US/circumvention/
+#: (content/circumvention/contents+en-US.lrtopic.description)
+msgid "What to do if the Tor network is blocked"
+msgstr "Tor ağı engelleniyorsa ne yapılabilir"
+
+#: https//tb-manual.torproject.org/en-US/circumvention/
+#: (content/circumvention/contents+en-US.lrtopic.body)
+msgid ""
+"Direct access to the Tor network may sometimes be blocked by your Internet "
+"Service Provider or by a government. Tor Browser includes some circumvention"
+" tools for getting around these blocks. These tools are called “pluggable "
+"transports”. See the <a href=\"/en-US/transports\">Pluggable Transports</a> "
+"page for more information on the types of transport that are currently "
+"available."
+msgstr ""
+"Tor ağına doğrudan erişim, bazen Internet Hizmeti Sağlayıcınız ya da hükümet"
+" tarafından engellenebilir. Bu engellemeleri aşmak için Tor Browser "
+"uygulamasında bazı araçlar bulunur. Bu araçlara \"Değiştirilebilir "
+"Taşıyıcılar\" denir. Kullanılabilecek aktarım türleri hakkında ayrıntılı "
+"bilgi almak için <a href=\"/en-US/transports\">Değiştirilebilir "
+"Taşıyıcılar</a> bölümüne bakabilirsiniz."
+
+#: https//tb-manual.torproject.org/en-US/circumvention/
+#: (content/circumvention/contents+en-US.lrtopic.body)
+msgid ""
+"Tor Browser currently has four pluggable transport options to choose from."
+msgstr ""
+"Tor Browser şu anda seçilebilecek dört takılabilir taşıma seçeneğine "
+"sahiptir."
+
+#: https//tb-manual.torproject.org/en-US/circumvention/
+#: (content/circumvention/contents+en-US.lrtopic.body)
+msgid "##### Using pluggable transports"
+msgstr "##### Değiştirilebilir Taşıyıcıları Kullanma"
+
+#: https//tb-manual.torproject.org/en-US/circumvention/
+#: (content/circumvention/contents+en-US.lrtopic.body)
+msgid ""
+"To use pluggable transports, click 'Configure' in the Tor Launcher window "
+"that appears when you first run Tor Browser."
+msgstr ""
+"Takılabilir aktarımları kullanmak için, Tor Browser uygulamasını ilk kez "
+"çalıştırdığınızda görüntülenen Tor Başlatıcı penceresindeki 'Yapılandır' "
+"düğmesine tıklayın."
+
+#: https//tb-manual.torproject.org/en-US/circumvention/
+#: (content/circumvention/contents+en-US.lrtopic.body)
+msgid ""
+"You can also configure pluggable transports while Tor Browser is running by "
+"clicking on the onion icon to the left of the address bar, then selecting "
+"'Tor Network Settings'."
+msgstr ""
+"Tor Browser çalışırken, adres çubuğunun solundaki soğan simgesine tıklayarak"
+" ve ardından 'Tor Network Settings' seçeneğini seçerek takılabilir "
+"aktarımları yapılandırabilirsiniz."
+
+#: https//tb-manual.torproject.org/en-US/circumvention/
+#: (content/circumvention/contents+en-US.lrtopic.body)
+msgid ""
+"Select 'Tor is censored in my country,' then click 'Select a built-in "
+"bridge.' Click on the drop-down menu and select the pluggable transport "
+"you'd like to use."
+msgstr ""
+"'Tor ülkemde sansürlendi' seçeneğini seçin, ardından 'Yerleşik köprü seçin' "
+"seçeneğini tıklayın. Açılır menüye tıklayın ve kullanmak istediğiniz "
+"takılabilir taşımayı seçin."
+
+#: https//tb-manual.torproject.org/en-US/circumvention/
+#: (content/circumvention/contents+en-US.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/bridges.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/bridges.png\">"
+
+#: https//tb-manual.torproject.org/en-US/circumvention/
+#: (content/circumvention/contents+en-US.lrtopic.body)
+msgid "Click 'OK' to save your settings."
+msgstr "Ayarlarınızı kaydetmek için 'Tamam'a basın."
+
+#: https//tb-manual.torproject.org/en-US/circumvention/
+#: (content/circumvention/contents+en-US.lrtopic.body)
+msgid "##### Which transport should I use?"
+msgstr "##### Hangi aktarımı kullanmalıyım?"
+
+#: https//tb-manual.torproject.org/en-US/circumvention/
+#: (content/circumvention/contents+en-US.lrtopic.body)
+msgid ""
+"Each of the transports listed in Tor Launcher’s menu works in a different "
+"way (for more details, see the <a href=\"/en-US/transports\">Pluggable "
+"Transports</a> page), and their effectiveness depends on your individual "
+"circumstances."
+msgstr ""
+"Tor Başlatıcı menüsünde görüntülenen aktarımlardan her biri farklı bir "
+"şekilde çalışır (ayrıntılı bilgi almak için <a href=\"/en-"
+"US/transports\">Değiştirilebilir Taşıyıcılar</a> sayfasına bakabilirsiniz) "
+"ve etkinlikleri size özel koşullara bağlıdır."
+
+#: https//tb-manual.torproject.org/en-US/circumvention/
+#: (content/circumvention/contents+en-US.lrtopic.body)
+msgid ""
+"If you are trying to circumvent a blocked connection for the first time, you"
+" should try the different transports: obfs3, obfs4, fte, and meek-azure."
+msgstr ""
+"Engellenen bir bağlantıyı ilk kez atlatmaya çalışıyorsanız, farklı "
+"aktarımları denemelisiniz: obfs3, obfs4, fte ve meek-azure."
+
+#: https//tb-manual.torproject.org/en-US/circumvention/
+#: (content/circumvention/contents+en-US.lrtopic.body)
+msgid ""
+"If you try all of these options, and none of them gets you online, you will "
+"need to enter bridge addresses manually. Read the <a href=\"/en-"
+"US/bridges/\">Bridges</a> section to learn what bridges are and how to "
+"obtain them."
+msgstr ""
+"Bu seçeneklerin tümünü denediğiniz halde hiçbiri çevrimiçi olmanızı "
+"sağlayamıyor ise, köprü adreslerini el ile yazmanız gerekir. Köprülerin ne "
+"olduğunu ve bilgilerini nasıl edinebileceğinizi öğrenmek için <a href=\"/en-"
+"US/bridges/\">Köprüler</a> bölümüne bakabilirsiniz."
+
+#: https//tb-manual.torproject.org/en-US/managing-identities/
+#: (content/managing-identities/contents+en-US.lrtopic.title)
+msgid "Managing identities"
+msgstr "Kimlik yönetimi"
+
+#: https//tb-manual.torproject.org/en-US/managing-identities/
+#: (content/managing-identities/contents+en-US.lrtopic.description)
+msgid "Learn how to control personally-identifying information in Tor Browser"
+msgstr ""
+"Tor Browser üzerinde sizi kişisel olarak tanımlayan bilgileri nasıl "
+"denetleyebileceğinizi öğrenin"
+
+#: https//tb-manual.torproject.org/en-US/managing-identities/
+#: (content/managing-identities/contents+en-US.lrtopic.body)
+msgid ""
+"When you connect to a website, it is not only the operators of that website "
+"who can record information about your visit. Most websites now use numerous "
+"third-party services, including social networking “Like” buttons, analytics "
+"trackers, and advertising beacons, all of which can link your activity "
+"across different sites."
+msgstr ""
+"Bir web sitesine bağlandığınızda, ziyaretinizle ilgili bilgiler yalnızca o "
+"siteyi hazırlayanlar tarafından kaydedilmez. Pek çok web sitesinde, sosyal "
+"ağ \"Beğen\" düğmeleri, analitik izleyiciler ve reklam işaretleri gibi "
+"sayısız üçüncü taraf hizmetleri kullanılır. Bunların tümü, farklı sitelerde "
+"yaptığınız işlemleri birbiriyle ilişkilendirebilir."
+
+#: https//tb-manual.torproject.org/en-US/managing-identities/
+#: (content/managing-identities/contents+en-US.lrtopic.body)
+msgid ""
+"Using the Tor network stops observers from being able to discover your exact"
+" location and IP address, but even without this information they might be "
+"able to link different areas of your activity together. For this reason, Tor"
+" Browser includes some additional features that help you control what "
+"information can be tied to your identity."
+msgstr ""
+"Tor ağını kullandığınızda, ağı izleyen kişi ya da kuruluşlar sizin "
+"konumunuzu ve IP adresinizi tam olarak bilemez. Ancak bu bilgiler olmadan da"
+" farklı alanlarda yaptığınız işlemlere bakarak bunları birbiriyle "
+"ilişkilendirebilir. Bu nedenle Tor Browser, kimliğinize hangi bilgilerin "
+"eklenebileceğini denetlemenizi sağlayan bazı ek özellikler içerir."
+
+#: https//tb-manual.torproject.org/en-US/managing-identities/
+#: (content/managing-identities/contents+en-US.lrtopic.body)
+msgid "##### The URL bar"
+msgstr "##### Adres çubuğu"
+
+#: https//tb-manual.torproject.org/en-US/managing-identities/
+#: (content/managing-identities/contents+en-US.lrtopic.body)
+msgid ""
+"Tor Browser centers your web experience around your relationship with the "
+"website in the URL bar. Even if you connect to two different sites that use "
+"the same third-party tracking service, Tor Browser will force the content to"
+" be served over two different Tor circuits, so the tracker will not know "
+"that both connections originate from your browser."
+msgstr ""
+"Tor Browser, adres çubuğundaki web sitesi ile olan ilişkinizi web "
+"deneyiminizin merkezine alır. Aynı üçüncü taraf izleme hizmetini kullanan "
+"iki farklı siteye bağlansanız bile Tor Browser, içeriğin iki farklı Tor "
+"devresinden alınmasını sağlar. Böylece izleyici her iki bağlantının da sizin"
+" tarayıcınızdan kurulduğunu bilemez."
+
+#: https//tb-manual.torproject.org/en-US/managing-identities/
+#: (content/managing-identities/contents+en-US.lrtopic.body)
+msgid ""
+"On the other hand, all connections to a single website address will be made "
+"over the same Tor circuit, meaning you can browse different pages of a "
+"single website in separate tabs or windows, without any loss of "
+"functionality."
+msgstr ""
+"Diğer taraftan, tek bir web sitesi adresine yapılan bağlantılar, aynı Tor "
+"devresini kullanır. Yani, tek bir web sitesinin farklı sayfalarında ayrı "
+"sekme ya da pencerelerde herhangi bir işlev kaybı olmadan gezinebilirsiniz."
+
+#: https//tb-manual.torproject.org/en-US/managing-identities/
+#: (content/managing-identities/contents+en-US.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/circuit_full.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/circuit_full.png\">"
+
+#: https//tb-manual.torproject.org/en-US/managing-identities/
+#: (content/managing-identities/contents+en-US.lrtopic.body)
+msgid ""
+"You can see a diagram of the circuit that Tor Browser is using for the "
+"current tab in the site information menu, in the URL bar."
+msgstr ""
+"Tor Tarayıcı'nın kullandığı devre şemasını, URL çubuğunda, site bilgileri "
+"menüsünde geçerli sekme için görebilirsiniz."
+
+#: https//tb-manual.torproject.org/en-US/managing-identities/
+#: (content/managing-identities/contents+en-US.lrtopic.body)
+msgid ""
+"In the circuit, the Guard or entry node is the first node and it's "
+"automatically and randomly selected by Tor. But it is different from the "
+"other nodes in the circuit. In order to avoid profiling attacks, the Guard "
+"node changes only after 2-3 months, unlike the other nodes, which change "
+"with every new domain. For more information about Guards, consult the <a "
+"href=\"https://www.torproject.org/docs/faq#EntryGuards\">FAQ</a> and <a "
+"href=\"https://support.torproject.org/tbb/tbb-2/\">Support Portal</a>."
+msgstr ""
+"Devrede, Muhafız veya giriş düğümü ilk düğümdür ve Tor tarafından otomatik "
+"ve rasgele seçilir. Ancak, devredeki diğer düğümlerden farklıdır. Profil "
+"saldırılarını önlemek için, Muhafız düğümü, her yeni alanla değişen diğer "
+"düğümlerin aksine, yalnızca 2-3 ay sonra değişir. Muhafızlar hakkında daha "
+"fazla bilgi için, <a "
+"href=\"https://www.torproject.org/docs/faq#EntryGuards\">SSS</a> ve <a "
+"href=\"https://support.torproject.org/tbb/tbb-2/\">Destek Portalı</a>."
+
+#: https//tb-manual.torproject.org/en-US/managing-identities/
+#: (content/managing-identities/contents+en-US.lrtopic.body)
+msgid "##### Logging in over Tor"
+msgstr "##### Tor üzerinden oturum açma"
+
+#: https//tb-manual.torproject.org/en-US/managing-identities/
+#: (content/managing-identities/contents+en-US.lrtopic.body)
+msgid ""
+"Although Tor Browser is designed to enable total user anonymity on the web, "
+"there may be situations in which it makes sense to use Tor with websites "
+"that require usernames, passwords, or other identifying information."
+msgstr ""
+"Tor Browser, web üzerinde tam kullanıcı anonimliği sağlamak için "
+"tasarlanmıştır. Ancak kullanıcı adı, parola ya da diğer tanımlayıcı bilgiler"
+" isteyen web siteleri ile de Tor Browser kullanmanın mantıklı olduğu "
+"durumlar olabilir."
+
+#: https//tb-manual.torproject.org/en-US/managing-identities/
+#: (content/managing-identities/contents+en-US.lrtopic.body)
+msgid ""
+"If you log into a website using a regular browser, you also reveal your IP "
+"address and geographical location in the process. The same is often true "
+"when you send an email. Logging into your social networking or email "
+"accounts using Tor Browser allows you to choose exactly which information "
+"you reveal to the websites you browse. Logging in using Tor Browser is also "
+"useful if the website you are trying to reach is censored on your network."
+msgstr ""
+"Normal bir tarayıcı kullanarak bir web sitesinde oturum açtığınızda, IP "
+"adresinizi ve coğrafi konumunuzu açıklamış olursunuz. Aynı durum genellikle "
+"e-posta gönderirken de geçerlidir. Tor Browser kullanarak sosyal ağ ya da "
+"e-posta hesaplarınızda oturum açarken hangi bilgileri açıklayacağınızı "
+"seçebilirsiniz. Erişmek istediğiniz web sitesi ağınızda sansürleniyorsa, Tor"
+" Browser kullanarak oturum açabilirsiniz."
+
+#: https//tb-manual.torproject.org/en-US/managing-identities/
+#: (content/managing-identities/contents+en-US.lrtopic.body)
+msgid ""
+"When you log in to a website over Tor, there are several points you should "
+"bear in mind:"
+msgstr ""
+"Tor kullanarak bir web sitesinde oturum açarken unutmamanız gereken bazı "
+"konular şunlardır:"
+
+#: https//tb-manual.torproject.org/en-US/managing-identities/
+#: (content/managing-identities/contents+en-US.lrtopic.body)
+msgid ""
+"* See the <a href=\"/secure-connections\">Secure Connections</a> page for "
+"important information on how to secure your connection when logging in."
+msgstr ""
+"* Oturum açarken bağlantınızı korumakla ilgili önemli bilgileri görmek için "
+"<a href=\"/secure-connections\">Güvenli Bağlantılar</a> bölümüne "
+"bakabilirsiniz."
+
+#: https//tb-manual.torproject.org/en-US/managing-identities/
+#: (content/managing-identities/contents+en-US.lrtopic.body)
+msgid ""
+"* Tor Browser often makes your connection appear as though it is coming from"
+" an entirely different part of the world. Some websites, such as banks or "
+"email providers, might interpret this as a sign that your account has been "
+"hacked or compromised, and lock you out. The only way to resolve this is by "
+"following the site’s recommended procedure for account recovery, or "
+"contacting the operators and explaining the situation."
+msgstr ""
+"* Tor Browser sıklıkla bağlantınızı dünyanın tümüyle başka bir yerinden "
+"geliyor gibi gösterir. Bankalar ya da e-posta hizmeti sağlayıcıları gibi "
+"bazı web siteleri, bu durumu hesabınızın saldırıya uğradığı ya da ele "
+"geçirildiği şeklinde yorumlayarak hesabınızı kilitleyebilir. Bu durumu "
+"çözmenin tek yolu, ilgili sitenin hesap kurtarma için önerdiği yöntemi "
+"izlemek ya da hizmet sağlayıcı ile görüşerek durumu açıklamaktır."
+
+#: https//tb-manual.torproject.org/en-US/managing-identities/
+#: (content/managing-identities/contents+en-US.lrtopic.body)
+msgid "##### Changing identities and circuits"
+msgstr "##### Kimlik ve devre değiştirme"
+
+#: https//tb-manual.torproject.org/en-US/managing-identities/
+#: (content/managing-identities/contents+en-US.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/new_identity.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/new_identity.png\">"
+
+#: https//tb-manual.torproject.org/en-US/managing-identities/
+#: (content/managing-identities/contents+en-US.lrtopic.body)
+msgid ""
+"Tor Browser features “New Identity” and “New Tor Circuit for this Site” "
+"options, located in the main menu (hamburger menu)."
+msgstr ""
+"Tor Browser \"Yeni Kişilik\" ve \"Bu site için yeni Tor Devresi\" "
+"özelliklerini ana menüde barındırır."
+
+#: https//tb-manual.torproject.org/en-US/managing-identities/
+#: (content/managing-identities/contents+en-US.lrtopic.body)
+msgid "###### New Identity"
+msgstr "##### Yeni Kimlik"
+
+#: https//tb-manual.torproject.org/en-US/managing-identities/
+#: (content/managing-identities/contents+en-US.lrtopic.body)
+msgid ""
+"This option is useful if you want to prevent your subsequent browser "
+"activity from being linkable to what you were doing before. Selecting it "
+"will close all your open tabs and windows, clear all private information "
+"such as cookies and browsing history, and use new Tor circuits for all "
+"connections. Tor Browser will warn you that all activity and downloads will "
+"be stopped, so take this into account before clicking “New Identity”."
+msgstr ""
+"Bu seçenek, web tarayıcısında yapacağınız işlemlerin daha önce yaptığınız "
+"işlemler ile bağlantılı olmasını istemediğinizde işe yarar. Bu seçenek "
+"kullanıldığında, açık tüm sekmeler ve pencereler kapatılır, çerez ve tarama "
+"geçmişi gibi tüm özel bilgiler temizlenir ve tüm bağlantılar için yeni Tor "
+"devreleri kullanılır. Tor Browser size tüm işlemlerin ve indirmelerin "
+"durdurulacağını bildirir. Bu yüzden \"Yeni Kimlik\" üzerine tıklamadan önce "
+"bunu aklınızda bulundurun."
+
+#: https//tb-manual.torproject.org/en-US/managing-identities/
+#: (content/managing-identities/contents+en-US.lrtopic.body)
+msgid "###### New Tor circuit for this site"
+msgstr "##### Bu Sitenin Tor Devresini Yenile"
+
+#: https//tb-manual.torproject.org/en-US/managing-identities/
+#: (content/managing-identities/contents+en-US.lrtopic.body)
+msgid ""
+"This option is useful if the <a href=\"/about/#how-tor-works\">exit "
+"relay</a> you are using is unable to connect to the website you require, or "
+"is not loading it properly. Selecting it will cause the currently-active tab"
+" or window to be reloaded over a new Tor circuit. Other open tabs and "
+"windows from the same website will use the new circuit as well once they are"
+" reloaded. This option does not clear any private information or unlink your"
+" activity, nor does it affect your current connections to other websites."
+msgstr ""
+"Bu seçenek, kullandığınız <a href=\"/about/#how-tor-works\">çıkış "
+"aktarıcısı</a>istediğiniz web sitesine bağlanamıyorsa ya da site düzgün "
+"yüklenmiyorsa işe yarar. Seçildiğinde, etkin sekme ya da pencerenin yeni bir"
+" Tor devresi üzerinden yeniden yüklenmesini sağlar. Aynı web sitesinden "
+"açılmış diğer sekme ve pencereler de yeniden yüklendiklerinde bu yeni "
+"devreyi kullanır. Bu seçeneğin kullanılması, herhangi bir kişisel bilgiyi "
+"temizlemez, işlemlerinizi kesintiye uğratmaz ya da açık olan diğer web "
+"sitesi bağlantılarınızı etkilemez."
+
+#: https//tb-manual.torproject.org/en-US/managing-identities/
+#: (content/managing-identities/contents+en-US.lrtopic.body)
+msgid ""
+"You can also access this option in the new circuit display, in the site "
+"information menu, in the URL bar."
+msgstr ""
+"Bu seçeneğe ayrıca URL barındaki site bilgi menüsünün içinde, devre "
+"ekranında bulabilirsiniz."
+
+#: https//tb-manual.torproject.org/en-US/onion-services/
+#: (content/onion-services/contents+en-US.lrtopic.title)
+msgid "Onion Services"
+msgstr "Onion Hizmetleri"
+
+#: https//tb-manual.torproject.org/en-US/onion-services/
+#: (content/onion-services/contents+en-US.lrtopic.description)
+msgid "Services that are only accessible using Tor"
+msgstr "Yalnızca Tor kullanarak erişilebilen hizmetler"
+
+#: https//tb-manual.torproject.org/en-US/onion-services/
+#: (content/onion-services/contents+en-US.lrtopic.body)
+msgid ""
+"Onion services (formerly known as “hidden services”) are services (like "
+"websites) that are only accessible through the Tor network."
+msgstr ""
+"Onion hizmetleri (eskiden \"gizli hizmetler\" denirdi) yalnızca Tor ağı "
+"üzerinden erişilebilen hizmetlerdir (web siteleri gibi)."
+
+#: https//tb-manual.torproject.org/en-US/onion-services/
+#: (content/onion-services/contents+en-US.lrtopic.body)
+msgid ""
+"Onion services offer several advantages over ordinary services on the non-"
+"private web:"
+msgstr ""
+"Onion hizmetleri, web üzerindeki gizli olmayan sıradan hizmetlere göre "
+"çeşitli avantajlar sunar:"
+
+#: https//tb-manual.torproject.org/en-US/onion-services/
+#: (content/onion-services/contents+en-US.lrtopic.body)
+msgid ""
+"* An onion services’s location and IP address are hidden, making it "
+"difficult for adversaries to censor it or identify its operators."
+msgstr ""
+"* Bir Onion hizmetinin konumu ve IP adresi gizlidir. Böylece engellenmeleri "
+"ya da bağlı oldukları ya da işletmecilerin kullandığı hizmet sağlayıcıların "
+"belirlenmesi zorlaştırılmış olur."
+
+#: https//tb-manual.torproject.org/en-US/onion-services/
+#: (content/onion-services/contents+en-US.lrtopic.body)
+msgid ""
+"* All traffic between Tor users and onion services is end-to-end encrypted, "
+"so you do not need to worry about <a href=\"/secure-connections\">connecting"
+" over HTTPS</a>."
+msgstr ""
+"* Tor kullanıcıları ile Onion hizmetleri arasındaki tüm trafik uçtan uca "
+"şifrelenir. Bu nedenle <a href=\"/secure-connections\">HTTPS bağlantısı "
+"kurmak</a> hakkında endişelenmenize gerek yoktur."
+
+#: https//tb-manual.torproject.org/en-US/onion-services/
+#: (content/onion-services/contents+en-US.lrtopic.body)
+msgid ""
+"* The address of an onion service is automatically generated, so the "
+"operators do not need to purchase a domain name; the .onion URL also helps "
+"Tor ensure that it is connecting to the right location and that the "
+"connection is not being tampered with."
+msgstr ""
+"* Bir Onion hizmetinin adresi otomatik olarak üretilir. Böylece siteyi "
+"hazırlayanların bir alan adı satın alması gerekmez. .onion adresinin "
+"kullanılması ayrıca Tor bağlantısının doğru konuma yapıldığından ve "
+"bağlantıya müdahale edilmediğinden emin olunmasını sağlar."
+
+#: https//tb-manual.torproject.org/en-US/onion-services/
+#: (content/onion-services/contents+en-US.lrtopic.body)
+msgid "##### How to access an onion service"
+msgstr "##### Onion hizmetine nasıl erişilir"
+
+#: https//tb-manual.torproject.org/en-US/onion-services/
+#: (content/onion-services/contents+en-US.lrtopic.body)
+msgid ""
+"Just like any other website, you will need to know the address of an onion "
+"service in order to connect to it. An onion address is a string of 16 (and "
+"in V3 format, 56) mostly random letters and numbers, followed by “.onion”."
+msgstr ""
+"Diğer web siteleri gibi, bir Onion hizmetine bağlanmak için adresini "
+"bilmeniz gerekir. Onion adresi, çoğunlukla rastgele 16 harf ve rakamdan "
+"oluşan (V3 biçiminde 56) ve \".onion\" ile biten bir dizgedir."
+
+#: https//tb-manual.torproject.org/en-US/onion-services/
+#: (content/onion-services/contents+en-US.lrtopic.body)
+msgid ""
+"When accessing a website that uses an onion service, Tor Browser will show "
+"at the URL bar an icon of a little green onion displaying the state of your "
+"connection: secure and using an onion service. And if you're accessing a "
+"website with https and onion service, it will show an icon of a green onion "
+"and a padlock."
+msgstr ""
+"Soğan servisini kullanan bir web sitesine erişirken, Tor Browser URL "
+"çubuğunda bağlantınızın durumunu gösteren küçük bir soğan ikonu "
+"gösterecektir: güvenli ve bir soğan servisi kullanılarak bağlantı. Https ve "
+"soğan servisli bir siteye giriyorsanız, yeşil soğan simgesi ve asma kilit "
+"gösterilecektir."
+
+#: https//tb-manual.torproject.org/en-US/onion-services/
+#: (content/onion-services/contents+en-US.lrtopic.body)
+msgid "##### Troubleshooting"
+msgstr "##### Sorun çözme"
+
+#: https//tb-manual.torproject.org/en-US/onion-services/
+#: (content/onion-services/contents+en-US.lrtopic.body)
+msgid ""
+"If you cannot reach the onion service you require, make sure that you have "
+"entered the onion address correctly: even a small mistake will stop Tor "
+"Browser from being able to reach the site."
+msgstr ""
+"İstediğiniz Onion hizmetine erişemiyorsanız, onion adresini doğru "
+"yazdığınızdan emin olun. Küçük bir hata bile Tor Browser tarafından siteye "
+"ulaşılmasını engeller."
+
+#: https//tb-manual.torproject.org/en-US/onion-services/
+#: (content/onion-services/contents+en-US.lrtopic.body)
+msgid ""
+"If you are still unable to connect to the onion service, please try again "
+"later. There may be a temporary connection issue, or the site operators may "
+"have allowed it to go offline without warning."
+msgstr ""
+"Onion hizmetine gene de bağlanamıyorsanız, lütfen daha sonra yeniden "
+"deneyin. Geçici bir bağlantı sorunu olabilir ya da siteyi hazırlayanlar "
+"uyarı olmadan sitenin çevrimdışı kalmasına izin vermiş olabilir."
+
+#: https//tb-manual.torproject.org/en-US/onion-services/
+#: (content/onion-services/contents+en-US.lrtopic.body)
+msgid ""
+"You can also ensure that you're able to access other onion services by "
+"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion/\">DuckDuckGo's Onion "
+"Service</a>"
+msgstr ""
+"Ayrıca <a href=\"http://3g2upl4pq6kufc4m.onion/\">DuckDuckGo Onion "
+"Hizmeti</a>sayfasına bağlanarak diğer Onion hizmetlerine erişebildiğinizden "
+"emin olabilirsiniz"
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.title)
+msgid "Secure Connections"
+msgstr "Güvenli Bağlantılar"
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.description)
+msgid "Learn how to protect your data using Tor Browser and HTTPS"
+msgstr "Verilerinizi Tor Browser ve HTTPS kullanarak nasıl koruyabilirsiniz"
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.body)
+msgid ""
+"If personal information such as a login password travels unencrypted over "
+"the Internet, it can very easily be intercepted by an eavesdropper. If you "
+"are logging into any website, you should make sure that the site offers "
+"HTTPS encryption, which protects against this kind of eavesdropping. You can"
+" verify this in the URL bar: if your connection is encrypted, the address "
+"will begin with “https://”, rather than “http://”."
+msgstr ""
+"Oturum açma parolası gibi kişisel bilgiler şifrelenmemiş olarak İnternet "
+"üzerine gönderilirse, ağı izleyebilecek bir kişi ya da kuruluş tarafından "
+"kolayca elde edilebilir. Herhangi bir web sitesinde oturum açıyorsanız, "
+"sitenin bu tür bir izlemeye karşı HTTPS şifreleme hizmeti sunduğundan emin "
+"olmanız gerekir. Bunu adres çubuğundan görebilirsiniz: Bağlantınız şifreli "
+"ise, adresin başında \"http://\" yerine \"https://\" bulunur."
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/https.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/https.png\">"
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.body)
+msgid ""
+"The following visualization shows what information is visible to "
+"eavesdroppers with and without Tor Browser and HTTPS encryption:"
+msgstr ""
+"Tor Browser ve HTTPS şifrelemesinin bulunduğu ve bulunmadığı durumlarda sizi"
+" izleyebilecek kişi ya da kuruluşların hangi bilgilere erişebileceğini "
+"aşağıda görebilirsiniz:"
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.body)
+msgid "<img class=\"\" src=\"../../static/images/tor-and-https.svg\">"
+msgstr "<img class=\"\" src=\"../../static/images/tor-and-https.svg\">"
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.body)
+msgid ""
+"* Click the “Tor” button to see what data is visible to observers when "
+"you're using Tor. The button will turn green to indicate that Tor is on."
+msgstr ""
+"* Tor kullanırken ağı izleyenlerin elde edebileceği bilgileri görmek için "
+"\"Tor\" düğmesine tıklayın. Tor açık olduğunda düğme yeşil renkte olur."
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.body)
+msgid ""
+"* Click the “HTTPS” button to see what data is visible to observers when "
+"you're using HTTPS. The button will turn green to indicate that HTTPS is on."
+msgstr ""
+"* HTTPS kullanırken ağı izleyenlerin elde edebileceği bilgileri görmek için "
+"\"HTTPS\" düğmesine tıklayın. HTTPS açık olduğunda düğme yeşil renkte olur."
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.body)
+msgid ""
+"* When both buttons are green, you see the data that is visible to observers"
+" when you are using both tools."
+msgstr ""
+"* Her iki düğme de yeşil renk olduğunda, her iki araç kullanılırken ağı "
+"izleyenlerin elde edebileceği bilgileri görürsünüz."
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.body)
+msgid ""
+"* When both buttons are grey, you see the data that is visible to observers "
+"when you don't use either tool."
+msgstr ""
+"* Her iki düğmede gri renkte olduğunda, her iki araç kullanılmazken ağı "
+"izleyenlerin elde edebileceği bilgileri görürsünüz."
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.body)
+msgid "##### Potentially visible data"
+msgstr "##### Elde edilebilecek bilgiler"
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/security-slider/
+#: (content/security-slider/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/security-slider.html
+#: (content/security-slider.html/contents+en-US.lrtopic.body)
+msgid "<dl>"
+msgstr "<dl>"
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/security-slider/
+#: (content/security-slider/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/security-slider.html
+#: (content/security-slider.html/contents+en-US.lrtopic.body)
+msgid "<dt>"
+msgstr "<dt>"
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.body)
+msgid "Site.com"
+msgstr "Site.com"
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/security-slider/
+#: (content/security-slider/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/security-slider.html
+#: (content/security-slider.html/contents+en-US.lrtopic.body)
+msgid "</dt>"
+msgstr "</dt>"
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/security-slider/
+#: (content/security-slider/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/security-slider.html
+#: (content/security-slider.html/contents+en-US.lrtopic.body)
+msgid "<dd>"
+msgstr "<dd>"
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.body)
+msgid "The site being visited."
+msgstr "Ziyaret edilen site."
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/security-slider/
+#: (content/security-slider/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/security-slider.html
+#: (content/security-slider.html/contents+en-US.lrtopic.body)
+msgid "</dd>"
+msgstr "</dd>"
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.body)
+msgid "user / pw"
+msgstr "kul / par"
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.body)
+msgid "Username and password used for authentication."
+msgstr "Kimlik doğrulaması için kullanılan kullanıcı adı ve parola."
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.body)
+msgid "data"
+msgstr "veri"
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.body)
+msgid "Data being transmitted."
+msgstr "İletilen veriler."
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.body)
+msgid "location"
+msgstr "konum"
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.body)
+msgid ""
+"Network location of the computer used to visit the website (the public IP "
+"address)."
+msgstr ""
+"Web sitesini ziyaret eden bilgisayarın ağ konumu (herkese açık IP adresi)."
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.body)
+msgid "Tor"
+msgstr "Tor"
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.body)
+msgid "Whether or not Tor is being used."
+msgstr "Tor kullanılıp kullanılmadığı."
+
+#: https//tb-manual.torproject.org/en-US/secure-connections/
+#: (content/secure-connections/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/security-slider/
+#: (content/security-slider/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/security-slider.html
+#: (content/security-slider.html/contents+en-US.lrtopic.body)
+msgid "</dl>"
+msgstr "</dl>"
+
+#: https//tb-manual.torproject.org/en-US/security-slider/
+#: (content/security-slider/contents+en-US.lrtopic.title)
+#: https//tb-manual.torproject.org/en-US/security-slider.html
+#: (content/security-slider.html/contents+en-US.lrtopic.title)
+msgid "Security Slider"
+msgstr "Güvenlik Kaydırıcısı"
+
+#: https//tb-manual.torproject.org/en-US/security-slider/
+#: (content/security-slider/contents+en-US.lrtopic.description)
+#: https//tb-manual.torproject.org/en-US/security-slider.html
+#: (content/security-slider.html/contents+en-US.lrtopic.description)
+msgid "Configuring Tor Browser for security and usability"
+msgstr "Güvenlik ve kullanışlılık için Tor Browser yapılandırması"
+
+#: https//tb-manual.torproject.org/en-US/security-slider/
+#: (content/security-slider/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/security-slider.html
+#: (content/security-slider.html/contents+en-US.lrtopic.body)
+msgid ""
+"Tor Browser includes a “Security Slider” that lets you increase your "
+"security by disabling certain web features that can be used to attack your "
+"security and anonymity. Increasing Tor Browser’s security level will stop "
+"some web pages from functioning properly, so you should weigh your security "
+"needs against the degree of usability you require."
+msgstr ""
+"Tor Browser üzerinde, güvenlik ve anonimliğinizi azaltmak için "
+"kullanılabilecek belirli web özelliklerini devre dışı bırakarak "
+"güvenliğinizi arttırmanıza sağlayan bir \"Güvenlik Kaydırıcısı\" bulunur. "
+"Tor Browser güvenlik düzeyini arttırmak, bazı web sayfalarının düzgün "
+"çalışmasını engeller. Bu nedenle, güvenlik düzeyini, gerek duyduğunuz "
+"kullanışlılık derecesine göre seçmelisiniz."
+
+#: https//tb-manual.torproject.org/en-US/security-slider/
+#: (content/security-slider/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/security-slider.html
+#: (content/security-slider.html/contents+en-US.lrtopic.body)
+msgid "##### Accessing the Security Slider"
+msgstr "##### Güvenlik Kaydırıcısına Erişmek"
+
+#: https//tb-manual.torproject.org/en-US/security-slider/
+#: (content/security-slider/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/security-slider.html
+#: (content/security-slider.html/contents+en-US.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/slider.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/slider.png\">"
+
+#: https//tb-manual.torproject.org/en-US/security-slider/
+#: (content/security-slider/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/security-slider.html
+#: (content/security-slider.html/contents+en-US.lrtopic.body)
+msgid ""
+"The Security Slider is located in Torbutton’s “Security Settings” menu."
+msgstr "Güvenlik Kaydırıcısı, Torbutton \"Güvenlik Ayarları\" menüsünde bulunur."
+
+#: https//tb-manual.torproject.org/en-US/security-slider/
+#: (content/security-slider/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/security-slider.html
+#: (content/security-slider.html/contents+en-US.lrtopic.body)
+msgid "##### Security Levels"
+msgstr "##### Güvenlik Düzeyleri"
+
+#: https//tb-manual.torproject.org/en-US/security-slider/
+#: (content/security-slider/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/security-slider.html
+#: (content/security-slider.html/contents+en-US.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/slider_window.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/slider_window.png\">"
+
+#: https//tb-manual.torproject.org/en-US/security-slider/
+#: (content/security-slider/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/security-slider.html
+#: (content/security-slider.html/contents+en-US.lrtopic.body)
+msgid ""
+"Increasing the level of the Security Slider will disable or partially "
+"disable certain browser features to protect against possible attacks."
+msgstr ""
+"Güvenlik Kaydırıcısının düzeyi arttırıldığında olası saldırılara karşı "
+"koruma sağlamak için belirli tarayıcı özellikleri tamamen ya da kısmen devre"
+" dışı bırakılır."
+
+#: https//tb-manual.torproject.org/en-US/security-slider/
+#: (content/security-slider/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/security-slider.html
+#: (content/security-slider.html/contents+en-US.lrtopic.body)
+msgid "Safest"
+msgstr "En Güvenli"
+
+#: https//tb-manual.torproject.org/en-US/security-slider/
+#: (content/security-slider/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/security-slider.html
+#: (content/security-slider.html/contents+en-US.lrtopic.body)
+msgid ""
+"At this level, HTML5 video and audio media become click-to-play via "
+"NoScript; all JavaScript performance optimizations are disabled; some "
+"mathematical equations may not display properly; some font rendering "
+"features are disabled; some types of image are disabled; Javascript is "
+"disabled by default on all sites; most video and audio formats are disabled;"
+" and some fonts and icons may not display correctly."
+msgstr ""
+"Bu düzeyde, HTML5 görüntü ve ses ortamları NoScript üzerinden tıkla-oynat "
+"ile kullanılabilir. Tüm JavaScript başarım iyileştirmeleri devre dışı "
+"bırakılır. Bazı matematik denklemleri düzgün şekilde görüntülenmeyebilir. "
+"Bazı yazı türü görüntüleme özellikleri devre dışı bırakılır. Bazı görsel "
+"türleri devre dışı bırakılır. JavaScript varsayılan olarak tüm sitelerde "
+"devre dışıdır. Çoğu görüntü ve ses biçimi devre dışı bırakılır. Bazı yazı "
+"türleri ve simgeler doğru görüntülenmeyebilir."
+
+#: https//tb-manual.torproject.org/en-US/security-slider/
+#: (content/security-slider/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/security-slider.html
+#: (content/security-slider.html/contents+en-US.lrtopic.body)
+msgid "Safer"
+msgstr "Daha Güvenli"
+
+#: https//tb-manual.torproject.org/en-US/security-slider/
+#: (content/security-slider/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/security-slider.html
+#: (content/security-slider.html/contents+en-US.lrtopic.body)
+msgid ""
+"At this level, HTML5 video and audio media become click-to-play via "
+"NoScript; all JavaScript performance optimizations are disabled; some "
+"mathematical equations may not display properly; some font rendering "
+"features are disabled; some types of image are disabled; and JavaScript is "
+"disabled by default on all non-<a href=\"/secure-connections\">HTTPS</a> "
+"sites."
+msgstr ""
+"Bu düzeyde, HTML5 görüntü ve ses ortamları NoScript üzerinden tıkla-oynat "
+"ile kullanılabilir. Tüm JavaScript başarım iyileştirmeleri devre dışı "
+"bırakılır. Bazı matematik denklemleri düzgün şekilde görüntülenmeyebilir. "
+"Bazı yazı türü görüntüleme özellikleri devre dışı bırakılır. Bazı görsel "
+"türleri devre dışı bırakılır. JavaScript, varsayılan olarak <a href"
+"=\"secure-connections\">HTTPS</a> olmayan tüm sitelerde devre dışı "
+"bırakılır."
+
+#: https//tb-manual.torproject.org/en-US/security-slider/
+#: (content/security-slider/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/security-slider.html
+#: (content/security-slider.html/contents+en-US.lrtopic.body)
+msgid "Standard"
+msgstr "Standart"
+
+#: https//tb-manual.torproject.org/en-US/security-slider/
+#: (content/security-slider/contents+en-US.lrtopic.body)
+#: https//tb-manual.torproject.org/en-US/security-slider.html
+#: (content/security-slider.html/contents+en-US.lrtopic.body)
+msgid ""
+"At this level, all browser features are enabled. This is the most usable "
+"option."
+msgstr ""
+"Bu düzeyde, tüm tarayıcı özellikleri etkin olur. En kullanışlı seçenek "
+"budur."
+
+#: https//tb-manual.torproject.org/en-US/updating/
+#: (content/updating/contents+en-US.lrtopic.title)
+msgid "Updating"
+msgstr "Güncelleme"
+
+#: https//tb-manual.torproject.org/en-US/updating/
+#: (content/updating/contents+en-US.lrtopic.description)
+msgid "How to update Tor Browser"
+msgstr "Tor Browser nasıl güncellenir"
+
+#: https//tb-manual.torproject.org/en-US/updating/
+#: (content/updating/contents+en-US.lrtopic.body)
+msgid ""
+"Tor Browser must be kept updated at all times. If you continue to use an "
+"outdated version of the software, you may be vulnerable to serious security "
+"flaws that compromise your privacy and anonymity."
+msgstr ""
+"Tor Browser her zaman güncel tutulmalıdır. Uygulamanın eski bir sürümünü "
+"kullanmaya devam ederseniz, kişisel verileriniz gizliliğini ve anonim "
+"kalmasını tehlikeye atan ciddi güvenlik açıklarına karşı korumasız "
+"kalabilirsiniz."
+
+#: https//tb-manual.torproject.org/en-US/updating/
+#: (content/updating/contents+en-US.lrtopic.body)
+msgid ""
+"Tor Browser will prompt you to update the software once a new version has "
+"been released: the Torbutton icon will display a yellow triangle, and you "
+"may see a written update indicator when Tor Browser opens. You can update "
+"either automatically or manually."
+msgstr ""
+"Yeni bir Tor Browser sürümünün yayınlandığı size bildirilerek güncellemeniz "
+"istenir: Torbutton simgesinde sarı bir üçgen görüntülenir ve Tor Browser "
+"açıldığında bir güncelleme bildirimi görüntülenebilir. Güncelleme işlemini "
+"otomatik ya da el ile yapabilirsiniz."
+
+#: https//tb-manual.torproject.org/en-US/updating/
+#: (content/updating/contents+en-US.lrtopic.body)
+msgid "##### Updating Tor Browser automatically"
+msgstr "##### Otomatik Tor Browser güncellemesi"
+
+#: https//tb-manual.torproject.org/en-US/updating/
+#: (content/updating/contents+en-US.lrtopic.body)
+msgid "<img width=\"400\" src=\"../../static/images/update1.png\" />"
+msgstr "<img width=\"400\" src=\"../../static/images/update1.png\" />"
+
+#: https//tb-manual.torproject.org/en-US/updating/
+#: (content/updating/contents+en-US.lrtopic.body)
+msgid ""
+"When you are prompted to update Tor Browser, click on the Torbutton icon, "
+"then select “Check for Tor Browser Update”."
+msgstr ""
+"Tor Browser güncellemesi bildirildiğinde, Torbutton simgesine ve \"Tor "
+"Browser Güncelleme Denetimi\" üzerine tıklayın."
+
+#: https//tb-manual.torproject.org/en-US/updating/
+#: (content/updating/contents+en-US.lrtopic.body)
+msgid "<img width=\"600\" src=\"../../static/images/update3.png\" />"
+msgstr "<img width=\"600\" src=\"../../static/images/update3.png\" />"
+
+#: https//tb-manual.torproject.org/en-US/updating/
+#: (content/updating/contents+en-US.lrtopic.body)
+msgid ""
+"When Tor Browser has finished checking for updates, click on the “Update” "
+"button."
+msgstr ""
+"Tor Browser güncellemeleri denetlendiğinde \"Güncelle\" düğmesine tıklayın."
+
+#: https//tb-manual.torproject.org/en-US/updating/
+#: (content/updating/contents+en-US.lrtopic.body)
+msgid "<img width=\"600\" src=\"../../static/images/update4.png\" />"
+msgstr "<img width=\"600\" src=\"../../static/images/update4.png\" />"
+
+#: https//tb-manual.torproject.org/en-US/updating/
+#: (content/updating/contents+en-US.lrtopic.body)
+msgid ""
+"Wait for the update to download and install, then restart Tor Browser. You "
+"will now be running the latest version."
+msgstr ""
+"Güncellemenin indirilip kurulmasını bekleyin. Ardından Tor Browser "
+"uygulamasını yeniden başlatın. Böylece en son sürüm ile çalışmaya "
+"başlayabilirsiniz."
+
+#: https//tb-manual.torproject.org/en-US/updating/
+#: (content/updating/contents+en-US.lrtopic.body)
+msgid "##### Updating Tor Browser manually"
+msgstr "##### Tor Browser el ile nasıl güncellenir"
+
+#: https//tb-manual.torproject.org/en-US/updating/
+#: (content/updating/contents+en-US.lrtopic.body)
+msgid ""
+"When you are prompted to update Tor Browser, finish the browsing session and"
+" close the program."
+msgstr ""
+"Tor Browser güncellemesi bildirildiğinde, web sitelerindeki gezinmenizi "
+"bitirin ve programı kapatın."
+
+#: https//tb-manual.torproject.org/en-US/updating/
+#: (content/updating/contents+en-US.lrtopic.body)
+msgid ""
+"Remove Tor Browser from your system by deleting the folder that contains it "
+"(see the <a href='uninstalling'>Uninstalling</a> section for more "
+"information)."
+msgstr ""
+"Tor Browser uygulamasının bulunduğu klasörü silerek sisteminizden kaldırın "
+"(ayrıntılı bilgi almak için <a href='uninstalling'>Kaldırma</a> bölümüne "
+"bakın)."
+
+#: https//tb-manual.torproject.org/en-US/updating/
+#: (content/updating/contents+en-US.lrtopic.body)
+msgid ""
+"Visit <a "
+"href=\"https://www.torproject.org/projects/torbrowser.html.en\">https://www.torproject.org/projects/torbrowser.html.en</a>"
+" and download a copy of the latest Tor Browser release, then install it as "
+"before."
+msgstr ""
+"<a "
+"href=\"https://www.torproject.org/projects/torbrowser.html.en\">https://www.torproject.org/projects/torbrowser.html.en</a>"
+" adresine giderek en son Tor Browser sürümünün bir kopyasını indirin. "
+"Ardından daha önce olduğu gibi kurun."
+
+#: https//tb-manual.torproject.org/en-US/plugins/
+#: (content/plugins/contents+en-US.lrtopic.title)
+msgid "Plugins, add-ons and JavaScript"
+msgstr "Uygulama ekleri, eklentiler ve JavaScript"
+
+#: https//tb-manual.torproject.org/en-US/plugins/
+#: (content/plugins/contents+en-US.lrtopic.description)
+msgid "How Tor Browser handles add-ons, plugins and JavaScript"
+msgstr ""
+"Tor Browser üzerinde eklentiler, uygulama ekleri ve JavaScript betikleri "
+"nasıl işlenir?"
+
+#: https//tb-manual.torproject.org/en-US/plugins/
+#: (content/plugins/contents+en-US.lrtopic.body)
+msgid "##### Flash Player"
+msgstr "##### Flash Oynatıcı"
+
+#: https//tb-manual.torproject.org/en-US/plugins/
+#: (content/plugins/contents+en-US.lrtopic.body)
+msgid ""
+"Video websites, such as Vimeo make use of the Flash Player plugin to display"
+" video content. Unfortunately, this software operates independently of Tor "
+"Browser and cannot easily be made to obey Tor Browser’s proxy settings. It "
+"can therefore reveal your real location and IP address to the website "
+"operators, or to an outside observer. For this reason, Flash is disabled by "
+"default in Tor Browser, and enabling it is not recommended."
+msgstr ""
+"Vimeo gibi görüntü web siteleri, görüntü içeriğini görüntülemek için Flash "
+"Player eklentisini kullanır. Maalesef, bu uygulama bağımsız olarak "
+"çalıştığından Tor Browser vekil sunucu ayarlarına uyması kolayca sağlanamaz."
+" Bu nedenle gerçek konumunuzu ve IP adresinizi web sitesini hazırlayanlara "
+"ya da bir dış gözlemciye açık edebilir. Bu nedenle Flash, varsayılan olarak "
+"Tor Browser üzerinde devre dışı bırakılmıştır ve etkinleştirilmesi "
+"önerilmez."
+
+#: https//tb-manual.torproject.org/en-US/plugins/
+#: (content/plugins/contents+en-US.lrtopic.body)
+msgid ""
+"Some video websites (such as YouTube) offer alternative video delivery "
+"methods that do not use Flash. These methods may be compatible with Tor "
+"Browser."
+msgstr ""
+"Bazı görüntü web siteleri (YouTube gibi), Flash kullanmayan alternatif "
+"görüntü yayınlama yöntemleri sunar. Bu yöntemler Tor Browser ile uyumlu "
+"olabilir."
+
+#: https//tb-manual.torproject.org/en-US/plugins/
+#: (content/plugins/contents+en-US.lrtopic.body)
+msgid "##### JavaScript"
+msgstr "##### JavaScript"
+
+#: https//tb-manual.torproject.org/en-US/plugins/
+#: (content/plugins/contents+en-US.lrtopic.body)
+msgid ""
+"JavaScript is a programming language that websites use to offer interactive "
+"elements such as video, animation, audio, and status timelines. "
+"Unfortunately, JavaScript can also enable attacks on the security of the "
+"browser, which might lead to deanonymization."
+msgstr ""
+"JavaScript, web sitelerinin görüntü, animasyon, ses ve durum ilerlemesi gibi"
+" etkileşimli ögeler sunmak için kullandığı bir programlama dilidir. "
+"Maalesef, JavaScript tarayıcı güvenliğine yönelik saldırılar yapılmasına ve "
+"kimliğinizin açığa çıkmasına neden olabilir."
+
+#: https//tb-manual.torproject.org/en-US/plugins/
+#: (content/plugins/contents+en-US.lrtopic.body)
+msgid ""
+"Tor Browser includes an add-on called NoScript, accessible through the “S” "
+"icon at the top-right of the window. NoScript allows you to control the "
+"JavaScript (and other scripts) that runs on individual web pages, or block "
+"it entirely."
+msgstr ""
+"Tor Browser, ekranın sağ-üst köşesinde \"S\" ile gösterilen NoScript "
+"eklentisi ile yüklü gelir. NoScript eklentisi her sayfada çalıştırılacak "
+"olan JavaScript ve benzeri betikleri kontrol etmenize, gerekirse de "
+"durdurmanıza yardım eder."
+
+#: https//tb-manual.torproject.org/en-US/plugins/
+#: (content/plugins/contents+en-US.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/noscript_menu.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/noscript_menu.png\">"
+
+#: https//tb-manual.torproject.org/en-US/plugins/
+#: (content/plugins/contents+en-US.lrtopic.body)
+msgid ""
+"Users who require a high degree of security in their web browsing should set"
+" Tor Browser’s <a href=\"/security-slider\">Security Slider</a> to “Safer” "
+"(which disables JavaScript for non-HTTPS websites) or “Safest” (which does "
+"so for all websites). However, disabling JavaScript will prevent many "
+"websites from displaying correctly, so Tor Browser’s default setting is to "
+"allow all websites to run scripts in \"Standard\" mode."
+msgstr ""
+"Web sitelerinde gezinirken yüksek derecede güvenlik isteyen kullanıcılar, "
+"Tor Browser üzerindeki <a href=\"/security-slider\">Güvenlik Kaydırıcısı</a>"
+" ayarını \"Daha Güvenli\" (HTTPS olmayan web siteleri için JavaScript devre "
+"dışı) ya da \"En Güvenli\" (tüm web siteleri için JavaScript devre dışı) "
+"olarak seçmelidir. Bununla birlikte, JavaScript devre dışı bırakıldığında "
+"birçok web sitesi düzgün görünmeyebilir. Bu nedenle Tor Browser varsayılan "
+"olarak \"Standart\" güvenlik düzeyinde tüm web sitelerinin betikleri "
+"çalıştırmasına izin verir."
+
+#: https//tb-manual.torproject.org/en-US/plugins/
+#: (content/plugins/contents+en-US.lrtopic.body)
+msgid "##### Browser Add-ons"
+msgstr "##### Tarayıcı Eklentileri"
+
+#: https//tb-manual.torproject.org/en-US/plugins/
+#: (content/plugins/contents+en-US.lrtopic.body)
+msgid ""
+"Tor Browser is based on Firefox, and any browser add-ons or themes that are "
+"compatible with Firefox can also be installed in Tor Browser."
+msgstr ""
+"Tor Browser Firefox tabanlı olduğundan Firefox ile uyumlu tüm eklenti ve "
+"temalar Tor Browser üzerine de kurulabilir."
+
+#: https//tb-manual.torproject.org/en-US/plugins/
+#: (content/plugins/contents+en-US.lrtopic.body)
+msgid ""
+"However, the only add-ons that have been tested for use with Tor Browser are"
+" those included by default. Installing any other browser add-ons may break "
+"functionality in Tor Browser or cause more serious problems that affect your"
+" privacy and security. It is strongly discouraged to install additional add-"
+"ons, and the Tor Project will not offer support for these configurations."
+msgstr ""
+"Bununla birlikte, varsayılan olarak yalnız Tor Browser ile kullanılabileceği"
+" denenmiş eklentiler kurulmuştur. Diğer tarayıcı eklentilerini kurmak, Tor "
+"Browser işlevselliğini bozabilir ya da gizlilik ve güvenliğinizi etkileyecek"
+" daha ciddi sorunlara yol açabilir. Diğer eklentilerin kurulması kesinlikle "
+"önerilmez ve Tor Project böyle yapılandırmalar için destek vermez."
+
+#: https//tb-manual.torproject.org/en-US/troubleshooting/
+#: (content/troubleshooting/contents+en-US.lrtopic.title)
+msgid "Troubleshooting"
+msgstr "Sorun çözme"
+
+#: https//tb-manual.torproject.org/en-US/troubleshooting/
+#: (content/troubleshooting/contents+en-US.lrtopic.description)
+msgid "What to do if Tor Browser doesn’t work"
+msgstr "Tor Browser çalışmazsa ne yapmalı"
+
+#: https//tb-manual.torproject.org/en-US/troubleshooting/
+#: (content/troubleshooting/contents+en-US.lrtopic.body)
+msgid ""
+"You should be able to start browsing the web using Tor Browser shortly after"
+" running the program, and clicking the “Connect” button if you are using it "
+"for the first time."
+msgstr ""
+"Uygulamayı çalıştırdıktan ve ilk kez kullanıyorsanız \"Bağlan\" düğmesine "
+"tıklayın. Kısa bir süre sonra Tor Browser ile web üzerinde gezinmeye "
+"başlayabilmeniz gerekir."
+
+#: https//tb-manual.torproject.org/en-US/troubleshooting/
+#: (content/troubleshooting/contents+en-US.lrtopic.body)
+msgid "##### Quick fixes"
+msgstr "##### Hızlı düzeltmeler"
+
+#: https//tb-manual.torproject.org/en-US/troubleshooting/
+#: (content/troubleshooting/contents+en-US.lrtopic.body)
+msgid ""
+"If Tor Browser doesn’t connect, there may be a simple solution. Try each of "
+"the following:"
+msgstr ""
+"Tor Browser bağlantısı kurulamıyor ise çözümü kolay olabilir. Şunları "
+"deneyebilirsiniz:"
+
+#: https//tb-manual.torproject.org/en-US/troubleshooting/
+#: (content/troubleshooting/contents+en-US.lrtopic.body)
+msgid ""
+"* Your computer’s system clock must be set correctly, or Tor will not be "
+"able to connect."
+msgstr ""
+"* Bilgisayarınızın sistem saatini denetleyin. Doğru ayarlanmamış ise Tor "
+"bağlantısı kurulamaz."
+
+#: https//tb-manual.torproject.org/en-US/troubleshooting/
+#: (content/troubleshooting/contents+en-US.lrtopic.body)
+msgid ""
+"* Make sure another Tor Browser is not already running. If you’re not sure "
+"if Tor Browser is running, restart your computer."
+msgstr ""
+"* Başka bir Tor Browser kopyasının çalışmadığından emin olun. Bundan emin "
+"değilseniz, bilgisayarınızı yeniden başlatın."
+
+#: https//tb-manual.torproject.org/en-US/troubleshooting/
+#: (content/troubleshooting/contents+en-US.lrtopic.body)
+msgid ""
+"* Make sure that any antivirus program you have installed is not preventing "
+"Tor from running. You may need to consult the documentation for your "
+"antivirus software if you do not know how to do this."
+msgstr ""
+"* Kurulmuş olan herhangi bir antivirüs programının Tor uygulamasının "
+"çalışmasını engellemediğinden emin olun. Bunu nasıl yapacağınızı "
+"bilmiyorsanız virüsten koruma yazılımınızın belgelerine bakmanız "
+"gerekebilir."
+
+#: https//tb-manual.torproject.org/en-US/troubleshooting/
+#: (content/troubleshooting/contents+en-US.lrtopic.body)
+msgid "* Temporarily disable your firewall."
+msgstr "* Güvenlik duvarınızı geçici olarak devre dışı bırakın."
+
+#: https//tb-manual.torproject.org/en-US/troubleshooting/
+#: (content/troubleshooting/contents+en-US.lrtopic.body)
+msgid ""
+"* Delete Tor Browser and install it again. If updating, do not just "
+"overwrite your previous Tor Browser files; ensure they are fully deleted "
+"beforehand."
+msgstr ""
+"* Tor Browser uygulamasını silin ve yeniden kurun. Güncelleme yapıyorsanız, "
+"sakın önceki Tor Browser dosyalarınızın üzerine yazmayın; bu dosyaların "
+"önceden tamamen silinmiş olduklarından emin olun."
+
+#: https//tb-manual.torproject.org/en-US/troubleshooting/
+#: (content/troubleshooting/contents+en-US.lrtopic.body)
+msgid "##### Is your connection censored?"
+msgstr "##### Bağlantınız sansürlü mü?"
+
+#: https//tb-manual.torproject.org/en-US/troubleshooting/
+#: (content/troubleshooting/contents+en-US.lrtopic.body)
+msgid ""
+"If you still can’t connect, your Internet Service Provider might be "
+"censoring connections to the Tor network. Read the <a "
+"href=\"/circumvention\">Circumvention</a> section for possible solutions."
+msgstr ""
+"Hala bağlantı kurulamıyorsa , İnternet Hizmeti Sağlayıcınız Tor ağına "
+"yapılan bağlantıları engelliyor olabilir. Olası çözümler için <a "
+"href=\"/circumvention\">Engelleri Aşma</a> bölümünü okuyun."
+
+#: https//tb-manual.torproject.org/en-US/troubleshooting/
+#: (content/troubleshooting/contents+en-US.lrtopic.body)
+msgid "##### Known issues"
+msgstr "##### Bilinen Sorunlar"
+
+#: https//tb-manual.torproject.org/en-US/troubleshooting/
+#: (content/troubleshooting/contents+en-US.lrtopic.body)
+msgid ""
+"Tor Browser is under constant development, and some issues are known about "
+"but not yet fixed. Please check the <a href=\"/known-issues\">Known "
+"Issues</a> page to see if the problem you are experiencing is already listed"
+" there."
+msgstr ""
+"Tor Browser sürekli geliştirilmekte olduğundan henüz düzeltilmemiş bazı "
+"sorunlar olduğu bilinmektedir. Herhangi bir sorunla karşılaşırsanız lütfen "
+"<a href=\"/known-issues\">Bilinen Sorunlar</a> bölümünden karşılaştığınız "
+"sorunun buradaki listede olup olmadığına bakın."
+
+#: https//tb-manual.torproject.org/en-US/known-issues/
+#: (content/known-issues/contents+en-US.lrtopic.title)
+#: (content/known-issues/contents+en-US.lrtopic.description)
+msgid "Known issues"
+msgstr "Bilinen Sorunlar"
+
+#: https//tb-manual.torproject.org/en-US/known-issues/
+#: (content/known-issues/contents+en-US.lrtopic.body)
+msgid ""
+"* Tor needs your system clock (and your time zone) set to the correct time."
+msgstr ""
+"* Tor uygulamasının çalışabilmesi için saat ve saat dilimi ayarları doğru "
+"olmalıdır."
+
+#: https//tb-manual.torproject.org/en-US/known-issues/
+#: (content/known-issues/contents+en-US.lrtopic.body)
+msgid ""
+"* The following firewall software have been known to interfere with Tor and "
+"may need to be temporarily disabled:"
+msgstr ""
+"* Şu güvenlik duvarı ayarlarının Tor ile sorun çıkarabilir ve geçici olarak "
+"devre dışı bırakılması gerekebilir:"
+
+#: https//tb-manual.torproject.org/en-US/known-issues/
+#: (content/known-issues/contents+en-US.lrtopic.body)
+msgid "* Webroot SecureAnywhere"
+msgstr "* Webroot SecureAnywhere"
+
+#: https//tb-manual.torproject.org/en-US/known-issues/
+#: (content/known-issues/contents+en-US.lrtopic.body)
+msgid "* Kaspersky Internet Security 2012"
+msgstr "* Kaspersky Internet Security 2012"
+
+#: https//tb-manual.torproject.org/en-US/known-issues/
+#: (content/known-issues/contents+en-US.lrtopic.body)
+msgid "* Sophos Antivirus for Mac"
+msgstr "* Sophos Antivirus for Mac"
+
+#: https//tb-manual.torproject.org/en-US/known-issues/
+#: (content/known-issues/contents+en-US.lrtopic.body)
+msgid "* Microsoft Security Essentials"
+msgstr "* Microsoft Security Essentials"
+
+#: https//tb-manual.torproject.org/en-US/known-issues/
+#: (content/known-issues/contents+en-US.lrtopic.body)
+msgid ""
+"* Videos that require Adobe Flash are unavailable. Flash is disabled for "
+"security reasons."
+msgstr ""
+"* Adobe Flash gerektiren görüntüler kullanılamaz. Güvenlik nedeniyle Flash "
+"devre dışı bırakılmıştır. "
+
+#: https//tb-manual.torproject.org/en-US/known-issues/
+#: (content/known-issues/contents+en-US.lrtopic.body)
+msgid "* Tor can not use a bridge if a proxy is set."
+msgstr "* Bir vekil sunucu ayarlandığında Tor köprüleri kullanılamaz."
+
+#: https//tb-manual.torproject.org/en-US/known-issues/
+#: (content/known-issues/contents+en-US.lrtopic.body)
+msgid ""
+"* The Tor Browser package is dated January 1, 2000 00:00:00 UTC. This is to "
+"ensure that each software build is exactly reproducible."
+msgstr ""
+"* Tor Browser paketinin tarihi 1 Ocak 2000 00:00: 00 UTC şeklindedir. "
+"Böylece her bir yazılım yapımının tam olarak yeniden üretilebilir olduğundan"
+" emin olunabilir."
+
+#: https//tb-manual.torproject.org/en-US/known-issues/
+#: (content/known-issues/contents+en-US.lrtopic.body)
+msgid ""
+"* To run Tor Browser on Ubuntu, users need to execute a shell script. Open "
+"\"Files\" (Unity's explorer), open Preferences → Behavior Tab → Set \"Run "
+"executable text files when they are opened\" to \"Ask every time\", then "
+"click OK."
+msgstr ""
+"* Ubuntu üzerinde Tor Browser çalıştırmak için kullanıcıların bir kabuk "
+"komut dosyası çalıştırmaları gerekir. \"Dosyalar\" (Unity dosya yöneticisi) "
+"uygulamasını açıp, Ayarlar → Davranış Sekmesi → \"Çalıştırılabilir metin "
+"dosyalarını açıldıklarında Çalıştır\" seçeneğini \"Her zaman sorulsun\" "
+"olarak ayarlayın, ardından Tamam üzereine tıklayın."
+
+#: https//tb-manual.torproject.org/en-US/known-issues/
+#: (content/known-issues/contents+en-US.lrtopic.body)
+msgid ""
+"* Tor Browser can also be started from the command line by running the "
+"following command from inside the Tor Browser directory:"
+msgstr ""
+"* Ayrıca Tor Browser komut satırından Tor Browser klasörünün içinden şu "
+"komut çalıştırılarak başlatılabilir:"
+
+#: https//tb-manual.torproject.org/en-US/known-issues/
+#: (content/known-issues/contents+en-US.lrtopic.body)
+msgid "./start-tor-browser.desktop"
+msgstr "./start-tor-browser.desktop"
+
+#: https//tb-manual.torproject.org/en-US/known-issues/
+#: (content/known-issues/contents+en-US.lrtopic.body)
+msgid ""
+"* BitTorrent in specific is <mark><a href=\"https://blog.torproject.org"
+"/bittorrent-over-tor-isnt-good-idea\">not anonymous over Tor</a></mark>."
+msgstr ""
+"* Özellikle BitTorrent <mark><a href=\"https://blog.torproject.org"
+"/bittorrent-over-tor-isnt-good-idea\">Tor üzerinde anonim "
+"değildir</a></mark>."
+
+#: https//tb-manual.torproject.org/en-US/uninstalling/
+#: (content/uninstalling/contents+en-US.lrtopic.title)
+msgid "Uninstalling"
+msgstr "Kaldırma"
+
+#: https//tb-manual.torproject.org/en-US/uninstalling/
+#: (content/uninstalling/contents+en-US.lrtopic.description)
+msgid "How to remove Tor Browser from your system"
+msgstr "Tor Browser sisteminizden nasıl kaldırılır"
+
+#: https//tb-manual.torproject.org/en-US/uninstalling/
+#: (content/uninstalling/contents+en-US.lrtopic.body)
+msgid ""
+"Tor Browser does not affect any of the existing software or settings on your"
+" computer. Uninstalling Tor Browser will not affect your system’s software "
+"or settings."
+msgstr ""
+"Tor Browser, bilgisayarınızda bulunan diğer uygulama ya da ayarları "
+"etkilemez. Tor Browser uygulamasının kaldırılması, sisteminizdeki "
+"uygulamaları ya da ayarlarını etkilemez."
+
+#: https//tb-manual.torproject.org/en-US/uninstalling/
+#: (content/uninstalling/contents+en-US.lrtopic.body)
+msgid "Removing Tor Browser from your system is simple:"
+msgstr "Tor Browser sisteminizden kolayca kaldırılabilir:"
+
+#: https//tb-manual.torproject.org/en-US/uninstalling/
+#: (content/uninstalling/contents+en-US.lrtopic.body)
+msgid ""
+"1. Locate your Tor Browser folder. The default location on Windows is the "
+"Desktop; on Mac OS X it is the Applications folder. On Linux, there is no "
+"default location, however the folder will be named \"tor-browser_en-US\" if "
+"you are running the English Tor Browser."
+msgstr ""
+"1. Tor Browser klasörünüzü bulun. Varsayılan klasör Windows üzerinde "
+"Masaüstü; Mac OS X üzerinde Uygulamalar klasörüdür. Linux üzerinde "
+"varsayılan konum yoktur, ancak kullandığınız Tor Browser İngilizce ise "
+"\"tor-browser_en-US\" klasör adı kullanılır."
+
+#: https//tb-manual.torproject.org/en-US/uninstalling/
+#: (content/uninstalling/contents+en-US.lrtopic.body)
+msgid "2. Delete the Tor Browser folder."
+msgstr "2. Tor Browser klasörünü silin."
+
+#: https//tb-manual.torproject.org/en-US/uninstalling/
+#: (content/uninstalling/contents+en-US.lrtopic.body)
+msgid "3. Empty your Trash"
+msgstr "3. Çöp kutunuzu boşaltın"
+
+#: https//tb-manual.torproject.org/en-US/uninstalling/
+#: (content/uninstalling/contents+en-US.lrtopic.body)
+msgid ""
+"Note that your operating system’s standard “Uninstall” utility is not used."
+msgstr ""
+"Kaldırma işlemi için işletim sisteminizde bulunan standart \"Uygulama "
+"Kaldırma\" aracının kullanılmadığını unutmayın."
+
+#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
+#: (content/becoming-tor-translator/contents+en-US.lrtopic.title)
+msgid "Becoming a Tor Translator"
+msgstr "Tor Çevirmeni Olmak"
+
+#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
+#: (content/becoming-tor-translator/contents+en-US.lrtopic.description)
+msgid "Becoming a translator for the Tor Project"
+msgstr "Tor Projesini çevirmek"
+
+#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
+#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
+msgid ""
+"If you are interested in helping out the project by translating the manual "
+"or the Tor Browser to your language, your help would be greatly appreciated!"
+" Tor Project localization is hosted in the [Localization "
+"Lab](https://www.localizationlab.org) Hub on Transifex, a third-party "
+"translation tool. In order to begin contributing you will have to sign up "
+"with Transifex. Below is an outline of how to sign up and begin."
+msgstr ""
+"Eğer Tor Browser'ın kılavuzunun çevirisine bir katkıda bulunmak "
+"istiyorsanız, Tor Browser'ın çervirlmesinden sorumlu olan [Localization "
+"Lab](https://www.localizationlab.org)'in Transifex çeviri sayfasını ziyaret "
+"edebilirsiniz. Çeviriye katkıda bulunmak için bir Transifex hesabı "
+"oluşturmanız gerekmektedir. Nasıl hesap oluşturulacağını aşağıda "
+"bulabilirsiniz:"
+
+#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
+#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
+msgid "##### Signing up on Transifex"
+msgstr "##### Transifex Hesabı Açmak"
+
+#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
+#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
+msgid ""
+"* Head over to the <a href=\"https://transifex.com/signup/\">Transifex "
+"signup page</a>."
+msgstr ""
+"* <a href=\"https://transifex.com/signup/\">Transifex hesap açma "
+"sayfasına</a> gidin."
+
+#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
+#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
+msgid "Enter your information into the fields and click the 'Sign Up' button:"
+msgstr ""
+"Formdaki alanları bilgileriniz ile doldurun ve \"Hesap Açın\" düğmesine "
+"tıklayın:"
+
+#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
+#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/tr1.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/tr1.png\">"
+
+#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
+#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
+msgid ""
+"* Fill out the next page with your name and select \"Localization\" and "
+"\"Translator\" from the drop-down menus:"
+msgstr ""
+"* Sonraki sayfaya adınızı yazın ve açılan menülerden \"Yerelleştirme\" ile "
+"\"Çevirmen\" seçeneklerini seçin:"
+
+#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
+#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/tr2.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/tr2.png\">"
+
+#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
+#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
+msgid "* On the next page, select 'Join an existing project' and continue."
+msgstr ""
+"* Sonraki sayfada 'Var olan bir projeye katılın' seçeneğini seçin ve "
+"ilerleyin."
+
+#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
+#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
+msgid ""
+"* On the next page, select the languages you speak from the drop-down menu "
+"and continue."
+msgstr ""
+"* Sonraki sayfada açılan menüden konuştuğunuz dilleri seçin ve ilerleyin."
+
+#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
+#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
+msgid ""
+"* You are now signed up! Go to the <a "
+"href=\"https://www.transifex.com/otf/torproject/\">Tor Transifex page</a>."
+msgstr ""
+"* Hesabınız açıldı! <a "
+"href=\"https://www.transifex.com/otf/torproject/\">Tor Transifex "
+"sayfasına</a> geçin."
+
+#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
+#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
+msgid "* Click the blue 'Join Team' button on the far right:"
+msgstr "* Sağ taraftaki mavi 'Takıma Katılın' düğmesine tıklayın:"
+
+#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
+#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/tr3.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/tr3.png\">"
+
+#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
+#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
+msgid ""
+"* Select the language you would like to translate from the dropdown menu:"
+msgstr "* Açılan menüden çevirmek istediğiniz dili seçin:"
+
+#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
+#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/tr4.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/tr4.png\">"
+
+#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
+#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
+msgid "* A notification will now show up on the top of the page like so:"
+msgstr "* Sayfanın üst bölümünde şu şekilde bir bildirim görüntülenir:"
+
+#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
+#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/tr5.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/tr5.png\">"
+
+#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
+#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
+msgid ""
+"After your membership is approved you can begin translating; simply navigate"
+" back to the <a href=\"https://www.transifex.com/otf/torproject/\">Tor "
+"Transifex page</a> when you are ready to begin."
+msgstr ""
+"Üyeliğiniz kabul edildiği andan itibaren çeviriye başlayabilirsiniz; hazır "
+"olduğunuzda <a href=\"https://www.transifex.com/otf/torproject/\">Tor'un "
+"Transifex Sayfası'na</a> gitmeniz yeterlidir."
+
+#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
+#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
+msgid ""
+"Before translating, please read through the Tor Project page on the "
+"[Localization Lab Wiki](https://wiki.localizationlab.org/index.php/Tor). "
+"There you will find translation guidelines and resources that will help you "
+"contribute to Tor translations."
+msgstr ""
+"Tercüme etmeden önce, lütfen [Yerelleştirme Lab Wiki] 'deki Tor Projesi "
+"sayfasını okuyun (https://wiki.localizationlab.org/index.php/Tor) Burada "
+"Tor çevirilerine katkıda bulunmanıza yardımcı olacak çeviri yönergeleri ve "
+"kaynakları bulacaksınız."
+
+#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
+#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
+msgid "Thanks for your interest in helping the project!"
+msgstr "Projeye yardım için gösterdiğiniz ilgiden dolayı teşekkür ederiz!"
+
+#: templates/footer.html:5
+msgid "Our mission:"
+msgstr "Misyonumuz:"
+
+#: templates/footer.html:5
+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şilebilmesi ile bilimsel ve yaygın olarak "
+"anlaşılmasını sağlamak."
+
+#: templates/footer.html:24
+msgid "Subscribe to our Newsletter"
+msgstr "Bültenimize Abone Olun"
+
+#: templates/footer.html:25
+msgid "Get monthly updates and opportunities from the Tor Project"
+msgstr ""
+"Tor Projesi hakkında aylık güncelleme ve fırsatlar hakkında bilgi "
+"alabilirsiniz"
+
+#: templates/footer.html:26
+msgid "Sign up"
+msgstr "Kayıt ol"
+
+#: templates/footer.html:32
+msgid ""
+"Trademark, copyright notices, and rules for use by third parties can be "
+"found in our "
+msgstr ""
+"Üçüncü partiler tarafından kullanım için patent, telif hakkı ve kurallar "
+"şurada bulunabilir "
+
+#: templates/layout.html:8
+msgid "Tor Project | Tor Browser Manual"
+msgstr "Tor Projesi | Tor Browser Rehberi"
+
+#: templates/navbar.html:4
+msgid "Tor Logo"
+msgstr "Tor Logosu"
+
+#: templates/navbar.html:40
+msgid "Download Tor Browser"
+msgstr "Tor Browser İndir"
+
+#: templates/search.html:5
+msgid "Search"
+msgstr "Arama"
+
+#: templates/sidenav.html:4 templates/sidenav.html:35
+msgid "Topics"
+msgstr "Başlıklar"
+
+#: templates/macros/topic.html:18
+msgid "Permalink"
+msgstr "Kalıcı bağlantı"
1
0

[translation/tbmanual-contentspot] Update translations for tbmanual-contentspot
by translation@torproject.org 23 Feb '19
by translation@torproject.org 23 Feb '19
23 Feb '19
commit 16086d2ded4aec9e773477ff617c1a42bb62aa1d
Author: Translation commit bot <translation(a)torproject.org>
Date: Sat Feb 23 15:47:37 2019 +0000
Update translations for tbmanual-contentspot
---
contents+tr.po | 78 ++++++++++++++++++++++++++++++++++++++--------------------
1 file changed, 52 insertions(+), 26 deletions(-)
diff --git a/contents+tr.po b/contents+tr.po
index c620c655a..56c4767aa 100644
--- a/contents+tr.po
+++ b/contents+tr.po
@@ -202,7 +202,7 @@ msgstr ""
#: https//tb-manual.torproject.org/en-US/downloading/
#: (content/downloading/contents+en-US.lrtopic.body)
msgid "##### Mirrors"
-msgstr ""
+msgstr "##### Yansılar"
#: https//tb-manual.torproject.org/en-US/downloading/
#: (content/downloading/contents+en-US.lrtopic.body)
@@ -558,7 +558,7 @@ msgid ""
"Pluggable transports are tools that Tor can use to disguise the traffic it "
"sends out."
msgstr ""
-"Değiştirilebilir aktarımlar, Tor'un gönderdiği trafiği gizlemek için "
+"Takılabilir aktarımlar, Tor'un gönderdiği trafiği gizlemek için "
"kullanabileceği araçlardır."
#: https//tb-manual.torproject.org/en-US/transports/
@@ -725,9 +725,9 @@ msgid ""
"To use a pluggable transport, first click the onion icon to the left of the "
"URL bar, or click 'Configure' when starting Tor Browser for the first time."
msgstr ""
-"Değiştirilebilir bir aktarımı kullanmak için önce URL çubuğunun solundaki "
-"soğan simgesini tıklayın veya Tor Browser'ı ilk kez başlatırken "
-"'Yapılandır'ı tıklayın."
+"Takılabilir bir aktarımı kullanmak için önce URL çubuğunun solundaki soğan "
+"simgesini tıklayın veya Tor Browser'ı ilk kez başlatırken 'Yapılandır'ı "
+"tıklayın."
#: https//tb-manual.torproject.org/en-US/transports/
#: (content/transports/contents+en-US.lrtopic.body)
@@ -766,8 +766,8 @@ msgid ""
"Once you've selected the pluggable transport you'd like to use, click 'OK' "
"to save your settings."
msgstr ""
-"Kullanmak istediğiniz değiştirilebilir aktarımı seçtikten sonra, "
-"ayarlarınızı kaydetmek için 'Tamam'ı tıklayın."
+"Kullanmak istediğiniz takılabilir aktarımı seçtikten sonra, ayarlarınızı "
+"kaydetmek için 'Tamam'ı tıklayın."
#: https//tb-manual.torproject.org/en-US/circumvention/
#: (content/circumvention/contents+en-US.lrtopic.title)
@@ -801,7 +801,7 @@ msgstr ""
msgid ""
"Tor Browser currently has four pluggable transport options to choose from."
msgstr ""
-"Tor Browser şu anda seçilebilecek dört değiştirilebilir taşıma seçeneğine "
+"Tor Browser şu anda seçilebilecek dört takılabilir taşıma seçeneğine "
"sahiptir."
#: https//tb-manual.torproject.org/en-US/circumvention/
@@ -815,9 +815,9 @@ msgid ""
"To use pluggable transports, click 'Configure' in the Tor Launcher window "
"that appears when you first run Tor Browser."
msgstr ""
-"Değiştirilebilir aktarımları kullanmak için, Tor Browser uygulamasını ilk "
-"kez çalıştırdığınızda görüntülenen Tor Başlatıcı penceresindeki 'Yapılandır'"
-" düğmesine tıklayın."
+"Takılabilir aktarımları kullanmak için, Tor Browser uygulamasını ilk kez "
+"çalıştırdığınızda görüntülenen Tor Başlatıcı penceresindeki 'Yapılandır' "
+"düğmesine tıklayın."
#: https//tb-manual.torproject.org/en-US/circumvention/
#: (content/circumvention/contents+en-US.lrtopic.body)
@@ -826,6 +826,9 @@ msgid ""
"clicking on the onion icon to the left of the address bar, then selecting "
"'Tor Network Settings'."
msgstr ""
+"Tor Browser çalışırken, adres çubuğunun solundaki soğan simgesine tıklayarak"
+" ve ardından 'Tor Network Settings' seçeneğini seçerek takılabilir "
+"aktarımları yapılandırabilirsiniz."
#: https//tb-manual.torproject.org/en-US/circumvention/
#: (content/circumvention/contents+en-US.lrtopic.body)
@@ -834,6 +837,9 @@ msgid ""
"bridge.' Click on the drop-down menu and select the pluggable transport "
"you'd like to use."
msgstr ""
+"'Tor ülkemde sansürlendi' seçeneğini seçin, ardından 'Yerleşik köprü seçin' "
+"seçeneğini tıklayın. Açılır menüye tıklayın ve kullanmak istediğiniz "
+"takılabilir taşımayı seçin."
#: https//tb-manual.torproject.org/en-US/circumvention/
#: (content/circumvention/contents+en-US.lrtopic.body)
@@ -869,6 +875,8 @@ msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
" should try the different transports: obfs3, obfs4, fte, and meek-azure."
msgstr ""
+"Engellenen bir bağlantıyı ilk kez atlatmaya çalışıyorsanız, farklı "
+"aktarımları denemelisiniz: obfs3, obfs4, fte ve meek-azure."
#: https//tb-manual.torproject.org/en-US/circumvention/
#: (content/circumvention/contents+en-US.lrtopic.body)
@@ -968,6 +976,8 @@ msgid ""
"You can see a diagram of the circuit that Tor Browser is using for the "
"current tab in the site information menu, in the URL bar."
msgstr ""
+"Tor Tarayıcı'nın kullandığı devre şemasını, URL çubuğunda, site bilgileri "
+"menüsünde geçerli sekme için görebilirsiniz."
#: https//tb-manual.torproject.org/en-US/managing-identities/
#: (content/managing-identities/contents+en-US.lrtopic.body)
@@ -980,6 +990,13 @@ msgid ""
"href=\"https://www.torproject.org/docs/faq#EntryGuards\">FAQ</a> and <a "
"href=\"https://support.torproject.org/tbb/tbb-2/\">Support Portal</a>."
msgstr ""
+"Devrede, Muhafız veya giriş düğümü ilk düğümdür ve Tor tarafından otomatik "
+"ve rasgele seçilir. Ancak, devredeki diğer düğümlerden farklıdır. Profil "
+"saldırılarını önlemek için, Muhafız düğümü, her yeni alanla değişen diğer "
+"düğümlerin aksine, yalnızca 2-3 ay sonra değişir. Muhafızlar hakkında daha "
+"fazla bilgi için, <a "
+"href=\"https://www.torproject.org/docs/faq#EntryGuards\">SSS</a> ve <a "
+"href=\"https://support.torproject.org/tbb/tbb-2/\">Destek Portalı</a>."
#: https//tb-manual.torproject.org/en-US/managing-identities/
#: (content/managing-identities/contents+en-US.lrtopic.body)
@@ -1059,7 +1076,7 @@ msgstr "##### Kimlik ve devre değiştirme"
#: https//tb-manual.torproject.org/en-US/managing-identities/
#: (content/managing-identities/contents+en-US.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/new_identity.png\">"
-msgstr ""
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/new_identity.png\">"
#: https//tb-manual.torproject.org/en-US/managing-identities/
#: (content/managing-identities/contents+en-US.lrtopic.body)
@@ -1214,6 +1231,11 @@ msgid ""
"website with https and onion service, it will show an icon of a green onion "
"and a padlock."
msgstr ""
+"Soğan servisini kullanan bir web sitesine erişirken, Tor Browser URL "
+"çubuğunda bağlantınızın durumunu gösteren küçük bir soğan ikonu "
+"gösterecektir: güvenli ve bir soğan servisi kullanılarak bağlantı. Https ve "
+"soğan servisli bir siteye giriyorsanız, yeşil soğan simgesi ve asma kilit "
+"gösterilecektir."
#: https//tb-manual.torproject.org/en-US/onion-services/
#: (content/onion-services/contents+en-US.lrtopic.body)
@@ -1283,7 +1305,7 @@ msgstr ""
#: https//tb-manual.torproject.org/en-US/secure-connections/
#: (content/secure-connections/contents+en-US.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/https.png\">"
-msgstr ""
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/https.png\">"
#: https//tb-manual.torproject.org/en-US/secure-connections/
#: (content/secure-connections/contents+en-US.lrtopic.body)
@@ -1298,7 +1320,7 @@ msgstr ""
#: https//tb-manual.torproject.org/en-US/secure-connections/
#: (content/secure-connections/contents+en-US.lrtopic.body)
msgid "<img class=\"\" src=\"../../static/images/tor-and-https.svg\">"
-msgstr ""
+msgstr "<img class=\"\" src=\"../../static/images/tor-and-https.svg\">"
#: https//tb-manual.torproject.org/en-US/secure-connections/
#: (content/secure-connections/contents+en-US.lrtopic.body)
@@ -1492,7 +1514,7 @@ msgstr "##### Güvenlik Kaydırıcısına Erişmek"
#: https//tb-manual.torproject.org/en-US/security-slider.html
#: (content/security-slider.html/contents+en-US.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/slider.png\">"
-msgstr ""
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/slider.png\">"
#: https//tb-manual.torproject.org/en-US/security-slider/
#: (content/security-slider/contents+en-US.lrtopic.body)
@@ -1514,7 +1536,7 @@ msgstr "##### Güvenlik Düzeyleri"
#: https//tb-manual.torproject.org/en-US/security-slider.html
#: (content/security-slider.html/contents+en-US.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/slider_window.png\">"
-msgstr ""
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/slider_window.png\">"
#: https//tb-manual.torproject.org/en-US/security-slider/
#: (content/security-slider/contents+en-US.lrtopic.body)
@@ -1643,7 +1665,7 @@ msgstr "##### Otomatik Tor Browser güncellemesi"
#: https//tb-manual.torproject.org/en-US/updating/
#: (content/updating/contents+en-US.lrtopic.body)
msgid "<img width=\"400\" src=\"../../static/images/update1.png\" />"
-msgstr ""
+msgstr "<img width=\"400\" src=\"../../static/images/update1.png\" />"
#: https//tb-manual.torproject.org/en-US/updating/
#: (content/updating/contents+en-US.lrtopic.body)
@@ -1657,7 +1679,7 @@ msgstr ""
#: https//tb-manual.torproject.org/en-US/updating/
#: (content/updating/contents+en-US.lrtopic.body)
msgid "<img width=\"600\" src=\"../../static/images/update3.png\" />"
-msgstr ""
+msgstr "<img width=\"600\" src=\"../../static/images/update3.png\" />"
#: https//tb-manual.torproject.org/en-US/updating/
#: (content/updating/contents+en-US.lrtopic.body)
@@ -1670,7 +1692,7 @@ msgstr ""
#: https//tb-manual.torproject.org/en-US/updating/
#: (content/updating/contents+en-US.lrtopic.body)
msgid "<img width=\"600\" src=\"../../static/images/update4.png\" />"
-msgstr ""
+msgstr "<img width=\"600\" src=\"../../static/images/update4.png\" />"
#: https//tb-manual.torproject.org/en-US/updating/
#: (content/updating/contents+en-US.lrtopic.body)
@@ -1800,7 +1822,7 @@ msgstr ""
#: https//tb-manual.torproject.org/en-US/plugins/
#: (content/plugins/contents+en-US.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/noscript_menu.png\">"
-msgstr ""
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/noscript_menu.png\">"
#: https//tb-manual.torproject.org/en-US/plugins/
#: (content/plugins/contents+en-US.lrtopic.body)
@@ -2178,7 +2200,7 @@ msgstr ""
#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/tr1.png\">"
-msgstr ""
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/tr1.png\">"
#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
@@ -2192,7 +2214,7 @@ msgstr ""
#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/tr2.png\">"
-msgstr ""
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/tr2.png\">"
#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
@@ -2227,7 +2249,7 @@ msgstr "* Sağ taraftaki mavi 'Takıma Katılın' düğmesine tıklayın:"
#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/tr3.png\">"
-msgstr ""
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/tr3.png\">"
#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
@@ -2238,7 +2260,7 @@ msgstr "* Açılan menüden çevirmek istediğiniz dili seçin:"
#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/tr4.png\">"
-msgstr ""
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/tr4.png\">"
#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
@@ -2248,7 +2270,7 @@ msgstr "* Sayfanın üst bölümünde şu şekilde bir bildirim görüntülenir:
#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/tr5.png\">"
-msgstr ""
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/tr5.png\">"
#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
@@ -2269,6 +2291,10 @@ msgid ""
"There you will find translation guidelines and resources that will help you "
"contribute to Tor translations."
msgstr ""
+"Tercüme etmeden önce, lütfen [Yerelleştirme Lab Wiki] 'deki Tor Projesi "
+"sayfasını okuyun (https://wiki.localizationlab.org/index.php/Tor) Burada "
+"Tor çevirilerine katkıda bulunmanıza yardımcı olacak çeviri yönergeleri ve "
+"kaynakları bulacaksınız."
#: https//tb-manual.torproject.org/en-US/becoming-tor-translator/
#: (content/becoming-tor-translator/contents+en-US.lrtopic.body)
@@ -2315,7 +2341,7 @@ msgstr ""
#: templates/layout.html:8
msgid "Tor Project | Tor Browser Manual"
-msgstr ""
+msgstr "Tor Projesi | Tor Browser Rehberi"
#: templates/navbar.html:4
msgid "Tor Logo"
1
0

[translation/donatepages-messagespot_completed] Update translations for donatepages-messagespot_completed
by translation@torproject.org 23 Feb '19
by translation@torproject.org 23 Feb '19
23 Feb '19
commit 7c97607b3474f98902103c28ff6afaccbbc6dc9e
Author: Translation commit bot <translation(a)torproject.org>
Date: Sat Feb 23 15:45:35 2019 +0000
Update translations for donatepages-messagespot_completed
---
locale/tr/LC_MESSAGES/messages.po | 2027 +++++++++++++++++++++++++++++++++++++
1 file changed, 2027 insertions(+)
diff --git a/locale/tr/LC_MESSAGES/messages.po b/locale/tr/LC_MESSAGES/messages.po
new file mode 100644
index 000000000..d47724dc0
--- /dev/null
+++ b/locale/tr/LC_MESSAGES/messages.po
@@ -0,0 +1,2027 @@
+# Translators:
+# Kaan Kudret Kölköy <kaanklky(a)gmail.com>, 2018
+# Translinguini <translinguini(a)gmail.com>, 2018
+# escher <escherichia2(a)msn.com>, 2018
+# Hakan Y <hakan_yalniz(a)live.com>, 2018
+# psiphon3 <psiphon3(a)gmail.com>, 2018
+# erinm, 2018
+# Alperen Kitapçı <alperenmirac(a)gmail.com>, 2019
+# Kaya Zeren <kayazeren(a)gmail.com>, 2019
+# Arda Büyükkaya <ardabuyukkaya(a)protonmail.com>, 2019
+# cenk y. <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
+# Hasan Tayyar BESIK <tayyar.besik(a)gmail.com>, 2019
+# Tmp341, 2019
+# ilkeryus <ilkeryus(a)gmail.com>, 2019
+#
+msgid ""
+msgstr ""
+"Last-Translator: ilkeryus <ilkeryus(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"
+
+#: tmp/cache_locale/e1/e1e12763540d9524f8871157240d5a8fbf2ea77ace1c46527b3031db68943acc.php:34
+msgid "Processing Donation - Tor"
+msgstr "Bağışınız İşleniyor - Tor"
+
+#: tmp/cache_locale/e1/e1e12763540d9524f8871157240d5a8fbf2ea77ace1c46527b3031db68943acc.php:44
+msgid "Processing Donation. Please Wait..."
+msgstr "Bağışınız işleniyor. Lütfen bekleyin..."
+
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:34
+msgid "Tor Privacy Policy"
+msgstr "Tor Gizlilik İlkesi"
+
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:44
+msgid "Donor privacy policy"
+msgstr "Bağışçı gizlilik ilkesi"
+
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:58
+msgid ""
+"The Tor Project respects donor privacy and welcomes anonymous donations."
+msgstr ""
+"Tor Projesi bağışçılarının gizliliğine saygı gösterir ve anonim bağışları da"
+" kabul eder."
+
+#: 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 "
+"information."
+msgstr ""
+"Sizin için anonim kalmak önemli ise kullanabileceğiniz en iyi yol kişisel "
+"bilgilerinizi içermeyen bir yöntem ile bağış yapmaktır."
+
+#: 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 "
+"Project, as described below."
+msgstr ""
+"Bağış işlemi sırasında kişisel bir bilgi verirseniz, bu bilgiler aşağıda "
+"açıklandığı şekilde üçüncü taraf hizmet sağlayıcıları ve/veya Tor Projesi "
+"tarafından toplanıp saklanabilir."
+
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:67
+msgid ""
+"The Tor Project has very little influence over how third-party service "
+"providers, such as PayPal, may collect and use your information."
+msgstr ""
+"Tor Projesi, PayPal gibi üçüncü taraf hizmet sağlayıcılarının bilgilerinizi "
+"nasıl toplayabileceği ve kullanabileceği üzerinde çok az etkisi vardır. Bu "
+"hizmet sağlayıcılar bilgilerinizi toplayabilir ve kullanabilir."
+
+#: 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"
+"/privacy-full\">policies</a>, especially if you have privacy concerns."
+msgstr ""
+"Özellikle gizliliğiniz konusunda endişeleriniz varsa, bu hizmet "
+"sağlayıcıların <a class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://www.paypal.com/webapps/mpp/ua/privacy-full\">politikaları</a>"
+" hakkında bilgi edinmenizi öneririz."
+
+#: 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 "
+"and/or mailing address, as well as any other information you provide."
+msgstr ""
+"Tor Projesine bağış yaptığınızda, kullandığınız yönteme bağlı olarak, "
+"adınızı, bağışladığınız tutarı, e-posta adresinizi, telefon numaranızı "
+"ve/veya posta adresinizi ve vereceğiniz diğer bilgileri öğrenebiliriz."
+
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:76
+msgid ""
+"We may also learn incidental data such as the date and time of your "
+"donation."
+msgstr ""
+"Ayrıca bağışınızın tarih ve saati gibi anlık bilgileri de öğrenebiliriz."
+
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:78
+msgid ""
+"The Tor Project will never have access to your financial data, such as your "
+"credit card information.We aim to be careful with your information."
+msgstr ""
+"Tor Projesi asla kredi kartınız gibi mali bilgilerinizi almaz. Kişisel "
+"bilgilerinizi korumaya özen gösteririz."
+
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:83
+msgid ""
+"If you have provided your email address, we will email you once to thank you"
+" and give you a receipt."
+msgstr ""
+"E-posta adresinizi verdiyseniz, size teşekkür etmek ve alındınızı göndermek "
+"bir kez e-posta göndereceğiz."
+
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:85
+msgid ""
+"If you opt in during the donation process, we may email you again in future."
+msgstr ""
+"Bağış işlemi sırasında abone olursanız, ileride size başka e-postalar da "
+"gönderebiliriz."
+
+#: 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\" "
+"target=\"_blank\" href=\"https://www.irs.gov/pub/irs-"
+"pdf/f990ezb.pdf\">Schedule B of the Form 990</a>."
+msgstr ""
+"$5.000 tutarından büyük bir bağış yapıyorsanız ve adınız ile adresinizi "
+"biliyorsak, <a class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://www.irs.gov/pub/irs-pdf/f990ezb.pdf\">990 Numaralı Formun B "
+"maddesinde</a> vergi dairesine bildirmemiz gerekiyor."
+
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:89
+msgid ""
+"But, that information is redacted from the publicly-available version of our"
+" Form 990."
+msgstr ""
+"Ancak bu bilgileri herkese açık olarak sunduğumuz 990 numaralı formda "
+"gizleyeceğiz."
+
+#: 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/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/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:98
+msgid ""
+"For our records, we retain your name, the amount of your donation, the date "
+"of the donation, and your contact information."
+msgstr ""
+"Kayıtlarımız için adınızı, bağış tutarınızı, bağış tarihinizi ve iletişim "
+"bilgilerinizi tutacağız."
+
+#: 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 "
+"t-shirt."
+msgstr ""
+"Bu bilgileri Tor Projesi içinde teşekkür e-postası ya da tişört göndermek "
+"gibi işleri gereği erişmesi gereken kişiler dışında kimse bakmayacak. "
+
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:105
+msgid ""
+"<span class=\"bold\">The Tor Project very much appreciates all its donors. "
+"Thank you for supporting Tor</span>."
+msgstr ""
+"<span class=\"bold\">Tor Projesi tüm bağışçılarına minnettardır. Tor "
+"uygulamasını desteklediğiniz için teşekkürler</span>."
+
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:113
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:656
+msgid "Back to Donate Page"
+msgstr "Bağış Sayfasına Geri Dön"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:35
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:35
+msgid "Support the Tor Project Today!"
+msgstr "Tor Projesine Hemen Destek Olabilirsiniz!"
+
+#: 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:48
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:71
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:641
+msgid "Tor: Strength in Numbers"
+msgstr "Tor: Strength in Numbers (Birlikten Kuvvet Doğar)"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:52
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:75
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:52
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.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/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:54
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:77
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:54
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:77
+msgid "Anonymity loves company."
+msgstr "Anonimlik birlikteliği sever."
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:63
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:63
+msgid "summary_large_image"
+msgstr "ozet_buyuk_gorsel"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:67
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:67
+msgid "@torproject"
+msgstr "@torproject"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:102
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:102
+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/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:106
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:106
+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/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:127
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:127
+msgid "Number of Donations"
+msgstr "Bağış Sayısı"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:143
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:143
+msgid "Total Donated"
+msgstr "Toplam Bağış Tutarı"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:159
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:159
+msgid "Total Raised with Mozilla's Match"
+msgstr "Mozilla Kampanyası ile Toplam Tutar"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:170
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:176
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:170
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:176
+msgid "donate"
+msgstr "bağış yapın"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:172
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:172
+msgid "once"
+msgstr "bir kez"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:178
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:178
+msgid "monthly"
+msgstr "aylık"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:185
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:345
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:185
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:339
+msgid "Want to donate Bitcoin, Stock, or via snail mail?"
+msgstr "Bitcoin, Stock ya da yavaş posta ile bağış yapmak ister misiniz?"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:201
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:201
+msgid "invalid amount"
+msgstr "tutar geçersiz"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:205
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:205
+msgid "$2 minimum donation"
+msgstr "En az bağış tutarı $2"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:209
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:209
+msgid "$ other"
+msgstr "$ diğer"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:216
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:216
+msgid "Choose your gift as a token of our thanks."
+msgstr "Minnettarlığımızın ifadesi olarak hediyenizi seçin."
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:223
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:223
+msgid "No thanks, I don't want a gift."
+msgstr "Teşekkürler, bir hediye istemiyorum."
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:225
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:225
+#, 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/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:236
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:236
+msgid "sticker Pack"
+msgstr "etiket paketi"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:243
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:243
+msgid ""
+"A collection of our favorite logo stickers for decorating your stuff and "
+"covering your cams."
+msgstr ""
+"Eşyalarınıza yapıştırabileceğiniz ve kameralarınızı kapatabileceğiniz "
+"beğenilen logo etiketleri paketi."
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:253
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:253
+msgid "t-shirt"
+msgstr "tişört"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:259
+msgid "$15"
+msgstr "$15"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:261
+msgid "OFF"
+msgstr "KAPALI"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:267
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:261
+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/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:278
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:272
+msgid "t-shirt pack"
+msgstr "tişört paketi"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:288
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:282
+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 "
+"Tor at the Heart of Internet Freedom t-shirts."
+msgstr ""
+"Tor: Strength in Numbers (Birlikten Kuvvet Doğar) yanında Tor: Powering the "
+"Digital Resistance (Sayısal Direnişe Katıl), Open Observatory of Network "
+"Interference (OONI) (Açık Ağ İzleme Gözlemevi) ya da Tor at the Heart of "
+"Internet Freedom (Tor İnternet Özgürlüğünün Kalbi) tişörtü seçeneklerinden "
+"birisi ile."
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:294
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:288
+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/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:298
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:292
+msgid "Powering the Digital Resistance"
+msgstr "Powering the Digital Resistance (Sayısal Direnişe Katıl)"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:302
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:296
+msgid "Open Observatory of Network Interference"
+msgstr "Open Observatory of Network Interference (Açık Ağ İzleme Gözlemevi)"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:313
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:307
+msgid "sweatshirt"
+msgstr "svetşört"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:320
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:314
+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/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:330
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:324
+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/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:336
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:330
+msgid "Credit Card"
+msgstr "Kredi Kartı"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:352
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:346
+msgid "Your Info"
+msgstr "Bilgileriniz"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:356
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:350
+msgid "* required fields"
+msgstr " * doldurulması zorunlu alanlar"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:361
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:355
+msgid "First Name"
+msgstr "Ad"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:365
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:359
+msgid "Last Name"
+msgstr "Soyad"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:371
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:365
+msgid "Street Address"
+msgstr "Adres"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:375
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:369
+msgid "Apt."
+msgstr "Ap."
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:385
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:379
+msgid "City"
+msgstr "İlçe"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:389
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:383
+msgid "State"
+msgstr "İl"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:394
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:388
+msgid "Zip"
+msgstr "Posta Kodu"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:400
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:394
+msgid "Enter email"
+msgstr "E-posta adresinizi yazın"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:404
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:398
+msgid "We‘ll email you your receipt"
+msgstr "Alındınızı e-posta ile göndereceğiz"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:411
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:405
+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/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:418
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:412
+msgid "Card Number"
+msgstr "Kart Numarası"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:425
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:419
+msgid "MM"
+msgstr "AA"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:429
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:423
+msgid "YY"
+msgstr "YY"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:433
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:427
+msgid "CVC"
+msgstr "CVC"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:441
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:493
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:435
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:487
+msgid "Choose your size and fit."
+msgstr "Beden ve kesimi seçin."
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:446
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:454
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:440
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:448
+msgid "T-shirt:"
+msgstr "Tişört:"
+
+#: 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:458
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:462
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:464
+msgid "Comments"
+msgstr "Yorumlar"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:476
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:470
+msgid "Donating:"
+msgstr "Yapılan Bağış:"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:483
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:477
+msgid "Donate"
+msgstr "Bağış Yapın"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:497
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:491
+msgid "T-Shirt"
+msgstr "Tişört"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:501
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:495
+msgid "Choose your size and fit for each shirt."
+msgstr "Her bir tişörtün beden ve kesimini seçin."
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:505
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:499
+msgid ""
+"Tor at the Heart of Internet, Powering Digital Resistance or Open "
+"Observvatory of Network Interference (OONI) T-Shirt"
+msgstr ""
+"Tor at the Heart of Internet, Powering Digital Resistance ya da Open "
+"Observvatory of Network Interference (OONI) tişörtü"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:509
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:503
+msgid "Strength in Numbers T-Shirt"
+msgstr "Strength in Numbers (Birlikten Kuvvet Doğar) tişörtü"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:513
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:507
+msgid "Choose your size."
+msgstr "Bedeni seçin."
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:517
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:511
+msgid "Sweatshirt"
+msgstr "Svetşört"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:521
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:515
+msgid "A required field is missing from the form."
+msgstr "Doldurulması zorunlu bir form alanı boş bırakılmış."
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:523
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:517
+msgid "Please reload the page and try again."
+msgstr "Lütfen sayfayı yenileyip yeniden deneyin."
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:527
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:521
+msgid "There was a problem submitting your request to the server:<br>"
+msgstr "İsteğiniz sunucuya iletilirken bir sorun çıktı:<br>"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:531
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:525
+msgid "validation failed"
+msgstr "doğrulanamadı"
+
+#. notes: __field_name__ will be replaced with the field name in the
+#. javascript.
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:537
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:531
+msgid "__field_name__ must be filled out."
+msgstr "__field_name__ alanı boş bırakılamaz."
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:542
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:536
+msgid "This field is required"
+msgstr "Bu alanın doldurulması zorunludur"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:546
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:540
+msgid "Invalid email address."
+msgstr "E-posta adresi geçersiz"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:550
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:544
+msgid "per month"
+msgstr "aylı"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:564
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:558
+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/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:654
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:662
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:648
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:656
+msgid ""
+"Stand up for the universal human rights to privacy and freedom and help keep"
+" Tor robust and secure."
+msgstr ""
+"Evrensel insan haklarının gizliliğe ve özgürlüğe kavuşturulması ve Tor'un "
+"sağlam ve güvende kalmasına yardımcı olun."
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:656
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:650
+msgid "Mozilla will match your gift and double your impact."
+msgstr "Mozilla eşit miktarda bir bağış yapacak ve hediyeniz katlanacak."
+
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:22
+msgid "See if your employer offers employee gift matching"
+msgstr "İşvereniniz çalışanlara hediye katlama olanağı sunar mı"
+
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:52
+msgid "Company"
+msgstr "Kuruluş"
+
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:60
+msgid "Matching Conditions"
+msgstr "Katlama Koşulları"
+
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:68
+msgid "Contact Information"
+msgstr "İletişim Bilgileri"
+
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:76
+msgid "Additional Notes"
+msgstr "Ek Notlar"
+
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:84
+msgid "Procedure"
+msgstr "Süreç"
+
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:34
+msgid "Tor Thanks You"
+msgstr "Tor Size Teşekkür Ediyor"
+
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:44
+msgid "Thank you!"
+msgstr "Teşekkürler!"
+
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:51
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:61
+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/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:53
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:63
+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/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:55
+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 hediye 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/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:65
+msgid ""
+"With your support, 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 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/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:71
+msgid ""
+"It's an incredible time to stand up for world-leading security and privacy "
+"software."
+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
+msgid ""
+"Tell family, friends, and colleagues that you're supporting privacy and "
+"security with Tor!"
+msgstr ""
+"Gizlilik ve güvenliğinizi Tor ile sağladığınızı arkadaşlarınıza ve ailenize "
+"duyurun!"
+
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:77
+msgid "SHARE THE TOR PROJECT"
+msgstr "TOR PROJESİNİ PAYLAŞIN"
+
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:115
+msgid "Got Skills?"
+msgstr "Destek olabilecek yetenekleriniz mi var?"
+
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:121
+msgid "The Tor network depends on volunteers."
+msgstr "Tor ağı gönüllülerin desteğiyle çalışır."
+
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:127
+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/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:129
+msgid "Learn how you can help."
+msgstr "Nasıl yardım edebileceğinizi öğrenin."
+
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:137
+msgid "I Want To Volunteer"
+msgstr "Gönüllü Olmak İstiyorum"
+
+#: 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"
+" and privacy technologies, supporting their unrestricted availability and "
+"use, and furthering their scientific and popular understanding."
+msgstr ""
+"Tor Projesi, US 501(c)(3) kapsamında, özgür ve açık kaynaklı anonimlik ve "
+"kişisel gizlilik teknolojileri geliştirerek insan hakları ve özgürlüklerini "
+"ileriye götürmek, bu teknolojilerin bilimsel ve kültürel olarak "
+"bilinirliğini arttırmak ve herkes tarafından erişebilmesini sağlamak "
+"amacıyla çalışan kar amacı gütmeyen bir kuruluştur."
+
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:31
+msgid "Subscribe to Our Newsletter"
+msgstr "Bültenimize Abone Olun"
+
+#: 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/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:39
+msgid "Sign Up"
+msgstr "Kayıt Olun"
+
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:47
+msgid "Donate FAQs"
+msgstr "Bağış Hakkında Sorular"
+
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:51
+msgid "Privacy Policy"
+msgstr "Gizlilik İlkesi"
+
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:67
+msgid ""
+"Designed and built by <span class=\"stamp-bold\"><a "
+"href=\"https://www.giantrabbit.com/\" class=\"stamp-bold\" "
+"target=\"_blank\">Giant Rabbit</a></span>"
+msgstr ""
+"<span class=\"stamp-bold\"><a href=\"https://www.giantrabbit.com/\" class"
+"=\"stamp-bold\" target=\"_blank\">Giant Rabbit</a></span> tarafından "
+"tasarlanıp geliştirilmiştir."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:34
+msgid "Tor Donor FAQ"
+msgstr "Tor Bağışçısı Soruları"
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:44
+msgid "Questions?"
+msgstr "Sorularınız mı var?"
+
+#: 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 "
+"inquiries, or <span class=\"email\">giving(at)torproject.org</span> with "
+"donor-specific questions."
+msgstr ""
+"Sorunuz aşağıda cevaplanmamışsa, genel Tor talebi olarak <span "
+"class=\"email\">frontdesk(at)rt.torproject.org</span> veya bağışa özel "
+"sorular olarak <span class=\"email\">giving(at)torproject.org</span> "
+"adresine e-posta gönderiniz."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:66
+msgid "What is the Tor Project and what does it do?"
+msgstr "Tor Project nedir ve ne işe yarar?"
+
+#: 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, "
+"supporting their unrestricted availability and use, and furthering their "
+"scientific and popular understanding."
+msgstr ""
+" Tor Project’s görevi, onların bilimsel ve genel anlayışlarını "
+"ilerleterek, sınırsız erişilebilirliklerini ve kullanımlarını destekleyerek,"
+" açık ve özgür bilinmezliği ve mahrumiyet teknolojilerini yaratarak ve "
+"uygulayarak, insan haklarını ve özgürlüklerini ileri düzeye taşımaktır. "
+
+#: 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 "
+"Browser</a>, which enables people to browse the internet anonymously."
+msgstr ""
+"Tor Projesi'nin ana ürünü insanların internette gizlice dolaşmasına imkan "
+"sağlayan <a href=\"https://www.torproject.org/download/download-"
+"easy.html.en\">Tor Browser'dır</a>."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:74
+msgid ""
+"The Tor Project is a 501(c)3 tax-exempt non-profit organization based in "
+"Boston, Massachusetts."
+msgstr ""
+"Tor Projesi Milli Gelirler Yasası 501(c)3 maddesine göre vergiden muaf, "
+"Boston, Massachusetts merkezli kar amacı gütmeyen bir kuruluştur."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:76
+msgid "It was founded in 2006."
+msgstr "2006'da kurulmuştur."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:82
+msgid "Who works for the Tor Project, and what do they do?"
+msgstr "Tor Projesi için kim çalışıyor ve ne yapıyorlar?"
+
+#: 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, "
+"cryptographers, computer scientists, and privacy advocates, and most are not"
+" paid by the Tor Project."
+msgstr ""
+"Dünyanın dört bir yanındaki binlerce insan, geliştiriciler, tasarımcılar, "
+"aktarıcı hizmeti sağlayanlar, araştırmacılar, kriptograflar, bilgisayar "
+"bilimcileri ve gizlilik savunucuları dahil olmak üzere Tor Projesinin "
+"çalışmalarını aktif olarak destekliyor ve çoğu Tor Projesi tarafından "
+"ödenmiyor."
+
+#: 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 Projesi'nin ücretli personeli çok azdır: toplamda yaklaşık 47 kişi."
+
+#: 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\" "
+"href=\"https://www.torproject.org/about/corepeople.html.en\"><span "
+"class=\"links\">Core People page</span></a>."
+msgstr ""
+"Tor Projesine katkıda bulunanlar hakkında bilgiyi <a class=\"hyperlinks\" "
+"target=\"_blank\" "
+"href=\"https://www.torproject.org/about/corepeople.html.en\"><span "
+"class=\"links\">Çekirden Tor Kişileri sayfası</span></a>nda bulabilirsiniz."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:95
+msgid "Who uses Tor?"
+msgstr "Tor'u kim kullanır?"
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:99
+msgid ""
+"The vast majority of Tor users are ordinary people who want control of their"
+" privacy online or people whose internet use is censored."
+msgstr ""
+"Tor kullanıcılarının büyük çoğunluğu, çevrimiçi gizlilik kontrolünü isteyen "
+"sıradan insanlar veya internet kullanımı sansürlenen kişilerdir."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:101
+msgid ""
+"Other Tor users are journalists, human rights defenders, domestic violence "
+"survivors, policymakers, diplomats, and academic and research institutions."
+msgstr ""
+"Diğer Tor kullanıcıları gazeteciler, insan hakları savunucuları, aile içi "
+"şiddet mağdurları, politika yapıcılar, diplomatlar ve akademik ve araştırma "
+"kurumlarıdır."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:107
+msgid "Can anyone use Tor?"
+msgstr "Herkes Tor'u kullanabilir mi?"
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:111
+msgid "Yes! Tor is free, and anyone can use it."
+msgstr "Kesinlikle! Tor bedavadır ve herkes kullanabilir."
+
+#: 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 "
+"class=\"links\">download Tor Browser</span></a>."
+msgstr ""
+"Başlarken, <a class=\"hyperlinks\" target=\"_blank\" "
+"href=\"https://www.torproject.org/projects/torbrowser.html.en\"><span "
+"class=\"links\">Tor Browser'ı indirmeniz </span></a> gerekiyor. "
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:115
+msgid ""
+"We offer instructions on how to download for <a class=\"hyperlinks links\" "
+"target=\"_blank\" "
+"href=\"https://www.torproject.org/projects/torbrowser.html.en#windows\">Windows</a>,"
+" <a class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://www.torproject.org/projects/torbrowser.html.en#macosx\">Mac "
+"OS X</a> and <a class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://www.torproject.org/projects/torbrowser.html.en#linux\">Linux</a>."
+msgstr ""
+"<a class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://www.torproject.org/projects/torbrowser.html.en#windows\">Windows</a>,<a"
+" class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://www.torproject.org/projects/torbrowser.html.en#macosx\">Mac "
+"OS X</a> ve <a class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://www.torproject.org/projects/torbrowser.html.en#linux\">Linux</a>"
+" için nasıl yükleyeceğinize ilişkin yollar sunduk."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:121
+msgid "What kinds of people support Tor?"
+msgstr "Ne tür insanlar Tor'u destekler?"
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:125
+msgid "All kinds of people."
+msgstr "Her çeşit insan."
+
+#: 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 "
+"Google, the Ford Foundation, the Knight Foundation, Reddit, the U.S. "
+"National Science Foundation, the Electronic Frontier Foundation, Human "
+"Rights Watch, the Swedish International Development Cooperation Agency, the "
+"Federal Foreign Office of Germany, the U.S. Naval Research Laboratory, "
+"Omidyar Network, SRI International, and Radio Free Asia."
+msgstr ""
+"Tor Projesi'ni desteklemek için binlerce kişi bağışta bulundu ve ayrıca "
+"Google, Ford Vakfı, Knight Vakfı, Reddit, ABD Ulusal Bilim Vakfı, Elektronik"
+" Sınır Vakfı, İnsan Hakları İzleme Örgütü'nü de içeren çok çeşitli "
+"kuruluşlardan fon aldık. İsveç Uluslararası Kalkınma İşbirliği Ajansı, "
+"Almanya Federal Dış Ofisi, ABD Deniz Araştırma Laboratuvarı, Omidyar "
+"Network, SRI International ve Radio Free Asia."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:129
+msgid ""
+"People also support Tor in non-financial ways, for example by running Tor "
+"relays to help carry traffic for other users."
+msgstr ""
+"İnsanlar ayrıca Tor'u finansal olmayan yollarla da desteklemektedir; "
+"örneğin, diğer kullanıcılar için trafik taşımasına yardım etmek için Tor "
+"aktarıcısı çalıştırarak."
+
+#: 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 "
+"any single individual."
+msgstr ""
+"Ek olarak, Tor'u kullanan herkes, diğer kullanıcıların güvenli ve anonim "
+"kalmasına yardımcı oluyor, çünkü Tor'u ne kadar çok kişi kullanıyorsa, o "
+"kadar çok tek bir kişiyi tanımlamak o kadar zor olur."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:137
+msgid "How does the Tor software work to protect people's anonymity?"
+msgstr "Peki Tor gizliliği nasıl korur?"
+
+#: 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 "
+"world."
+msgstr ""
+"Tor, iletişimlerinizi dünyanın dört bir yanındaki gönüllüler tarafından "
+"yürütülen dağıtılmış bir ağ olan Tor ağı etrafında sunarak korur."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:143
+msgid ""
+"If someone is watching your internet connection, Tor prevents them from "
+"finding out what sites you are visiting."
+msgstr ""
+"Biri internet bağlantınızı izliyorsa, Tor hangi siteleri ziyaret ettiğinizi "
+"bulmalarını önler."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:145
+msgid ""
+"It also prevents sites you visit from finding out where you're located."
+msgstr ""
+"Ayrıca, ziyaret ettiğiniz sitelerin nerede bulunduğunuzu öğrenmesini de "
+"önler."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:147
+msgid ""
+"You can read more about how Tor works on our <a class=\"hyperlinks links\" "
+"target=\"_blank\" "
+"href=\"https://www.torproject.org/about/overview.html.en\">overview page."
+msgstr ""
+"Tor'un nasıl çalıştığı hakkında daha fazla bilgi edinebilirsiniz.<a "
+"class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://www.torproject.org/about/overview.html.en\">genel bakış "
+"sayfası."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:154
+msgid ""
+"I would like to know more about how Tor works, what onion services are, or "
+"how to run a relay."
+msgstr ""
+"Tor'un nasıl çalıştığı, onion servislerinin ne olduğu veya nasıl relay "
+"çalıştırılacağı hakkında daha fazla bilgi edinmek istiyorum."
+
+#: 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 "
+"FAQ</a> has answers to all those questions, and more."
+msgstr ""
+"<a class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://www.torproject.org/docs/faq.html.en\">Bu Tor Projesinin "
+"SSS'ının</a>'nın tüm bu sorulara ve fazlasına ilişkin cevapları vardır."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:164
+msgid "Does the Tor software work?"
+msgstr "Tor gerçekten işe yarar mı?"
+
+#: 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"
+" VPNs, proxychains, or browser \"private browsing\" modes."
+msgstr ""
+"Tor'un bugün için en uygun çözüm yolu olduğuna inanıyoruz ve Tor'un sizi "
+"güvenli olarak anonim tutmak konusunda VPN, proxychain veya tarayıcı \"gizli"
+" tarayıcı\" modu gibi diğer seçeneklerden daha başarılı olduğunu biliyoruz."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:170
+msgid ""
+"We know that both the Russian government and the NSA have tried in the past "
+"to crack Tor, and failed."
+msgstr ""
+"Rus hükümeti ve NSA'in geçmişte Tor'u kırmaya çalışıp başarısız olduklarını "
+"biliyoruz."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:172
+msgid ""
+"The Electronic Frontier Foundation says that Tor offers <a "
+"class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://www.eff.org/deeplinks/2014/07/7-things-you-should-know-about-"
+"tor\">some of the strongest anonymity software that exists</a>, and in his "
+"book Data and Goliath, security expert Bruce Schneier wrote \"The current "
+"best tool to protect your anonymity when browsing the web is Tor.\""
+msgstr ""
+"The Electronic Frontier Foundation says that Tor offers some of the strongest anonymity software that exists, and in his book Data and Goliath, security expert Bruce Schneier wrote \"The current best tool to protect your anonymity when browsing the web is Tor.\"\n"
+"Electronic Frontier Foundation, Tor'un <a class=\"hyperlinks links\" target=\"_blank\" href=\"https://www.eff.org/deeplinks/2014/07/7-things-you-should-know-about-tor\">var olan en güçlü anonimlik yazılımlarından bazılarını</a> sunduğunu söyledi ve Data and Goliath adlı kitabında güvenlik uzmanı Bruce Schneier \"İnternette gezinirken anonimliğinizi korumak için en iyi araç Tor olduğunu\" yazdı."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:178
+msgid "Is what Tor does legal? Can I get in trouble for using it?"
+msgstr "Tor da yasal olan ne? Kullandığım için başım belaya girebilir mi?"
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:182
+msgid ""
+"Downloading Tor Browser or using the Tor network is legal in nearly every "
+"country."
+msgstr ""
+"Tor Browser'ı indirmek veya Tor ağ kullanmak hemen hemen her ülkede "
+"yasaldır."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:184
+msgid ""
+"A few web sites occasionally block Tor, but that doesn't mean you're doing "
+"anything wrong."
+msgstr ""
+"Birkaç web sitesi bazen Tor'u engeller, ancak bu yanlış bir şey yaptığınız "
+"anlamına gelmez."
+
+#: 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 "
+"works (we’re working to change this)."
+msgstr ""
+"Genellikle bu sitenin Tor'u eskiden kullanan ziyaretçilerle zorlukları "
+"olduğu veya Tor'un ne olduğu ve nasıl çalıştığı hakkında yanlış fikirleri "
+"olduğu anlamına gelmektedir (biz bunu değiştirmeye çalışıyoruz)."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:188
+msgid ""
+"But it is not illegal to use Tor, and you shouldn't get in trouble for doing"
+" it."
+msgstr ""
+"Ancak Tor'u kullanmak yasak değil, dolayısıyla bunu kullanırken paniğe "
+"kapılmayın."
+
+#: 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\" "
+"href=\"https://www.eff.org/torchallenge/faq.html\">EFF site</a>."
+msgstr ""
+"Tor'un yasal durumuyla ilgili daha fazla bilgiyi <a class=\"hyperlinks "
+"links\" target=\"_blank\" "
+"href=\"https://www.eff.org/torchallenge/faq.html\">EFF'nin sitesinden </a> "
+"bulabilirsiniz."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:196
+msgid ""
+"Where can I find out more about the Tor Project, especially financial "
+"information?"
+msgstr ""
+"Tor Projesi, özellikle de mali konular hakkında ayrıntılı bilgiye nereden "
+"ulaşabilirim?"
+
+#: 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 "
+"statements, and its Form 990</a>."
+msgstr ""
+"İşte burada Tor Project 'in <a class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://www.torproject.org/about/financials.html.en\">finansal "
+"açıklamalar ve onu Form 990'ı</a>."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:206
+msgid "Where does the Tor Project's money come from?"
+msgstr "Tor Projesi'nin geliri nereden geliyor?"
+
+#: 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 "
+"personal donations from people like you."
+msgstr ""
+"Tor, Birleşik Devletler resmi yardım kuruluşları, sivil toplum örgütleri, "
+"özel vakıflar, araştırma enstitüleri, özel şirketler ve sizin gibi 20.000'e "
+"yakın kişisel bağışlarla desteklenmektedir."
+
+#: 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>"
+" for more.)"
+msgstr ""
+"Daha fazlası için <a class=\"hyperlinks links single-link\" "
+"target=\"_blank\" "
+"href=\"https://www.torproject.org/about/sponsors.html.en\">https://www.torproject.org/about/sponsors</a>"
+" sayfasına bakın."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:214
+msgid ""
+"While we are grateful for this funding, we don't want the Tor Project to "
+"become too dependent on any single source."
+msgstr ""
+"Her ne kadar bu bağışlardan dolayı minnettar olsak da, Tor Projesi'nin "
+"herhangi bir tek bir kaynağa bağlı kalması istemeyiz."
+
+#: 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 "
+"and respond quickly to changing events."
+msgstr ""
+"Kitlesel fonlama bağışçı tabanımızı çeşitlendirmemize ve sınırlaması "
+"olmamasına -parayı en önemli olduğunu düşündüğümüz projelere harcamamıza ve "
+"hızlı değişen durumlara çabuk karşılık verebilmemize- olanak veriyor."
+
+#: 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"
+" services we provide."
+msgstr ""
+"Ve bu yüzden, biz Tor Project'in bağımsızlığını, ürünlerin ve sağladığı "
+"hizmetlerin sürdürebilirliğini garanti etmeyi arttırmak için bizi finansal "
+"olarak destekleme de yardımcı olmanızı istiyoruz. "
+
+#: 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ı niçin kullanıyor?"
+
+#: 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/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:230
+#, php-format
+msgid ""
+"About 80% of the Tor Project's spending goes to staffing, mostly software "
+"engineers."
+msgstr ""
+"Tor Projesi'nin harcamalarının %80'i çoğunlukla yazılım mühendislerinden "
+"oluşan personele gidiyor."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:232
+msgid ""
+"About 10% goes towards administrative costs such as accounting and legal "
+"costs and bank fees."
+msgstr ""
+"%10'u muhasebe, mahkeme masrafları ve banka masrafları gibi idari "
+"harcamalara yöneliktir."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:234
+msgid ""
+"The remaining 10% is spent on travel, meetings and conferences, which are "
+"important for Tor because the Tor community is global."
+msgstr ""
+"Geri kalan %10 da seyahat, toplantı ve konferanslar için, Tor için önemliler"
+" çünkü Tor topluluğu evrensel düzeydedir, harcanıyor."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:240
+msgid "Is my donation tax-deductible?"
+msgstr "Bağışım vergiden düşülüyor mu?"
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:244
+msgid ""
+"If you pay taxes in the United States, your donation to Tor is tax "
+"deductible to the full extent required by law."
+msgstr ""
+"Birleşik Devleter'de vergi veriyorsanız, Tor'a yapacağınız bağış yasanın "
+"gerektirdiği üzere sonuna kadar vergiden düşülecektir."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:246
+msgid "Following is information you may need for reporting purposes:"
+msgstr ""
+"Aşağıda raporlama amaçlı gerek duyabileceğiniz bilgiler bulunmaktadır:"
+
+#: 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"
+" The Tor Project, Inc.<br>\n"
+" 217 First Avenue South #4903<br>\n"
+" Seattle, WA 98194<br>\n"
+" <b>Phone number:</b> 206-420-3136<br>\n"
+" <b>Contact person:</b> Isabela Bagueros, Executive Director<br>"
+msgstr ""
+"<b>Tor Projesi Vergi Numarası (EIN #):</b> 20-8096820<br>\n"
+" <b>Adres:</b><br>\n"
+" The Tor Project, Inc.<br>\n"
+" 217 First Avenue South #4903<br>\n"
+" Seattle, WA 98194<br>\n"
+" <b>Telefon Numarası:</b> 206-420-3136<br>\n"
+" <b>Sorumlu kişi:</b> Isabela Bagueros, Yürütücü Başkan <br>"
+
+#: 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 değilsem bile bağışta bulunabilir miyim?"
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:268
+msgid "Yes, definitely."
+msgstr "Evet, kesinlikle."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:270
+msgid ""
+"Your donation probably isn't tax-deductible (unless you pay taxes on U.S. "
+"income) but we would very much appreciate your support."
+msgstr ""
+"Bağışınız muhtemelen vergiden düşülemeyecek (verginizi ABD kazancınızdan "
+"ödemiyorsanız) ama desteğiniz bizim için çok önemlidir."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:276
+msgid ""
+"Can I donate to a specific project, or restrict my donation to a particular "
+"purpose?"
+msgstr ""
+"Belirli bir projeye bağışta bulunabilir veya bağışımı belirli bir amaçla "
+"sınırlayabilir miyim?"
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:280
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:560
+msgid "No, sorry."
+msgstr "Hayır, üzgünüz."
+
+#: 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 "
+"money."
+msgstr ""
+"Nasıl kullanacağını özellikle belirten birinden bağış kabul edersek, vergi "
+"dairesi o parayı takip etmemizi ve ayrı olarak raporlamamızı isteyecektir."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:284
+msgid ""
+"That would be a big administrative burden for a small organization, and we "
+"don't think it's a good idea for us."
+msgstr ""
+"Bu da küçük bir kuruluşta büyük bir idari yük olacaktır ve bizim için pek de"
+" uygun bir fikir olmayacaktır."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:286
+msgid ""
+"However, we would be very happy to hear your ideas and feedback about our "
+"work."
+msgstr ""
+"Yine de, fikirlerinizi ve projemiz hakkındaki geri bildirimlerinizi "
+"duymaktan epey mutlu oluruz."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:288
+msgid ""
+"If you're donating using a mechanism that allows for comments, feel free to "
+"send your thoughts that way."
+msgstr ""
+"Eğer yorumlara izin veren bir mekanizma kullanarak bağış yapıyorsanız, "
+"düşündüklerinizi bu şekilde yollamaktan çekinmeyin. "
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:294
+msgid "Can I donate while using Tor Browser?"
+msgstr "Tor Browser kullanırken bağışta bulunabilir miyim?"
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:298
+msgid "Yes! In our testing, donation works via Tor Browser."
+msgstr "Evet! Kendi denememizde, Tor Browser yoluyla bağış işe yaradı."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:300
+msgid ""
+"If you run into problems, please contact <span "
+"class=\"email\">giving(at)torproject.org</span>."
+msgstr ""
+"Eğer sorun yaşarsanız, lütfen <span class=\"email\"> giving(a)torproject.org "
+"</span> adresine mesaj atın."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:304
+msgid ""
+"For users logging in to Paypal: some people had no problem donating via "
+"PayPal while using Tor Browser."
+msgstr ""
+"PayPal kullanan kullanıcılar için: Bazı insanlar Tor Browser kullanırken "
+"PayPal yoluyla bağışta bulunmada sorun yaşamadı."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:306
+msgid ""
+"In past years, some people couldn't complete the donation process, and one "
+"person had their PayPal account temporarily frozen."
+msgstr ""
+"Önceki yıllarda, bazı insanlar bağış sürecini tamamlayamadı ve bir kişinin "
+"PayPal hesabı geçici olarak donduruldu."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:308
+msgid "If you run into any problems donating via PayPal, please let us know."
+msgstr ""
+"Eğer PayPal yoluyla bağışta bulunurken sorun yaşarsanız, lütfen bize "
+"bildirin."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:314
+msgid "How can I donate via debit or credit card?"
+msgstr "Banka veya kredi kartıyla nasıl bağışta bulunabilirim?"
+
+#: 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 "
+"href=\"https://donate.torproject.org\">donate page</a>."
+msgstr ""
+"Bağış için bilinen bir kredi veya banka kartı (VISA, MasterCard, Discover "
+"veya American Express) veya PayPal kullanılabilir, lütfen <a "
+"href=\"https://donate.torproject.org\">bağış sayfamızı</a> ziyaret edin."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:324
+msgid "Why do you ask for my address and similar information?"
+msgstr "Neden benden adresimi veya buna benzer bilgilerimi istiyorsunuz?"
+
+#: 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 "
+"address."
+msgstr ""
+"Kredi kartıyla bağışta bulunursanız, kredi kartı ödemenizin alınabilmesi "
+"için sizden fatura adresiniz dahil bazı bilgiler istenecektir."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:330
+msgid ""
+"This allows our payment processor to verify your identity, process your "
+"payment, and prevent fraudulent charges to your credit card."
+msgstr ""
+"Bu bilgiler ödeme işlemcimizin kimliğinizi denetleyebilmesini, ödemenizi "
+"almasını ve kredi kartınıza dolancırıcılar tarafından borçlandırma "
+"yapılmasını önlemek içindir."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:332
+msgid ""
+"We don't ask for information beyond what's required by the payment "
+"processor."
+msgstr ""
+"Sizden ödeme işlemcimizin gerek duyduğunun ötesinde bilgi istemiyoruz."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:338
+msgid "Why is there a minimum donation?"
+msgstr "Bağış için neden bir alt sınır var?"
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:342
+msgid ""
+"People who have stolen credit card information often donate to nonprofits as"
+" a way of testing whether the card works."
+msgstr ""
+"Kredi kartı bilgilerini çalan kişiler kartın çalışıp çalışmadığını anlamanın"
+" bir yolu olarak genellikle kar amacı gütmeyen kuruluşlara bağışta "
+"bulunmaktadır."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:344
+msgid ""
+"These people typically use a very small amount for their testing, and we've "
+"found that setting a $1 minimum donation seems to deter them."
+msgstr ""
+"Bu insanlar tipik olarak çok küçük bir bütçeyi denemelerinde kullanırlar ve "
+"biz minimum 1 dolarlık bağışın onları caydırmaya yeteceğine dair bir "
+"düzenleme getirdik. "
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:350
+msgid "Is there a maximum donation?"
+msgstr "Bağış için üst sınır var mı?"
+
+#: 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 "
+"research, test, and implement ideas we have for making the Tor network even "
+"stronger."
+msgstr ""
+"Hayır, hayır, hayır! Sizden gelecek daha fazla bağış demek, Tor ağını tam "
+"zamanlı olarak izleyecek eleman almak, veya Tor ağını her zamankinden daha "
+"güçlü kılmak için araştırma, test veya uygulanabilir fikirler gibi yapmaya "
+"heveslendiğimiz şeyleri yapmak demektir."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:360
+msgid "Can I donate via bitcoin?"
+msgstr "Bitcoin yoluyla bağışta bulunabilir miyim?"
+
+#: 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 "
+"via BitPay</a>."
+msgstr ""
+"Evet! <a class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://www.torproject.org/donate/donate-options.html.en\">BitPay "
+"yoluyla bitcoin</a> kabul ediyoruz."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:370
+msgid ""
+"If I want my donation to be anonymous, what is the best way for me to "
+"donate?"
+msgstr "Gizli olarak bağışta bulunmak istesem, bunun için en iyi yol nedir?"
+
+#: 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-"
+"options.html.en#cash\">sending us a postal money order</a>."
+msgstr ""
+"Bize <a class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://www.torproject.org/donate/donate-options.html.en#cash\">posta"
+" havalesi göndererek</a> bağışta bulunabilirsiniz."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:376
+msgid ""
+"You can donate via bitcoin if you have bitcoin set up in a way that "
+"preserves your anonymity."
+msgstr ""
+"Gizliliğini korumaya yönelik tasarlanmış bir bitcoin'e sahipseniz, bitcoin "
+"ile de bağışta bulunabilirsiniz."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:378
+msgid "You can buy cash gift cards and mail them to us."
+msgstr " Peşin olarak hediye kartları alıp o kartları bize gönderebilirsiniz."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:380
+msgid ""
+"There are probably other ways to donate anonymously that we haven't thought "
+"of-- maybe you will :)"
+msgstr ""
+"Gizli bir şekilde bağış yapmak konusunda üstünde düşünmediğimiz başka yollar"
+" olabilir --belki siz düşünmüşsünüzdür :)"
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:387
+msgid ""
+"Is the Tor Project required to identify me as a donor to the United States "
+"government, or to any other authority?"
+msgstr ""
+"Tor Projesi beni bir bağışçı olarak bilgilerimi Birleşik Devletler hükümeti "
+"veya başka bir otoriteye veriyor mu?"
+
+#: 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"
+" it) to the IRS, on Schedule B of the Form 990, which is filed annually."
+msgstr ""
+"Aynı yıl içerisinde Tor Projesine $5.000 veya daha fazla bağışta "
+"bulunursanız, bu bağış miktarını, adınızı ve adresinizi (eğer bu bilgilere "
+"sahipsek) yıllık olarak doldurulan 990 nolu Formun B Tablosunda raporlayarak"
+" vergi dairesine bildirmemiz gerekiyor."
+
+#: 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 "
+"do."
+msgstr ""
+"Bununla birlikte, kâr amacı gütmeyen kuruluşların bireysel bağışçı "
+"bilgilerini halka açık hale getirilen 990 kopyasından çıkarmaları normaldir "
+"ve biz de öyle yaparız."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:395
+msgid ""
+"We are not required to identify donors to any other organization or "
+"authority, and we do not."
+msgstr ""
+" Bağışçılarımızı herhangi bir kuruluş veya otoriteye bildirmeye gereği "
+"duymuyor ve bildirmiyoruz."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:397
+msgid ""
+"(Also, if you wanted, you could give us $4,999 in late 2018 and $4,999 in "
+"early 2019.)"
+msgstr ""
+"(Ayrıca, eğerki isterseniz bize 2018 sonlarında ve 2019 başlarında 4,999$ "
+"verebilirsiniz.) "
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:403
+msgid ""
+"In your privacy policy, you say you will never publicly identify me as a "
+"donor without my permission."
+msgstr ""
+"Gizlilik politikanızda, iznim olmadan beni halka bağışçı olarak "
+"açıklamaycağınızı belirtmişsiniz."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:405
+msgid "What does that mean?"
+msgstr "Bu ne anlama geliyor?"
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:409
+msgid "Yes, that's right."
+msgstr "Evet, bu doğru."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:411
+msgid ""
+"If you donate to the Tor Project, there will be some people at the Tor "
+"Project who know about your donation."
+msgstr ""
+"Tor Projesi'ne bağışta bulunacaksınız, işte Tor Projesi'nden bağışınız "
+"hakkında bilgisi olacak bazı kişiler."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:413
+msgid ""
+"However, we will never publicly identify you as a donor, unless you have "
+"given us permission to do so."
+msgstr ""
+"Yine de, bizden yapmamız için izin vermediğiniz sürece, sizi bağışçı olarak "
+"halka açıklamıyoruz."
+
+#: 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 "
+"donated."
+msgstr ""
+"Bu, web sitemizde sizin adını bildirmeyeceğimiz, size Twitter'dan teşekkür "
+"etmeyeceğimiz veya ya da sizi bağışta bulunan bir kişi olarak halka "
+"açıklayacak başka bir şey yapmayacağımız anlamına gelir. "
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:417
+msgid ""
+"If we decide we would like to publicly name you as a donor, we will ask you "
+"first, and will not do it until and unless you say it's okay."
+msgstr ""
+"Adınızı bağışçı olarak herkese açık olarak paylaşmaya karar verirsek, ilk "
+"olarak bunu size soracağız ve siz onaylayana kadar açıklamayacağız."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:423
+msgid ""
+"It's important to me that my donation be tax-deductible, but I don't pay "
+"taxes in the United States."
+msgstr ""
+"Bağışlarımın vergiden muaf olması benim için önemli fakat Amerika Birleşik "
+"Devletleri 'nde ben vergi ödemiyorum. "
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:427
+msgid ""
+"Right now, we can only offer tax-deductibility to donors who pay taxes in "
+"the United States."
+msgstr ""
+"Şu anda biz sadece Amerika Birleşik Devletleri'nde vergi ödeyen bağışçılara "
+"vergi muaflığı teklif edebiliyoruz. "
+
+#: 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"
+" your country in future."
+msgstr ""
+"Eğerki sizin için bağışlarınızın başka bir ülkede vergiden muaf olabilirliği"
+" önemliyse, bizi bilgilendirin ve biz gelecekte ülkenizde vergi muafiyetini "
+"sunmayı deneyelim. "
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:431
+msgid ""
+"Or, if you are in Germany, France or Sweden, <a class=\"hyperlinks links\" "
+"target=\"_blank\" "
+"href=\"https://www.torproject.org/docs/faq.html.en#RelayDonations\">these "
+"organizations support the Tor network</a> and may be able to offer you tax-"
+"deductibility for your donation."
+msgstr ""
+"Ya da, eğer ki siz Almanya, Fransa ya da İsveç'teyseniz <a "
+"class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://www.torproject.org/docs/faq.html.en#RelayDonations\">bunların"
+" kuruluşları Tor ağını destekler</a>ve bağışlarınız için sizden vergi mahsup"
+" edilmemesini teklif edebilirler."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:437
+msgid ""
+"What if I don't want to use credit card or PayPal? Is there another way I "
+"can donate?"
+msgstr ""
+"Kredi kartı veya PayPal kullanmak istemezsem ne olacak? Bağışta "
+"bulunabilmemin başka yolu var mı?"
+
+#: 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 "
+"you can donate.</a>"
+msgstr ""
+"Evet, Burada <a href=\"https://www.torproject.org/donate/donate-"
+"options.html.en\" class=\"hyperlinks links\" target=\"_blank\">başka türlü "
+"bağışta bulunabileceğiniz yolların</a> listesi var."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:448
+msgid "What is your donor privacy policy?"
+msgstr "Bağışçı gizlilik politikanız nedir?"
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:452
+msgid ""
+"Here is the Tor Project <a class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"/%langcode%/privacy-policy\">donor privacy policy</a>."
+msgstr ""
+"İşte Tor Projesi'nin <a class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"/%langcode%/privacy-policy\">bağışçı gizlilik politikası</a>."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:458
+msgid "What is your refund policy?"
+msgstr "İade politikanız nedir?"
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:462
+msgid ""
+"If you want your donation refunded, please tell us by emailing <span "
+"class=\"email\">giving(at)torproject.org</span>."
+msgstr ""
+"Eğer bağışınızın iade edilmesini istiyorsanız, lütfen <span class=\"email\">"
+" giving(a)torproject.org </span> adresine e-mail atarak bize bildirin."
+
+#: 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 "
+"country of origin."
+msgstr ""
+" İade sürecinin işleyebilmesi için bağış tarihinizi, ne kadar bağış "
+"yaptığınızı, tam adınızı, kullandığınız ödeme yöntemini ve bulunduğunuz "
+"ülkeyi bilmemiz gerekiyor."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:466
+msgid "Please also tell us why you're asking for a refund."
+msgstr "Lütfen bize neden iade talebinde bulunduğunuzu da bildirin."
+
+#: 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 "
+"you in order to process yours."
+msgstr ""
+"Lütfen bazı ödeme yöntemlerinin iadeyi desteklemediğini veya iadenin özel "
+"bir şekilde yapılması gerektiğini unutmayın. Bu yüzden iadenizi "
+"gerçekleştirebilmemiz için ek bilgilere ihtiyaç duyabiliriz."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:474
+msgid "Can I donate by mail?"
+msgstr "Maille bağışta bulunabilir miyim?"
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:478
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:584
+msgid "Yes."
+msgstr "Evet."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:480
+msgid ""
+"Our mailing address is The Tor Project, 217 First Avenue South #4903, "
+"Seattle WA 98194, USA"
+msgstr ""
+"Posta adresimiz Tor Project, 217 First Avenue South #4903,Seattle WA 98194, "
+"USA "
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:486
+msgid "Do you accept cash donations?"
+msgstr "Nakit bağışları kabul ediyor musunuz?"
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:490
+msgid "Yes"
+msgstr "Evet"
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:496
+msgid "Does Tor Project accept matching donations?"
+msgstr "Tor Project eşleşen bağışları kabul eder mi? "
+
+#: 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 "
+"by their employees."
+msgstr ""
+"Evet! Çoğu şirket Google, Microsoft, eBay, PayPal, Apple, Verizon, Red Hat, "
+"çoğu üniversite ve diğerleri gibi çalışanları tarafından yapılan bağışları "
+"karşılaştıracaktır."
+
+#: 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"
+" <a class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://www.matchinggifts.com/rit/\">https://www.matchinggifts.com/rit/</a>."
+msgstr ""
+"Sizin şirketinizin bağışları karşılaştırdığını bulmanın en hızlı yolu "
+"genellikle sizin HR departmanınızı kontrol ederek olur ya da siz şirket "
+"adınızı <a class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://www.matchinggifts.com/rit/\"> "
+"https://www.matchinggifts.com/rit/</a>'te arayabilirsiniz. "
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:504
+msgid ""
+"If your company isn't currently set up to match donations to the Tor "
+"Project, we would be happy to help with the paperwork."
+msgstr ""
+"Eğer şirketiniz, şu an için Tor Projesine eş bağışını düzenlemediyse, kağıt "
+"işlerinde yardım etmekten mutluluk duyarız."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:506
+msgid ""
+"If you want help figuring out the process, write us at <span "
+"class=\"email\">giving(at)torproject.org</a>."
+msgstr ""
+"Süreçle ilgili yardıma ihtiyacınız varsa bize <span "
+"class=\"email\">giving(at)torproject.org</a> adresinden ulaşabilirsiniz."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:512
+msgid "Can I become a Tor Project member?"
+msgstr "Tor Projesi'nin bir parçası olabilir miyim?"
+
+#: 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, ama ilerleyen zamanlarda bir "
+"tane hazırlama ihtimalimiz var."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:518
+msgid ""
+"If you want to get involved with the Tor Project, <a class=\"hyperlinks "
+"links\" target=\"_blank\" "
+"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">this is a "
+"good place to start</a>."
+msgstr ""
+"Tor Projesi'yle ilgilenmek istiyorsanız, <a class=\"hyperlinks links\" "
+"target=\"_blank\" "
+"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">burası "
+"başlamak için iyi bir yerdir</a>."
+
+#: 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/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 "
+"href=\"https://donate.torproject.org\">donation page</a>."
+msgstr ""
+"<a href=\"https://donate.torproject.org\">Bağış sayfamızda</a> bağışta "
+"bulunanlar için, tişört, kapüşon ve çıkartmalar gibi çeşitli teşekkür "
+"hediyeleri bulunmaktadır."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:534
+msgid ""
+"If I want to stay in touch with the Tor Project, what's the best way for me "
+"to do that?"
+msgstr ""
+"Tor Projesi'yle temasta kalmak istersem, yapmam gereken en iyi tercih nedir?"
+
+#: 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 "
+"class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://blog.torproject.org/\">Tor Blog</a>, or <a class=\"hyperlinks"
+" links\" target=\"_blank\" href=\"https://twitter.com/torproject\">follow us"
+" on Twitter</a>."
+msgstr ""
+"<a class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://newsletter.torproject.org/\">Tor Haberleri'ni</a>almak için "
+"kayıt olabilirsiniz, <a class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://blog.torproject.org/\">Tor Blog'</a>u okuyabilirsiniz veya <a"
+" class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://twitter.com/torproject\">Twitter'dan bizi takip "
+"edebilirsiniz</a>."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:544
+msgid ""
+"Does the Tor Project participate in the Combined Federal Campaign program?"
+msgstr "Tor Projesi, Birleşik Federal Kampanya programına katılıyor mu?"
+
+#: 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/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:550
+msgid ""
+"If you'd like to get Tor added to the CFC program in your location, that "
+"would be great: please let us know if you need any help."
+msgstr ""
+"Eğer bulunduğunuz konum için CFC programına Tor eklemek istiyorsanız bu çok "
+"iyi bir haber: Yardıma ihtiyacınız olursa lütfen bize haber verin."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:556
+msgid "Can I donate my airline miles, flight vouchers, or hotel points?"
+msgstr ""
+"Uçuş millerimi, uçuş indirimlerimi veya otel puanlarını bağışlayabilir "
+"miyim? "
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:562
+msgid ""
+"We would like to accept your miles, vouchers and hotel points, and in the "
+"future we may be able to."
+msgstr ""
+"Millerinizi, indirimlerinizi ve otel puanlarınızı kabul etmeyi isterdik, bu "
+"belki de gelecekte mümkün olabilir."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:568
+msgid "Can I donate hardware?"
+msgstr "Donanımsal bir bağış yapabilir miyim?"
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:572
+msgid "Typically no, we don't encourage people to donate hardware."
+msgstr "Genelde donanım türü bağışları kabul etmeyiz."
+
+#: 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 "
+"class=\"email\">giving(at)torproject.org</span>."
+msgstr ""
+"Fakat bize yardımının dokunacağına emin olduğunuz bir donanım bağışınız var "
+"ise, lütfen bu konuyu <span class=\"email\">giving(at)torproject.org</span> "
+"e-posta adresiyle konuşmaktan çekinmeyiniz."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:580
+msgid "Can I donate my time?"
+msgstr "Zamanımı bağışlayabilir miyim? "
+
+#: 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 "
+"areas where we would love your help</a>."
+msgstr ""
+"<a class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">Yardımınızdan"
+" memnuniyet duyacağımız bazı konuların listesi</a>ne bakabilirsiniz."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:592
+msgid "I would like my company to support Tor."
+msgstr "Şirketimin Tor'a yardım etmesini istiyorum."
+
+#: 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/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:598
+msgid ""
+"Your company could match donations made by its employees to the Tor Project"
+"--that would be wonderful."
+msgstr ""
+"Şirketiniz, Tor Projesine çalışanlarınızın yaptığı bağışlara denk bir bağış "
+"yapabilir, bu mükemmel olur."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:600
+msgid ""
+"Your company may operate a corporate foundation that gives out grants, and "
+"if so, you should encourage it to fund us."
+msgstr ""
+"Şirketiniz hibe veren kurumsal bir vakfı işletebilir ve eğer öyleyse, bizi "
+"finanse etmesi için teşvik etmelisiniz."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:602
+msgid ""
+"Maybe your company would be willing to <a class=\"hyperlinks links\" "
+"target=\"_blank\" "
+"href=\"https://www.torproject.org/docs/faq.html.en#HowDoIDecide\">operate a "
+"Tor relay</a>."
+msgstr "Belki şirketiniz bir <a>Tor aktarıcısı işletmek </a>istemektedir"
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:604
+msgid ""
+"If your company sells cloud services, perhaps it could donate these to Tor: "
+"We use them in some anti-censorship projects."
+msgstr ""
+"Şirketiniz bulut hizmetleri satıyorsa, belki de bunları Tor'a "
+"bağışlayabilir: Bunları bazı sansür karşıtı projelerde kullanıyoruz."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:610
+msgid "You don't support my preferred way to donate."
+msgstr "Benim bağış yapabileceğim yöntemlerden hiçbirini desteklemiyorsunuz."
+
+#: 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/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:616
+msgid "Sure."
+msgstr "Tabii ki de."
+
+#: 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/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:624
+msgid ""
+"Will the Tor Project accept donations from anybody, or do you reserve the "
+"right to reject support from specific organizations or individuals?"
+msgstr ""
+"Tor projesinin gelen maddi yardımları engelleme gibi bir hakkı bulunuyor mu?"
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:628
+msgid "We do reserve the right to reject a donation."
+msgstr "Evet, böyle bir hakkımız var."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:630
+msgid "To date though, we haven't exercised that right."
+msgstr "Fakat şu zamana kadar henüz hiç bu hakkı kullanmamız gerekmedi."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:632
+msgid "We are happy that a broad range of people use and support Tor."
+msgstr ""
+"Çok fazla türden insanın bu projeyi desteklemesi bize mutluluk veriyor."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:638
+msgid "I have more questions."
+msgstr "Bu sayfada cevaplanmamış sorularım var."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:640
+msgid "How can I get answers?"
+msgstr "Bunlara nasıl cevap alabilirim?"
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:644
+msgid ""
+"Feel free to send questions to <span "
+"class=\"email\">frontdesk(at)rt.torproject.org</span>."
+msgstr ""
+"Sorularınızı<span class=\"email\">frontdesk(at)rt.torproject.org</span>'a "
+"gönül rahatlığıyla gönderebilirsiniz."
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:646
+msgid ""
+"We will try to answer you, and we'll also post your question (and the "
+"answer) here."
+msgstr ""
+"Size cevap vermeye çalışacağız ve sorunuzu (ve cevabını) da buraya "
+"yazacağız."
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:29
+msgid ""
+"The European shirt fits run a little small so you might want to consider "
+"sizing up."
+msgstr ""
+"Avrupa tişört kesimleri biraz daha küçük olduğundan bir boy büyük almak "
+"isteyebilirsiniz."
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:36
+msgid "Fit"
+msgstr "Kesim"
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:40
+msgid "Select Fit"
+msgstr "Kesim Seçin"
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:44
+msgid "Slim"
+msgstr "Dar"
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:48
+msgid "Classic"
+msgstr "Klasik"
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:56
+msgid "European"
+msgstr "Avrupa"
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:66
+msgid "Size"
+msgstr "Beden"
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:70
+msgid "Select Size"
+msgstr "Beden Seçin"
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:74
+msgid "S"
+msgstr "S"
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:78
+msgid "M"
+msgstr "M"
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:82
+msgid "L"
+msgstr "L"
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:86
+msgid "XL"
+msgstr "XL"
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:90
+msgid "XXL"
+msgstr "XXL"
1
0

[translation/donatepages-messagespot] Update translations for donatepages-messagespot
by translation@torproject.org 23 Feb '19
by translation@torproject.org 23 Feb '19
23 Feb '19
commit 86c7eb6821427bfd815a364b00f117a88aec42be
Author: Translation commit bot <translation(a)torproject.org>
Date: Sat Feb 23 15:45:26 2019 +0000
Update translations for donatepages-messagespot
---
locale/tr/LC_MESSAGES/messages.po | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/locale/tr/LC_MESSAGES/messages.po b/locale/tr/LC_MESSAGES/messages.po
index 7333e51e3..d47724dc0 100644
--- a/locale/tr/LC_MESSAGES/messages.po
+++ b/locale/tr/LC_MESSAGES/messages.po
@@ -14,10 +14,11 @@
# T. E. Kalayci <tekrei(a)gmail.com>, 2019
# Hasan Tayyar BESIK <tayyar.besik(a)gmail.com>, 2019
# Tmp341, 2019
+# ilkeryus <ilkeryus(a)gmail.com>, 2019
#
msgid ""
msgstr ""
-"Last-Translator: Tmp341, 2019\n"
+"Last-Translator: ilkeryus <ilkeryus(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"
@@ -1049,6 +1050,8 @@ msgid ""
"book Data and Goliath, security expert Bruce Schneier wrote \"The current "
"best tool to protect your anonymity when browsing the web is Tor.\""
msgstr ""
+"The Electronic Frontier Foundation says that Tor offers some of the strongest anonymity software that exists, and in his book Data and Goliath, security expert Bruce Schneier wrote \"The current best tool to protect your anonymity when browsing the web is Tor.\"\n"
+"Electronic Frontier Foundation, Tor'un <a class=\"hyperlinks links\" target=\"_blank\" href=\"https://www.eff.org/deeplinks/2014/07/7-things-you-should-know-about-tor\">var olan en güçlü anonimlik yazılımlarından bazılarını</a> sunduğunu söyledi ve Data and Goliath adlı kitabında güvenlik uzmanı Bruce Schneier \"İnternette gezinirken anonimliğinizi korumak için en iyi araç Tor olduğunu\" yazdı."
#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:178
msgid "Is what Tor does legal? Can I get in trouble for using it?"
@@ -1496,6 +1499,9 @@ msgid ""
"from the copy of the 990 that's made publicly-available, and that's what we "
"do."
msgstr ""
+"Bununla birlikte, kâr amacı gütmeyen kuruluşların bireysel bağışçı "
+"bilgilerini halka açık hale getirilen 990 kopyasından çıkarmaları normaldir "
+"ve biz de öyle yaparız."
#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:395
msgid ""
@@ -1883,6 +1889,8 @@ msgid ""
"Your company may operate a corporate foundation that gives out grants, and "
"if so, you should encourage it to fund us."
msgstr ""
+"Şirketiniz hibe veren kurumsal bir vakfı işletebilir ve eğer öyleyse, bizi "
+"finanse etmesi için teşvik etmelisiniz."
#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:602
msgid ""
1
0