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

18 Sep '18
commit 221a3499c76b71a38d0f79f9f64cabebd66e4992
Author: Damian Johnson <atagar(a)torproject.org>
Date: Fri Sep 7 04:03:25 2018 -0700
Missing ORPort descriptor download example
Oops, forgot to add the new example when expanding our tutorial in the last
commit.
---
docs/_static/example/descriptor_from_orport.py | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/docs/_static/example/descriptor_from_orport.py b/docs/_static/example/descriptor_from_orport.py
new file mode 100644
index 00000000..48b0673b
--- /dev/null
+++ b/docs/_static/example/descriptor_from_orport.py
@@ -0,0 +1,14 @@
+import stem.descriptor.remote
+
+# Unlike the above example, this one downloads specifically through the
+# ORPort of moria1 (long time tor directory authority).
+
+try:
+ consensus = stem.descriptor.remote.get_consensus(
+ endpoints = (stem.ORPort('128.31.0.34', 9101),)
+ )
+
+ for desc in consensus:
+ print("found relay %s (%s)" % (desc.nickname, desc.fingerprint))
+except Exception as exc:
+ print("Unable to retrieve the consensus: %s" % exc)
1
0
commit 29e70dfe8af598aa7f54518c92490d32a8a0dd76
Author: Damian Johnson <atagar(a)torproject.org>
Date: Fri Sep 7 03:43:27 2018 -0700
Deprecate stem.descriptor.export
This module was provided by a contributor in stem's early days to export
descriptors as csvs. I've never used it, and aside from that contributor
years ago never heard of anyone else using it either.
Lets propose dropping it and see if anyone would mind. Happy to keep it
if it's useful, but if it isn't seems the very definition of bloat. ;)
---
docs/change_log.rst | 1 +
stem/descriptor/export.py | 5 +++++
2 files changed, 6 insertions(+)
diff --git a/docs/change_log.rst b/docs/change_log.rst
index 9331890c..b91f69b3 100644
--- a/docs/change_log.rst
+++ b/docs/change_log.rst
@@ -79,6 +79,7 @@ The following are only available within Stem's `git repository
* Don't retry downloading descriptors when we've timed out
* Don't download from tor26 and Bifroest, which are authorities that frequently timeout
* `stem.descriptor.remote <api/descriptor/remote.html>`_ now consistently defaults **fall_back_to_authority** to false
+ * Deprecated `stem.descriptor.export <api/descriptor/export.html>`_. If you use it please `let us know <https://www.atagar.com/contact/>`_.
* Added :func:`~stem.descriptor.remote.their_server_descriptor`
* Added the reply_headers attribute to :class:`~stem.descriptor.remote.Query`
* Supplying a User-Agent when downloading descriptors
diff --git a/stem/descriptor/export.py b/stem/descriptor/export.py
index f6d73ebb..c565bfac 100644
--- a/stem/descriptor/export.py
+++ b/stem/descriptor/export.py
@@ -10,6 +10,11 @@ Toolkit for exporting descriptors to other formats.
export_csv - Exports descriptors to a CSV
export_csv_file - Writes exported CSV output to a file
+
+.. deprecated:: 1.7.0
+
+ This module will likely be removed in Stem 2.0 due to lack of usage. If you
+ use this modle please `let me know <https://www.atagar.com/contact/>`_.
"""
import csv
1
0
commit 545abe82f682f4260e1347b7d4a797e223b89ff0
Author: Colin Childs <colin(a)torproject.org>
Date: Tue Sep 18 14:23:13 2018 -0500
Fixing id translation push
---
id/id.po | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/id/id.po b/id/id.po
index 39e0d05..cd90a85 100644
--- a/id/id.po
+++ b/id/id.po
@@ -91,7 +91,7 @@ msgstr ""
#: about-tor-browser.page:50
msgid "How Tor works"
-msgstr "Bagaimana Tor bekerja\n"
+msgstr "Bagaimana Tor bekerja"
#: about-tor-browser.page:52
msgid ""
1
0
commit 8dd53acf68fff044d19b6ec16567592e31774eb0
Author: Colin Childs <colin(a)torproject.org>
Date: Tue Sep 18 14:23:53 2018 -0500
Adding zh-TW translations
---
Makefile.am | 2 +-
zh-TW/zh-TW.po | 1557 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 1558 insertions(+), 1 deletion(-)
diff --git a/Makefile.am b/Makefile.am
index 03d31aa..d08ec37 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -8,7 +8,7 @@ TOR_AND_HTTPS = ../tor-and-https
HELP_ID = tor-browser-user-manual
HELP_FILES = $(shell cd $(srcdir)/C && git ls-files '*.page')
HELP_MEDIA = $(shell cd $(srcdir)/C && git ls-files 'media')
-HELP_LINGUAS = en-US ja sv ga bn_BD id ca @TOR_BROWSER_BUNDLE_LOCALES@
+HELP_LINGUAS = en-US ja sv ga bn_BD id ca zh-TW @TOR_BROWSER_BUNDLE_LOCALES@
.PHONY: html
html: all media-symlinks.stamp
diff --git a/zh-TW/zh-TW.po b/zh-TW/zh-TW.po
new file mode 100644
index 0000000..e9612ed
--- /dev/null
+++ b/zh-TW/zh-TW.po
@@ -0,0 +1,1557 @@
+# Translators:
+# Mingye Wang <arthur200126(a)gmail.com>, 2016
+# guihu, 2016
+# Vel <veloci85(a)gmail.com>, 2016
+# Agustín Wu <losangwuyts(a)gmail.com>, 2016
+# Chinrur Yang <chinrur(a)gmail.com>, 2016
+# LNDDYL, 2016
+# Quence Lin <qqq89513(a)yahoo.com.tw>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2016-12-06 16:36-0600\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Quence Lin <qqq89513(a)yahoo.com.tw>, 2016\n"
+"Language-Team: Chinese (Taiwan) (https://www.transifex.com/otf/teams/1519/zh_TW/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: zh_TW\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
+msgctxt "_"
+msgid "translator-credits"
+msgstr "OTF 譯者 <https://www.transifex.com/otf/public>"
+
+#: about-tor-browser.page:7
+msgid "Learn what Tor Browser can do to protect your privacy and anonymity"
+msgstr "了解洋蔥路由瀏覽器如何保護您的的隱私和匿名性"
+
+#: about-tor-browser.page:10
+msgid "About Tor Browser"
+msgstr "關於洋蔥路由瀏覽器"
+
+#: about-tor-browser.page:12
+msgid ""
+"Tor Browser uses the Tor network to protect your privacy and anonymity. "
+"Using the Tor network has two main properties:"
+msgstr "洋蔥路由瀏覽器使用洋蔥路由網路來保護您的隱私和匿名性。使用洋蔥路由網路有兩個主要的功能:"
+
+#: about-tor-browser.page:18
+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 "無論是您的網路服務提供者或在您本地網路上監看網路流量的任何人,都無法追蹤您的網路活動,包括您所拜訪的網站名稱和位址。"
+
+#: about-tor-browser.page:25
+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 ""
+"不論是網站管理員或網路服務提供者,只能看見某個來自洋蔥路由網路的連線,完全看不到您的真實網路位址(IP "
+"位址),除非您主動表明身份,否則他們絕對無法得知您的真實身份。"
+
+#: about-tor-browser.page:34
+msgid ""
+"In addition, Tor Browser is designed to prevent websites from "
+"“fingerprinting” or identifying you based on your browser configuration."
+msgstr "並且,洋蔥路由瀏覽器有經過特殊設計,可以防止網站利用各種瀏覽器的個人設定值作為「特徵指紋」來追蹤辨識您的網路活動。"
+
+#: about-tor-browser.page:39
+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 <link xref"
+"=\"managing-identities#new-identity\">New Identity</link> is requested)."
+msgstr ""
+"在預設狀態下,洋蔥路由瀏覽器不會在硬碟中儲存任何網路瀏覽紀錄,網站使用的 Cookie 紀錄也會在洋蔥路由瀏覽器關閉後或者是<link xref"
+"=\"managing-identities#new-identity\">新的身份</link>功能被執行後全部消失。"
+
+#: about-tor-browser.page:50
+msgid "How Tor works"
+msgstr "洋蔥路由如何運作"
+
+#: about-tor-browser.page:52
+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 <em>relays</em>) in the Tor network. The"
+" last relay in the circuit (the “exit relay”) then sends the traffic out "
+"onto the public Internet."
+msgstr ""
+"洋蔥路由是一種由虛擬通道所建構成的網路,它可以強化您在網路上活動時的安全性與隱私性。它運作的原理是把您上網時的網路訊號導引轉跳過洋蔥路由網路上的三個隨機伺服器(又稱為<em>中繼節點</em>),這條迴路上的第三個也是最後一個中繼節點(又稱為出口節點)會將您的網路訊號送上公開的網際網路。"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: about-tor-browser.page:59
+msgctxt "_"
+msgid ""
+"external ref='media/how-tor-works.png' "
+"md5='6fe4151a88b7a518466f0582e40ccc8c'"
+msgstr ""
+"external ref='media/how-tor-works.png' "
+"md5='6fe4151a88b7a518466f0582e40ccc8c'"
+
+#: about-tor-browser.page:60
+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 ""
+"上圖說明了當使用者透過洋蔥路由來造訪不同網站時的情況,綠色的中繼電腦代表洋蔥路由網路上的中繼節點,而圖中的三把鑰匙意指在使用者與各個中繼節點間的多層加密結構。"
+
+#: bridges.page:6
+msgid "Learn what bridges are and how to get them"
+msgstr "認識橋接器及其使用方式"
+
+#: bridges.page:10
+msgid "Bridges"
+msgstr "橋接器"
+
+#: bridges.page:12
+msgid ""
+"Most <link xref=\"transports\">Pluggable Transports</link>, 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 或 obfs4 之類的的<link xref=\"transports\">Pluggable "
+"Transports</link>都仰賴橋接器來運作,基本上它們和普通的洋蔥路由中繼節點一樣,都是由志願者自行架設營運的伺服器,只不過這些中繼節點的相關資訊是不公開的,因此一般人很難分辨出它們是一般的電腦主機或是洋蔥路由網路的中繼節點,當橋接器同時與"
+" Pluggable Transports 啟用時,可以讓其他人非常難以看出您是否正透過洋蔥路由來上網。"
+
+#: bridges.page:21
+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 之類的 Pluggable Transport "
+"使用不同的反監控過濾技術,它們並不需依賴橋接器來運作,因此您使用時也不需要事先去取得橋接器的位址。"
+
+#: bridges.page:28
+msgid "Getting bridge addresses"
+msgstr "取得橋接器位址"
+
+#: bridges.page:29
+msgid ""
+"Because bridge addresses are not public, you will need to request them "
+"yourself. You have two options:"
+msgstr "因為橋接器的位址是不公開的,您要先設法取得位址。有兩個方法:"
+
+#: bridges.page:36
+msgid ""
+"Visit <link "
+"href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</link>"
+" and follow the instructions, or"
+msgstr ""
+"前往 <link "
+"href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</link>"
+" 並按照上面的指示操作,或者"
+
+#: bridges.page:42
+msgid ""
+"Email bridges(a)torproject.org from a Gmail, Yahoo, or Riseup email address, "
+"or"
+msgstr "使用 Gmail、Yahoo 或 Riseup 的電子郵件帳號發送電子郵件到 bridges(a)torproject.xn--org,-875hs64m"
+
+#: bridges.page:51
+msgid "Entering bridge addresses"
+msgstr "輸入橋接器位址"
+
+#: bridges.page:52
+msgid ""
+"Once you have obtained some bridge addresses, you will need to enter them "
+"into Tor Launcher."
+msgstr "在您取得橋接器位址後,還需要將它輸入洋蔥路由啟動器裡面。"
+
+#: bridges.page:57
+msgid ""
+"Choose “yes” when asked if your Internet Service Provider blocks connections"
+" to the Tor network. Select “Use custom bridges” and enter each bridge "
+"address on a separate line."
+msgstr ""
+"如果您的網路服務供應商(ISP)會阻擋洋蔥路由網路連線的話,請點選「是」,並選擇「使用自行設定之橋接器」再將橋接器的位址輸入,每個位址皆應置於單獨的一行中。"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: bridges.page:63
+msgctxt "_"
+msgid ""
+"external ref='media/tor-launcher-custom-bridges_en-US.png' "
+"md5='93365c2aa3fb4d627497e83f28a39b7e'"
+msgstr ""
+"external ref='media/tor-launcher-custom-bridges_en-US.png' "
+"md5='93365c2aa3fb4d627497e83f28a39b7e'"
+
+#: bridges.page:65
+msgid ""
+"Click “Connect”. Using bridges may slow down the connection compared to "
+"using ordinary Tor relays. 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 ""
+"點選「連線」以便建立洋蔥路由迴路,使用橋接器會讓網路連線速度比使用一般的洋蔥路由中繼節點還要慢。如果連線失敗的話,可能是因為您所指定的橋接器目前並非正常運作中,請使用上面所提的方法取得更多的橋接器位址後,再行嘗試。"
+
+#: circumvention.page:6
+msgid "What to do if the Tor network is blocked"
+msgstr "當洋蔥路由網路被過濾阻擋時該怎麼辦"
+
+#: circumvention.page:10
+msgid "Circumvention"
+msgstr "規避"
+
+#: circumvention.page:12
+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 <link xref=\"transports\">Pluggable Transports</link> "
+"page for more information on the types of transport that are currently "
+"available."
+msgstr ""
+"有時候您的網路服務供應商(ISP)或政府單位會過濾阻擋通往洋蔥路由網路的連線,因此洋蔥路由瀏覽器有內建一些能夠繞過這類過濾機制的規避工具,它們通常叫作「Pluggable"
+" Transports」,您可以參考此網頁<link xref=\"transports\">Pluggable "
+"Transports</link>以取得更多關於各種目前可以使用的規避工具。"
+
+#: circumvention.page:22
+msgid "Using pluggable transports"
+msgstr "使用 Pluggable Transports"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: circumvention.page:26 first-time.page:35
+msgctxt "_"
+msgid ""
+"external ref='media/circumvention/configure.png' "
+"md5='519d888303eadfe4cb03f178aedd90f5'"
+msgstr ""
+"external ref='media/circumvention/configure.png' "
+"md5='519d888303eadfe4cb03f178aedd90f5'"
+
+#: circumvention.page:28
+msgid ""
+"To use pluggable transports, click \"Configure\" in the Tor Launcher window "
+"that appears when you first run Tor Browser."
+msgstr "若要使用 Pluggable Transport,請在開啟洋蔥路由瀏覽器時的啟動器中,點選「設定」按鈕。"
+
+#: circumvention.page:33
+msgid ""
+"You can also configure pluggable transports while Tor Browser is running, by"
+" clicking on the green onion near your address bar and selecting “Tor "
+"Network Settings”."
+msgstr ""
+"您也可以在此用洋蔥路由瀏覽器的時候,點擊位在網址列旁邊的綠色洋蔥圖示並選擇「洋蔥路由網路設定」功能,來調整有關 Pluggable Transport "
+"之設定。"
+
+#: circumvention.page:41
+msgid ""
+"Select “yes” when asked if your Internet Service Provider blocks connections"
+" to the Tor network."
+msgstr "如果您的網路服務供應商(ISP)會過濾阻擋通往洋蔥路由網路的連線,請點選「是」。"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: circumvention.page:49
+msgctxt "_"
+msgid ""
+"external ref='media/circumvention/bridges.png' "
+"md5='910cdd5e45860b81a1ad4739c589a195'"
+msgstr ""
+"external ref='media/circumvention/bridges.png' "
+"md5='910cdd5e45860b81a1ad4739c589a195'"
+
+#: circumvention.page:51
+msgid ""
+"Select “Connect with provided bridges”. Tor Browser currently has six "
+"pluggable transport options to choose from."
+msgstr "選擇「以所提供的橋接器連線」,目前洋蔥路由瀏覽器有提供六個 Pluggable Transport 供您選擇。"
+
+#: circumvention.page:60
+msgid "Which transport should I use?"
+msgstr "我應該要使用哪個 Pluggable Transport?"
+
+#: circumvention.page:61
+msgid ""
+"Each of the transports listed in Tor Launcher’s menu works in a different "
+"way (for more details, see the <link xref=\"transports\">Pluggable "
+"Transports</link> page), and their effectiveness depends on your individual "
+"circumstances."
+msgstr ""
+"在洋蔥錄由啟動器之清單中所羅列的 Pluggable Transport,其運作原理皆不相同(請參考 <link "
+"xref=\"transports\">Pluggable "
+"Transports</link>以了解更多相關資訊),且其產生的效果也會因您的實際情況而有所差異。"
+
+#: circumvention.page:67
+msgid ""
+"If you are trying to circumvent a blocked connection for the first time, you"
+" should try the different transports: obfs3, obfs4, ScrambleSuit, fte, meek-"
+"azure, meek-amazon."
+msgstr ""
+"如果這是您首次嘗試規避網路連線之過濾阻擋機制,您應該要試著使用不同的 Pluggable "
+"Transport:obfs3、obfs4、ScrambleSuit、FTE、meek-azure、meek-amazon。"
+
+#: circumvention.page:72
+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 <link "
+"xref=\"bridges\">Bridges</link> section to learn what bridges are and how to"
+" obtain them."
+msgstr ""
+"如果您試過了上述的全部選項後,仍然無法連上線的話,您將必須要手動輸入橋接器位址,請參考<link "
+"xref=\"bridges\">橋接器</link>部分以進一步了解橋接器之運作原理與取得方式。"
+
+#: downloading.page:7
+msgid "How to download Tor Browser"
+msgstr "如何下載洋蔥路由瀏覽器"
+
+#: downloading.page:10
+msgid "Downloading"
+msgstr "下載中"
+
+#: downloading.page:12
+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 <link xref=\"secure-connections\">HTTPS</link>, which "
+"makes it much harder for somebody to tamper with."
+msgstr ""
+"要取得洋蔥路由瀏覽器,最安全且簡便的方式就是從洋蔥路由專案計畫之官方網站 https://www.torproject.org "
+"下載。造訪該網站之網路連線都將會受到<link xref=\"secure-"
+"connections\">HTTPS</link>機制保護,以便讓連線之資料傳輸更難以被竄改。"
+
+#: downloading.page:19
+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 ""
+"然而,某些情況下您可能無法成功造訪洋蔥路由專案計畫之官方網站,例如您所在的網路會阻檔通往該網站之連線,如果您遭遇到類似情況的話,可以利用下列幾種不同的方式取得洋蔥路由瀏覽器。"
+
+#: downloading.page:27
+msgid "GetTor"
+msgstr "GetTor"
+
+#: downloading.page:28
+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 是一個特殊的服務,它會自動回覆一個訊息,內含有最新版洋蔥路由瀏覽器下載連結,通常是位於 Dropbox、Google Drive 或 "
+"Github 上的檔案下載連結。"
+
+#: downloading.page:34
+msgid "To use GetTor via email:"
+msgstr "利用電子郵件信箱來使用 GetTor 服務:"
+
+#: downloading.page:39
+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 "
+",並且依照您欲使用洋蔥路由瀏覽器的電腦系統,在郵件內容填寫「windows」、「osx」或「linux」來指定平台版本(不含括號)"
+
+#: downloading.page:46
+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 "
+"將會自動回覆一封電子郵件給您,信中會帶有洋蔥路由瀏覽器的下載連結、數位簽章(用於確認所下載之檔案其來源可信)、數位簽章所用之金鑰特徵指紋碼、所下載檔案之總和檢查碼。另外,您亦可以依照您所使用的電腦系統架構,選擇要下載"
+" 32 位元或是 64 位元的版本。"
+
+#: downloading.page:57
+msgid "To use GetTor via Twitter:"
+msgstr "利用推特來使用 GetTor 服務:"
+
+#: downloading.page:62
+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 平台之英文版洋蔥路由瀏覽器的下載超連結,只要將「osx en」這幾個字寫成訊息並直接傳訊發送給 @get_tor "
+"帳號即可。(您不需要去跟隨該帳號)"
+
+#: downloading.page:70
+msgid "To use GetTor via Jabber/XMPP (Tor Messenger, Jitsi, CoyIM):"
+msgstr "利用 Jabber/XMPP (Tor Messenger, Jitsi, CoyIM) 來使用 GetTor 服務的方式:"
+
+#: downloading.page:75
+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 平台上使用的中文版洋蔥路由瀏覽器下載連結,可以將「linux zh」字串寫在電子郵件裡並發送到 "
+"gettor(a)torproject.org."
+
+#: downloading.page:84
+msgid "Satori"
+msgstr "Satori"
+
+#: downloading.page:85
+msgid ""
+"Satori is an add-on for the Chrome or Chromium browsers that allows you to "
+"download several security and privacy programs from different sources."
+msgstr ""
+"Satori 是一個設計給 Chrome 及 Chromium "
+"瀏覽器使用的擴充元件,它可以讓使用者從不同的來源下載許多有關強化資訊安全與確保個人隱私的相關軟體。"
+
+#: downloading.page:90
+msgid "To download Tor Browser using Satori:"
+msgstr "利用 Satori 來下載洋蔥路由瀏覽器:"
+
+#: downloading.page:95
+msgid "Install Satori from the Chrome App Store."
+msgstr "從 Chrome 的 App Store 中安裝 Satori:"
+
+#: downloading.page:100
+msgid "Select Satori from your browser’s Apps menu."
+msgstr "從您的 APP 清單中點選 Satori。"
+
+#: downloading.page:105
+msgid ""
+"When Satori opens, click on your preferred language. A menu will open "
+"listing the available downloads for that language. Find the entry for Tor "
+"Browser under the name of your operating system. Select either “A” or “B” "
+"after the name of the program — each one represents a different source from "
+"which to get the software. Your download will then begin."
+msgstr ""
+"當 Satori "
+"開啟後,您可以選擇您所想要使用的語言介面,下載清單將會自動羅列出對應該語言的可用下載連結,此時您只需要找到符合您電腦系統版本的洋蔥路由瀏覽器,並在「A」或「B」兩個不同的下載來源中,任選一個以開始下載程序。"
+
+#: downloading.page:115
+msgid ""
+"Wait for your download to finish, then find the “Generate Hash” section in "
+"Satori’s menu and click “Select Files”."
+msgstr "等下載完成以後,在 Satori 的功能清單中找到「Generate Hash」功能,並選擇「Select Files」。"
+
+#: downloading.page:121
+msgid ""
+"Select the downloaded Tor Browser file. Satori will display the checksum of "
+"the file, which you should compare with the software’s original checksum: "
+"you can find this by clicking the word “checksum” after the link you clicked"
+" on to start the download. If the checksums match, your download was "
+"successful, and you can <link xref=\"first-time\">begin using Tor "
+"Browser</link>. If they do not match, you may need to try downloading again,"
+" or from a different source."
+msgstr ""
+"選擇下載下來的洋蔥路由瀏覽器檔案,此時 Satori "
+"將會自動為該檔案計算出其總和檢查碼,您需要親自核對此檢查碼與軟體原本的檢查碼是否完全符合:您可以在您下載該檔案的超連結旁邊找到「checksum」字樣,點擊後就可以看到軟體原本的檢查碼,若兩組檢查碼完全一致的話,表示您的下載已經成功,此時您可以直接<link"
+" xref=\"first-"
+"time\">開始使用洋蔥路由瀏覽器</link>,若兩組檢查碼不相符的話,您可能需要再重新下載,或者選擇不同的下載來源重新嘗試。"
+
+#: first-time.page:7
+msgid "Learn how to use Tor Browser for the first time"
+msgstr "學習如何開始使用洋蔥路由瀏覽器"
+
+#: first-time.page:10
+msgid "Running Tor Browser for the first time"
+msgstr "首次執行洋蔥路由瀏覽器"
+
+#: first-time.page:12
+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 "當您首次啟動洋蔥路由瀏覽器時,您會看到洋蔥路由網路的設定視窗,此處您可以選擇要瀏覽器直接連上洋蔥路由網路,或者是要設定不同的連線方式。"
+
+#: first-time.page:19
+msgid "Connect"
+msgstr "連線"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: first-time.page:21 troubleshooting.page:18
+msgctxt "_"
+msgid ""
+"external ref='media/first-time/connect.png' "
+"md5='9d07068f751a3bfd274365a4ba8d90ca'"
+msgstr ""
+"external ref='media/first-time/connect.png' "
+"md5='9d07068f751a3bfd274365a4ba8d90ca'"
+
+#: first-time.page:23
+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 "
+"<link xref=\"troubleshooting\">Troubleshooting</link> page for help solving "
+"the problem."
+msgstr ""
+"在大多數情況下,點選「連線」可以讓您不作任何進一步的設定就直接連上洋蔥路由網路,點擊後將會出現一條狀態列顯示目前洋蔥路由的連線建立過程,如果您的網路頻寬充足但是此狀態列卻長時間停滯在某個點上無法完成連線建立,請參考"
+" <link xref=\"troubleshooting\">錯誤處理</link>頁面以尋求解決問題的協助。"
+
+#: first-time.page:33
+msgid "Configure"
+msgstr "設定"
+
+#: first-time.page:37
+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 "如果您使用的網路有被過濾阻擋,或是您有使用代理伺服器,那您就必須要選擇此項目,洋蔥路由瀏覽器將會引導您進行一連串的相關設定程序。"
+
+#: first-time.page:44
+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 <link "
+"xref=\"circumvention\">Circumvention</link> screen to configure a pluggable "
+"transport."
+msgstr ""
+"在第一個畫面中您必須回答您所處的網路環境是否會過濾阻擋通往洋蔥路由網路的連線,若您認為不會的話,請選擇「否」。否則若您的網路有被過濾阻擋,或您已經嘗試過各種連上洋蔥路由網路的方法但都失敗的話,請選擇「是」,本程式將會帶領您前往"
+" <link xref=\"circumvention\">審查規避</link>畫面進行 Pluggable Transport 的相關設定。"
+
+#: first-time.page:55
+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 ""
+"在下一個畫面中,您必須要回答您的網路連線是否有透過代理伺服器來連上網路,通常您應該很清楚自己是否有使用代理伺服器,因為這部分的設定在您電腦中的每個網路瀏覽器裡都會一樣。若您不確定的話,可以詢問您的網路管理員,若您確定無使用代理伺服器的話,請點選「繼續」。"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: first-time.page:63
+msgctxt "_"
+msgid ""
+"external ref='media/first-time/proxy_question.png' "
+"md5='30853b3e86cfd386bbc32e5b8b45a378'"
+msgstr ""
+"external ref='media/first-time/proxy_question.png' "
+"md5='30853b3e86cfd386bbc32e5b8b45a378'"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: first-time.page:66
+msgctxt "_"
+msgid ""
+"external ref='media/first-time/proxy.png' "
+"md5='13f21a351cd0aa1cf11aada690f3dc90'"
+msgstr ""
+"external ref='media/first-time/proxy.png' "
+"md5='13f21a351cd0aa1cf11aada690f3dc90'"
+
+#: index.page:6
+msgid "Tor Browser User Manual"
+msgstr "洋蔥路由瀏覽器之使用者手冊"
+
+#: known-issues.page:6
+msgid "A list of known issues."
+msgstr "目前已知的問題。"
+
+#: known-issues.page:10
+msgid "Known Issues"
+msgstr "已知的問題"
+
+#: known-issues.page:14
+msgid ""
+"Tor needs your system clock (and your time zone) set to the correct time."
+msgstr "您必須要將系統的時間(以及您的所在時區)正確設定,方能夠使用洋蔥路由網路。"
+
+#: known-issues.page:19
+msgid ""
+"The following firewall software have been known to interfere with Tor and "
+"may need to be temporarily disabled:"
+msgstr "下列的防火牆軟體會干擾洋蔥路由的運作,您或許需要先暫時將它們關閉:"
+
+#: known-issues.page:23
+msgid "Webroot SecureAnywhere"
+msgstr "Webroot SecureAnywhere"
+
+#: known-issues.page:26
+msgid "Kaspersky Internet Security 2012"
+msgstr "Kaspersky Internet Security 2012"
+
+#: known-issues.page:29
+msgid "Sophos Antivirus for Mac"
+msgstr "Sophos Antivirus for Mac"
+
+#: known-issues.page:32
+msgid "Microsoft Security Essentials"
+msgstr "Microsoft Security Essentials"
+
+#: known-issues.page:37
+msgid ""
+"Videos that require Adobe Flash are unavailable. Flash is disabled for "
+"security reasons."
+msgstr "由於 Adobe Flash 會造成安全性疑慮,需要 Adobe Flash 外掛程式的影片皆無法使用。"
+
+#: known-issues.page:43
+msgid "Tor can not use a bridge if a proxy is set."
+msgstr "洋蔥路由的橋接器無法與代理伺服器一起運行。"
+
+#: known-issues.page:48
+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 ""
+"洋蔥路由瀏覽器套件的日期時間押在UTC時間西元 2000 年一月 1 日零時零分零秒,其目的是在確保每個軟體的編譯建構都能夠完整無誤差地重現。"
+
+#: known-issues.page:54
+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 系統中執行洋蔥路由瀏覽器的話,必須要執行一個命令稿程式(Shell Script),請使用 Unity "
+"的瀏覽功能開啟「檔案」,再開啟「個人設定」,點選行為頁籤,將「每當開起可執行文字文件時直接執行」的設定更改為「每次都詢問」,然後點擊「OK」。"
+
+#: known-issues.page:62
+msgid ""
+"Tor Browser can also be started from the command line by running the "
+"following command from inside the Tor Browser directory:"
+msgstr "也可以用命令列模式在洋蔥路由瀏覽器的目錄中,執行下面這個指令來啟動它:"
+
+#: known-issues.page:66
+#, no-wrap
+msgid ""
+"\n"
+" ./start-tor-browser.desktop\n"
+" "
+msgstr ""
+"\n"
+" ./start-tor-browser.desktop\n"
+" "
+
+#: managing-identities.page:6
+msgid "Learn how to control personally-identifying information in Tor Browser"
+msgstr "學習如何在洋蔥路由瀏覽器中,管控可識別個人身分的資訊"
+
+#: managing-identities.page:10
+msgid "Managing identities"
+msgstr "身分管理"
+
+#: managing-identities.page:12
+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 ""
+"當您連上某個網站時,不只是該網站的管理員可取得有關於您的相關資訊,現今許多網站都會使用像是臉書的「讚」功能按鈕、訪客追蹤分析、廣告推播服務等各種第三方網路服務,此類的功能可以將您在不同網站上的活動紀錄串連組合起來。"
+
+#: managing-identities.page:20
+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 ""
+"使用洋蔥路由網路可以防止網路監聽者找出您的真實網路位址以及實際地理位置,但是他們仍然能夠將您在網路上活動的各種紀錄連接組合在一起,並還原出您的網路活動全貌。有鑑於此,洋蔥路由瀏覽器有加入一些特殊設計,可以幫助您管控可能被用於身分識別的相關資訊。"
+
+#: managing-identities.page:29
+msgid "The URL bar"
+msgstr "網址列"
+
+#: managing-identities.page:30
+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 ""
+"洋蔥路由瀏覽器會以您在網址列中的網站名稱為中心,來維護您與網站間的互動關係,因此,即使您連上了兩個不同的網站,但兩個站台上都有使用相同的第三方網路追蹤服務,洋蔥路由瀏覽器仍會強制讓您與這兩個網站間的連線,透過兩條不同的洋蔥路由迴路來交換資料,如此可以讓第三方網路追蹤服務非常難以察覺這兩條通往不同網站的連線,其實都是源自於您的瀏覽器。"
+
+#: managing-identities.page:38
+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 ""
+"從另一方面而言,所有通往同一網站的連線都將會透過同一條洋蔥路由迴路來達成,因此即使您在瀏覽器中開啟多個不同的頁籤來閱覽同一網站中的不同網頁,其網站的功能也不會受到影響。"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: managing-identities.page:46
+msgctxt "_"
+msgid ""
+"external ref='media/managing-identities/circuit_full.png' "
+"md5='bd46d22de952fee42643be46d3f95928'"
+msgstr ""
+"external ref='media/managing-identities/circuit_full.png' "
+"md5='bd46d22de952fee42643be46d3f95928'"
+
+#: managing-identities.page:48
+msgid ""
+"You can see a diagram of the circuit that Tor Browser is using for the "
+"current tab in the onion menu."
+msgstr "在洋蔥路由瀏覽器的各個頁籤中,皆有個洋蔥清單功能按鈕,該功能裡會以簡易圖表來顯示目前該頁籤與所造訪網站間之洋蔥路由迴路。"
+
+#: managing-identities.page:55
+msgid "Logging in over Tor"
+msgstr "正透過洋蔥路由登入中"
+
+#: managing-identities.page:56
+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 ""
+"雖然說洋蔥路由瀏覽器的設計,是要提供使用者以完全匿名的方式來上網,但是在某些情況中,用它來登入需要帳號密碼或可識別個人身分的網站,仍有其實用的價值。"
+
+#: managing-identities.page:62
+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 ""
+"當您使用普通的網路瀏覽器來登入某個網站時,您的真實網路位址與實際地理位置都將被公開得知,或者當您發送電子郵件時也是一樣的。然而,使用洋蔥路由瀏覽器來登入社群網站或電子郵件服務時,您則可以選擇哪些個人資訊要公開給網站取得哪些不要。而且,洋蔥路由瀏覽器也可以用來繞過某些有審查過濾機制的網路。"
+
+#: managing-identities.page:72
+msgid ""
+"When you log in to a website over Tor, there are several points you should "
+"bear in mind:"
+msgstr "當您透過洋蔥路由來登入某個網站時,以下幾個重點您必須要牢記在心:"
+
+#: managing-identities.page:79
+msgid ""
+"See the <link xref=\"secure-connections\">Secure Connections</link> page for"
+" important information on how to secure your connection when logging in."
+msgstr ""
+"請參考<link xref=\"secure-connections\">安全的連線</link>頁面以瞭解關於登入網站時,要確保連線安全的重要資訊。"
+
+#: managing-identities.page:87
+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 ""
+"洋蔥路由瀏覽器會讓您的網路活動看起來像是來自於世界各個不同地區的網路連線,有時候某些像是銀行或電子郵件服務的網站會認為您的帳號被他人盜用了,因此自動將您的帳號鎖定,要解決此情況的唯一方式是利用網站服務提供的帳號恢復功能,或直接向該網站服務的提供業者說明您的情況。"
+
+#: managing-identities.page:101
+msgid "Changing identities and circuits"
+msgstr "改變識別身分與洋蔥路由迴路"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: managing-identities.page:103
+msgctxt "_"
+msgid ""
+"external ref='media/managing-identities/new_identity.png' "
+"md5='15b01e35fa83185d94b57bf0ccf09d76'"
+msgstr ""
+"external ref='media/managing-identities/new_identity.png' "
+"md5='15b01e35fa83185d94b57bf0ccf09d76'"
+
+#: managing-identities.page:105
+msgid ""
+"Tor Browser features “New Identity” and “New Tor Circuit for this Site” "
+"options, located in the Torbutton menu."
+msgstr "在 Torbutton 功能清單中,有「新的識別身分」以及「新的洋蔥路由迴路」兩個洋蔥路由瀏覽器所提供的功能。"
+
+#: managing-identities.page:111
+msgid "New Identity"
+msgstr "新的識別身分"
+
+#: managing-identities.page:112
+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 ""
+"若您想要避免後續在網路上活動的相關記錄,與您之前網路活動之記錄被連結組合在一起,此選項即可幫助您達成此目的。執行此功能將會關閉所有已經開啟的瀏覽器視窗及分頁、清除所有的瀏覽器"
+" cookie "
+"與歷史記錄等個人資訊,並且為後續所有的網路連線建立新的洋蔥路由迴路。洋蔥路由瀏覽器將會警告您說所有正在進行中的活動與下載將會被終止,因此當要執行「新的識別身分」功能前,請先做好相關的準備。"
+
+#: managing-identities.page:123
+msgid "New Tor Circuit for this Site"
+msgstr "建立新的洋蔥路由迴路來連接上此網站"
+
+#: managing-identities.page:124
+msgid ""
+"This option is useful if the <link xref=\"about-tor-browser#how-tor-"
+"works\">exit relay</link> 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 ""
+"當您目前的洋蔥路由迴路中所使用的<link xref=\"about-tor-browser#how-tor-"
+"works\">出口節點</link>無法正常連上您所欲造訪的網站或載入其網頁時,可以試著執行此功能,它會讓當前視窗或頁籤建立另一條新的洋蔥路由迴路並重新連上該址定網站,若有其他視窗或頁籤也是連上該網站的話,在重新整理時也會改用新的洋蔥路由迴路來連線,此功能不會清除任何個人相關資訊或中斷連上其他網站的活動。"
+
+#: onionsites.page:6
+msgid "Services that are only accessible using Tor"
+msgstr "只有透過洋蔥路由才能存取的服務"
+
+#: onionsites.page:10
+msgid "Onion Services"
+msgstr "洋蔥服務"
+
+#: onionsites.page:11
+msgid ""
+"Onion services (formerly known as “hidden services”) are services (like "
+"websites) that are only accessible through the Tor network."
+msgstr "洋蔥服務(舊名為「隱藏式服務」)是一種只能透過洋蔥路由網路來存取的網路服務(網站)。"
+
+#: onionsites.page:16
+msgid ""
+"Onion services offer several advantages over ordinary services on the non-"
+"private web:"
+msgstr "洋蔥服務提供了許多架設在公開網路空間之普通網站所沒有的優勢:"
+
+#: onionsites.page:23
+msgid ""
+"An onion services’s location and IP address are hidden, making it difficult "
+"for adversaries to censor it or identify its operators."
+msgstr "洋蔥服務的真實網路位址與地理位置資訊是被隱藏的,因此讓人很難過濾審查通往該站台之網路連線,也很難找出該網站管理員的真實身分。"
+
+#: onionsites.page:29
+msgid ""
+"All traffic between Tor users and onion services is end-to-end encrypted, so"
+" you do not need to worry about <link xref=\"secure-connections\">connecting"
+" over HTTPS</link>."
+msgstr ""
+"所有洋蔥路由瀏覽器使用者與洋蔥服務站台之間的網路連線,都是端對端加密的,因此您無需擔心連線是否是<link xref=\"secure-"
+"connections\">透過HTTPS</link>來進行的。"
+
+#: onionsites.page:36
+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 ""
+"洋蔥服務的網址是自動產生的,因此網站的架設者或管理員無需另行購買網域名稱,其網址皆是以 .onion "
+"結尾的,此等設計可以讓洋蔥路由系統確保所有網路連線都是通往正確的站台,並且其連線資料未被竄改。"
+
+#: onionsites.page:46
+msgid "How to access an onion service"
+msgstr "如何存取洋蔥服務"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: onionsites.page:48
+msgctxt "_"
+msgid ""
+"external ref='media/onionsites/onion_url.png' "
+"md5='f97f7fe10f07c3959c4430934974bbaa'"
+msgstr ""
+"external ref='media/onionsites/onion_url.png' "
+"md5='f97f7fe10f07c3959c4430934974bbaa'"
+
+#: onionsites.page:50
+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 sixteen "
+"mostly random letters and numbers, followed by “.onion”."
+msgstr ""
+"就像是普通的網站一般,您必須要知道洋蔥服務的位址才能夠連上該網站,洋蔥服務的位址是由十六個看似為亂碼的英文字母與數字和一個「.onion」的結尾所組成。"
+
+#: onionsites.page:58 troubleshooting.page:10
+msgid "Troubleshooting"
+msgstr "錯誤處理"
+
+#: onionsites.page:59
+msgid ""
+"If you cannot reach the onion service you require, make sure that you have "
+"entered the 16-character onion address correctly: even a small mistake will "
+"stop Tor Browser from being able to reach the site."
+msgstr ""
+"如果您無法連上某個洋蔥服務,請確認是否有把洋蔥位址中的 16 "
+"個英文字母與數字正確鍵入,即使是一個字母或數字的輸入錯誤,都會導致洋蔥路由瀏覽器無法連上該網站。"
+
+#: onionsites.page:64
+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 "如果您仍然無法連上該洋蔥服務的話,請稍候再試,有可能是網路連線有出現暫時性阻礙,或者是該網站的管理員暫時將站台關閉了。"
+
+#: onionsites.page:69
+msgid ""
+"You can also ensure that you're able to access other onion services by "
+"connecting to <link href=\"http://3g2upl4pq6kufc4m.onion/\">DuckDuckGo's "
+"Onion Service</link>"
+msgstr ""
+"您也可以藉由連上 <link href=\"http://3g2upl4pq6kufc4m.onion/\">DuckDuckGo "
+"的洋蔥服務</link>來確認您是可以正常造訪洋蔥服務的"
+
+#: plugins.page:6
+msgid "How Tor Browser handles add-ons, plugins and JavaScript"
+msgstr "洋蔥路由瀏覽器如何處理擴充元件、外掛程式以及 JavaScript"
+
+#: plugins.page:10
+msgid "Plugins, add-ons and JavaScript"
+msgstr "擴充元件、外掛程式以及 JavaScript"
+
+#: plugins.page:13
+msgid "Flash Player"
+msgstr "Flash Player"
+
+#: plugins.page:14
+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 之類的影音平台會使用 Flash Player "
+"外掛程式來播放影片,而非常遺憾地,此外掛程式是獨立運行的軟體且完全不遵循洋蔥路由瀏覽器之代理伺服器設定,因此若啟用此外掛程式的話,將會直接把您的真實網路位址公開給網站的管理員以及任何正在網路上監聽的惡意人士得知,故在洋蔥路由瀏覽器中預設是將"
+" Flash Player 關閉的,在此也不建議您去啟用它。"
+
+#: plugins.page:23
+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 ""
+"某些影音平台網站(像是 YouTube)有提供不需使用 Flash Player "
+"外掛程式的影片播放器,此類型的線上影片播放方式即可與洋蔥路由瀏覽器相容。"
+
+#: plugins.page:31
+msgid "JavaScript"
+msgstr "JavaScript"
+
+#: plugins.page:32
+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 是一種內嵌於網頁中的程式語言,它可以提供網站的各種互動式元件,像是影片、音樂、動畫、時間狀態列等,而遺憾的是,JavaScript"
+" 也可能被利用來發動破解瀏覽器安全防護機制的攻擊,其結果有可能會讓使用者的真實身分曝光。"
+
+#: plugins.page:39
+msgid ""
+"Tor Browser includes an add-on called NoScript, accessed through the “S” "
+"icon at the top-left of the window, which allows you to control the "
+"JavaScript that runs on individual web pages, or to block it entirely."
+msgstr ""
+"洋蔥路由瀏覽器有提供一個名為「NoScript」的擴充元件,其功能按鈕是一個位於視窗左上方帶有「S」字樣的圖示,它可以讓您針對個別網頁中所含的 "
+"JavaScript 程式之執行與否,進行控制。"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: plugins.page:45
+msgctxt "_"
+msgid ""
+"external ref='media/plugins/noscript_menu.png' "
+"md5='df9e684b76a3c2e2bdcb879a19c20471'"
+msgstr ""
+"external ref='media/plugins/noscript_menu.png' "
+"md5='df9e684b76a3c2e2bdcb879a19c20471'"
+
+#: plugins.page:47
+msgid ""
+"Users who require a high degree of security in their web browsing should set"
+" Tor Browser’s <link xref=\"security-slider\">Security Slider</link> to "
+"“Medium-High” (which disables JavaScript for non-HTTPS websites) or “High” "
+"(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."
+msgstr ""
+"對於網路瀏覽器之安全性有較高需求的使用者,可以將洋蔥路由瀏覽器中的<link xref=\"security-"
+"slider\">安全性等級調整棒</link> 調整至「中高」(在造訪未使用 HTTPS 連線的網站時,將 JavaScript "
+"之功能關閉)或者是「高」(將 JavaScript 功能全部關閉)。然而,關閉 JavaScript "
+"功能可能會導致部分網頁之顯示發生異常,因此洋蔥路由瀏覽器在預設狀態下,對所有網站都會啟用 JavaScript 功能。"
+
+#: plugins.page:58
+msgid "Browser Add-ons"
+msgstr "瀏覽器擴充元件"
+
+#: plugins.page:59
+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 "洋蔥路由瀏覽器是以火狐狸瀏覽器為基礎改良成的,因此所有與火狐狸瀏覽器相容的擴充元件或佈景主題,都可以安裝在洋蔥路由瀏覽器中。"
+
+#: plugins.page:64
+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 ""
+"然而,有經過測試的擴充元件只有那些洋蔥路由瀏覽器中已經預設啟用的擴充元件,若自行安裝其他的瀏覽器擴充元件有可能造成洋蔥路由瀏覽器運行發生異常,也可能對您的個人隱私與資訊安全造成負面影響。因此,洋蔥路由專案計畫團隊完全不建議您安裝任何額外的擴充元件,也不對其它擴充元件之設定或使用提供任何支援。"
+
+#: secure-connections.page:8
+msgid "Learn how to protect your data using Tor Browser and HTTPS"
+msgstr "瞭解要如何利用洋蔥路由瀏覽器以及 HTTPS 來保護個人的資料"
+
+#: secure-connections.page:12
+msgid "Secure Connections"
+msgstr "安全的連線"
+
+#: secure-connections.page:14
+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 ""
+"如果像是登入帳號用的密碼等個人資料,是以未經加密的形態在網路上傳送的話,那任何的網路監聽者都可以輕易地攔截竊取到此資訊,因此,每當您試圖登入某網站時,應該要先確認該站台有提供"
+" HTTPS "
+"加密連線,以確保您個人資料的安全。確認的方式很簡單,只要注意看其網址的部分,若是以「https://」開頭的話,表示連線是處於加密狀態,但若開頭是「http://」的話則表示該連線上所傳輸的資料都沒有加密。"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: secure-connections.page:24
+msgctxt "_"
+msgid ""
+"external ref='media/secure-connections/https.png' "
+"md5='364bcbde7a649b0cea9ae178007c1a50'"
+msgstr ""
+"external ref='media/secure-connections/https.png' "
+"md5='364bcbde7a649b0cea9ae178007c1a50'"
+
+#: secure-connections.page:26
+msgid ""
+"The following visualization shows what information is visible to "
+"eavesdroppers with and without Tor Browser and HTTPS encryption:"
+msgstr "底下的視覺化呈現圖表,展示了在有使用以及沒有使用洋蔥路由瀏覽器與 HTTPS 加密連線時,網路監聽者可以攔截竊取到的資料種類分別有:"
+
+#: secure-connections.page:35
+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」按鈕可以查看當您未使用洋蔥路由時,有哪些資料可以讓網路監聽者直接攔截取得,當此按鈕呈現綠色狀態時,表示洋蔥路由功能已經啟動。"
+
+#: secure-connections.page:42
+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」功能按鈕來查看當 HTTPS 啟用時,有哪些資料仍然可能被網路監聽者攔截竊取,而當此按鈕呈現綠色狀態時,表示 HTTPS "
+"功能已經啟動。"
+
+#: secure-connections.page:49
+msgid ""
+"When both buttons are green, you see the data that is visible to observers "
+"when you are using both tools."
+msgstr "當兩個按鈕都是綠色狀態時,您則可以看見在這兩個功能都同時啟動的狀態下,網路監聽者依然能夠竊取到的資料有哪些。"
+
+#: secure-connections.page:55
+msgid ""
+"When both buttons are grey, you see the data that is visible to observers "
+"when you don't use either tool."
+msgstr "而當這兩個按鈕都呈現灰色時,您則可以查看當這兩個功能都在關閉的狀態下時,網路監聽者能夠攔截竊取到的資料有哪些。"
+
+#: secure-connections.page:62
+msgid "Potentially visible data"
+msgstr "可能被攔截竊取的資料"
+
+#: secure-connections.page:70
+msgid "The site being visited."
+msgstr "被造訪的網站。"
+
+#: secure-connections.page:81
+msgid "Username and password used for authentication."
+msgstr "用來認證的使用者名稱與密碼。"
+
+#: secure-connections.page:92
+msgid "Data being transmitted."
+msgstr "被傳送的資料"
+
+#: secure-connections.page:103
+msgid ""
+"Network location of the computer used to visit the website (the public IP "
+"address)."
+msgstr "當此電腦造訪該網站時的網路位置(公眾網路上的IP位址)"
+
+#: secure-connections.page:115
+msgid "Whether or not Tor is being used."
+msgstr "不論是否有使用洋蔥路由"
+
+#: security-slider.page:6
+msgid "Configuring Tor Browser for security and usability"
+msgstr "正在為洋蔥路由瀏覽器進行安全性與可用性設定"
+
+#: security-slider.page:10
+msgid "Security Slider"
+msgstr "安全等級調整棒"
+
+#: security-slider.page:11
+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 ""
+"洋蔥路由瀏覽器有內建一個「安全性等級調整棒」,可以讓您藉由關閉某些可能被利用來破壞安全性或匿名性的網頁功能,來提高自身的資訊安全。然而,提高洋蔥路由瀏覽器的安全等級可能會造成某些網頁的功能無法正常使用,因此您必須要在安全性與可用性兩者之間自行衡量取捨。"
+
+#: security-slider.page:21
+msgid "Accessing the Security Slider"
+msgstr "存取安全性等級調整棒"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: security-slider.page:23
+msgctxt "_"
+msgid ""
+"external ref='media/security-slider/slider.png' "
+"md5='3c469cd3ed9f60ebb6bbbc63daa90082'"
+msgstr ""
+"external ref='media/security-slider/slider.png' "
+"md5='3c469cd3ed9f60ebb6bbbc63daa90082'"
+
+#: security-slider.page:25
+msgid ""
+"The Security Slider is located in Torbutton’s “Privacy and Security "
+"Settings” menu."
+msgstr "安全性等級調整棒位於 Torbutton 裡的「隱私與安全性設定」清單中。"
+
+#: security-slider.page:32
+msgid "Security Levels"
+msgstr "安全性等級"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: security-slider.page:34
+msgctxt "_"
+msgid ""
+"external ref='media/security-slider/slider_window.png' "
+"md5='c733bdccd1731ed1a772777b25bae7a1'"
+msgstr ""
+"external ref='media/security-slider/slider_window.png' "
+"md5='c733bdccd1731ed1a772777b25bae7a1'"
+
+#: security-slider.page:36
+msgid ""
+"Increasing the level of the Security Slider will disable or partially "
+"disable certain browser features to protect against possible attacks."
+msgstr "藉由安全性等級調整棒來提高安全性等級,會讓部分瀏覽器的功能被關閉,以減少遭受到惡意攻擊的可能性。"
+
+#: security-slider.page:42
+msgid "High"
+msgstr "高"
+
+#: security-slider.page:43
+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 ""
+"在此安全性等級下,以 HTML 5 所建構的影音多媒體可透過 NoScript 擴充元件來隨點即播;所有的 JavaScript "
+"效能最佳化功能皆會被關閉;某些數學函式可能無法正常顯示;某些字型渲染功能會被關閉;部分格式的圖形顯示功能會被關閉;所有網站上的 JavaScript "
+"功能都會被關閉;大部分的影片與音效格式的支援都會被關閉;並且某些字型以及圖示可能無法正常顯示。"
+
+#: security-slider.page:53
+msgid "Medium-High"
+msgstr "中-高"
+
+#: security-slider.page:54
+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-<link xref=\"secure-"
+"connections\">HTTPS</link> sites."
+msgstr ""
+"在此安全性等級下,以 HTML5 所建構的影音多媒體可透過 NoScript 擴充元件來隨點即播;所有的 JavaScript "
+"效能最佳化功能皆會被關閉;某些數學函式可能無法正常顯示;某些字型渲染功能會被關閉;部分格式的圖形顯示功能會被關閉;針對不支援<link xref"
+"=\"secure-connections\">HTTPS</link>加密連線的網站關閉 JavaScript 功能。"
+
+#: security-slider.page:64
+msgid "Medium-Low"
+msgstr "中-低"
+
+#: security-slider.page:65
+msgid ""
+"At this level, HTML5 video and audio media become click-to-play via "
+"NoScript; some <link xref=\"plugins\">JavaScript</link> performance "
+"optimizations are disabled, causing some websites to run more slowly; and "
+"some mathematical equations may not display properly."
+msgstr ""
+"在此安全性等級下,以 HTML 5 所建構的影音多媒體可透過 NoScript 擴充元件來隨點即播;部分的 <link "
+"xref=\"plugins\">JavaScript</link> "
+"效能最佳化功能會被關閉,導致某些網站的載入執行速度會變慢;且某些數學函式將無法正常顯示。"
+
+#: security-slider.page:73
+msgid "Low"
+msgstr "低"
+
+#: security-slider.page:74
+msgid ""
+"At this level, all browser features are enabled. This is the most usable "
+"option."
+msgstr "在此安全性等級下,所有瀏覽器的功能都將被啟用,這是可用性最高的安全性模式。"
+
+#: transports.page:6 transports.page:20
+msgid "Types of pluggable transport"
+msgstr "Pluggable Transport 的種類"
+
+#: transports.page:10
+msgid "Pluggable Transports"
+msgstr "可插式傳輸"
+
+#: transports.page:12
+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 ""
+"Pluggable Transport "
+"是一種洋蔥路由用來偽裝其傳輸的資料訊號之特殊工具,當您的網路服務供應商或所處的網路環境會過濾阻擋通往洋蔥路由網路的連線時,此工具即可發揮其功用。"
+
+#: transports.page:21
+msgid ""
+"Currently there are six pluggable transports available, but more are being "
+"developed."
+msgstr "目前已支援的 Pluggable Transport 有六種,此數量正隨著開發進度陸續增加中。"
+
+#: transports.page:28
+msgid "obfs3"
+msgstr "obfs3"
+
+#: transports.page:33
+msgid ""
+"obfs3 makes Tor traffic look random, so that it does not look like Tor or "
+"any other protocol. obfs3 bridges will work in most places."
+msgstr ""
+"obfs3 可以讓洋蔥路由傳送的網路訊號看起來像是隨機亂數,因此讓網路的過濾阻檔機制難以判定此網路連線是否為洋蔥路由網路之連線。在大多數的情況下 "
+"obfs3 橋接器皆可以正常運行。"
+
+#: transports.page:42
+msgid "obfs4"
+msgstr "obfs4"
+
+#: transports.page:47
+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 "
+"一樣讓洋蔥路由所傳送的網路訊號看起來像是隨機亂數一般,並且還可以避免網路過濾監控機制利用網段掃描法找出橋接器的位址,因此相較之下 obfs4 "
+"橋接器更難以被網路監控過濾機制阻擋。"
+
+#: transports.page:56
+msgid "Scramblesuit"
+msgstr "Scramblesuit"
+
+#: transports.page:61
+msgid "ScrambleSuit is similar to obfs4 but has a different set of bridges."
+msgstr "ScrambleSuit 的運作機制和 obfs4 很類似,只不過它使用了不同的橋接器。"
+
+#: transports.page:69
+msgid "FTE"
+msgstr "FTE"
+
+#: transports.page:74
+msgid ""
+"FTE (format-transforming encryption) disguises Tor traffic as ordinary web "
+"(HTTP) traffic."
+msgstr "FTE (format-transforming encryption) 可將洋蔥路由網路連線的訊號偽裝成普通的網路資料封包(HTTP)。"
+
+#: transports.page:82
+msgid "meek"
+msgstr "meek"
+
+#: transports.page:87
+msgid ""
+"These 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 ""
+"這些 Pluggable Transport 都可以讓您在使用洋蔥路由來上網時,在網路上傳輸的資料訊號看起來就像是在瀏覽普通網站一樣,meek-"
+"amazon 可以讓您的網路訊號看起來像是在造訪亞馬遜網路服務一樣;meek-azure "
+"則可以讓您的網路訊號看起來像是正在使用微軟的網路雲端服務一般;而 meek-google 會讓您的網路訊號看起來像是在使用谷歌搜尋引擎一樣。"
+
+#: troubleshooting.page:6
+msgid "What to do if Tor Browser doesn’t work"
+msgstr "當洋蔥路由瀏覽器無法正常運形時該怎麼辦"
+
+#: troubleshooting.page:12
+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 "理論上來說,當洋蔥路由瀏覽器啟動後您應該可以直接開始瀏覽網頁,若是首次啟動的話,頂多只需要再點擊「連線」按鈕即可開始上網。"
+
+#: troubleshooting.page:21
+msgid "Quick fixes"
+msgstr "快速修復"
+
+#: troubleshooting.page:22
+msgid ""
+"If Tor Browser doesn’t connect, there may be a simple solution. Try each of "
+"the following:"
+msgstr "如果洋蔥路由瀏覽器無法連線,可以嘗試底下幾個簡單的解決方式:"
+
+#: troubleshooting.page:29
+msgid ""
+"Your computer’s system clock must be set correctly, or Tor will not be able "
+"to connect."
+msgstr "您電腦系統中的日期與時間必須要正確設定,否則無法建立洋蔥路由的連線。"
+
+#: troubleshooting.page:35
+msgid ""
+"Make sure another Tor Browser is not already running. If you’re not sure if "
+"Tor Browser is running, restart your computer."
+msgstr "請確認系統中沒有開啟另外一個洋蔥路由瀏覽器,若您無法確定洋蔥路由瀏覽器是否有被啟動的話,請將電腦重新開機。"
+
+#: troubleshooting.page:41
+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 "請確認您電腦中所安裝的防毒軟體不會干擾或阻擋洋蔥路由的運行,若您不確定的話可能需要查閱防毒軟體的相關手冊或說明文件。"
+
+#: troubleshooting.page:49
+msgid "Temporarily disable your firewall."
+msgstr "暫時關閉您的防火牆。"
+
+#: troubleshooting.page:54
+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 "移除掉洋蔥路由瀏覽器後再重新安裝,若是要更新版本的話,請不要用新版軟體去覆蓋已安裝的舊版本,安裝前先確認舊版本是否已經完全移除。"
+
+#: troubleshooting.page:64
+msgid "Is your connection censored?"
+msgstr "您的網路連線是否有被過濾審查?"
+
+#: troubleshooting.page:65
+msgid ""
+"If you still can’t connect, your Internet Service Provider might be "
+"censoring connections to the Tor network. Read the <link "
+"xref=\"circumvention\">Circumvention</link> section for possible solutions."
+msgstr ""
+"如果您仍然無法連線上網,很有可能是因為您的網路服務供應商有使用會阻擋洋蔥路由網路連線的網路過濾監控系統,請參考<link "
+"xref=\"circumvention\">迴避</link>網頁以瞭解可行的解決方式。"
+
+#: troubleshooting.page:74
+msgid "Known issues"
+msgstr "已知的問題"
+
+#: troubleshooting.page:75
+msgid ""
+"Tor Browser is under constant development, and some issues are known about "
+"but not yet fixed. Please check the <link xref=\"known-issues\">Known "
+"Issues</link> page to see if the problem you are experiencing is already "
+"listed there."
+msgstr ""
+"洋蔥路由瀏覽器的開發仍然不斷地在進行中,有些已知的軟體錯誤但是仍未被修復,您可以查閱<link xref=\"known-"
+"issues\">已知的問題</link>網頁來確認您所遭遇到的問題,是否已經被收錄在其中。"
+
+#: uninstalling.page:6
+msgid "How to remove Tor Browser from your system"
+msgstr "如何從您的系統中移除洋蔥路由瀏覽器"
+
+#: uninstalling.page:10
+msgid "Uninstalling"
+msgstr "反安裝中"
+
+#: uninstalling.page:12
+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 "洋蔥路由瀏覽器不會更動或影響您電腦系統中的設定或其他軟體的運作,移除洋蔥路由瀏覽器亦同。"
+
+#: uninstalling.page:18
+msgid "Removing Tor Browser from your system is simple:"
+msgstr "要從您的系統中將洋蔥路由瀏覽器移除是很簡單的:"
+
+#: uninstalling.page:24
+msgid ""
+"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 ""
+"先找到您的洋蔥路由瀏覽器目錄,在 Windows 系統中預設是在桌面;在 Mac OS X 中則是應用程式資料夾;而在 Linux "
+"系統中則沒有預設路徑,但是若您的洋蔥路由瀏覽器是英文版的話,那目錄的名稱會是「tor-browser_en-US」。"
+
+#: uninstalling.page:32
+msgid "Delete the Tor Browser folder."
+msgstr "刪除洋蔥路由瀏覽器的目錄。"
+
+#: uninstalling.page:35
+msgid "Empty your Trash"
+msgstr "清空垃圾桶"
+
+#: uninstalling.page:39
+msgid ""
+"Note that your operating system’s standard “Uninstall” utility is not used."
+msgstr "請注意,您作業系統中的標準「反安裝」工具並未被使用。"
+
+#: updating.page:6
+msgid "How to update Tor Browser"
+msgstr "如何更新洋蔥路由瀏覽器"
+
+#: updating.page:10
+msgid "Updating"
+msgstr "更新中"
+
+#: updating.page:12
+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 "洋蔥路由瀏覽器必須要隨時保持在最新版本狀態,若您使用較舊版本的話,可能存在某些能夠用來破壞您的隱私性或匿名性的安全性漏洞。"
+
+#: updating.page:18
+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 ""
+"每當洋蔥路由瀏覽器有更新版被釋出時,都會有通報訊息自動出現:Torbutton "
+"功能按鈕會出現黃色三角形圖示,且當您開啟洋蔥路由瀏覽器時,也會以文字說明通知您,此時您可以手動或自動的方式來更新。"
+
+#: updating.page:26
+msgid "Updating Tor Browser automatically"
+msgstr "自動更新洋蔥路由瀏覽器中"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: updating.page:30
+msgctxt "_"
+msgid ""
+"external ref='media/updating/update1.png' "
+"md5='9ff01eb653d92124746fc31efde2bf07'"
+msgstr ""
+"external ref='media/updating/update1.png' "
+"md5='9ff01eb653d92124746fc31efde2bf07'"
+
+#: updating.page:32
+msgid ""
+"When you are prompted to update Tor Browser, click on the Torbutton icon, "
+"then select “Check for Tor Browser Update”."
+msgstr "當您看見洋蔥路由瀏覽器有出現更新版本的通知時,請點擊 Torbutton 按鈕圖示,並點選「確認洋蔥路由瀏覽器的更新」。"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: updating.page:39
+msgctxt "_"
+msgid ""
+"external ref='media/updating/update3.png' "
+"md5='4bd08622b0cacf20b13f75c432176ed3'"
+msgstr ""
+"external ref='media/updating/update3.png' "
+"md5='4bd08622b0cacf20b13f75c432176ed3'"
+
+#: updating.page:41
+msgid ""
+"When Tor Browser has finished checking for updates, click on the “Update” "
+"button."
+msgstr "當洋蔥路由瀏覽器完成更新確認後,請點擊「更新」按鈕。"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: updating.page:48
+msgctxt "_"
+msgid ""
+"external ref='media/updating/update4.png' "
+"md5='1d795e7b695738531db9d4b2b0fb5313'"
+msgstr ""
+"external ref='media/updating/update4.png' "
+"md5='1d795e7b695738531db9d4b2b0fb5313'"
+
+#: updating.page:50
+msgid ""
+"Wait for the update to download and install, then restart Tor Browser. You "
+"will now be running the latest version."
+msgstr "請稍候等軟體更新下載並安裝完成後再重新啟動洋蔥路由瀏覽器,此時您的瀏覽器就將會是最新版本了。"
+
+#: updating.page:58
+msgid "Updating Tor Browser manually"
+msgstr "手動更新洋蔥路由瀏覽器中"
+
+#: updating.page:61
+msgid ""
+"When you are prompted to update Tor Browser, finish the browsing session and"
+" close the program."
+msgstr "當洋蔥路由瀏覽器通知您必須要更新時,請結束網頁瀏覽並關閉瀏覽器。"
+
+#: updating.page:67
+msgid ""
+"Remove Tor Browser from your system by deleting the folder that contains it "
+"(see the <link xref=\"uninstalling\">Uninstalling</link> section for more "
+"information)."
+msgstr "刪除洋蔥路由瀏覽器目錄以將軟體移除(請參考<link xref=\"uninstalling\">反安裝</link>以取得更多相關資訊)。"
+
+#: updating.page:74
+msgid ""
+"Visit <link href=\"https://www.torproject.org/projects/torbrowser.html.en\">"
+" https://www.torproject.org/projects/torbrowser.html.en</link> and download "
+"a copy of the latest Tor Browser release, then install it as before."
+msgstr ""
+"請到 <link href=\"https://www.torproject.org/projects/torbrowser.html.en\"> "
+"https://www.torproject.org/projects/torbrowser.html.en</link> "
+"下載最新版的洋蔥路由瀏覽器,並用和之前一樣的方式將它安裝進系統中。"
1
0
commit 638cadb079a490084b704bcd36356ec0f23e20e0
Author: Colin Childs <colin(a)torproject.org>
Date: Tue Sep 18 14:19:05 2018 -0500
Adding ca translations
---
Makefile.am | 2 +-
ca/ca.po | 1975 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 1976 insertions(+), 1 deletion(-)
diff --git a/Makefile.am b/Makefile.am
index 062f4dd..03d31aa 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -8,7 +8,7 @@ TOR_AND_HTTPS = ../tor-and-https
HELP_ID = tor-browser-user-manual
HELP_FILES = $(shell cd $(srcdir)/C && git ls-files '*.page')
HELP_MEDIA = $(shell cd $(srcdir)/C && git ls-files 'media')
-HELP_LINGUAS = en-US ja sv ga bn_BD id @TOR_BROWSER_BUNDLE_LOCALES@
+HELP_LINGUAS = en-US ja sv ga bn_BD id ca @TOR_BROWSER_BUNDLE_LOCALES@
.PHONY: html
html: all media-symlinks.stamp
diff --git a/ca/ca.po b/ca/ca.po
new file mode 100644
index 0000000..f3357f5
--- /dev/null
+++ b/ca/ca.po
@@ -0,0 +1,1975 @@
+# Translators:
+# laia_, 2016
+# Albert <provisionalib(a)hotmail.com>, 2016
+# F Xavier Castane <electromigracion(a)gmail.com>, 2016
+# Gerard Farràs Ballabriga <>, 2016
+# joanj94 <joanj_94(a)hotmail.com>, 2016
+# icc <mail(a)koopic.net>, 2016
+# escufi <escufi(a)gmail.com>, 2018
+# Vte A.F <viarfer3(a)inf.upv.es>, 2018
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2018-09-07 16:48-0500\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Vte A.F <viarfer3(a)inf.upv.es>, 2018\n"
+"Language-Team: Catalan (https://www.transifex.com/otf/teams/1519/ca/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: ca\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
+msgctxt "_"
+msgid "translator-credits"
+msgstr "Informació del traductor"
+
+#: about-tor-browser.page:7
+msgid "Learn what Tor Browser can do to protect your privacy and anonymity"
+msgstr ""
+"Aprengui com pot el navegador Tor protegir-lo amb anonimat i privacitat"
+
+#: about-tor-browser.page:10
+msgid "About Tor Browser"
+msgstr "Sobre el navegador Tor"
+
+#: about-tor-browser.page:12
+msgid ""
+"Tor Browser uses the Tor network to protect your privacy and anonymity. "
+"Using the Tor network has two main properties:"
+msgstr ""
+"El navegador Tor utilitza la xarxa Tor per protegir l'anonimat i la "
+"privacitat. Utilitzant la xarxa Tor existeixen 2 propietats:"
+
+#: about-tor-browser.page:18
+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 ""
+"El proveïdor d'Internet i qualsevulla persona que observi la connexió local,"
+" no podran fer seguiment de la activitat d'Internet, incloent el nom i "
+"direcció dels webs que visiti."
+
+#: about-tor-browser.page:25
+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 ""
+" Els administradors de webs i serveis que s'utilitzin, o qualsevol que sigui"
+" observant de la connexió, veurà una connexió que prové de la xarxa Tor en "
+"lloc de l'adreça (IP) real, i no podrà saber la seva identitat a menys que "
+"ho expliciti."
+
+#: about-tor-browser.page:34
+msgid ""
+"In addition, Tor Browser is designed to prevent websites from "
+"“fingerprinting” or identifying you based on your browser configuration."
+msgstr ""
+"A més, el navegador Tor està dissenyat per prevenir pàgines web amb "
+"identificació per empremta digital o identificació mitjançant els paràmetres"
+" del navegador."
+
+#: about-tor-browser.page:39
+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 <link xref"
+"=\"managing-identities#new-identity\">New Identity</link> is requested)."
+msgstr ""
+"Per defecte, el navegador Tor no desa l'historial de navegació. Les galetes "
+"només són vàlides per la sessió en marxa (fins que el navegador Tor es "
+"tanqui o <link xref=\"managing-identities#new-identity\"Nova "
+"identitat</link> es sol·licitada)."
+
+#: about-tor-browser.page:50
+msgid "How Tor works"
+msgstr "Com funciona Tor"
+
+#: about-tor-browser.page:52
+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 <em>relays</em>) in the Tor network. The"
+" last relay in the circuit (the “exit relay”) then sends the traffic out "
+"onto the public Internet."
+msgstr ""
+"Tor és una xarxa de túnels virtuals que permeten incrementar la privacitat i"
+" la seguretat a Internet. Tor funciona enviant el tràfic de dades a 3 "
+"servidors aleatòris (també anomenats com <em>relés</em>) a la xarxa Tor. "
+"L'últim relé del circuit (el relé de sortida) envia la informació al "
+"Internet públic."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: about-tor-browser.page:59
+msgctxt "_"
+msgid ""
+"external ref='media/how-tor-works.png' "
+"md5='6fe4151a88b7a518466f0582e40ccc8c'"
+msgstr ""
+"external ref='media/how-tor-works.png' "
+"md5='6fe4151a88b7a518466f0582e40ccc8c'"
+
+#: about-tor-browser.page:60
+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 ""
+"La imatge superior mostra un navegador d'usuari amb diferents webs "
+"mitjançant Tor. L'ordinador verd del centre representa el relé en la xarxa "
+"Tor, mentre que les 3 claus representen les capes d'encriptació entre "
+"l'usuari i el relé."
+
+#: bridges.page:6
+msgid "Learn what bridges are and how to get them"
+msgstr "Aprengui sobre que són els ponts i com aconseguir-los."
+
+#: bridges.page:10
+msgid "Bridges"
+msgstr "Ponts"
+
+#: bridges.page:12
+msgid ""
+"Most <link xref=\"transports\">Pluggable Transports</link>, 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 ""
+"La majoria <link xref=\"transports\">Transports connectors</link>, com obfs3"
+" i obfs4, utilitzen els relés de \"pont\". Com el relés estàndard de Tor, "
+"els ponts són usuaris voluntaris; a diferència els relés tradicionals, "
+"independentment, no estan llistat, d'aquesta manera no poden ser fàcilment "
+"identificats. La utilització de ponts en combinació amb els transports "
+"connectors ajuden a disfressar la utilització de Tor."
+
+#: bridges.page:21
+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 ""
+"Altres transports connectors, com Meek, utilitzant altres tècniques anit-"
+"censura sense ponts. No es precisen l'obtenció de direccions ponts."
+
+#: bridges.page:28
+msgid "Getting bridge addresses"
+msgstr "Obtenció de direcció pont"
+
+#: bridges.page:29
+msgid ""
+"Because bridge addresses are not public, you will need to request them "
+"yourself. You have two options:"
+msgstr ""
+"Com que les direccions ponts no són públiques, s'hauran de demanar en "
+"l'instant. Existeixen dos opcions:"
+
+#: bridges.page:36
+msgid ""
+"Visit <link "
+"href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</link>"
+" and follow the instructions, or"
+msgstr ""
+"Visita <link "
+"href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</link>"
+" i segueixi les instruccions, o"
+
+#: bridges.page:42
+msgid ""
+"Email bridges(a)torproject.org from a Gmail, Yahoo, or Riseup email address, "
+"or"
+msgstr ""
+"Correu electrònic bridges(a)torproject.org des de Gmail, Yahoo, o Riseup o"
+
+#: bridges.page:51
+msgid "Entering bridge addresses"
+msgstr "Entri la direcció pont"
+
+#: bridges.page:52
+msgid ""
+"Once you have obtained some bridge addresses, you will need to enter them "
+"into Tor Launcher."
+msgstr ""
+"Un cop s'hagi obtingut alguna direcció pont, l'haurà d'introduir en el Tor "
+"Launcher."
+
+#: bridges.page:57
+msgid ""
+"Choose “yes” when asked if your Internet Service Provider blocks connections"
+" to the Tor network. Select “Use custom bridges” and enter each bridge "
+"address on a separate line."
+msgstr ""
+"Esculli \"si\" quan sigui preguntat si el seu proveïdor d'Internet bloqueja "
+"les connexions a la xarxa Tor. Seleccioni \"Utilització de ponts "
+"personalitzat\" i introdueixi en linines separades les direccions pont."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: bridges.page:63
+msgctxt "_"
+msgid ""
+"external ref='media/tor-launcher-custom-bridges.png' "
+"md5='34b5e99516d297fcbb467209d8479f40'"
+msgstr ""
+"external ref='media/tor-launcher-custom-bridges.png' "
+"md5='34b5e99516d297fcbb467209d8479f40'"
+
+#: bridges.page:65
+msgid ""
+"Click “Connect”. Using bridges may slow down the connection compared to "
+"using ordinary Tor relays. 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 ""
+"Faci clic en \"Connectar\". La utilització de ponts pot alentir la connexió "
+"comparat amb l'ús de relés estàndard Tor. Si la connexió falla, el ponts "
+"obtingut haurà caigut. Si us plau, utilitzi un del mencionats a sobre per "
+"obtindre més direccions ponts, i provi-ho posteriorment."
+
+#: circumvention.page:6
+msgid "What to do if the Tor network is blocked"
+msgstr "Que fer si la xarxa Tor està bloquejada"
+
+#: circumvention.page:10
+msgid "Circumvention"
+msgstr "Elusió"
+
+#: circumvention.page:12
+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 <link xref=\"transports\">Pluggable Transports</link> "
+"page for more information on the types of transport that are currently "
+"available."
+msgstr ""
+"L'accés a la xarxa Tor pot tot sovint ser bloquejat pel seu proveïdor "
+"d'Internet o pel govern. El navegador Tor incorpora una serie de programari "
+"per evitar-ho. Aquestes eines s'anomenen \"connectors de transport\". "
+"Consulti <link xref=\"transports\">connectors de transport</link> per a més "
+"informació del tipus de transport disponible."
+
+#: circumvention.page:22
+msgid "Using pluggable transports"
+msgstr "Utilització de connectors de transport"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: circumvention.page:26 first-time.page:35
+msgctxt "_"
+msgid ""
+"external ref='media/circumvention/configure.png' "
+"md5='1107595d21fe90f2aab1263d7fb0abd3'"
+msgstr ""
+"external ref='media/circumvention/configure.png' "
+"md5='1107595d21fe90f2aab1263d7fb0abd3'"
+
+#: circumvention.page:28
+msgid ""
+"To use pluggable transports, click \"Configure\" in the Tor Launcher window "
+"that appears when you first run Tor Browser."
+msgstr ""
+"Per l'utilització de connectors de transport, faci clic a \"Paràmetres\" en "
+"el iniciador de Tor que apareix qua s'utilitza per primer cop."
+
+#: circumvention.page:33
+msgid ""
+"You can also configure pluggable transports while Tor Browser is running, by"
+" clicking on the green onion near your address bar and selecting “Tor "
+"Network Settings”."
+msgstr ""
+"També pot configurar els connectors de transport mentre el navegador Tor "
+"està executant-se, amb el clic en la ceba verda aprop de la barra d'adreces "
+"i seleccionar \"Paràmetres de xarxa Tor\"."
+
+#: circumvention.page:41
+msgid ""
+"Select “yes” when asked if your Internet Service Provider blocks connections"
+" to the Tor network."
+msgstr ""
+"Seleccioni \"Si\" quan sigui preguntat si el seu proveïdor d'Internet "
+"bloqueja les connexions de la xarxa Tor."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: circumvention.page:49
+msgctxt "_"
+msgid ""
+"external ref='media/circumvention/bridges.png' "
+"md5='f5acc05bd9bacf6c69a31163d25a8778'"
+msgstr ""
+"external ref='media/circumvention/bridges.png' "
+"md5='f5acc05bd9bacf6c69a31163d25a8778'"
+
+#: circumvention.page:51
+msgid ""
+"Select “Connect with provided bridges”. Tor Browser currently has six "
+"pluggable transport options to choose from."
+msgstr ""
+"Seleccioni \"Connectar amb ponts\". El navegador Tor actualment té sis "
+"connectors de transport disponibles."
+
+#: circumvention.page:60
+msgid "Which transport should I use?"
+msgstr "Quin tipus de transport vol utilitzar?"
+
+#: circumvention.page:61
+msgid ""
+"Each of the transports listed in Tor Launcher’s menu works in a different "
+"way (for more details, see the <link xref=\"transports\">Pluggable "
+"Transports</link> page), and their effectiveness depends on your individual "
+"circumstances."
+msgstr ""
+"Cadascun dels transports llistat en el menú d'iniciador Tor treballa de "
+"manera diferent (per més informació, consultar <link "
+"xref=\"transports\">connectors de transport</link> pàgina) per saber la seva"
+" efectivitat depenen de les circumstàncies individuals. "
+
+#: circumvention.page:67
+msgid ""
+"If you are trying to circumvent a blocked connection for the first time, you"
+" should try the different transports: obfs3, obfs4, ScrambleSuit, fte, meek-"
+"azure and Snowflake."
+msgstr ""
+"Si esteu intentant evitar una connexió bloquejada per primera vegada, heu de"
+" provar els diferents transports: obfs3, obfs4, ScrambleSuit, fte, meek-"
+"azure i Snowflake."
+
+#: circumvention.page:72
+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 <link "
+"xref=\"bridges\">Bridges</link> section to learn what bridges are and how to"
+" obtain them."
+msgstr ""
+"Si priva totes aquestes opcions, i cap resulta amb una connexió vàlida, "
+"haurà d'introduir una adreça de pont de forma manual. Llegeixi <link "
+"xref=\"bridges\">Ponts</link> la secció d'aprenentatge sobre ponts per saber"
+" com fer-ho."
+
+#: downloading.page:7
+msgid "How to download Tor Browser"
+msgstr "Com descarregar el navegador Tor."
+
+#: downloading.page:10
+msgid "Downloading"
+msgstr "Descarregant"
+
+#: downloading.page:12
+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 <link xref=\"secure-connections\">HTTPS</link>, which "
+"makes it much harder for somebody to tamper with."
+msgstr ""
+"La manera segura i simple de descarregar el navegador Tor és mitjançant la "
+"pàgina oficial del projecte Tor en el web https://www.torproject.org. La "
+"connexió s'estableix de forma segura mitjançat <link xref=\"secure-"
+"connections\">HTTPS</link>, que permet evitar les falsificacions."
+
+#: downloading.page:19
+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 ""
+"Com sigui, hi han diverses maneres d'evitar l'accés al web del Projecte Tor:"
+" per exemple, el bloqueig en la xarxa d'accés. Si això succeïx, pot "
+"utilitzar un dels llocs de descàrrega que es citen a continuació."
+
+#: downloading.page:27
+msgid "GetTor"
+msgstr "Obtenir Tor"
+
+#: downloading.page:28
+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 és un servei que respon automàticament a missatges amb enllaços a la "
+"versió més recent del navegador de Tor, allotjada en diverses ubicacions, "
+"com ara Dropbox, Google Drive i GitHub."
+
+#: downloading.page:33
+msgid "To use GetTor via email:"
+msgstr "Per utilitzar Obtenir Tor per correu electrònic:"
+
+#: downloading.page:38
+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 ""
+"Enviï un correu electrònic a gettor(a)torproject.org, i en el cos del missatge"
+" escrigui les paraules \"windows\", \"osx\" o \"linux\", (sense cometes) "
+"depenen del tipus de sistema operatiu que tingui."
+
+#: downloading.page:45
+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 ""
+"Obtenir Tor contestarà amb un correu electrònic amb enllaços per a la "
+"descàrrega dle paquet de dades del navegador Tor, la signatura criptogràfica"
+" (que es precisa per verificar al descàrrega), la empremta digital "
+"utilitzada com a signatura, i la suma de verificació. Haurà d'escollir entre"
+" la opció de \"32-bit\" o \"64-bit\" depenen del processador de càlcul del "
+"ordinador."
+
+#: downloading.page:56
+msgid "To use GetTor via Twitter:"
+msgstr "Per utilitzar Obtenir Tor mitjançant Twitter: "
+
+#: downloading.page:61
+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 ""
+"Per obtenir els enllaços per la descàrrega del navegador Tor en anglès per "
+"OS X, enviï una piulada a @get_tor amb el següent text: \"osx en\" (no "
+"precisa se seguidor del compte)."
+
+#: downloading.page:69
+msgid "To use GetTor via Jabber/XMPP (Jitsi, CoyIM, etc.):"
+msgstr "Per utilitzar GetTor a través de Jabber/XMPP (Jitsi, CoyIM, etc.):"
+
+#: downloading.page:74
+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 ""
+"Per obtenir enllaços per la descàrrega del navegado Tor en Xinès per Linux, "
+"enviï un correu electrònic gettor(a)torproject.org amb les següents paraules "
+"en el cos del missatge: linux zh\"."
+
+#: downloading.page:83
+msgid "Satori"
+msgstr "Satori"
+
+#: downloading.page:84
+msgid ""
+"Satori is an add-on for the Chrome or Chromium browsers that allows you to "
+"download several security and privacy programs from different sources."
+msgstr ""
+"Satori és un complement pels navegadors Chrome o Chromium que permet la "
+"descàrrega de diversos programes de seguretat i privacitat mitjançant "
+"diferents fonts."
+
+#: downloading.page:89
+msgid "To download Tor Browser using Satori:"
+msgstr "Per la descàrrega del navegador Tor mitjançant Satori:"
+
+#: downloading.page:94
+msgid "Install Satori from the Chrome App Store."
+msgstr "Instal·lar Satori des de Chrome App Store."
+
+#: downloading.page:99
+msgid "Select Satori from your browser’s Apps menu."
+msgstr "Seleccioni Satori del menú d'aplicacions del navegador."
+
+#: downloading.page:104
+msgid ""
+"When Satori opens, click on your preferred language. A menu will open "
+"listing the available downloads for that language. Find the entry for Tor "
+"Browser under the name of your operating system. Select either “A” or “B” "
+"after the name of the program — each one represents a different source from "
+"which to get the software. Your download will then begin."
+msgstr ""
+"Quan Satori s'executi, seleccioni la llengua. Un menú de selecció dels "
+"llenguatges descarregats s'obrirà. Cerqui la entrada pel navegador Tor sota "
+"el nom del sistema operatiu. Seleccioni \"A\" o \"B\" després del nom o del "
+"programa - cadascun representa diferents fonts d'on obtindre el programari, "
+"posteriorment la descàrrega començarà. "
+
+#: downloading.page:114
+msgid ""
+"Wait for your download to finish, then find the “Generate Hash” section in "
+"Satori’s menu and click “Select Files”."
+msgstr ""
+"Esperi per la descàrrega completa, posteriorment cerqui \"Generar resum\" "
+"del menú Satori i fer clic en \"Selecció d'arxiu\"."
+
+#: downloading.page:120
+msgid ""
+"Select the downloaded Tor Browser file. Satori will display the checksum of "
+"the file, which you should compare with the software’s original checksum: "
+"you can find this by clicking the word “checksum” after the link you clicked"
+" on to start the download. If the checksums match, your download was "
+"successful, and you can <link xref=\"first-time\">begin using Tor "
+"Browser</link>. If they do not match, you may need to try downloading again,"
+" or from a different source."
+msgstr ""
+"Seleccioni l'arxiu del navegador Tor. Satori mostrarà la suma de verificació"
+" de l'arxiu, que haurà de comprar amb la suma que mostra el programari: "
+"accedint fent clic en la paraula \"suma de verificació\" després de començar"
+" al descàrrega. Si la suma coincideix, la descàrrega ha estat satisfactòria,"
+" i es podrà <link xref=\"first-time\">començar a utilitzar el navegador "
+"Tor</link>. Si no coincideixen, haurà de fer la descàrrega de nou, o potser "
+"des de una font diferent."
+
+#: first-time.page:7
+msgid "Learn how to use Tor Browser for the first time"
+msgstr "Aprengui com utilitzar per primer cop el navegador Tor."
+
+#: first-time.page:10
+msgid "Running Tor Browser for the first time"
+msgstr "Executant per primer cop el navegador Tor."
+
+#: first-time.page:12
+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 ""
+"Quan s'executi per primer cop el navegador Tor, s'obriran els paràmetres de "
+"xarxa Tor. Permetent la opció de connexió directa a la xarxa Tor, o "
+"configurar el navegador Tor per les connexions."
+
+#: first-time.page:19
+msgid "Connect"
+msgstr "Conecta't"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: first-time.page:21 troubleshooting.page:18
+msgctxt "_"
+msgid ""
+"external ref='media/first-time/connect.png' "
+"md5='f6de80de01c8fa2a8f80857eb8213768'"
+msgstr ""
+"external ref='media/first-time/connect.png' "
+"md5='f6de80de01c8fa2a8f80857eb8213768'"
+
+#: first-time.page:23
+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 "
+"<link xref=\"troubleshooting\">Troubleshooting</link> page for help solving "
+"the problem."
+msgstr ""
+"En molts casos, escollint \"Connectat\" permetrà la connexió a la xarxa Tor "
+"sense més configuració. Un cop fet clic, la barra d'estat apareixerà, "
+"mostrat la progressió de la connexió Tor. La progressió dependrà de la "
+"velocitat de connexió, si experimentà algun problema, consulti <link "
+"xref=\"troubleshooting\">Resolució de problemes</link> la pàgina per tronar "
+"una solució."
+
+#: first-time.page:33
+msgid "Configure"
+msgstr "Configura"
+
+#: first-time.page:37
+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 ""
+"Si coneix que les seves connexions pateixen censura, o utilitza un servidor "
+"intermedi, seleccioni aquesta opció. El navegador Tor permetrà fer les "
+"configuracions pertinents."
+
+#: first-time.page:44
+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 <link "
+"xref=\"circumvention\">Circumvention</link> screen to configure a pluggable "
+"transport."
+msgstr ""
+"La primera pantalla pregunta si l'accés a la xarxa Tor està bloquejada o "
+"censurada. Si creu que no és el cas, seleccioni \"No\". Si creu que la seva "
+"connexió està censurada, o ha fet un intent fallit de connexió a la xarxa "
+"Tor i cap solució ha funcionat, seleccioni \"Si\". Posteriorment serà "
+"derivat a <link xref=\"elusió\">Circumvention</link> a la pantalla de "
+"paràmetres dels connectors de transport."
+
+#: first-time.page:55
+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 ""
+"La pròxima pantalla pregunta si la seva connexió utilitza un servidor "
+"intermedi. En molts casos, no és necessari. En cas afirmatiu cliqui \"Si\", "
+"els mateixos paràmetres seran aplicats a tots els navegadors del sistema. Si"
+" és possible, pregunti al seu administrador de xarxa. Si la connexió no "
+"utilitza un servidor intermedi, cliqui \"Continuar\"."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: first-time.page:63
+msgctxt "_"
+msgid ""
+"external ref='media/first-time/proxy_question.png' "
+"md5='f72753a963e3449129718e3d824a8ac8'"
+msgstr ""
+"external ref='media/first-time/proxy_question.png' "
+"md5='f72753a963e3449129718e3d824a8ac8'"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: first-time.page:66
+msgctxt "_"
+msgid ""
+"external ref='media/first-time/proxy.png' "
+"md5='9a5cf5c044b1dfc5f006a9d1ff77507b'"
+msgstr ""
+"external ref='media/first-time/proxy.png' "
+"md5='9a5cf5c044b1dfc5f006a9d1ff77507b'"
+
+#: index.page:8
+msgid "Tor Browser User Manual"
+msgstr "Manual d'usuari del navegador Tor"
+
+#: known-issues.page:6
+msgid "A list of known issues."
+msgstr "Un llistat d'assumptes coneguts"
+
+#: known-issues.page:10
+msgid "Known Issues"
+msgstr "Assumptes coneguts"
+
+#: known-issues.page:14
+msgid ""
+"Tor needs your system clock (and your time zone) set to the correct time."
+msgstr ""
+"Tor necessita el rellotge de sistema (i el fus horari) per configurar el "
+"temps correctament."
+
+#: known-issues.page:19
+msgid ""
+"The following firewall software have been known to interfere with Tor and "
+"may need to be temporarily disabled:"
+msgstr ""
+"El següent programari tallafoc ha interferit amb Tor i s'hauria de "
+"deshabilitar de forma temporal."
+
+#: known-issues.page:23
+msgid "Webroot SecureAnywhere"
+msgstr "Webroot SecureAnywhere"
+
+#: known-issues.page:26
+msgid "Kaspersky Internet Security 2012"
+msgstr "Kaspersky Internet Security 2012"
+
+#: known-issues.page:29
+msgid "Sophos Antivirus for Mac"
+msgstr "Sophos Antivirus per Mac"
+
+#: known-issues.page:32
+msgid "Microsoft Security Essentials"
+msgstr "Microsoft Security Essentials"
+
+#: known-issues.page:37
+msgid ""
+"Videos that require Adobe Flash are unavailable. Flash is disabled for "
+"security reasons."
+msgstr ""
+"Els vídeos que precisen d'Adobe Flash són inaccessibles per motius de "
+"seguretat."
+
+#: known-issues.page:43
+msgid "Tor can not use a bridge if a proxy is set."
+msgstr ""
+"Tor no pot utilitzar un pont si el servidor intermedi està configurat."
+
+#: known-issues.page:48
+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 ""
+"El paquet d'aplicació del navegador Tor està datat a 1 de gener, 2000 "
+"00:00:00 UTC. Això permet assegurar que la versió és reproduïble. "
+
+#: known-issues.page:54
+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 ""
+"Per executar el navegador Tor sobre Ubuntu, s'haurà d'executar mitjançant "
+"shell script. Per això accedir a \"Arxius\" (navegador unificat), "
+"Paràmetres → Comportament pestanyes → Configurar, executar l'arxiu de text "
+"quan s'obri la pantalla emergent a \"Preguntar cada cop\" i fer clic a "
+"\"Acceptar\"."
+
+#: known-issues.page:62
+msgid ""
+"Tor Browser can also be started from the command line by running the "
+"following command from inside the Tor Browser directory:"
+msgstr ""
+"El navegador Tor pot ser inicialitzat per línia de comanda mitjançant la "
+"següent instrucció en el director del navegador Tor:"
+
+#: known-issues.page:66
+#, no-wrap
+msgid ""
+"\n"
+" ./start-tor-browser.desktop\n"
+" "
+msgstr ""
+"\n"
+"./start-tor-browser.desktop"
+
+#: managing-identities.page:6
+msgid "Learn how to control personally-identifying information in Tor Browser"
+msgstr ""
+"Aprengui com controlar la informació d'identificació personal al navegador "
+"Tor."
+
+#: managing-identities.page:10
+msgid "Managing identities"
+msgstr "Administrador d'identitats"
+
+#: managing-identities.page:12
+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 ""
+"Quan es connecta a un lloc web, no tan sols els administradors del web poden"
+" tenir informació sobre la visita. Molts webs utilitzant programari de "
+"tercers, incloent els botons d'agradar de xarxes socials, rastrejadors i "
+"publicitat, tots ells poden enllaçar la seva activitat de navegació en "
+"diferents webs."
+
+#: managing-identities.page:20
+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 ""
+"Utilitzant la xarxa Tor es pot aturar l'observació de la localització "
+"mitjançant la seva direcció IP, però fins i tot sense aquesta informació "
+"poden arribar a enllaçar diferents àrees de la seva activitat. Per aquesta "
+"raó, el navegador Tor inclou característiques addicionals que permeten "
+"ajudar al control de quina informació pot enllaçar-se a la seva identitat."
+
+#: managing-identities.page:29
+msgid "The URL bar"
+msgstr "Barra de URL"
+
+#: managing-identities.page:30
+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 ""
+"El navegador Tor centra la experiència web amb la barra d'URL. Fins i tot si"
+" es connecta a dos llocs web diferents que utilitzen el mateix sistema de "
+"rastrejament de terceres parts, el navegador Tor forçarà que el contingut "
+"viatgi per dos circuits independents, per tant el rastrejador no podrà "
+"conèixer la relació entre les dues peticions."
+
+#: managing-identities.page:38
+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 ""
+"Per altra banda, totes les connexions a un lloc web es realitzaran pel "
+"mateix circuit virtual, permeten navegar per diferents pàgines web en "
+"diferents pestanyes o finestres, sense perdre cap funcionalitat."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: managing-identities.page:46
+msgctxt "_"
+msgid ""
+"external ref='media/managing-identities/circuit_full.png' "
+"md5='bd46d22de952fee42643be46d3f95928'"
+msgstr ""
+"extern ref='media/managing-identities/circuit_full.png' "
+"md5='bd46d22de952fee42643be46d3f95928'"
+
+#: managing-identities.page:48
+msgid ""
+"You can see a diagram of the circuit that Tor Browser is using for the "
+"current tab in the onion menu."
+msgstr ""
+"Pot observar el diagrama del circuit que el navegador Tor està utilitzant en"
+" la pestanya del menú de la ceba."
+
+#: managing-identities.page:55
+msgid "Logging in over Tor"
+msgstr "Registre de Tor"
+
+#: managing-identities.page:56
+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 ""
+"Tot i que el navegador Tor està dissenyat per una navegació totalment "
+"anònima, poden existir situacions que no faci falta la utilització de Tor, "
+"com per exemple pàgines web amb inici de sessió, contrasenyes o necessitat "
+"d'autenticació."
+
+#: managing-identities.page:62
+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 ""
+"Si inicia sessió amb un navegador convencional, està mostrant la seva "
+"direcció IP i localització, i amb una alta probabilitat quan estigui enviant"
+" un correu electrònic. Iniciar sessió en una xarxa social o entrar en un "
+"gestor de correu electrònic web mitjançant Tor permet enviar la informació "
+"de forma selectiva. Altrament pot ser útil si s'intenta accedir a una pàgina"
+" web censurada."
+
+#: managing-identities.page:72
+msgid ""
+"When you log in to a website over Tor, there are several points you should "
+"bear in mind:"
+msgstr ""
+"Quan iniciï sessió mitjançant el navegador Tor, hi han diverses "
+"consideracions a tenir en ment:"
+
+#: managing-identities.page:79
+msgid ""
+"See the <link xref=\"secure-connections\">Secure Connections</link> page for"
+" important information on how to secure your connection when logging in."
+msgstr ""
+"Consulti <link xref=\"secure-connections\">Connexions segures</link> la "
+"pàgina on mostra com augmentar la seguretat en les connexions d'inici de "
+"sessió."
+
+#: managing-identities.page:87
+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 ""
+"El navegador Tor tot sovint fa aparèixer la connexió des de una localització"
+" diferent. Alguns webs, com els bancs o proveïdors de correu electrònic, "
+"poden interpretar com si la connexió fos furonada i per tant fer fora del "
+"web. La única manera de resoldre-ho és seguir les recomanacions de la "
+"recuperació del compte o contactar al operador i explicar la situació. "
+
+#: managing-identities.page:101
+msgid "Changing identities and circuits"
+msgstr "Canviant identitats i circuits"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: managing-identities.page:103
+msgctxt "_"
+msgid ""
+"external ref='media/managing-identities/new_identity.png' "
+"md5='15b01e35fa83185d94b57bf0ccf09d76'"
+msgstr ""
+"extern ref='media/managing-identities/new_identity.png' "
+"md5='15b01e35fa83185d94b57bf0ccf09d76'"
+
+#: managing-identities.page:105
+msgid ""
+"Tor Browser features “New Identity” and “New Tor Circuit for this Site” "
+"options, located in the Torbutton menu."
+msgstr ""
+"Les característiques del navegador Tor \"Nova identitat\" i \"Nou circuit "
+"Tor per aquest lloc\" localitzades en el botó Tor del menú."
+
+#: managing-identities.page:111
+msgid "New Identity"
+msgstr "Nova identitat"
+
+#: managing-identities.page:112
+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 ""
+"Aquesta opció pot ser d'ajuda si vol prevenir l'enllaç de l'activitat del "
+"navegador amb activitats anteriors. Si es selecciona es tancaran totes les "
+"pestanyes i finestres, i es suprimiran totes les galetes i historial de "
+"navegació, a més de la utilització de nous circuits Tor per totes les "
+"connexions. El navegador Tor advertirà que totes les activitats i "
+"descàrregues seran aturades, prengui-ho en consideració abans de fer clic a "
+"\"Nova identitat\"."
+
+#: managing-identities.page:123
+msgid "New Tor Circuit for this Site"
+msgstr "Nou circuit Tor per a aquest lloc"
+
+#: managing-identities.page:124
+msgid ""
+"This option is useful if the <link xref=\"about-tor-browser#how-tor-"
+"works\">exit relay</link> 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 ""
+"Aquesta opció pot ser d'ajuda si <link xref=\"about-tor-browser#how-tor-"
+"works\">surt del relé</link> que està utilitzant per la connexió al lloc web"
+" que està intentant connectar. Si se selecciona farà que la pestanya o "
+"finestra activa s'actualitzi mitjançant un nou circuit Tor. Altres pestanyes"
+" i finestres obertes del mateix lloc web utilitzaran un nou circuit Tor al "
+"ser actualitzades. Aquesta opció no permet la neteja d'informació privada o "
+"desenllaçar la activitat, a més de no afectar connexions a altres lloc web."
+
+#: onionsites.page:6
+msgid "Services that are only accessible using Tor"
+msgstr "Serveis que només són accessibles utilitzant Tor."
+
+#: onionsites.page:10
+msgid "Onion Services"
+msgstr "Serveis Ceba"
+
+#: onionsites.page:11
+msgid ""
+"Onion services (formerly known as “hidden services”) are services (like "
+"websites) that are only accessible through the Tor network."
+msgstr ""
+"Els serveis ceba (també anomenats \"serveis amagats\") són serveis (com els "
+"webs) que només són accessibles mitjançant la xarxa Tor."
+
+#: onionsites.page:16
+msgid ""
+"Onion services offer several advantages over ordinary services on the non-"
+"private web:"
+msgstr ""
+"Els serveis ceba permeten tenir diferents avantatges a diferència dels "
+"serveis ordinaris sense privacitat:"
+
+#: onionsites.page:23
+msgid ""
+"An onion services’s location and IP address are hidden, making it difficult "
+"for adversaries to censor it or identify its operators."
+msgstr ""
+"Un servei ceba oculta la direcció IP i realitza una dificultat afegida pels "
+"censors o operador que pretenen identificar."
+
+#: onionsites.page:29
+msgid ""
+"All traffic between Tor users and onion services is end-to-end encrypted, so"
+" you do not need to worry about <link xref=\"secure-connections\">connecting"
+" over HTTPS</link>."
+msgstr ""
+"Tot el tràfic entre els usuaris Tor i els serveis ceba és amb encriptació "
+"punt-a-punt, per tant no cal patir <link xref=\"secure-connections\">de la "
+"connexió mitjançant HTTPS</link>."
+
+#: onionsites.page:36
+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 ""
+"Les adreces del servei ceba són generades de forma automàtica, per tant els "
+"operador no cal que comprin cap domini; la URL de ceba també permet "
+"assegurar que la connexió a i la localització no és interceptada."
+
+#: onionsites.page:46
+msgid "How to access an onion service"
+msgstr "Com accedir a un servei ceba"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: onionsites.page:48
+msgctxt "_"
+msgid ""
+"external ref='media/onionsites/onion_url.png' "
+"md5='f97f7fe10f07c3959c4430934974bbaa'"
+msgstr ""
+"extern ref='media/onionsites/onion_url.png' "
+"md5='f97f7fe10f07c3959c4430934974bbaa'"
+
+#: onionsites.page:50
+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 ""
+"Igual que qualsevol altre lloc web, haurà de conèixer l'adreça d'un servei "
+"de onion per connectar-s'hi. Una adreça de onion és una cadena de 16 "
+"caràcters (i en format V3, 56), principalment lletres i números aleatoris, "
+"seguit de \".onion\"."
+
+#: onionsites.page:58 troubleshooting.page:10
+msgid "Troubleshooting"
+msgstr "Detecció d'errors"
+
+#: onionsites.page:59
+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 ""
+"Si no podeu arribar al servei de onion que necessiteu, assegureu-vos que heu"
+" introduït correctament l'adreça de onion: fins i tot un petit error deixarà"
+" que el navegador Tor no pugui accedir al lloc."
+
+#: onionsites.page:64
+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 ""
+"Si encara no pot establir connexió amb un servei ceba, si us plau provi-ho "
+"posteriorment. Pot estar esdeveniment una connexió errònia de forma temporal"
+" o els operadors de xarxa han permès estar fóra de línia sense un "
+"advertència."
+
+#: onionsites.page:69
+msgid ""
+"You can also ensure that you're able to access other onion services by "
+"connecting to <link href=\"http://3g2upl4pq6kufc4m.onion/\">DuckDuckGo's "
+"Onion Service</link>"
+msgstr ""
+"Pot assegurar que pot tenir accés als servis ceba mitjançat la connexió "
+"<link href=\"http://3g2upl4pq6kufc4m.onion/\">al servei ceba de "
+"DuckDuckGo's</link>"
+
+#: plugins.page:6
+msgid "How Tor Browser handles add-ons, plugins and JavaScript"
+msgstr ""
+"Com el navegador Tor gestiona els connectors, complements i JavaScript"
+
+#: plugins.page:10
+msgid "Plugins, add-ons and JavaScript"
+msgstr "Connectors, complements i JavaScript"
+
+#: plugins.page:13
+msgid "Flash Player"
+msgstr "Reproductor Flash"
+
+#: plugins.page:14
+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 ""
+"Llocs web com Vimeo utilitzen el reproductor Flash per mostrar els "
+"continguts de video. Desafortunadament, aquest programari s'executa de forma"
+" independent del navegador Tor i en pocs casos permet la utilització de "
+"paràmetres del servidor intermedi. Conseqüentment pot mostrar la "
+"localització IP o per ser un visitant anònim. Per aquesta raó, Flash està "
+"deshabilitada per defecte i no es recomana executar-lo."
+
+#: plugins.page:23
+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 ""
+"Algunes pàgines web de vídeos (com per exemple Youtube) permeten la "
+"visualització dels seus vídeos amb altres mètodes diferents a Flash. Aquests"
+" mètodes poden ser comptables amb el navegador Tor."
+
+#: plugins.page:31
+msgid "JavaScript"
+msgstr "JavaScript"
+
+#: plugins.page:32
+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 és un llenguatge de programació que els webs utilitzen per "
+"augmentar els ginys interactius, com els vídeos, animacions, àudio i estats "
+"de cronologies. Malauradament, JavaScript és vulnerables a atacs de "
+"seguretats, que poden causar la descoberta de l'anonimat. "
+
+#: plugins.page:39
+msgid ""
+"Tor Browser includes an add-on called NoScript, accessed through the “S” "
+"icon at the top-left of the window. NoScript allows you to control the "
+"JavaScript (and other scripts) that runs on individual web pages, or block "
+"it entirely."
+msgstr ""
+"El navegador Tor inclou un complement anomenat NoScript, que es pot accedir "
+"a través de la icona \"S\" a la part superior esquerra de la finestra. "
+"NoScript us permet controlar el codi JavaScript (i altres scripts) que "
+"s'executa en pàgines web individuals o bé bloquejar-les completament."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: plugins.page:46
+msgctxt "_"
+msgid ""
+"external ref='media/plugins/noscript_menu.png' "
+"md5='df9e684b76a3c2e2bdcb879a19c20471'"
+msgstr ""
+"extern ref='media/plugins/noscript_menu.png' "
+"md5='df9e684b76a3c2e2bdcb879a19c20471'"
+
+#: plugins.page:48
+msgid ""
+"Users who require a high degree of security in their web browsing should set"
+" Tor Browser’s <link xref=\"security-slider\">Security Slider</link> 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 ""
+"Els usuaris que requereixin un alt grau de seguretat en la seva navegació "
+"web haurien de configurar el <link xref=\"security-slider\">control "
+"deslizador</link>de seguretat del navegador Tor a \"Més segur\" (que "
+"desabilita JavaScript per a llocs web que no siguin d'HTTPS) o \"Seguretat\""
+" (que ho fa per a tots els llocs web). Tanmateix, la desactivació de "
+"JavaScript evitarà que molts llocs web es mostrin correctament, de manera "
+"que la configuració predeterminada del navegador Tor és permetre que tots "
+"els llocs web executin scripts en el mode \"Estàndard\"."
+
+#: plugins.page:59
+msgid "Browser Add-ons"
+msgstr "Complements"
+
+#: plugins.page:60
+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 ""
+"El navegador Tor està basat amb Firefox, i tots els complements i temes "
+"compatibles amb Firefox poden ser instal·lats al navegador Tor."
+
+#: plugins.page:65
+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 ""
+"Tanmateix, els únics complements que s'han testejat pel navegador Tor són "
+"els inclosos per defecte. La instal·lació d'altres complements pot causar "
+"greus problemes que afectin la seguretat i la privacitat. És altament "
+"recomanat no instal·lar complements, ja que tampoc gaudeixen de suport per "
+"part del projecte Tor."
+
+#: secure-connections.page:8
+msgid "Learn how to protect your data using Tor Browser and HTTPS"
+msgstr ""
+"Aprengui com protegir les seves dades amb la utilització del navegador Tor i"
+" HTTPS"
+
+#: secure-connections.page:12
+msgid "Secure Connections"
+msgstr "Connexions segures"
+
+#: secure-connections.page:14
+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 ""
+"Si informació personal d'inici de sessió viatge desencriptada per Internet, "
+"pot ser fàcilment interceptada per escoltes clandestines. Si inicia sessió "
+"cal assegurar-se que s'estableix una connexió HTTPS encriptada, que el "
+"protegeix. Ho pot comprovar en al barra URL quan les primeres lletres siguin"
+" \"https://\", en contra de \"http://\"."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: secure-connections.page:24
+msgctxt "_"
+msgid ""
+"external ref='media/secure-connections/https.png' "
+"md5='364bcbde7a649b0cea9ae178007c1a50'"
+msgstr ""
+"extern ref='media/secure-connections/https.png' "
+"md5='364bcbde7a649b0cea9ae178007c1a50'"
+
+#: secure-connections.page:26
+msgid ""
+"The following visualization shows what information is visible to "
+"eavesdroppers with and without Tor Browser and HTTPS encryption:"
+msgstr ""
+"La següent imatge mostra quina informació és visible a ulls del interceptors"
+" de dades sense el navegador Tor i una encriptació sota HTTPS:"
+
+#: secure-connections.page:35
+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 ""
+"Faci clic en el icona \"Tor\" per saber quines dades són visibles als "
+"observadors quan s'utilitzi Tor. El icona es tornarà de color verd per "
+"indicar que Tor està en marxa."
+
+#: secure-connections.page:42
+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 ""
+"Faci clic al botó \"HTTPS\" per saber quines dades són visibles als "
+"observador quan s'utilitzi HTTPS. El botó es tornarà verd per indicar que "
+"HTTPS està en marxa."
+
+#: secure-connections.page:49
+msgid ""
+"When both buttons are green, you see the data that is visible to observers "
+"when you are using both tools."
+msgstr ""
+"Quan ambdós botons estan en verd, es pot veure quines dades són visibles als"
+" observadors amb les dos eines."
+
+#: secure-connections.page:55
+msgid ""
+"When both buttons are grey, you see the data that is visible to observers "
+"when you don't use either tool."
+msgstr ""
+"Quan ambdós botons estan en gris, es pot veure quines dades són visibles als"
+" observadors sense la utilització de les dos eines."
+
+#: secure-connections.page:62
+msgid "Potentially visible data"
+msgstr "Dades potencialment visibles"
+
+#: secure-connections.page:70
+msgid "The site being visited."
+msgstr "El web visitat."
+
+#: secure-connections.page:81
+msgid "Username and password used for authentication."
+msgstr "Nom d'usuari i contrasenya usats per la autenticació."
+
+#: secure-connections.page:92
+msgid "Data being transmitted."
+msgstr "Dades trameses."
+
+#: secure-connections.page:103
+msgid ""
+"Network location of the computer used to visit the website (the public IP "
+"address)."
+msgstr ""
+"Localització del ordinador usat per la consulta del web (l'adreça pública "
+"IP)."
+
+#: secure-connections.page:115
+msgid "Whether or not Tor is being used."
+msgstr "Si o no, Tor s'està utilitzant."
+
+#: security-slider.page:6
+msgid "Configuring Tor Browser for security and usability"
+msgstr "Configurant el navegador Tor per seguretat i usabilitat."
+
+#: security-slider.page:10
+msgid "Security Slider"
+msgstr "Control lliscant de seguretat"
+
+#: security-slider.page:11
+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 ""
+"El navegador Tor inclou un \"control lliscant de seguretat\" que permet "
+"incrementar la seguretat deshabilitant característiques dels webs que poden "
+"ser blanc d'atacs de seguretat i d'anonimat. Incrementant el nivell de "
+"seguretat del navegador no es podrà visualitzar parts dels webs, per tant "
+"cal pensar quin grau de seguretat es vol tenir ponderat amb la usabilitat "
+"que s'aconseguirà."
+
+#: security-slider.page:21
+msgid "Accessing the Security Slider"
+msgstr "Accedint al control lliscant de seguretat"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: security-slider.page:23
+msgctxt "_"
+msgid ""
+"external ref='media/security-slider/slider.png' "
+"md5='026da7c021ba5b85caf04bbf45530667'"
+msgstr ""
+"external ref='media/security-slider/slider.png' "
+"md5='026da7c021ba5b85caf04bbf45530667'"
+
+#: security-slider.page:25
+msgid ""
+"The Security Slider is located in Torbutton’s “Security Settings” menu."
+msgstr ""
+"El Control deslizador de seguretat es troba al menú \"Paràmetres de "
+"seguretat\" del botó Tor."
+
+#: security-slider.page:32
+msgid "Security Levels"
+msgstr "Nivells de seguretat"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: security-slider.page:34
+msgctxt "_"
+msgid ""
+"external ref='media/security-slider/slider_window.png' "
+"md5='d5faf391c99f88aff8541a68bdc6a776'"
+msgstr ""
+"external ref='media/security-slider/slider_window.png' "
+"md5='d5faf391c99f88aff8541a68bdc6a776'"
+
+#: security-slider.page:36
+msgid ""
+"Increasing the level of the Security Slider will disable or partially "
+"disable certain browser features to protect against possible attacks."
+msgstr ""
+"Augmentant el nivell de seguretat mitjançant el control lliscant es pot "
+"deshabilitar parcialment característiques de protecció davant d'atacs."
+
+#: security-slider.page:42
+msgid "Safest"
+msgstr "més segur"
+
+#: security-slider.page:43
+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 ""
+"A aquest nivell, el vídeo de HTML5 i l'àudio esdevindrà reproduïble "
+"mitjançant un clic via NoScript; els augmentadors de rendiments seran "
+"abolits; algunes equacions matemàtiques no es mostraran correctament; alguns"
+" renderitzats de tipus de lletra seran deshabilitats; alguns tipus "
+"d'imatges; javaScript es mantindrà per defecte sense utilització; la majoria"
+" de vídeos i àudios no es reproduiran; algunes lletres i imatges no es "
+"podran visualitzar correctament."
+
+#: security-slider.page:53
+msgid "Safer"
+msgstr "Més segur."
+
+#: security-slider.page:54
+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-<link xref=\"secure-"
+"connections\">HTTPS</link> sites."
+msgstr ""
+"A aquest nivell, el vídeo de HTML5 i l'àudio esdevindrà reproduïble "
+"mitjançant un clic via NoScript; els augmentadors de rendiments seran "
+"abolits; algunes equacions matemàtiques no es mostraran correctament; alguns"
+" renderitzats de tipus de lletra seran deshabilitats; alguns tipus "
+"d'imatges; javaScript es mantindrà per defecte sense utilització i en-<link "
+"xref=\"secure-connections\">HTTPS</link> tots els llocs."
+
+#: security-slider.page:64
+msgid "Standard"
+msgstr "Estàndard"
+
+#: security-slider.page:65
+msgid ""
+"At this level, all browser features are enabled. This is the most usable "
+"option."
+msgstr ""
+"En aquest nivell, tots els navegadors i les seves característiques són "
+"activades. Aquesta és la opció més utilitzada."
+
+#: translate.page:6
+msgid "Becoming a translator for the Tor Project"
+msgstr "Convertir-se en un traductor del projecte Tor"
+
+#: translate.page:10
+msgid "Becoming a Tor Translator"
+msgstr "Converteix-te en un traductor de Tor"
+
+#: translate.page:12
+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!"
+" In order to begin contributing you will have to sign up with Transifex, the"
+" third-party that faciliates our translations. Below is an outline of how to"
+" sign up and begin."
+msgstr ""
+"Si esteu interessat a ajudar el projecte traduint el manual o el navegador "
+"Tor al vostre idioma, la vostra ajuda seria molt apreciada. Per començar a "
+"contribuir, hauràs d'inscriure't amb Transifex, un tercer que facilita les "
+"nostres traduccions. A continuació es mostra un resum de com inscriure's i "
+"començar."
+
+#: translate.page:21
+msgid "Signing up on Transifex"
+msgstr "Registra't a Transifex"
+
+#: translate.page:24
+msgid ""
+"Head over to the <link href=\"https://transifex.com/signup/\">Transifex "
+"signup page</link>."
+msgstr ""
+"Passeu a la <link href=\"https://transifex.com/signup/\">pàgina d'inscripció"
+" de Transifex</link>."
+
+#: translate.page:30
+msgid "Enter your information into the fields and click the 'Sign Up' button:"
+msgstr ""
+"Introduïu la vostra informació als camps i feu clic al botó \"Registra't\":"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: translate.page:34
+msgctxt "_"
+msgid ""
+"external ref='media/translate/tr1.png' "
+"md5='a94cfd90c9982916a987e2807ae5e4f6'"
+msgstr ""
+"external ref='media/translate/tr1.png' "
+"md5='a94cfd90c9982916a987e2807ae5e4f6'"
+
+#: translate.page:38
+msgid ""
+"Fill out the next page with your name and select \"Localization\" and "
+"\"Translator\" from the drop-down menus:"
+msgstr ""
+"Ompliu la pàgina següent amb el vostre nom i seleccioneu \"Localització\" i "
+"\"Traductor\" al menú desplegable:"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: translate.page:43
+msgctxt "_"
+msgid ""
+"external ref='media/translate/tr2.png' "
+"md5='06debc9e9dbc7ac198103a89a6961774'"
+msgstr ""
+"external ref='media/translate/tr2.png' "
+"md5='06debc9e9dbc7ac198103a89a6961774'"
+
+#: translate.page:47
+msgid "On the next page, select 'Join an existing project' and continue."
+msgstr ""
+"A la pàgina següent, seleccioneu \"Uniu-vos a un projecte existent\" i "
+"continueu."
+
+#: translate.page:52
+msgid ""
+"On the next page, select the languages you speak from the drop-down menu and"
+" continue."
+msgstr ""
+"A la pàgina següent, seleccioneu els idiomes que parleu al menú desplegable "
+"i continueu."
+
+#: translate.page:58
+msgid ""
+"You are now signed up! Go to the <link "
+"href=\"https://www.transifex.com/otf/torproject/\">Tor Transifex "
+"page</link>."
+msgstr ""
+"Ja t'has inscrit! Aneu a la pàgina de <link "
+"href=\"https://www.transifex.com/otf/torproject/\">Tor Transifex</link>."
+
+#: translate.page:64
+msgid "Click the blue 'Join Team' button on the far right:"
+msgstr "Feu clic al botó blau \"Uneix-te a l'equip\" a l'extrem dret:"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: translate.page:68
+msgctxt "_"
+msgid ""
+"external ref='media/translate/tr3.png' "
+"md5='7da6c9968cabbe9c1ecc7cdf645407e8'"
+msgstr ""
+"external ref='media/translate/tr3.png' "
+"md5='7da6c9968cabbe9c1ecc7cdf645407e8'"
+
+#: translate.page:72
+msgid ""
+"Select the language you would like to translate from the dropdown menu:"
+msgstr "Seleccioneu l'idioma que voleu traduir al menú desplegable:"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: translate.page:76
+msgctxt "_"
+msgid ""
+"external ref='media/translate/tr4.png' "
+"md5='835a266a5d4c368a2777cf171980f0b4'"
+msgstr ""
+"external ref='media/translate/tr4.png' "
+"md5='835a266a5d4c368a2777cf171980f0b4'"
+
+#: translate.page:80
+msgid "A notification will now show up on the top of the page like so:"
+msgstr "Ara, una notificació apareixerà a la part superior de la pàgina:"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: translate.page:84
+msgctxt "_"
+msgid ""
+"external ref='media/translate/tr5.png' "
+"md5='935417a5d3b4a89e5d00508ea671a1fc'"
+msgstr ""
+"external ref='media/translate/tr5.png' "
+"md5='935417a5d3b4a89e5d00508ea671a1fc'"
+
+#: translate.page:88
+msgid ""
+"After your membership is approved you can begin translating; simply navigate"
+" back to the <link href=\"https://www.transifex.com/otf/torproject/\">Tor "
+"Transifex page</link> when you are ready to begin. Thanks for your interest "
+"in helping the project!"
+msgstr ""
+"Un cop aprovada la vostra membresia, podeu començar a traduir; simplement, "
+"torneu a la <link href=\"https://www.transifex.com/otf/torproject/\">pàgina "
+"Tor Transifex</link> quan estigueu a punt per començar. Gràcies pel vostre "
+"interès per ajudar el projecte!"
+
+#: transports.page:6 transports.page:20
+msgid "Types of pluggable transport"
+msgstr "Tipus de connectors de transport"
+
+#: transports.page:10
+msgid "Pluggable Transports"
+msgstr "Transports integrables"
+
+#: transports.page:12
+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 ""
+"Els connectors de transport són eines que Tor utilitza per disfressar el "
+"tràfic que envia al exterior. Això pot ser d'utilitat en situacions com quan"
+" els proveïdors d'Internet o altres autoritat bloquegen les connexions a la "
+"xarxa Tor. "
+
+#: transports.page:21
+msgid ""
+"Currently there are six pluggable transports available, but more are being "
+"developed."
+msgstr ""
+"Actualment hi han sis connectors de transports per utilitzar, però n'hi ha "
+"més en desenvolupament."
+
+#: transports.page:28
+msgid "obfs3"
+msgstr "obfs3"
+
+#: transports.page:33
+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 fa que el trànsit de Tor sigui aleatori, de manera que no s'assembla a"
+" Tor o cap altre protocol. Encara que s'inclou per defecte, es recomana "
+"utilitzar obfs4, ja que té diverses millores de seguretat sobre obfs3."
+
+#: transports.page:43
+msgid "obfs4"
+msgstr "obfs4"
+
+#: transports.page:48
+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 fa que el tràfic Tor sigui aleatori com obfs3, però també pot prevenir"
+" la censura del escaneig de Internet. El pont obfs4 permet menys bloquejos "
+"que el obfs3."
+
+#: transports.page:57
+msgid "Scramblesuit"
+msgstr "Scramblesuit"
+
+#: transports.page:62
+msgid "ScrambleSuit is similar to obfs4 but has a different set of bridges."
+msgstr "ScrambleSuit és similar a obfs4 però amb ponts diferents."
+
+#: transports.page:70
+msgid "FTE"
+msgstr "FTE"
+
+#: transports.page:75
+msgid ""
+"FTE (format-transforming encryption) disguises Tor traffic as ordinary web "
+"(HTTP) traffic."
+msgstr ""
+"FTE (format-transforming encryption) emmascara el tràfic Tor com una "
+"connexió (HTTP) web."
+
+#: transports.page:83
+msgid "meek"
+msgstr "meek"
+
+#: transports.page:88
+msgid ""
+"These 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 ""
+"Aquests transports es visualitzen com un web en lloc de la utilització de "
+"Tor. meek-amazon fa semblar que s'està utilitzant amazon Web Services; meek-"
+"azure makes simula que s'està usant Microsoft web site; i meek-google simula"
+" l'utilització de Google search."
+
+#: transports.page:100
+msgid "Snowflake"
+msgstr "Snowflake"
+
+#: transports.page:105
+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 és una millora en Flashproxy. Envia el teu trànsit a través de "
+"WebRTC, un protocol punt a punt amb NAT incorporat."
+
+#: troubleshooting.page:6
+msgid "What to do if Tor Browser doesn’t work"
+msgstr "Què fer si el navegador Tor no funciona"
+
+#: troubleshooting.page:12
+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 ""
+"Hauria de poder navegar pels webs mitjançant el navegador Tor executant el "
+"programa i fent clic a \"Connectar\" si l'està utilitzant per primer cop."
+
+#: troubleshooting.page:21
+msgid "Quick fixes"
+msgstr "Correccions ràpides"
+
+#: troubleshooting.page:22
+msgid ""
+"If Tor Browser doesn’t connect, there may be a simple solution. Try each of "
+"the following:"
+msgstr ""
+"Si el navegador Tor no es connecta, pot haver una solució fàcil. Provi "
+"alguna de les següents opcions:"
+
+#: troubleshooting.page:29
+msgid ""
+"Your computer’s system clock must be set correctly, or Tor will not be able "
+"to connect."
+msgstr ""
+"El rellotge de sistema s'hauria de configurar correctament o Tor no podrà "
+"connectar-se."
+
+#: troubleshooting.page:35
+msgid ""
+"Make sure another Tor Browser is not already running. If you’re not sure if "
+"Tor Browser is running, restart your computer."
+msgstr ""
+"Comprovi que el navegador Tor no s'està executant en aquest moment. Si no "
+"està segur, reinicii el ordinador."
+
+#: troubleshooting.page:41
+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 ""
+"Comprovi que cap programa d'antivirus instal·lat està intentant evitar que "
+"Tor s'executi. Haurà de consultar la documentació del antivirus si no sap "
+"com realitzar-ho."
+
+#: troubleshooting.page:49
+msgid "Temporarily disable your firewall."
+msgstr "Deshabiliti de forma temporal el tallafoc."
+
+#: troubleshooting.page:54
+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 ""
+"Suprimir el navegador Tor i tornar a instal·lar. Si l'actualització no ha "
+"reescrit la versió anterior del navegador Tor, comprovi que s'han eliminat "
+"tots els arxius."
+
+#: troubleshooting.page:64
+msgid "Is your connection censored?"
+msgstr "Està la seva connexió en censura?"
+
+#: troubleshooting.page:65
+msgid ""
+"If you still can’t connect, your Internet Service Provider might be "
+"censoring connections to the Tor network. Read the <link "
+"xref=\"circumvention\">Circumvention</link> section for possible solutions."
+msgstr ""
+"Si continua sense poder connectar-se, el seu proveïdor d'Internet "
+"probablement està censurant les connexions a la xarxa Tor. Per a més "
+"informació <link xref=\"eludir\">Circumvention</link> per trobar possibles "
+"solucions."
+
+#: troubleshooting.page:74
+msgid "Known issues"
+msgstr "Assumptes coneguts"
+
+#: troubleshooting.page:75
+msgid ""
+"Tor Browser is under constant development, and some issues are known about "
+"but not yet fixed. Please check the <link xref=\"known-issues\">Known "
+"Issues</link> page to see if the problem you are experiencing is already "
+"listed there."
+msgstr ""
+"El navegador Tor està en constant desenvolupament, i alguns aspectes s'han "
+"d'arranjar en el futur. Si us plau comprovi a <link xref=\"més "
+"informació\">Known Issues</link> si el problema que experimenta ha estat "
+"llistat. "
+
+#: uninstalling.page:6
+msgid "How to remove Tor Browser from your system"
+msgstr "Com eliminar el navegador Tor del seu sistema"
+
+#: uninstalling.page:10
+msgid "Uninstalling"
+msgstr "Desinstal·lant"
+
+#: uninstalling.page:12
+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 ""
+"El navegador no interacciona amb cap altra programari ni configuració del "
+"seu ordinador. Desinstal·lar el navegador Tor, tampoc afectarà cap paràmetre"
+" del ordinador."
+
+#: uninstalling.page:18
+msgid "Removing Tor Browser from your system is simple:"
+msgstr "Desinstal·lar el navegador Tor del sistema operatiu és simple:"
+
+#: uninstalling.page:24
+msgid ""
+"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 ""
+"Ubica la carpeta del navegador Tor. La localització per defecte a Windows és"
+" en el escriptori; en OSX és en la carpeta d'aplicacions. A Linux, no hi ha "
+"una localització prefixada, de manera que la carpeta serà anomenada \"tor-"
+"browser_en-US\" si s'utilitza la versió anglesa."
+
+#: uninstalling.page:32
+msgid "Delete the Tor Browser folder."
+msgstr "Suprimir la carpeta del navegador Tor."
+
+#: uninstalling.page:35
+msgid "Empty your Trash"
+msgstr "Buidar la paperera"
+
+#: uninstalling.page:39
+msgid ""
+"Note that your operating system’s standard “Uninstall” utility is not used."
+msgstr ""
+"El sistema operatiu de forma estandarditzada la funció de \"Desinstal·lar\" "
+"no està usada."
+
+#: updating.page:6
+msgid "How to update Tor Browser"
+msgstr "Com actualitzar el navegador Tor."
+
+#: updating.page:10
+msgid "Updating"
+msgstr "Actualitzant"
+
+#: updating.page:12
+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 ""
+"El navegador Tor ha d'estar actualitzat. Si continua amb l'ús de versions "
+"obsoletes, pot ser vulnerable a seriosos problemes de seguretat, "
+"comprometent la seva seguretat i anonimat."
+
+#: updating.page:18
+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 ""
+"El navegador Tor mostrarà quan es pot actualitzar un cop la última versió "
+"sigui alliberada: La icona Tor mostrarà un triangle groc amb un indicador "
+"d'actualització. Es pot realitzar de forma manual o automàtica."
+
+#: updating.page:26
+msgid "Updating Tor Browser automatically"
+msgstr "Actualitzacions automàtiques del navegador Tor"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: updating.page:30
+msgctxt "_"
+msgid ""
+"external ref='media/updating/update1.png' "
+"md5='9ff01eb653d92124746fc31efde2bf07'"
+msgstr ""
+"extern ref='media/updating/update1.png' "
+"md5='9ff01eb653d92124746fc31efde2bf07'"
+
+#: updating.page:32
+msgid ""
+"When you are prompted to update Tor Browser, click on the Torbutton icon, "
+"then select “Check for Tor Browser Update”."
+msgstr ""
+"Quan sigui requerit a actualitzar el navegador Tor, faci clic en la icona "
+"Tor i seleccioni \"comprovar actualitzacions\"."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: updating.page:39
+msgctxt "_"
+msgid ""
+"external ref='media/updating/update3.png' "
+"md5='19b1f46d748dbcd9250883044165d218'"
+msgstr ""
+"external ref='media/updating/update3.png' "
+"md5='19b1f46d748dbcd9250883044165d218'"
+
+#: updating.page:41
+msgid ""
+"When Tor Browser has finished checking for updates, click on the “Update” "
+"button."
+msgstr ""
+"Quan el navegador Tor hagi finalitzat la comprovació d'actualitzacions, faci"
+" clic en el botó \"Actualitzar\"."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: updating.page:48
+msgctxt "_"
+msgid ""
+"external ref='media/updating/update4.png' "
+"md5='7e8ead67c03597f00c580c77c3103fbb'"
+msgstr ""
+"external ref='media/updating/update4.png' "
+"md5='7e8ead67c03597f00c580c77c3103fbb'"
+
+#: updating.page:50
+msgid ""
+"Wait for the update to download and install, then restart Tor Browser. You "
+"will now be running the latest version."
+msgstr ""
+"Esperi a la descarrega de l'actualització i posterior instal·lació, "
+"reiniciar el programa. Finalment s'executarà la última versió."
+
+#: updating.page:58
+msgid "Updating Tor Browser manually"
+msgstr "Actualització manual del navegador Tor"
+
+#: updating.page:61
+msgid ""
+"When you are prompted to update Tor Browser, finish the browsing session and"
+" close the program."
+msgstr ""
+"Quan se li requereixi l'actualització del navegador Tor, acabi la seva "
+"navegació i tanqui el programa."
+
+#: updating.page:67
+msgid ""
+"Remove Tor Browser from your system by deleting the folder that contains it "
+"(see the <link xref=\"uninstalling\">Uninstalling</link> section for more "
+"information)."
+msgstr ""
+"Suprimir el navegador Tor del sistema amb la supressió de la carpeta que "
+"conté (consultar l'enllaç <link xref=\"Desinstal·lar>Uninstalling</link> "
+"d'un sistema operatiu)."
+
+#: updating.page:74
+msgid ""
+"Visit <link href=\"https://www.torproject.org/projects/torbrowser.html.en\">"
+" https://www.torproject.org/projects/torbrowser.html.en</link> and download "
+"a copy of the latest Tor Browser release, then install it as before."
+msgstr ""
+"Visitar <link "
+"href=\"https://www.torproject.org/projects/torbrowser.html.en\"> "
+"https://www.torproject.org/projects/torbrowser.html.en</link> i descarregar "
+"una còpia de l'última versió del navegador Tor, posteriorment instal·lar."
1
0
commit e610eeda23990bafe6acce389aac5559f10e9697
Author: Colin Childs <colin(a)torproject.org>
Date: Tue Sep 18 14:18:10 2018 -0500
Adding id translations
---
Makefile.am | 2 +-
id/id.po | 1838 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 1839 insertions(+), 1 deletion(-)
diff --git a/Makefile.am b/Makefile.am
index 3fd3409..062f4dd 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -8,7 +8,7 @@ TOR_AND_HTTPS = ../tor-and-https
HELP_ID = tor-browser-user-manual
HELP_FILES = $(shell cd $(srcdir)/C && git ls-files '*.page')
HELP_MEDIA = $(shell cd $(srcdir)/C && git ls-files 'media')
-HELP_LINGUAS = en-US ja sv ga bn_BD @TOR_BROWSER_BUNDLE_LOCALES@
+HELP_LINGUAS = en-US ja sv ga bn_BD id @TOR_BROWSER_BUNDLE_LOCALES@
.PHONY: html
html: all media-symlinks.stamp
diff --git a/id/id.po b/id/id.po
new file mode 100644
index 0000000..39e0d05
--- /dev/null
+++ b/id/id.po
@@ -0,0 +1,1838 @@
+# Translators:
+# zk, 2016
+# Yerry Borang <yerry.borang(a)gmail.com>, 2016
+# Irham Duilah <irhamduilah03(a)gmail.com>, 2016
+# Jaya Wijaya <SecretCommission(a)tormail.org>, 2016
+# runasand <inactive+runasand(a)transifex.com>, 2016
+# Rendiyono Wahyu Saputro <rendi.7936(a)gmail.com>, 2016
+# Lucas Susanto <susantolucas(a)yahoo.com>, 2016
+# hpiece 8 <hpiece8(a)gmail.com>, 2017
+# Christian "crse" Elbrianno, 2017
+# adhisuryo i <adhisuryo(a)gmail.com>, 2017
+# ical, 2017
+# Benyamin Adrianus Dos Santos <bendroxnahak(a)gmail.com>, 2017
+# Dinar Lubis <goarhudinar(a)yahoo.com>, 2017
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2016-12-06 16:36-0600\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Dinar Lubis <goarhudinar(a)yahoo.com>, 2017\n"
+"Language-Team: Indonesian (https://www.transifex.com/otf/teams/1519/id/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: id\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
+msgctxt "_"
+msgid "translator-credits"
+msgstr "Penghargaan untuk Penerjemah"
+
+#: about-tor-browser.page:7
+msgid "Learn what Tor Browser can do to protect your privacy and anonymity"
+msgstr ""
+"Pelajari apa yang Tor Browser dapat lakukan untuk melindungi privasi dan "
+"kerahasiaan anda"
+
+#: about-tor-browser.page:10
+msgid "About Tor Browser"
+msgstr "Tentang Tor Browser"
+
+#: about-tor-browser.page:12
+msgid ""
+"Tor Browser uses the Tor network to protect your privacy and anonymity. "
+"Using the Tor network has two main properties:"
+msgstr ""
+"Tor Browser menggunakan jaringan Tor untuk melindungi privasi dan "
+"kerahasiaan anda. Jaringan Tor memiliki dua pengaturan utama:"
+
+#: about-tor-browser.page:18
+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 ""
+"Penyedia layanan internet dan siapapun yang memantau koneksi anda tidak bisa"
+" melacak aktivitas internet anda termasuk nama dan alamat situs yang anda "
+"kunjungi."
+
+#: about-tor-browser.page:25
+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 ""
+"Operator website dan layanan yang anda gunakan, dan setiap orang yang "
+"menyaksikannya, akan melihat koneksi berasal dari jaringan Tor ketimbang "
+"alamat asli internet (IP) anda, dan tidak akan mengetahui identitas anda "
+"kecuali anda memberitahu identitas anda."
+
+#: about-tor-browser.page:34
+msgid ""
+"In addition, Tor Browser is designed to prevent websites from "
+"“fingerprinting” or identifying you based on your browser configuration."
+msgstr ""
+"Tambahan, Tor Browser telah di desain untuk mencegah situs melakukan "
+"\"fingerprinting\" atau mengidentifikasi anda berdasarkan pengaturan "
+"browser."
+
+#: about-tor-browser.page:39
+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 <link xref"
+"=\"managing-identities#new-identity\">New Identity</link> is requested)."
+msgstr ""
+"Secara bawaan, Tor Browser tidak menyimpan sejarah perambahan. Cookies hanya"
+" valid untuk sesi tunggal (hingga keluar dari Tor Browser atau sebuah<link "
+"xref=\"managing-identities#new-identity\">Identitas Baru</link>diminta)."
+
+#: about-tor-browser.page:50
+msgid "How Tor works"
+msgstr "Bagaimana Tor bekerja\n"
+
+#: about-tor-browser.page:52
+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 <em>relays</em>) in the Tor network. The"
+" last relay in the circuit (the “exit relay”) then sends the traffic out "
+"onto the public Internet."
+msgstr ""
+"Tor adalah sebuah jaringan dari terowongan-terowongan virtual yang "
+"memungkinkan anda untuk meningkatkan privasi anda dan keamanan dalam "
+"Internet. Tor bekerja dengan mengirim lalu lintas anda melalui tiga server "
+"acak (juga dikenal sebagai <em>relay</em>) dalam jaringan Tor. Relay yang "
+"terakhir dalam sirkuit (\"relay keluar\") lalu mengirim lalu lintas keluar "
+"menuju Internet publik."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: about-tor-browser.page:59
+msgctxt "_"
+msgid ""
+"external ref='media/how-tor-works.png' "
+"md5='6fe4151a88b7a518466f0582e40ccc8c'"
+msgstr ""
+"external ref='media/how-tor-works.png' "
+"md5='6fe4151a88b7a518466f0582e40ccc8c'"
+
+#: about-tor-browser.page:60
+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 ""
+"Gambar di atas menggambarkan seorang pengguna meramban beberapa website "
+"melalui Tor. Komputer-komputer hijau di tengah merepresentasikan relay-relay"
+" dalam jaringan Tor, sementara tiga kunci merepresentasikan lapisan-lapisan "
+"enkripsi antara pengguna dan setiap relay."
+
+#: bridges.page:6
+msgid "Learn what bridges are and how to get them"
+msgstr "Pelajari apa itu jembatan-jembatan dan bagaimana mendapatkannya"
+
+#: bridges.page:10
+msgid "Bridges"
+msgstr "Jembatan-jembatan"
+
+#: bridges.page:12
+msgid ""
+"Most <link xref=\"transports\">Pluggable Transports</link>, 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 ""
+"Kebanyakan <link xref=\"transports\">Angkutan Colok</link>, seperti obfs3 "
+"dan obfs4, bergantung pada penggunaan \"jembatan\" relay. Seperti relay-"
+"relay Tor biasa, jembatan-jembatan ini dijalankan oleh para relawan; namun "
+"tidak seperti relay pada umumnya, mereka tidak terdaftar secara publik, "
+"sehingga seorang lawan tidak dapat mengidentifikasi pengguna dengan mudah. "
+"Menggunakan jembatan-jembatan dikombinasikan dengan angkutan colok membantu "
+"menyamarkan fakta bahwa anda sedang menggunakan Tor."
+
+#: bridges.page:21
+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 ""
+"Diska lepas yang lain, seperti meek, menggunakan teknik anti-sensor berbeda "
+"yang tidak mengandalkan jembatan-jembatan. Anda tidak perlu mencari alamat-"
+"alamat jembatan untuk menggunakannya."
+
+#: bridges.page:28
+msgid "Getting bridge addresses"
+msgstr "Mendapatkan alamat-alamat jembatan"
+
+#: bridges.page:29
+msgid ""
+"Because bridge addresses are not public, you will need to request them "
+"yourself. You have two options:"
+msgstr ""
+"Karena alamat-alamat jembatan tidak terbuka untuk umum, anda perlu membuat "
+"permintaan sendiri. Anda punya dua pilihan:"
+
+#: bridges.page:36
+msgid ""
+"Visit <link "
+"href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</link>"
+" and follow the instructions, or"
+msgstr ""
+"Kunjungi <link "
+"href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</link>"
+" dan ikuti petunjuk, atau"
+
+#: bridges.page:42
+msgid ""
+"Email bridges(a)torproject.org from a Gmail, Yahoo, or Riseup email address, "
+"or"
+msgstr ""
+"Email bridges(a)torproject.org melalui alamat email Gmail, Yahoo, atau Riseup,"
+" atau"
+
+#: bridges.page:51
+msgid "Entering bridge addresses"
+msgstr "Memasukkan alamat-alamat jembatan"
+
+#: bridges.page:52
+msgid ""
+"Once you have obtained some bridge addresses, you will need to enter them "
+"into Tor Launcher."
+msgstr ""
+"Begitu anda mendapatkan beberapa alamat jembatan, anda perlu untuk "
+"memasukkannya ke dalam Peluncur Tor."
+
+#: bridges.page:57
+msgid ""
+"Choose “yes” when asked if your Internet Service Provider blocks connections"
+" to the Tor network. Select “Use custom bridges” and enter each bridge "
+"address on a separate line."
+msgstr ""
+"Pilih \"yes\" ketika ditanya apakah ISP atau penyedia layanan internet anda "
+"memblokir hubungan ke jaringan Tor. Pilih \"Use custom bridges\" dan "
+"masukkan setiap alamat jembatan dalam baris yang berbeda."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: bridges.page:63
+msgctxt "_"
+msgid ""
+"external ref='media/tor-launcher-custom-bridges_en-US.png' "
+"md5='93365c2aa3fb4d627497e83f28a39b7e'"
+msgstr ""
+"external ref='media/tor-launcher-custom-bridges_en-US.png' "
+"md5='93365c2aa3fb4d627497e83f28a39b7e'"
+
+#: bridges.page:65
+msgid ""
+"Click “Connect”. Using bridges may slow down the connection compared to "
+"using ordinary Tor relays. 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 ""
+"Klik \"Connect\". Menggunakan jembatan-jembatan bisa memperlambat koneksi "
+"dibandingkan menggunakan relay-relay Tor biasa. Jika koneksi gagal, "
+"jembatan-jembatan yang anda terima mungkin sedang mati. Gunakan salah satu "
+"metode di atas untuk mendapatkan alamat-alamat jembatan, dan coba lagi."
+
+#: circumvention.page:6
+msgid "What to do if the Tor network is blocked"
+msgstr "Apa yang perlu dilakukan jika jaringan Tor diblok"
+
+#: circumvention.page:10
+msgid "Circumvention"
+msgstr "Pengelakan"
+
+#: circumvention.page:12
+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 <link xref=\"transports\">Pluggable Transports</link> "
+"page for more information on the types of transport that are currently "
+"available."
+msgstr ""
+"Akses langsung pada jaringan Tor terkadang bisa diblokir oleh penyedia "
+"layanan internet atau oleh pemerintah. Peramban Tor termasuk beberapa "
+"perangkat mengelak untuk mengatasi pemblokiran ini. Perangkat-perangkat ini "
+"disebut \"Angkutan Colok\". Lihat halaman <link xref=\"transports\">Angkutan"
+" Colok</link>untuk informasi lebih tentang jenis angkutan yang tersedia."
+
+#: circumvention.page:22
+msgid "Using pluggable transports"
+msgstr "Menggunakan pluggable transports"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: circumvention.page:26 first-time.page:35
+msgctxt "_"
+msgid ""
+"external ref='media/circumvention/configure.png' "
+"md5='519d888303eadfe4cb03f178aedd90f5'"
+msgstr ""
+"external ref='media/circumvention/configure.png' "
+"md5='519d888303eadfe4cb03f178aedd90f5'"
+
+#: circumvention.page:28
+msgid ""
+"To use pluggable transports, click \"Configure\" in the Tor Launcher window "
+"that appears when you first run Tor Browser."
+msgstr ""
+"Untuk menggunakan angkutan colok, klik \"Configure\" dalam jendela Peluncur "
+"Tor yang muncul ketika anda menjalankan Peramban Tor pertama kali."
+
+#: circumvention.page:33
+msgid ""
+"You can also configure pluggable transports while Tor Browser is running, by"
+" clicking on the green onion near your address bar and selecting “Tor "
+"Network Settings”."
+msgstr ""
+"Anda juga bisa mengatur pluggable transports sembari Tor Browser sedang "
+"berjalan, dengan menekan pada bawang berwarna hijau di dekat kolom alamat "
+"dan memilih \"Tor Network Settings\""
+
+#: circumvention.page:41
+msgid ""
+"Select “yes” when asked if your Internet Service Provider blocks connections"
+" to the Tor network."
+msgstr ""
+"Pilih \"yes\" ketika ditanya jika penyedia layanan internet anda memblokir "
+"koneksi ke jaringan Tor."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: circumvention.page:49
+msgctxt "_"
+msgid ""
+"external ref='media/circumvention/bridges.png' "
+"md5='910cdd5e45860b81a1ad4739c589a195'"
+msgstr ""
+"external ref='media/circumvention/bridges.png' "
+"md5='910cdd5e45860b81a1ad4739c589a195'"
+
+#: circumvention.page:51
+msgid ""
+"Select “Connect with provided bridges”. Tor Browser currently has six "
+"pluggable transport options to choose from."
+msgstr ""
+"PIlih \"Connect with provided bridges\". Peramban Tor saat ini memiliki enam"
+" opsi angkutan colok untuk dipilih."
+
+#: circumvention.page:60
+msgid "Which transport should I use?"
+msgstr "Transport manakah yang sebaiknya saya gunakan?"
+
+#: circumvention.page:61
+msgid ""
+"Each of the transports listed in Tor Launcher’s menu works in a different "
+"way (for more details, see the <link xref=\"transports\">Pluggable "
+"Transports</link> page), and their effectiveness depends on your individual "
+"circumstances."
+msgstr ""
+"Setiap transports yang terdaftar dalam menu Peluncur Tor bekerja dengan cara"
+" berbeda (untuk detil, lihat laman<link xref=\"transports\">Angkutan "
+"Colok</link>), dan efektivitasnya bergantung pada keadaan anda."
+
+#: circumvention.page:67
+msgid ""
+"If you are trying to circumvent a blocked connection for the first time, you"
+" should try the different transports: obfs3, obfs4, ScrambleSuit, fte, meek-"
+"azure, meek-amazon."
+msgstr ""
+"Jika anda mencoba mengelak dari koneksi yang diblokir untuk pertama kali, "
+"anda perlu mencoba angkutan yang berbeda: obfs3, obfs4, ScrambeSuit, fte, "
+"meek-azure, meek-amazon."
+
+#: circumvention.page:72
+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 <link "
+"xref=\"bridges\">Bridges</link> section to learn what bridges are and how to"
+" obtain them."
+msgstr ""
+"Jika anda mencoba semua opsi yang tersedia, dan tidak ada yang membuat anda "
+"daring, anda oerlu untuk memasukkan alamat jembatan secara manual. Baca "
+"bagian<link xref=\"bridges\">Jembatan-jembatan</link> untuk mempelajari apa "
+"itu jembatan dan bagaimana mendapatkannya."
+
+#: downloading.page:7
+msgid "How to download Tor Browser"
+msgstr "Bagaimana mengunduh Tor Browser"
+
+#: downloading.page:10
+msgid "Downloading"
+msgstr "Mengunduh"
+
+#: downloading.page:12
+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 <link xref=\"secure-connections\">HTTPS</link>, which "
+"makes it much harder for somebody to tamper with."
+msgstr ""
+"Cara aman dan mudah untuk mengunduh TOR Browser yaitu berasal dari situs "
+"resmi TOR Project https:/www.torproject.org. Koneksi ke situs akan "
+"terlindungi dengan menggunakan <link xref=\"secure-"
+"connections\">HTTPS</link>, sehingga ini akan membuat seseorang sulit "
+"melakukan gangguan."
+
+#: downloading.page:19
+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 ""
+"Namun, dalam sejumlah kasus anda tak bisa mengakses situs TOR Project: "
+"misalnya, situs ini diblokir oleh jaringan Anda. Jika ini terjadi, Anda bisa"
+" menggunakan sejumlah jalur alternatif unduhan seperti daftar di bawah ini."
+
+#: downloading.page:27
+msgid "GetTor"
+msgstr "GetTor"
+
+#: downloading.page:28
+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 adalah sebuah servise yang secara otomatis menjawab pesan dengan "
+"tautan pada versi terakhir dari TorBrowser, penerima diberbagai lokasi, "
+"seperti Dropbox, Google Drive dan Github.."
+
+#: downloading.page:34
+msgid "To use GetTor via email:"
+msgstr "Menggunakan GetTor lewat email:"
+
+#: downloading.page:39
+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 ""
+"Kirim email ke gettor(a)torproject.org, dan di dalam pesan tulislah "
+"\"windows\", \"osx\", atau \"linux\", (tanpa tanda kutip) tergantung sistem "
+"operasi ada."
+
+#: downloading.page:46
+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 akan merespon dengan email yang memuat tautan dari sumber pengunduh "
+"paket Tor Browser, tanda tangan kriptografi (diperlukan untuk memverikasi "
+"unduhan), sidik jari pengguna utama yang akan digunakan untuk membuat tanda "
+"tangan, dan paket checksum. Anda akan di tawarkan dengan dua pilihan "
+"perangkat lunak: '32 bit\" atau 64 bit. Pilihan ini tergantung dengan model "
+"komputer yang anda gunakan"
+
+#: downloading.page:57
+msgid "To use GetTor via Twitter:"
+msgstr "Mengunakan GetTor melalui Twitter"
+
+#: downloading.page:62
+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 ""
+"Untuk mendapatkan tautan guna mengunduh Tor browser dalam bahasa Inggris "
+"pada OS X, kirimlah email langsung ke @get_tor dengan subjek \"osx en\" "
+"(anda tidak perlu mengikuti akun tersebut)"
+
+#: downloading.page:70
+msgid "To use GetTor via Jabber/XMPP (Tor Messenger, Jitsi, CoyIM):"
+msgstr ""
+"Untuk menggunakan GetTor melalui Jabber/XMPP (Tor Messenger, Jitsi, CoyIM)"
+
+#: downloading.page:75
+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 ""
+"Untuk mendapatkan tautan guna mengunduh Tor Browser dalam bahasa China untu"
+" Linux, kirimkan sebuah email ke gettor(a)torproject.org dengan subjek \"linux"
+" zh\""
+
+#: downloading.page:84
+msgid "Satori"
+msgstr "Satori"
+
+#: downloading.page:85
+msgid ""
+"Satori is an add-on for the Chrome or Chromium browsers that allows you to "
+"download several security and privacy programs from different sources."
+msgstr ""
+"Satori adalah sebuah tambahan untuk peramban chrome atau chromium yang "
+"mengijinkan anda mengunduh beberapa program keamanan dan privasi dari "
+"sumber yang berbeda"
+
+#: downloading.page:90
+msgid "To download Tor Browser using Satori:"
+msgstr "Gunakan Satori untuk menguduh Tor Browser"
+
+#: downloading.page:95
+msgid "Install Satori from the Chrome App Store."
+msgstr "Pasang Satori pada Chrome apps store"
+
+#: downloading.page:100
+msgid "Select Satori from your browser’s Apps menu."
+msgstr "Seleksi Satori dari browser apps menu anda"
+
+#: downloading.page:105
+msgid ""
+"When Satori opens, click on your preferred language. A menu will open "
+"listing the available downloads for that language. Find the entry for Tor "
+"Browser under the name of your operating system. Select either “A” or “B” "
+"after the name of the program — each one represents a different source from "
+"which to get the software. Your download will then begin."
+msgstr ""
+"Ketika Satori dibuka, Klik pada bahasa yang anda inginkan. Menu A akan "
+"membuka daftar mengunduh yang tersedia untuk bahasa tersebut. Temukan akses "
+"untuk TorBrowser dengan nama sistem operasi Anda. Pilih \"A\" atau \"B\" "
+"setelah nama program - masing-masing mewakili sumber yang berbeda untuk "
+"mendapatkan perangkat lunak. Unduhan anda akan di mulai."
+
+#: downloading.page:115
+msgid ""
+"Wait for your download to finish, then find the “Generate Hash” section in "
+"Satori’s menu and click “Select Files”."
+msgstr ""
+"Tunggu hingga unduhan anda selesai, kemudian temukan \"Generate Hash\" pada"
+" menu Satori, lalu klik \"Select Files\". "
+
+#: downloading.page:121
+msgid ""
+"Select the downloaded Tor Browser file. Satori will display the checksum of "
+"the file, which you should compare with the software’s original checksum: "
+"you can find this by clicking the word “checksum” after the link you clicked"
+" on to start the download. If the checksums match, your download was "
+"successful, and you can <link xref=\"first-time\">begin using Tor "
+"Browser</link>. If they do not match, you may need to try downloading again,"
+" or from a different source."
+msgstr ""
+"Pilih pengunduh file Tor Browser . Satori akan memunculkan checksum dari "
+"seuah fil, yang mana anda harus membandingkan dengan perangkat lunak "
+"checksum yang asli: anda dapat menemukannya dengan mengklik kata "
+"\"checksum\" setelah tautan yang ada klik mulai mengunduh. Jika the checksum"
+" cocok, anda telah berhasil mengunduh, sehingga anda dapat :1) memulai Tor "
+"Browser, 2) jika tidak cocok, maka anda perlu mencoba mengunduh kembali, "
+"atau mencoba dari sumber yang berbeda. "
+
+#: first-time.page:7
+msgid "Learn how to use Tor Browser for the first time"
+msgstr "Pelajari cara menggunakan Tor Browser untuk pertama kali"
+
+#: first-time.page:10
+msgid "Running Tor Browser for the first time"
+msgstr "Menjalankan Tor Browser untuk pertama kali"
+
+#: first-time.page:12
+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 ""
+"Saat kamu menjalankan Tor Browser untuk pertama kali, kamu akan melihat "
+"laman Pengaturan Jaringan Tor. Ini memberikan pilihan untuk langsung "
+"terhubung ke jaringan Tor, atau melakukan konfigurasi Tor Browser untuk "
+"koneksi anda."
+
+#: first-time.page:19
+msgid "Connect"
+msgstr "Sambung"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: first-time.page:21 troubleshooting.page:18
+msgctxt "_"
+msgid ""
+"external ref='media/first-time/connect.png' "
+"md5='9d07068f751a3bfd274365a4ba8d90ca'"
+msgstr ""
+"external ref='media/first-time/connect.png' "
+"md5='9d07068f751a3bfd274365a4ba8d90ca'"
+
+#: first-time.page:23
+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 "
+"<link xref=\"troubleshooting\">Troubleshooting</link> page for help solving "
+"the problem."
+msgstr ""
+"Dalam kebanyakan kasus, memilih \"Connect\" akan memungkinkan Anda terhubung"
+" ke jaringan Tor tanpa konfigurasi lebih lanjut. Setelah diklik, bar status "
+"akan muncul, menunjukkan kemajuan koneksi Tor. Jika Anda berada pada koneksi"
+" yang relatif cepat, namun bar ini tampaknya terjebak pada titik tertentu, "
+"lihat halaman 1 PPemecahan Masalah 2 untuk mendapatkan bantuan dalam "
+"menyelesaikan masalah."
+
+#: first-time.page:33
+msgid "Configure"
+msgstr "Konfigurasikan"
+
+#: first-time.page:37
+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 ""
+"Jika Anda tahu bahwa koneksi Anda disensor, atau menggunakan proxy, Anda "
+"harus memilih opsi ini. Tor Browser akan membawa Anda melalui serangkaian "
+"pilihan konfigurasi."
+
+#: first-time.page:44
+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 <link "
+"xref=\"circumvention\">Circumvention</link> screen to configure a pluggable "
+"transport."
+msgstr ""
+"Layar pertama menanyakan jika akses ke jaringan Tor di blokir atau di sensor"
+" pada koneksi anda. Jika anda tidak yakin hal ini menjadi kasus, pilih "
+"\"No\". Jika anda mengetahui bahwa jaringan di sensor, atau anda mencoba dan"
+" gagal terhubung dengan jaringan Tor dan tidak ada yang lain yang berhasil, "
+"pilih \"yes\". Anda akan dibawa pada 1) circumvention 2) layar untuk "
+"mengkonfigurasi pluggable transport"
+
+#: first-time.page:55
+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 ""
+"Layar selanjutnya menanyakan jika koneksi anda menggunakan sebuah proxy. "
+"Pada banyak kasus, hal ini tidak diperlukan. Biasanya anda akan mengetahui "
+"jika anda perlu menjawab \"yes\", sebagaimana pada pengaturan yang "
+"digunakan oleh browser yang lain pada sistem anda. Jika memungkinkan, "
+"tanyakan pengelola jaringan untuk panduan. Jika koneksi tidak menggunakan "
+"sebuah proksi, klik \"continue\". "
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: first-time.page:63
+msgctxt "_"
+msgid ""
+"external ref='media/first-time/proxy_question.png' "
+"md5='30853b3e86cfd386bbc32e5b8b45a378'"
+msgstr ""
+"external ref='media/first-time/proxy_question.png' "
+"md5='30853b3e86cfd386bbc32e5b8b45a378'"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: first-time.page:66
+msgctxt "_"
+msgid ""
+"external ref='media/first-time/proxy.png' "
+"md5='13f21a351cd0aa1cf11aada690f3dc90'"
+msgstr ""
+"external ref='media/first-time/proxy.png' "
+"md5='13f21a351cd0aa1cf11aada690f3dc90'"
+
+#: index.page:6
+msgid "Tor Browser User Manual"
+msgstr "Panduan Pengguna Tor Browser"
+
+#: known-issues.page:6
+msgid "A list of known issues."
+msgstr "Daftar masalah yang diketahui."
+
+#: known-issues.page:10
+msgid "Known Issues"
+msgstr "Masalah yang telah diketahui"
+
+#: known-issues.page:14
+msgid ""
+"Tor needs your system clock (and your time zone) set to the correct time."
+msgstr ""
+"Tor membutuhkan sistem waktu (dan zona waktu anda) diatur pada waktu yang "
+"tepat."
+
+#: known-issues.page:19
+msgid ""
+"The following firewall software have been known to interfere with Tor and "
+"may need to be temporarily disabled:"
+msgstr ""
+"Perangkat lunak firewall berikut telah diketahui mengganggu Tor dan mungkin "
+"perlu dinonaktifkan sementara:"
+
+#: known-issues.page:23
+msgid "Webroot SecureAnywhere"
+msgstr "Webroot aman dimana saja"
+
+#: known-issues.page:26
+msgid "Kaspersky Internet Security 2012"
+msgstr "Kaspersky Internet Security 2012"
+
+#: known-issues.page:29
+msgid "Sophos Antivirus for Mac"
+msgstr "Sophos Antivirus untuk Mac"
+
+#: known-issues.page:32
+msgid "Microsoft Security Essentials"
+msgstr "Microsoft Security yang penting"
+
+#: known-issues.page:37
+msgid ""
+"Videos that require Adobe Flash are unavailable. Flash is disabled for "
+"security reasons."
+msgstr ""
+"Video yang membutuhkan Adobe Flash tidak tersedia. Flash dinon-aktifkan "
+"untuk alasan keamanan."
+
+#: known-issues.page:43
+msgid "Tor can not use a bridge if a proxy is set."
+msgstr "Tor tidak dapat menggunakan bridge apabila proxy sudah diatur."
+
+#: known-issues.page:48
+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 ""
+"Paket Tor Browser bertanggal 1 Januari 2000 00:00:00 UTC. Hal ini untuk "
+"menjamin bahwa setiap perangkat lunak secara tepat dapat digandakan."
+
+#: known-issues.page:54
+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 ""
+"Untuk menjalankan Tor Browser pada Ubuntu, pengguna perlu menjalankan shell "
+"script. Buka \"Files\" (Unity Explorer), buka Preference → Behavior Tab → "
+"Set \"Run executable text files when they are opened\" menjadi \"Ask every "
+"time\", lalu klik OK."
+
+#: known-issues.page:62
+msgid ""
+"Tor Browser can also be started from the command line by running the "
+"following command from inside the Tor Browser directory:"
+msgstr ""
+"Tor Browser bisa juga di mulai dari garis command dengan menjalankan "
+"perintah dari dalam direktori Tor Browser"
+
+#: known-issues.page:66
+#, no-wrap
+msgid ""
+"\n"
+" ./start-tor-browser.desktop\n"
+" "
+msgstr ""
+"\n"
+" ./start-tor-browser.desktop\n"
+" "
+
+#: managing-identities.page:6
+msgid "Learn how to control personally-identifying information in Tor Browser"
+msgstr ""
+"Pelajari bagaimana mengontrol informasi identifikasi pribadi di Tor Browser"
+
+#: managing-identities.page:10
+msgid "Managing identities"
+msgstr "Mengelola identitas"
+
+#: managing-identities.page:12
+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 ""
+"Saat kamu terkoneksi ke sebuah situs, bukan hanya operator situs tersebut "
+"yang bisa merekam informasi mengenai kunjungan anda. Kebanyakan situs saat "
+"ini menggunakan banyak sekali layanan pihak ketiga, termasuk tombol \"Like\""
+" pada sosial media, analisis pelacak, dan suar iklan, yang semuanya bisa "
+"mengkaitkan aktivitasmu di situs yang berbeda."
+
+#: managing-identities.page:20
+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 ""
+"Menggunakan jaringan Tor, dapat menghentikan pengamat menemukan lokasi dan "
+"alamat IP anda yang sebenarnya, namun jika walaupun tanpa informasi tersebut"
+" pengamat masih mungkin dapat menghubungkan lokasi aktifitas anda yang "
+"berbeda beda secara keseluruhan. Untuk tujuan ini, Tor Browser menyertakan "
+"beberapa fitur tambahan yang akan membantu anda mengkontrol informasi apa "
+"yang akan disertakan pada identitas anda. "
+
+#: managing-identities.page:29
+msgid "The URL bar"
+msgstr "Bar URL"
+
+#: managing-identities.page:30
+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 memusatkan aktifitas berinternet seputar hubungan anda dengan "
+"situs pada kolom URL. Bahkan jika anda terhubung dengan dua situs berbeda "
+"yang menggunakan layanan pelacak pihak ke tiga, Tor Browser akan memaksa "
+"konten untuk dilewati dua sirkuit Tor yang berbeda, jadi orang yang melacak "
+"tidak mengetahui bahwa kedua koneksi tersebut berasal dari browser anda. "
+
+#: managing-identities.page:38
+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 ""
+"Disamping itu, setiap koneksi untuk alamat situs tunggal akan dibuat dengan "
+"sirkuit Tor yang sama, artinya anda dapat menjelajahi halaman yang berbeda "
+"pada sebuat situs tunggal pada tabs atau jendela yang berbeda, tanpa "
+"kehilangan satupun funsionalitas. "
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: managing-identities.page:46
+msgctxt "_"
+msgid ""
+"external ref='media/managing-identities/circuit_full.png' "
+"md5='bd46d22de952fee42643be46d3f95928'"
+msgstr ""
+"external ref='media/managing-identities/circuit_full.png' "
+"md5='bd46d22de952fee42643be46d3f95928'"
+
+#: managing-identities.page:48
+msgid ""
+"You can see a diagram of the circuit that Tor Browser is using for the "
+"current tab in the onion menu."
+msgstr ""
+"Kamu dapat melihat diagram dari sirkuit yang digunakan Tor Browser pada tab "
+"saat ini di menu onion."
+
+#: managing-identities.page:55
+msgid "Logging in over Tor"
+msgstr "Masuk lebih dari Tor"
+
+#: managing-identities.page:56
+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 ""
+"Meskipun Tor Browser dirancang untuk memungkinkan anonimitas total pengguna "
+"di web, mungkin ada situasi di mana masuk akal untuk menggunakan Tor dengan "
+"situs web yang memerlukan nama pengguna, kata sandi, atau informasi "
+"identitas lainnya."
+
+#: managing-identities.page:62
+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 ""
+"Bila kamu masuk ke sebuah situs menggunakan peramban reguler, kamu juga "
+"menunjukkan alamat IP dan lokasi geografis anda dalam prosesnya. Hal yang "
+"sama seringkali juga terjadi saat kamu mengirim surel. Masuk ke dalam media "
+"sosial atau akun surel anda menggunakan Tor Browser memungkinkan anda untuk "
+"memilih informasi mana yang ingin anda ungkap ke situs yang anda kunjungi. "
+"Masuk menggunakan Tor Browser juga berguna bila situs yang kamu coba untuk "
+"akses disensor pada jaringan anda."
+
+#: managing-identities.page:72
+msgid ""
+"When you log in to a website over Tor, there are several points you should "
+"bear in mind:"
+msgstr ""
+"Ketika anda masuk ke sebuah website memakai TOR, ada sejumlah hal yang mesti"
+" anda ingat:"
+
+#: managing-identities.page:79
+msgid ""
+"See the <link xref=\"secure-connections\">Secure Connections</link> page for"
+" important information on how to secure your connection when logging in."
+msgstr ""
+"Lihat halaman<link xref=\"secure-connections\">Secure "
+"Connections</link>untuk informasi penting tentang cara mengamankan koneksi "
+"Anda saat login."
+
+#: managing-identities.page:87
+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 seringkali membuat koneksi anda seakan-akan datang dari bagian "
+"dunia yang sama sekali berbeda. Sejumlah situs, seperti bank atau penyedia "
+"email mungkin saja mengartikan ini sebagai tanda bahwa akun anda telah "
+"diretas atau terkompromikan dan mengkunci anda dari layanan. Satu-satunya "
+"cara untuk memecahkan masalah ini adalah dengan mematuhi prosedur yang "
+"direkomendasikan oleh situs yang dimaksud untuk menjalankan pemulihan akun "
+"atau menghubungi operator manusia dan menjelaskan situasi anda."
+
+#: managing-identities.page:101
+msgid "Changing identities and circuits"
+msgstr "Mengubah identitas dan sirkuit"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: managing-identities.page:103
+msgctxt "_"
+msgid ""
+"external ref='media/managing-identities/new_identity.png' "
+"md5='15b01e35fa83185d94b57bf0ccf09d76'"
+msgstr ""
+"external ref='media/managing-identities/new_identity.png' "
+"md5='15b01e35fa83185d94b57bf0ccf09d76'"
+
+#: managing-identities.page:105
+msgid ""
+"Tor Browser features “New Identity” and “New Tor Circuit for this Site” "
+"options, located in the Torbutton menu."
+msgstr ""
+"Pilihan fitur Tor Browser \"New Identity (Identitas Baru)\" dan \"New Tor "
+"Circuit for this Site (Sirkuit Tor Baru untuk situs ini)\" berada di menu "
+"Torbutton."
+
+#: managing-identities.page:111
+msgid "New Identity"
+msgstr "Identitas Baru"
+
+#: managing-identities.page:112
+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 ""
+"Pilihan ini berguna jika Anda ingin mencegah aktivitas browser Anda agar "
+"tidak terhubung dengan apa yang Anda lakukan sebelumnya. Memilihnya akan "
+"menutup semua tab dan jendela yang terbuka, menghapus semua informasi "
+"pribadi seperti cookies dan riwayat penjelajahan, dan menggunakan sirkuit "
+"Tor baru untuk semua koneksi. Browser Tor akan memperingatkan Anda bahwa "
+"semua aktivitas dan unduhan akan dihentikan, jadi pertimbangkanlah ini "
+"sebelum mengklik \"New Identity\"."
+
+#: managing-identities.page:123
+msgid "New Tor Circuit for this Site"
+msgstr "Sirkuit Tor Baru untuk Situs ini"
+
+#: managing-identities.page:124
+msgid ""
+"This option is useful if the <link xref=\"about-tor-browser#how-tor-"
+"works\">exit relay</link> 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 ""
+"Pilihan ini berguna jika 1) exit relay 2) anda menggunakan saat tidak dapat"
+" terhubung dengan situs yang ada inginkan, atau tidak berjalan dengan baik. "
+"Memilih itu akan menyebabkan tab yang aktif saat ini atau jendela yang "
+"sedang berjalan melalui sebuah sirkuit Tor yang baru. Tabs lain yang sedang "
+"terbuka dan jendela dari website yang sama akan menggunakan sirkuit yang "
+"baru demikian juga dengan yang sedang dijalankan. Opsi ini tidak akan "
+"menghilangkan setiap infomasi pribadi atau tidak menghubungkan aktivitas "
+"anda, tidak juga berdampak pada koneksi anda saat ini pada website yang "
+"lain. "
+
+#: onionsites.page:6
+msgid "Services that are only accessible using Tor"
+msgstr "Layanan hanya bisa diakses menggunakan Tor"
+
+#: onionsites.page:10
+msgid "Onion Services"
+msgstr "Layanan Onion"
+
+#: onionsites.page:11
+msgid ""
+"Onion services (formerly known as “hidden services”) are services (like "
+"websites) that are only accessible through the Tor network."
+msgstr ""
+"Layanan Onion (sebelumnya diketahui sebagai \"hidden services (layanan "
+"tersembunyi)\" adalah layanan (seperti sebuah situs web) yang hanya bisa "
+"diakses melalui jaringan Tor"
+
+#: onionsites.page:16
+msgid ""
+"Onion services offer several advantages over ordinary services on the non-"
+"private web:"
+msgstr ""
+"Layanan Onion menawarkan beberapa keuntungan daripada layanan biasa pada "
+"situs web yang tidak privat."
+
+#: onionsites.page:23
+msgid ""
+"An onion services’s location and IP address are hidden, making it difficult "
+"for adversaries to censor it or identify its operators."
+msgstr ""
+"Lokasi dan alamat IP pada layanan onion tersembunyi, membuat penentang sulit"
+" untuk menyensor atau mengidentifikasi operator yang menjalankannya."
+
+#: onionsites.page:29
+msgid ""
+"All traffic between Tor users and onion services is end-to-end encrypted, so"
+" you do not need to worry about <link xref=\"secure-connections\">connecting"
+" over HTTPS</link>."
+msgstr ""
+"Semua lalu lintas antara pengguna Tor dan layanan onion terenkripsi dari "
+"ujung ke ujung, jadi anda tidak perlu khawatir untuk<link xref=\"secure-"
+"connections\">menghubungkan melalui HTTPS</link>"
+
+#: onionsites.page:36
+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 ""
+"Alamat dari layanan onion dihasilkan secara otomatis, oleh sebab itu "
+"operator tidak perlu membeli sebuah nama domain; URL .onion juga menjamin "
+"bahwa Tor terhubung ke lokasi yang tepat dan koneksinya tidak digelapkan."
+
+#: onionsites.page:46
+msgid "How to access an onion service"
+msgstr "Cara mengakses sebuah layanan onion"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: onionsites.page:48
+msgctxt "_"
+msgid ""
+"external ref='media/onionsites/onion_url.png' "
+"md5='f97f7fe10f07c3959c4430934974bbaa'"
+msgstr ""
+"external ref='media/onionsites/onion_url.png' "
+"md5='f97f7fe10f07c3959c4430934974bbaa'"
+
+#: onionsites.page:50
+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 sixteen "
+"mostly random letters and numbers, followed by “.onion”."
+msgstr ""
+"Seperti situs web yang lain, anda perlu tahu alamat dari sebuah layanan "
+"onion untuk dapat terhubung. Sebuah alamat layanan onion berupa deretan enam"
+" belas huruf dan nomor acak, diakhiri dengan \".onion\"."
+
+#: onionsites.page:58 troubleshooting.page:10
+msgid "Troubleshooting"
+msgstr "Tawaran solusi"
+
+#: onionsites.page:59
+msgid ""
+"If you cannot reach the onion service you require, make sure that you have "
+"entered the 16-character onion address correctly: even a small mistake will "
+"stop Tor Browser from being able to reach the site."
+msgstr ""
+"Bila anda tidak dapat menjangkau layanan onion yang anda inginkan, pastikan "
+"anda sudah memasukkan 16 karakter alamat onion secara tepat: sebuah "
+"kesalahan kecil akan menghentikan Tor Browser menjangkau situs tersebut."
+
+#: onionsites.page:64
+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 ""
+"Bila anda tetap tidak dapat terhubung ke layanan onion, mohon coba kembali. "
+"Mungkin ada persoalan koneksi, atau operator situs membuatnya \"offline\" "
+"tanpa peringatan."
+
+#: onionsites.page:69
+msgid ""
+"You can also ensure that you're able to access other onion services by "
+"connecting to <link href=\"http://3g2upl4pq6kufc4m.onion/\">DuckDuckGo's "
+"Onion Service</link>"
+msgstr ""
+"Anda juga bisa memastikan bahwa anda dapat mengakes layanan onion lain "
+"dengan tersambung ke <link "
+"href=\"http://3g2upl4pq6kufc4m.onion/\">DuckDuckGo's Onion Service</link>"
+
+#: plugins.page:6
+msgid "How Tor Browser handles add-ons, plugins and JavaScript"
+msgstr "Bagaimana Tor Browser memperlakukan add-ons, plugins dan JavaScript"
+
+#: plugins.page:10
+msgid "Plugins, add-ons and JavaScript"
+msgstr "Plugins, add-ons dan JavaScript"
+
+#: plugins.page:13
+msgid "Flash Player"
+msgstr "Flash Player"
+
+#: plugins.page:14
+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 ""
+"Situs web video, seperti Vimeo menggunakan plugin Flash Player untuk "
+"menampilkan konten video. Sayangnya, perangkat lunak ini beroperasi secara "
+"independen dari Tor Browser dan tidak dapat secara mudah untuk dibuat "
+"mentaati pengaturan proxy Tor Browser. Itu dapat menyingkap lokasi "
+"sebenarnya dan alamat IP anda kepada operator situs web, atau kepada "
+"pengamat dari luar. Untuk alasan ini, Flash dinonaktifkan secara bawaan di "
+"Tor Browser, dan tidak direkomendasikan untuk mengaktifkannya."
+
+#: plugins.page:23
+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 ""
+"Sejumlah situs video (misalnya Youtube) menawarkan metode pengiriman "
+"alternatif yang tidak menggunakan Flash. Metode ini mungkin cocok dengan Tor"
+" Browser."
+
+#: plugins.page:31
+msgid "JavaScript"
+msgstr "JavaScript"
+
+#: plugins.page:32
+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 merupakan bahasa pemograman yang digunakan peramban yang "
+"menawarkan elemen interaktif semisal video, animasi, audio, dan linemasa. "
+"Sayangnya, JavaScript juga memudahkan serangan keamanan terhadap peramban "
+"yang bisa mengarah pada hilangnya anonimitas."
+
+#: plugins.page:39
+msgid ""
+"Tor Browser includes an add-on called NoScript, accessed through the “S” "
+"icon at the top-left of the window, which allows you to control the "
+"JavaScript that runs on individual web pages, or to block it entirely."
+msgstr ""
+"Tor Browser memuat perangkat tambahan bernama NoScript, yang dapat diakses "
+"melalui ikon 'S' pada bagian kanan-atas jendela. Ini memperbolehkan anda "
+"untuk mengkontrol JavaScript pada satu halaman situs atau memblokir secara "
+"keseluruhan"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: plugins.page:45
+msgctxt "_"
+msgid ""
+"external ref='media/plugins/noscript_menu.png' "
+"md5='df9e684b76a3c2e2bdcb879a19c20471'"
+msgstr ""
+"external ref='media/plugins/noscript_menu.png' "
+"md5='df9e684b76a3c2e2bdcb879a19c20471'"
+
+#: plugins.page:47
+msgid ""
+"Users who require a high degree of security in their web browsing should set"
+" Tor Browser’s <link xref=\"security-slider\">Security Slider</link> to "
+"“Medium-High” (which disables JavaScript for non-HTTPS websites) or “High” "
+"(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."
+msgstr ""
+"Pengguna yang menginginkan tingkat keamanan yang tinggi pada situs "
+"jelajahnya sebaiknya mengatur Tor Browser: 1) slider pengamanan, 2) pada "
+"'Medium-High\" (yang menon-aktifkan JavaScript untuk situs non-HTTPS) atau "
+"\"High\" (yang melakukan hal seperti itu pada semua situs) Namun, "
+"menonaktifkan JavaScript akan menyebabkan banyak situs tidak muncul dengan "
+"betul, jadi pengaturan Tor Browser pada default adalah untuk memperbolehkan "
+"setiap situs untuk menjalankan skrip. "
+
+#: plugins.page:58
+msgid "Browser Add-ons"
+msgstr "Peraban Add-ons"
+
+#: plugins.page:59
+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 berbasiskan pada Firefox, dan setiap add-ons atau tema peramban "
+"yang cocok dengan Firefox dapat dipasang pada Tor Browser."
+
+#: plugins.page:64
+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 ""
+"Namun, hanya add-ons yang sudah diuji untuk digunakan dengan Tor Browser "
+"yang termasuk dalam bawaan. Memasang add-ons pada peramban lain bisa merusak"
+" fungsi dalam Tor Browser atau menyebabkan masalah lebih serius terhadap "
+"privasi dan keamanan anda. Sangat tidak dianjurkan untuk memasang add-ons "
+"tambahan, dan Tor Project tidak akan menawarkan bantuan untuk konfigurasi "
+"seperti ini."
+
+#: secure-connections.page:8
+msgid "Learn how to protect your data using Tor Browser and HTTPS"
+msgstr ""
+"Pelajari bagaimana mengamankan data anda memakai Tor Browser dan HTTPS"
+
+#: secure-connections.page:12
+msgid "Secure Connections"
+msgstr "Koneksi Aman"
+
+#: secure-connections.page:14
+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 ""
+"Bila informasi personal seperti kata sandi dikirimkan ke internet tanpa "
+"enkripsi bisa dengan mudah disadap. Bila anda masuk ke sebuah situs web, "
+"anda harus memastikan apakah situs tersebut menawarkan enkripsi HTTPS, yang "
+"melindungi anda dari penyadapan seperti ini. Anda bisa memverifikasi ini di "
+"kolom URL: Bila koneksi anda terenkripsi, alamat situs tersebut diawali "
+"dengan \"https://, bukan \"http://\""
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: secure-connections.page:24
+msgctxt "_"
+msgid ""
+"external ref='media/secure-connections/https.png' "
+"md5='364bcbde7a649b0cea9ae178007c1a50'"
+msgstr ""
+"eksternal ref='media/secure-connections/https.png' "
+"md5='364bcbde7a649b0cea9ae178007c1a50'"
+
+#: secure-connections.page:26
+msgid ""
+"The following visualization shows what information is visible to "
+"eavesdroppers with and without Tor Browser and HTTPS encryption:"
+msgstr ""
+"Visualisasi berikut ini menunjukkan informasi apa yang bisa dilihat oleh "
+"penyusup dengan atau tanpa Tor Browser dan enskripsi HTTPS:"
+
+#: secure-connections.page:35
+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 ""
+"Click tombol \"Tor\" untuk melihat apakah data ditampilkan kepada pengamat "
+"ketika Anda menggunakan Tor. Tombol akan berubah menjadi hijau untuk "
+"menandakan Tor sedang aktif."
+
+#: secure-connections.page:42
+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 ""
+"Click tombol \"HTTPS\" untuk melihat apakah data ditampilkan kepada pengamat"
+" saat Anda menggunakan HTTPS, tombol akan berubah menjadi hijau untuk "
+"menandakan HTTPS sedang aktif."
+
+#: secure-connections.page:49
+msgid ""
+"When both buttons are green, you see the data that is visible to observers "
+"when you are using both tools."
+msgstr ""
+"Saat masing-masing tombol berwarna hijau, Anda dapat melihat data "
+"ditampilkan kepada orang yang mengamati ketika Anda tidak menggunakan salah "
+"satu perkakas."
+
+#: secure-connections.page:55
+msgid ""
+"When both buttons are grey, you see the data that is visible to observers "
+"when you don't use either tool."
+msgstr ""
+"Saat masing-masing tombol berwarna abu-abu, Anda dapat melihat data "
+"ditampilkan kepada orang yang mengamati ketika Anda tidak menggunakan salah "
+"satu perkakas."
+
+#: secure-connections.page:62
+msgid "Potentially visible data"
+msgstr "Data berpotensi ditampilkan."
+
+#: secure-connections.page:70
+msgid "The site being visited."
+msgstr "Situs telah dikunjungi."
+
+#: secure-connections.page:81
+msgid "Username and password used for authentication."
+msgstr "Nama pengguna dan kata sandi digunakan untuk autentifikasi."
+
+#: secure-connections.page:92
+msgid "Data being transmitted."
+msgstr "Data sudah dikirim."
+
+#: secure-connections.page:103
+msgid ""
+"Network location of the computer used to visit the website (the public IP "
+"address)."
+msgstr ""
+"Lokasi jaringan komputer yang digunakan untuk mengunjungi situs (IP alamat "
+"publik)."
+
+#: secure-connections.page:115
+msgid "Whether or not Tor is being used."
+msgstr "Apakah Tor sedang dipakai atau tidak."
+
+#: security-slider.page:6
+msgid "Configuring Tor Browser for security and usability"
+msgstr "Mengkonfigurasi Tor Browser untuk keamanan dan kegunaan."
+
+#: security-slider.page:10
+msgid "Security Slider"
+msgstr "Security Slider"
+
+#: security-slider.page:11
+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 termasuk \"Security Slider\" akan mengajak Anda untuk "
+"meningkatkan keamanan dengan me-nonaktif-kan fitur situs tertentu yang bisa "
+"digunakan untuk menyerang kemanan dan identitas Anda. Peningkatan keamanan "
+"Tor Browser akan menghentikan sejumlah fungsi dari halaman situs, jadi Anda "
+"harus menyesuaikan kebutuhan tingkat keamanan Anda."
+
+#: security-slider.page:21
+msgid "Accessing the Security Slider"
+msgstr "Mengakses Security Slider"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: security-slider.page:23
+msgctxt "_"
+msgid ""
+"external ref='media/security-slider/slider.png' "
+"md5='3c469cd3ed9f60ebb6bbbc63daa90082'"
+msgstr ""
+"eksternal ref='media/security-slider/slider.png' "
+"md5='3c469cd3ed9f60ebb6bbbc63daa90082'"
+
+#: security-slider.page:25
+msgid ""
+"The Security Slider is located in Torbutton’s “Privacy and Security "
+"Settings” menu."
+msgstr ""
+"Security Slider berada di menu Torbutton's \"Privacy and Security "
+"Settings\"."
+
+#: security-slider.page:32
+msgid "Security Levels"
+msgstr "Tingkat Keamanan"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: security-slider.page:34
+msgctxt "_"
+msgid ""
+"external ref='media/security-slider/slider_window.png' "
+"md5='c733bdccd1731ed1a772777b25bae7a1'"
+msgstr ""
+"eksternal ref='media/security-slider/slider_window.png' "
+"md5='c733bdccd1731ed1a772777b25bae7a1'"
+
+#: security-slider.page:36
+msgid ""
+"Increasing the level of the Security Slider will disable or partially "
+"disable certain browser features to protect against possible attacks."
+msgstr ""
+"Peningkatan level Security Slider akan di-nonaktif-kan atau sebagian di-"
+"nonaktif-kan khususnya fitur peramban untuk melindungi pelbagai kemungkinan "
+"serangan."
+
+#: security-slider.page:42
+msgid "High"
+msgstr "Tinggi"
+
+#: security-slider.page:43
+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 ""
+"Pada tingkat ini, media video dan audio HTML 5 menjadi klik-untuk- memainkan"
+" melalui NoScript; setiap optimalisasi tampilan JavaScript menjadi non-"
+"aktif; beberapa persamaan matematika kemungkinan tidak ditampilkan secara "
+"benar; beberapa fitur terjemahan huruf menjadi non-aktif; beberapa tipe "
+"dari gambar menjadi non-aktif; Javascript menjadi non-aktif secara otomatis"
+" pada seluruh situs; hampir semua video dan audio format menjadi non-aktif; "
+"dan beberapa huruf dan ikon kemungkinan tidak dapat ditampilkan secara tepat"
+" "
+
+#: security-slider.page:53
+msgid "Medium-High"
+msgstr "Menengah-Tinggi"
+
+#: security-slider.page:54
+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-<link xref=\"secure-"
+"connections\">HTTPS</link> sites."
+msgstr ""
+"Pada level ini, HTML5 media audio dan visual menjadi click-to-play lewat "
+"NoScript; semua optimalisasi kinerja JavaScript akan di-nonaktif-kan; "
+"beberapa formula matematika kemngkinan tidak ditampilkan secara baik; "
+"sejumlah perubahan fitur huruf di-nonaktif-kan; sejumlah jenis gambar di-"
+"nonaktif-kan; dan JavaScript di-nonaktif-kan secara otomatif pada semua "
+"non-<link xref=\"secure-connections\">HTTPS</link>sites"
+
+#: security-slider.page:64
+msgid "Medium-Low"
+msgstr "Menengah-Bawah"
+
+#: security-slider.page:65
+msgid ""
+"At this level, HTML5 video and audio media become click-to-play via "
+"NoScript; some <link xref=\"plugins\">JavaScript</link> performance "
+"optimizations are disabled, causing some websites to run more slowly; and "
+"some mathematical equations may not display properly."
+msgstr ""
+"Pada level ini, HTML5 media audio dan visual menjadi click-to-play lewat "
+"NoScript, beberapa <link xref=\"plugins\">JavaScript</link>Optimalisasi "
+"kinerja nonaktif, membuat sejumllah websites berjalan lambat; dan sejumlah "
+"formula matematika tidak akan ditampilkan dengan baik."
+
+#: security-slider.page:73
+msgid "Low"
+msgstr "Bawah"
+
+#: security-slider.page:74
+msgid ""
+"At this level, all browser features are enabled. This is the most usable "
+"option."
+msgstr ""
+"Pada level ini, semua fitur peramban dapat digunakan. Ini adalah pilihan "
+"yang paling berguna."
+
+#: transports.page:6 transports.page:20
+msgid "Types of pluggable transport"
+msgstr "Jenis-jenis pluggable transport"
+
+#: transports.page:10
+msgid "Pluggable Transports"
+msgstr "Pluggable Transports"
+
+#: transports.page:12
+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 ""
+"Pluggable transports adalah perkakas yang Tor bisa gunakan untuk menyamarkan"
+" lalu lintas ini untuk pengiriman keluar. Ini bisa berguna dalam situasi-"
+"situasi di mana penyedia layanan internet atau otoritas lain aktif memblokir"
+" koneksi ke jaringan Tor."
+
+#: transports.page:21
+msgid ""
+"Currently there are six pluggable transports available, but more are being "
+"developed."
+msgstr ""
+"Sekarang terdapat tiga pluggable transports dapat diakses, tapi lebih untuk "
+"pengembangan."
+
+#: transports.page:28
+msgid "obfs3"
+msgstr "obfs3"
+
+#: transports.page:33
+msgid ""
+"obfs3 makes Tor traffic look random, so that it does not look like Tor or "
+"any other protocol. obfs3 bridges will work in most places."
+msgstr ""
+"obfs3 membuat lalu lintas Tor tampak acak, jadi nantinya tidak akan tampak "
+"seperti Tor atau protokol lainnya. obfs3 bridges akan bekerja di banyak "
+"tempat."
+
+#: transports.page:42
+msgid "obfs4"
+msgstr "obfs4"
+
+#: transports.page:47
+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 membuat lalu lintas Tor tampak acak seperti obfs3, dan juga mencegah "
+"sensor dari menemukan bridges oleh pemindaian internet. obfs4 bridges "
+"sedikit mirip dalam blokir dibandingkan obfs3 bridges."
+
+#: transports.page:56
+msgid "Scramblesuit"
+msgstr "Scramblesuit"
+
+#: transports.page:61
+msgid "ScrambleSuit is similar to obfs4 but has a different set of bridges."
+msgstr "ScrambleSuit mirip dengan obfs4 namun memiliki jembatan berbeda."
+
+#: transports.page:69
+msgid "FTE"
+msgstr "FTE"
+
+#: transports.page:74
+msgid ""
+"FTE (format-transforming encryption) disguises Tor traffic as ordinary web "
+"(HTTP) traffic."
+msgstr ""
+"FTE (format-transforming encryption) penyamaran lalu lintas Tor sebagai "
+"situs biasa (HTTP) lalu lintas."
+
+#: transports.page:82
+msgid "meek"
+msgstr "lunak"
+
+#: transports.page:87
+msgid ""
+"These 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 ""
+"Mengangkut semua ini membuatnya terlihat seperti Anda menjelajah situs web "
+"utama daripada menggunakan Tor. Meek-amazon membuatnya terlihat seperti Anda"
+" menggunakan Amazon Web Services; Meek-azure membuatnya terlihat seperti "
+"Anda menggunakan situs web Microsoft; dan meek-google membuatnya terlihat "
+"seperti Anda menggunakan Google search. "
+
+#: troubleshooting.page:6
+msgid "What to do if Tor Browser doesn’t work"
+msgstr "Apa yang harus dilakukan ketika Tor Browser tidak bekerja"
+
+#: troubleshooting.page:12
+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 ""
+"Anda sudah bisa mulai berselancar di internet menggunakan Tor Browser segera"
+" setelah menjalankan program dan menekan tombol \"Connect\" jika anda "
+"menggunakannya pertama kali."
+
+#: troubleshooting.page:21
+msgid "Quick fixes"
+msgstr "Perbaikan cepat"
+
+#: troubleshooting.page:22
+msgid ""
+"If Tor Browser doesn’t connect, there may be a simple solution. Try each of "
+"the following:"
+msgstr ""
+"Jika Tor Browser tidak terkoneksi, ada sejumlah solusi sederhana. Coba "
+"masing-masing di bawah ini:"
+
+#: troubleshooting.page:29
+msgid ""
+"Your computer’s system clock must be set correctly, or Tor will not be able "
+"to connect."
+msgstr ""
+"Sistem jam komputer Anda mesti diatur secara tepat, atau Tor tidak bisa "
+"terkoneksi."
+
+#: troubleshooting.page:35
+msgid ""
+"Make sure another Tor Browser is not already running. If you’re not sure if "
+"Tor Browser is running, restart your computer."
+msgstr ""
+"Pastikan Tor Browser lainnya tidak sedang berjalan. Jika tak yakin jika Tor "
+"Browser sedang berjalan, nyalakan ulang komputer Anda."
+
+#: troubleshooting.page:41
+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 ""
+"Pastikan program antivirus yang telah terpasang tidak menghalangi jalannya "
+"Tor. Anda kemungkinan perlu memeriksa dokumentasi pada perangkat antivirus "
+"Anda jika tidak tahu mengenai hal ini."
+
+#: troubleshooting.page:49
+msgid "Temporarily disable your firewall."
+msgstr "Sementara men-nonaktif-kan firewall Anda."
+
+#: troubleshooting.page:54
+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 ""
+"Hapus Tor Browser dan pasang lagi. Jika pembaruan berjalan, jangan hanya "
+"minmpa file Tor Browser anda sebelumnya; sebelumnya pastikan seluruhnya "
+"sudah dihapus."
+
+#: troubleshooting.page:64
+msgid "Is your connection censored?"
+msgstr "Apakah koneksi Anda disensor?"
+
+#: troubleshooting.page:65
+msgid ""
+"If you still can’t connect, your Internet Service Provider might be "
+"censoring connections to the Tor network. Read the <link "
+"xref=\"circumvention\">Circumvention</link> section for possible solutions."
+msgstr ""
+"Jika Anda masih tak bisa terkoneksi, ISP Anda kemungkinan menghalangi "
+"koneksi ke jaringan Tor, baca <link xref=\"circumvention\">Perdaya</link> "
+"bagian untuk peluang solusi."
+
+#: troubleshooting.page:74
+msgid "Known issues"
+msgstr "Persoalan yang telah diketahui"
+
+#: troubleshooting.page:75
+msgid ""
+"Tor Browser is under constant development, and some issues are known about "
+"but not yet fixed. Please check the <link xref=\"known-issues\">Known "
+"Issues</link> page to see if the problem you are experiencing is already "
+"listed there."
+msgstr ""
+"Tor Browser selalu berada di bawah pengembangan, dan sejumlah persoalan "
+"telah diketahui tapi tidak bisa diperbaiki. Harap periksa <link xref"
+"=\"known-issues\">persoalan yang sudah diketahui </link>halaman untuk "
+"melihat persoalanmu sudah masuk ke dalam daftar ini."
+
+#: uninstalling.page:6
+msgid "How to remove Tor Browser from your system"
+msgstr "Cara mencopot Tor Browser dari sistem Anda."
+
+#: uninstalling.page:10
+msgid "Uninstalling"
+msgstr "Pencopotan"
+
+#: uninstalling.page:12
+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 tidak mempengaruhi perangkat dan pengaturan di dalam komputer "
+"Anda. Pencopotan Tor Browser tidak akan berpengaruh terhadap sistem "
+"perangkat dan pengaturan."
+
+#: uninstalling.page:18
+msgid "Removing Tor Browser from your system is simple:"
+msgstr "Mencopot Tor Browser pada sistem Anda sangat mudah:"
+
+#: uninstalling.page:24
+msgid ""
+"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 ""
+"Tempatkan Tor Browser folder. Lokasi foldernya biasanya untuk Windows berada"
+" di Desktop; sementara pada Mac OS X berada di Applications. Di Linux, tidak"
+" ada lokasi tertentu, tapi folder akan dinamakan \"tor-browser_en-US\" jika "
+"Anda menjalankan versi Inggris Tor Browser."
+
+#: uninstalling.page:32
+msgid "Delete the Tor Browser folder."
+msgstr "Hapus folder Tor Browser"
+
+#: uninstalling.page:35
+msgid "Empty your Trash"
+msgstr "Kosongkan tempat sampah"
+
+#: uninstalling.page:39
+msgid ""
+"Note that your operating system’s standard “Uninstall” utility is not used."
+msgstr ""
+"Perhatikan operating sistem anda standard \"Uninstall\" utilitas tidak "
+"digunakan"
+
+#: updating.page:6
+msgid "How to update Tor Browser"
+msgstr "Cara untuk memperbarui Tor Browser"
+
+#: updating.page:10
+msgid "Updating"
+msgstr "Pembaruan"
+
+#: updating.page:12
+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 akan tetap menyimpan pembaruan selama mungkin. Jika Anda tetap "
+"melanjutkan menggunakan versi lama, maka kemanan privasi dan anonimitas Anda"
+" akan mudah diserang."
+
+#: updating.page:18
+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 ""
+"Tor Browser akan meminta Anda untuk memperbarui perangkat lunak untuk versi "
+"terakhir yang baru dikeluarkan: ikon Torbutton akan menampilkan segitiga "
+"kuning, dan anda akan melihat tulisan indikator pembaruan ketika Tor Browser"
+" terbuka. Anda dapat memperbaruinya secara otomatis atau manual."
+
+#: updating.page:26
+msgid "Updating Tor Browser automatically"
+msgstr "Pembaruan Tor Browser secara otomatis"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: updating.page:30
+msgctxt "_"
+msgid ""
+"external ref='media/updating/update1.png' "
+"md5='9ff01eb653d92124746fc31efde2bf07'"
+msgstr ""
+"eksternal ref='media/updating/update1.png' "
+"md5='9ff01eb653d92124746fc31efde2bf07'"
+
+#: updating.page:32
+msgid ""
+"When you are prompted to update Tor Browser, click on the Torbutton icon, "
+"then select “Check for Tor Browser Update”."
+msgstr ""
+"Ketika Anda diminta untuk memperbarui Tor Browser, click ikon Torbutton, "
+"kemudian pilih \"Check for Tor Browser Update\""
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: updating.page:39
+msgctxt "_"
+msgid ""
+"external ref='media/updating/update3.png' "
+"md5='4bd08622b0cacf20b13f75c432176ed3'"
+msgstr ""
+"eksternal ref='media/updating/update3.png' "
+"md5='4bd08622b0cacf20b13f75c432176ed3'"
+
+#: updating.page:41
+msgid ""
+"When Tor Browser has finished checking for updates, click on the “Update” "
+"button."
+msgstr "Saat Tor Browser telah selesai untuk pembaruan, click tombol \"Update\"."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: updating.page:48
+msgctxt "_"
+msgid ""
+"external ref='media/updating/update4.png' "
+"md5='1d795e7b695738531db9d4b2b0fb5313'"
+msgstr ""
+"eksternal ref='media/updating/update4.png' "
+"md5='1d795e7b695738531db9d4b2b0fb5313'"
+
+#: updating.page:50
+msgid ""
+"Wait for the update to download and install, then restart Tor Browser. You "
+"will now be running the latest version."
+msgstr ""
+"Tunggu pembaruan untuk mengunduh dan pemasangan, lalu hidupkan kembali Tor "
+"Browser. Setelah itu, Anda akan menjalankan versi terbaru."
+
+#: updating.page:58
+msgid "Updating Tor Browser manually"
+msgstr "Perbarui Tor Browser secara manual"
+
+#: updating.page:61
+msgid ""
+"When you are prompted to update Tor Browser, finish the browsing session and"
+" close the program."
+msgstr ""
+"Ketika Anda diminta untuk memperbarui Tor Brower, selesaikan dulu aktivitas "
+"berselancar dan tutup program ini"
+
+#: updating.page:67
+msgid ""
+"Remove Tor Browser from your system by deleting the folder that contains it "
+"(see the <link xref=\"uninstalling\">Uninstalling</link> section for more "
+"information)."
+msgstr ""
+"Copot Tor Browser dari sistem Anda dengan cara menghapus folder yang berisi "
+"file terkait (lihat <link xref=\"uninstalling\">copot perangkat</link>bagian"
+" untuk informasi lanjut)."
+
+#: updating.page:74
+msgid ""
+"Visit <link href=\"https://www.torproject.org/projects/torbrowser.html.en\">"
+" https://www.torproject.org/projects/torbrowser.html.en</link> and download "
+"a copy of the latest Tor Browser release, then install it as before."
+msgstr ""
+"Kunjungi <link "
+"href=\"https://www.torproject.org/projects/torbrowser.html.en\">https://www.torproject.org/projects/torbrowser.html.en</link>dan"
+" unduh sebuah salinan dari versi terakhir Tor Browser, lalu pasang "
+"sebelumnya."
1
0
commit 3bb8030aff964840645c4729373b6f745a530307
Author: Colin Childs <colin(a)torproject.org>
Date: Tue Sep 18 14:16:47 2018 -0500
Adding bn_BD translations
---
Makefile.am | 2 +-
bn_BD/bn_BD.po | 1790 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 1791 insertions(+), 1 deletion(-)
diff --git a/Makefile.am b/Makefile.am
index eb78a9d..3fd3409 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -8,7 +8,7 @@ TOR_AND_HTTPS = ../tor-and-https
HELP_ID = tor-browser-user-manual
HELP_FILES = $(shell cd $(srcdir)/C && git ls-files '*.page')
HELP_MEDIA = $(shell cd $(srcdir)/C && git ls-files 'media')
-HELP_LINGUAS = en-US ja sv ga @TOR_BROWSER_BUNDLE_LOCALES@
+HELP_LINGUAS = en-US ja sv ga bn_BD @TOR_BROWSER_BUNDLE_LOCALES@
.PHONY: html
html: all media-symlinks.stamp
diff --git a/bn_BD/bn_BD.po b/bn_BD/bn_BD.po
new file mode 100644
index 0000000..90df5c4
--- /dev/null
+++ b/bn_BD/bn_BD.po
@@ -0,0 +1,1790 @@
+# Translators:
+# Al Shahrior Hasan Sagor <shahrior3814(a)gmail.com>, 2017
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2016-12-06 16:36-0600\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Al Shahrior Hasan Sagor <shahrior3814(a)gmail.com>, 2017\n"
+"Language-Team: Bengali (Bangladesh) (https://www.transifex.com/otf/teams/1519/bn_BD/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: bn_BD\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
+msgctxt "_"
+msgid "translator-credits"
+msgstr "àŠ
àŠšà§àŠ¬àŠŸàŠŠàŠ-àŠà§àаà§àŠ¡àŠ¿àŠ"
+
+#: about-tor-browser.page:7
+msgid "Learn what Tor Browser can do to protect your privacy and anonymity"
+msgstr ""
+"àŠàŠªàŠšàŠŸàŠ° àŠà§àŠªàŠšà§àŠ¯àŠŒàŠ€àŠŸ àŠàŠ¬àŠ àŠà§àŠªàŠšà§àŠ¯àŠŒàŠ€àŠŸàŠ° àŠžà§àаàŠà§àŠ·àŠŸàŠ° àŠàŠšà§àН àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠ¿ àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§ àŠ€àŠŸ "
+"àŠàŠŸàŠšà§àŠš"
+
+#: about-tor-browser.page:10
+msgid "About Tor Browser"
+msgstr "àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠžàŠ®à§àŠªàŠ°à§àŠà§"
+
+#: about-tor-browser.page:12
+msgid ""
+"Tor Browser uses the Tor network to protect your privacy and anonymity. "
+"Using the Tor network has two main properties:"
+msgstr ""
+"àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠªàŠšàŠŸàŠ° àŠà§àŠªàŠšà§àŠ¯àŠŒàŠ€àŠŸ àŠàŠ¬àŠ àŠà§àŠªàŠšà§àŠ¯àŠŒàŠ€àŠŸ àŠ°àŠà§àŠ·àŠŸ àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠàа àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ "
+"àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаà§à¥€ àŠàа àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°à§ àŠŠà§àŠàŠ¿ àŠªà§àŠ°àŠ§àŠŸàŠš àŠ¬à§àŠ¶àŠ¿àŠ·à§àŠà§àН àŠ°àŠ¯àŠŒà§àŠà§:"
+
+#: about-tor-browser.page:18
+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 ""
+"àŠàŠªàŠšàŠŸàŠ° àŠàŠšà§àŠàŠŸàŠ°àŠšà§àŠ àŠªàŠ°àŠ¿àŠ·à§àŠ¬àŠŸ àŠªà§àŠ°àŠŠàŠŸàŠšàŠàŠŸàŠ°à§, àŠàŠ¬àŠ àŠžà§àŠ¥àŠŸàŠšà§àŠ¯àŠŒàŠàŠŸàŠ¬à§ àŠàŠªàŠšàŠŸàŠ° àŠžàŠàНà§àŠ àŠŠà§àŠà§ àŠà§àŠ, "
+"àŠàŠªàŠšàŠŸàŠ° àŠàŠ¯àŠŒà§àЬ àŠžàŠŸàŠàŠà§àа àŠšàŠŸàŠ® àŠàŠ¬àŠ àŠ àŠ¿àŠàŠŸàŠšàŠŸ àŠžàŠ¹ àŠàŠªàŠšàŠŸàŠ° àŠàŠšà§àŠàŠŸàŠ°àŠšà§àŠ àŠàŠŸàŠ°à§àНàŠàŠ²àŠŸàŠª àŠà§àаà§àŠ¯àŠŸàŠ àŠàŠ°àŠ€à§ "
+"àŠžàŠà§àŠ·àŠ® àŠ¹àŠ¬à§ àŠšàŠŸà¥€"
+
+#: about-tor-browser.page:25
+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 ""
+"àŠàŠªàŠšàŠ¿ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаà§àŠš àŠàŠ®àŠš àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠ àŠàŠ¬àŠ àŠªàŠ°àŠ¿àŠ·à§àŠ¬àŠŸàŠà§àŠ²àŠ¿àŠ° àŠ
àŠªàŠŸàŠ°à§àŠàа àŠàŠ¬àŠ àŠ¯à§ àŠà§àŠ àŠ€àŠŸàŠŠà§àаàŠà§ "
+"àŠŠà§àŠàŠà§àŠš, àŠàŠªàŠšàŠŸàŠ° àŠàŠžàŠ² àŠàŠšà§àŠàŠŸàŠ°àŠšà§àŠ (àŠàŠàŠªàŠ¿) àŠ àŠ¿àŠàŠŸàŠšàŠŸàŠ° àŠªàŠ°àŠ¿àŠ¬àŠ°à§àŠ€à§ àŠàа àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠà§ àŠàŠžàŠà§ àŠàŠàŠàŠ¿"
+" àŠžàŠàНà§àŠ àŠŠà§àŠàŠ€à§ àŠªàŠŸàŠ¬à§àŠš àŠàŠ¬àŠ àŠ¯àŠŠàŠ¿ àŠàŠªàŠšàŠ¿ àŠžà§àŠªàŠ·à§àŠàŠàŠŸàŠ¬à§ àŠšàŠ¿àŠà§àŠà§ àŠàŠ¿àŠ¹à§àŠšàŠ¿àŠ€ àŠšàŠŸ àŠàаà§àŠš àŠ€àŠ¬à§ àŠàŠªàŠšàŠ¿ "
+"àŠà§ àŠàŠŸàŠšà§àŠš àŠšàŠŸà¥€"
+
+#: about-tor-browser.page:34
+msgid ""
+"In addition, Tor Browser is designed to prevent websites from "
+"âfingerprintingâ or identifying you based on your browser configuration."
+msgstr ""
+"àŠàŠªàŠ°àŠšà§àŠ€à§, àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° \"àŠ«àŠ¿àŠà§àŠàŠŸàŠ°àŠªà§àŠ°àŠ¿àŠšà§àŠàŠ¿àŠ\" àŠ¥à§àŠà§ àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠàŠà§àŠ²àŠ¿àŠà§ àŠªà§àŠ°àŠ€àŠ¿àŠ°à§àЧ àŠàŠ°àŠ€à§"
+" àŠ¬àŠŸ àŠàŠªàŠšàŠŸàŠ° àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠšàŠ«àŠ¿àŠàŠŸàŠ°à§àŠ¶àŠšà§àа àŠàŠªàŠ° àŠàŠ¿àŠ€à§àŠ€àŠ¿ àŠàŠ°à§ àŠàŠªàŠšàŠŸàŠà§ àŠžàŠšàŠŸàŠà§àŠ€ àŠàŠ°àŠŸàŠ° àŠàŠšà§àН "
+"àŠ¡àŠ¿àŠàŠŸàŠàŠš àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒà§àŠà§à¥€"
+
+#: about-tor-browser.page:39
+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 <link xref"
+"=\"managing-identities#new-identity\">New Identity</link> is requested)."
+msgstr ""
+"àŠ¡àŠ¿àŠ«àŠ²à§àŠàаà§àŠªà§, àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠà§àŠšàŠ àŠ¬à§àŠ°àŠŸàŠàŠàŠ¿àŠ àŠàŠ€àŠ¿àŠ¹àŠŸàŠž àŠ°àŠŸàŠà§ àŠšàŠŸ àŠà§àŠàŠ¿àŠ àŠàŠàŠ àŠžà§àŠ¶àŠšà§àа àŠàŠšà§àН "
+"àŠ¶à§àЧà§àŠ®àŠŸàŠ€à§àа àŠ¬à§àЧ (àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ¥à§àŠà§ àŠªà§àŠ°àŠžà§àŠ¥àŠŸàŠš àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒ àŠ¬àŠŸ àŠàŠàŠàŠ¿ <link xref"
+"=\"managing-identities#new-identity\">àŠšàŠ€à§àŠš àŠªàŠ°àŠ¿àŠàŠ¯àŠŒ</link> àŠ
àŠšà§àаà§àЧ àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒ) "
+"àŠªàŠ°à§àŠ¯àŠšà§àŠ€ àŠ¬à§àŠ§à¥€"
+
+#: about-tor-browser.page:50
+msgid "How Tor works"
+msgstr "àŠàŠ¿àŠàŠŸàŠ¬à§ àŠàа àŠàŠŸàŠ àŠàаà§"
+
+#: about-tor-browser.page:52
+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 <em>relays</em>) in the Tor network. The"
+" last relay in the circuit (the âexit relayâ) then sends the traffic out "
+"onto the public Internet."
+msgstr ""
+"àŠàа àŠàŠŸàŠ°à§àŠà§àŠ¯àŠŒàŠŸàŠ² àŠàŠŸàŠšà§àвàŠà§àŠ²àŠ¿àŠ° àŠàŠàŠàŠ¿ àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠ¯àŠŸ àŠàŠªàŠšàŠŸàŠà§ àŠàŠšà§àŠàŠŸàŠ°àŠšà§àŠà§ àŠàŠªàŠšàŠŸàŠ° "
+"àŠà§àŠªàŠšà§àŠ¯àŠŒàŠ€àŠŸ àŠ àŠšàŠ¿àŠ°àŠŸàŠªàŠ€à§àŠ€àŠŸ àŠàŠšà§àŠšàŠ€ àŠàŠ°àŠ€à§ àŠžàŠ¹àŠŸàŠ¯àŠŒàŠ€àŠŸ àŠàаà§à¥€ àŠàа àŠàа àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠà§ àŠ€àŠ¿àŠšàŠàŠ¿ "
+"àŠ°à§àŠ¯àŠŸàŠšà§àŠ¡àŠ® àŠžàŠŸàŠ°à§àŠàŠŸàŠ° (àŠ°àŠ¿àŠ²à§ àŠšàŠŸàŠ®à§àŠ àŠªàŠ°àŠ¿àŠàŠ¿àŠ€) àŠàа àŠ®àŠŸàŠ§à§àŠ¯àŠ®à§ àŠàŠªàŠšàŠŸàŠ° àŠà§àаà§àŠ¯àŠŸàŠ«àŠ¿àŠ àŠªàŠŸàŠ àŠ¿àŠ¯àŠŒà§ àŠàŠŸàŠ "
+"àŠàаà§à¥€ àŠžàŠŸàŠ°à§àŠàŠ¿àŠà§àа àŠžàŠ°à§àŠ¬àŠ¶à§àŠ· <em>àŠ°àŠ¿àŠ²à§</em> (\"àŠªà§àŠ°àŠžà§àŠ¥àŠŸàŠš àŠ°àŠ¿àŠ²à§\") àŠ€àŠŸàŠ°àŠªàŠ° àŠªàŠŸàŠ¬àŠ²àŠ¿àŠ "
+"àŠàŠšà§àŠàŠŸàŠ°àŠšà§àŠà§ àŠà§àаà§àŠ¯àŠŸàŠ«àŠ¿àŠ àŠªàŠŸàŠ àŠŸàŠ¯àŠŒà¥€"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: about-tor-browser.page:59
+msgctxt "_"
+msgid ""
+"external ref='media/how-tor-works.png' "
+"md5='6fe4151a88b7a518466f0582e40ccc8c'"
+msgstr ""
+"àŠ¬àŠŸàŠ¹à§àŠ¯àŠ¿àŠ àŠ°à§àŠ«='media/how-tor-works.png' md5='6fe4151a88b7a518466f0582e40ccc8c'"
+
+#: about-tor-browser.page:60
+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 ""
+"àŠàŠªàŠ°à§àŠà§àŠ€ àŠàŠ¿àŠ€à§àаàŠàŠ¿ àŠàаàŠà§ àŠ¬àŠ¿àŠàŠ¿àŠšà§àŠš àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠàŠà§àŠ²àŠ¿àŠ€à§ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ°àŠàŠŸàŠ°à§ àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°àŠà§ àŠàŠ¿àŠ€à§àŠ°àŠ¿àŠ€ "
+"àŠàаà§à¥€ àŠžàŠ¬à§àŠ àŠ®àŠŸàŠàŠŸàŠ°àŠ¿ àŠàŠ®à§àŠªàŠ¿àŠàŠàŠŸàŠ° àŠàа àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠàŠà§àŠ²àŠ¿àŠ€à§ àŠ°àŠ¿àŠ²à§àŠž àŠàŠªàŠžà§àŠ¥àŠŸàŠªàŠš àŠàаà§, àŠ¯àŠàŠš àŠ€àŠ¿àŠšàŠàŠ¿"
+" àŠà§ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ°àŠàŠŸàŠ°à§àа àŠ®àŠ§à§àŠ¯à§ àŠàŠšàŠà§àŠ°àŠ¿àŠªàŠ¶àŠš àŠžà§àŠ€àŠ° àŠàŠ¬àŠ àŠªà§àŠ°àŠ€àŠ¿àŠàŠ¿ àŠ°àŠ¿àŠ²à§ àŠªà§àŠ°àŠ€àŠ¿àŠšàŠ¿àŠ§àŠ¿àŠ€à§àЬ àŠàаà§à¥€"
+
+#: bridges.page:6
+msgid "Learn what bridges are and how to get them"
+msgstr "àŠàŠ¿ àŠ¬à§àŠ°àŠ¿àŠ àŠàŠà§ àŠàŠ¬àŠ àŠàŠ¿àŠàŠŸàŠ¬à§ àŠ€àŠŸàŠŠà§àа àŠªà§àŠ€à§ àŠ¶àŠ¿àŠàŠ€à§"
+
+#: bridges.page:10
+msgid "Bridges"
+msgstr "àŠ¬à§àŠ°àŠ¿àŠ"
+
+#: bridges.page:12
+msgid ""
+"Most <link xref=\"transports\">Pluggable Transports</link>, 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 ""
+"àŠžàŠ°à§àŠ¬àŠŸàŠ§àŠ¿àŠ <link xref=\"transports\">àŠªà§àвà§àŠ¯àŠŸàŠà§àŠ¬àŠ² àŠà§àŠ°àŠŸàŠšà§àŠžàŠªà§àаà§àŠ</link>\n"
+", àŠ¯à§àŠ®àŠš obfs3 àŠàŠ¬àŠ obfs4 àŠ¹àŠ¿àŠžàŠŸàŠ¬à§, \"àŠ¬à§àŠ°àŠ¿àŠ\" relays àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ°à§àа àŠàŠªàŠ° àŠšàŠ¿àŠ°à§àŠàа àŠàаà§à¥€ àŠžàŠŸàŠ§àŠŸàŠ°àŠ£ àŠàа àŠ°àŠ¿àŠ²à§àŠž àŠ®àŠ€, àŠžà§àŠ€à§ àŠžà§àЬà§àŠà§àŠàŠŸàŠžà§àЬàŠàŠŠà§àа àŠŠà§àŠ¬àŠŸàŠ°àŠŸ àŠàŠŸàŠ²àŠŸàŠšà§ àŠ¹àŠ¯àŠŒ; àŠžàŠŸàŠ§àŠŸàŠ°àŠ£ àŠ°àŠ¿àŠ²à§àŠž àŠ¬à§àŠ¯àŠ€à§àŠ€, àŠ€àŠ¬à§, àŠ€àŠŸàŠ°àŠŸ àŠžàŠ°à§àЬàŠàŠšà§àŠš àŠ€àŠŸàŠ²àŠ¿àŠàŠŸàŠà§àŠà§àŠ€ àŠšàŠŸ àŠ¹àŠ¯àŠŒ, àŠ€àŠŸàŠ àŠàŠàŠàŠ¿ àŠªà§àŠ°àŠ€àŠ¿àŠªàŠà§àŠ· àŠ€àŠŸàŠŠà§àа àŠžàŠ¹àŠà§àŠ àŠžàŠšàŠŸàŠà§àŠ€ àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§ àŠšàŠŸà¥€ àŠªà§àвà§àŠ¯àŠŸàŠà§àŠ¬àŠ² àŠà§àŠ°àŠŸàŠšà§àŠžàŠ«àŠ°à§àŠ®à§àа àŠžàŠŸàŠ¥à§ àŠ®àŠ¿àŠ²àŠ¿àŠ€ àŠ¬à§àŠ°àŠ¿àŠ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°à§ àŠàŠªàŠšàŠ¿ àŠàа àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаàŠà§àŠš àŠ€àŠŸ àŠàŠŠà§àŠ®àŠ¬à§àŠ¶à§ àŠžàŠŸàŠ¹àŠŸàŠ¯à§àН àŠàаà§à¥€"
+
+#: bridges.page:21
+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 ""
+"àŠ
àŠšà§àŠ¯àŠŸàŠšà§àН àŠªà§àвà§àŠ¯àŠŸàŠà§àŠ¬àŠ² àŠà§àŠ°àŠŸàŠšà§àŠžàŠ«àŠ°à§àŠ®àŠà§àŠ²àŠ¿, àŠ¯à§àŠ®àŠš àŠ¬àŠ¿àŠšàŠ¯àŠŒà§, àŠ¬àŠ¿àŠàŠ¿àŠšà§àŠš àŠ¬àŠ¿àŠ°à§àŠ§à§ àŠžà§àŠšà§àŠžàŠ°àŠ¶àŠ¿àŠª "
+"àŠà§àŠ¶àŠ²àŠà§àŠ²àŠ¿ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°à§ àŠ¯àŠŸ àŠžà§àŠ€à§àŠà§àŠ²àŠ¿àŠ€à§ àŠšàŠ¿àŠ°à§àŠàа àŠàŠ°à§ àŠšàŠŸà¥€ àŠàŠ àŠà§àŠ°àŠŸàŠšà§àŠžàŠªà§àаà§àŠàŠà§àŠ²àŠ¿ "
+"àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠàŠªàŠšàŠŸàŠà§ àŠ¬à§àŠ°àŠ¿àŠà§àа àŠ àŠ¿àŠàŠŸàŠšàŠŸàŠà§àŠ²àŠ¿ àŠªà§àŠ€à§ àŠ¹àŠ¬à§ àŠšàŠŸà¥€"
+
+#: bridges.page:28
+msgid "Getting bridge addresses"
+msgstr "àŠ¬à§àŠ°àŠ¿àŠà§àа àŠ àŠ¿àŠàŠŸàŠšàŠŸàŠà§àŠ²àŠ¿ àŠªàŠŸàŠàŠ¯àŠŒàŠŸ"
+
+#: bridges.page:29
+msgid ""
+"Because bridge addresses are not public, you will need to request them "
+"yourself. You have two options:"
+msgstr ""
+"àŠ¯à§àйà§àŠ€à§ àŠ¬à§àŠ°àŠ¿àŠàŠà§àŠ²àŠ¿ àŠ àŠ¿àŠàŠŸàŠšàŠŸàŠà§àŠ²àŠ¿ àŠžàŠ°à§àЬàŠàŠšà§àŠš àŠšàŠ¯àŠŒ àŠ€àŠŸàŠ àŠàŠªàŠšàŠŸàŠà§ àŠ€àŠŸàŠŠà§àа àŠšàŠ¿àŠà§àа àŠàŠŸàŠà§ àŠ
àŠšà§àаà§àЧ "
+"àŠàŠ°àŠ€à§ àŠ¹àŠ¬à§à¥€ àŠàŠªàŠšàŠŸàŠ° àŠŠà§àŠàŠ¿ àŠ¬àŠ¿àŠàвà§àŠª àŠàŠà§:"
+
+#: bridges.page:36
+msgid ""
+"Visit <link "
+"href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</link>"
+" and follow the instructions, or"
+msgstr ""
+"<link "
+"href=\"https://bridges.torproject.org/\">Https://bridges.torproject.org/</link>"
+" àŠŠà§àŠà§àŠš àŠàŠ¬àŠ àŠšàŠ¿àŠ°à§àŠŠà§àŠ¶àŠŸàŠ¬àŠ²à§ àŠ
àŠšà§àŠžàŠ°àŠ£ àŠàаà§àŠš, àŠ
àŠ¥àŠ¬àŠŸ"
+
+#: bridges.page:42
+msgid ""
+"Email bridges(a)torproject.org from a Gmail, Yahoo, or Riseup email address, "
+"or"
+msgstr ""
+"àŠàŠ®à§àŠàв, bridges(a)torproject.org àŠàŠàŠàŠ¿ àŠàŠ¿àŠ®à§àŠàв, àŠàŠ¯àŠŒàŠŸàŠ¹à§, àŠ¬àŠŸ àŠ°àŠ¿àŠ¯àŠŒà§àŠª àŠàŠ®à§àв àŠ àŠ¿àŠàŠŸàŠšàŠŸ, àŠ¬àŠŸ"
+
+#: bridges.page:51
+msgid "Entering bridge addresses"
+msgstr "àŠ¬à§àŠ°àŠ¿àŠ àŠ àŠ¿àŠàŠŸàŠšàŠŸàŠà§àŠ²àŠ¿ àŠªà§àŠ°àŠ¬à§àж àŠàŠ°àŠŸàŠšà§"
+
+#: bridges.page:52
+msgid ""
+"Once you have obtained some bridge addresses, you will need to enter them "
+"into Tor Launcher."
+msgstr ""
+"àŠàŠàŠ¬àŠŸàŠ° àŠàŠªàŠšàŠ¿ àŠàŠ¿àŠà§ àŠ¬à§àŠ°àŠ¿àŠ àŠ àŠ¿àŠàŠŸàŠšàŠŸ àŠªà§àŠ°àŠŸàŠªà§àŠ€ àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒà§àŠà§, àŠàŠªàŠšàŠ¿ àŠàа àŠ²àŠà§àŠàŠŸàŠ° àŠ®àŠ§à§àŠ¯à§ àŠ€àŠŸàŠŠà§àа "
+"àŠªà§àŠ°àŠ¬à§àж àŠàŠ°àŠ€à§ àŠ¹àŠ¬à§à¥€"
+
+#: bridges.page:57
+msgid ""
+"Choose âyesâ when asked if your Internet Service Provider blocks connections"
+" to the Tor network. Select âUse custom bridgesâ and enter each bridge "
+"address on a separate line."
+msgstr ""
+"àŠàŠªàŠšàŠŸàŠ° àŠàŠšà§àŠàŠŸàŠ°àŠšà§àŠ àŠªàŠ°àŠ¿àŠ·à§àŠ¬àŠŸ àŠžàŠ°àŠ¬àŠ°àŠŸàŠ¹àŠàŠŸàŠ°à§ àŠàа àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠžàŠàНà§àŠ àŠ¬àŠšà§àЧ àŠàŠ°à§ àŠàŠ¿àŠà§àŠàŠŸàŠžàŠŸ àŠàŠ°àŠŸ"
+" àŠ¹àŠ²à§ \"àŠ¹à§àŠ¯àŠŸàŠ\" àŠàŠ¯àŠŒàŠš àŠàаà§àŠšà¥€ \"àŠàŠŸàŠžà§àŠàŠ® àŠ¬à§àŠ°àŠ¿àŠàŠà§àŠ²àŠ¿ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаà§àŠš\" àŠšàŠ¿àŠ°à§àŠ¬àŠŸàŠàŠš àŠàаà§àŠš "
+"àŠàŠ¬àŠ àŠàŠàŠàŠ¿ àŠªà§àŠ¥àŠ àŠ²àŠŸàŠàŠšà§àа àŠªà§àŠ°àŠ€àŠ¿àŠàŠ¿ àŠžà§àŠ€à§ àŠ àŠ¿àŠàŠŸàŠšàŠŸàŠàŠ¿ àŠ²àŠ¿àŠà§àŠšà¥€"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: bridges.page:63
+msgctxt "_"
+msgid ""
+"external ref='media/tor-launcher-custom-bridges_en-US.png' "
+"md5='93365c2aa3fb4d627497e83f28a39b7e'"
+msgstr ""
+"àŠ¬àŠŸàŠ¹à§àŠ¯àŠ¿àŠ àŠ°à§àŠ«='media/tor-launcher-custom-bridges_en-US.png' "
+"md5='93365c2aa3fb4d627497e83f28a39b7e'"
+
+#: bridges.page:65
+msgid ""
+"Click âConnectâ. Using bridges may slow down the connection compared to "
+"using ordinary Tor relays. 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 ""
+"\"àŠžàŠàНà§àŠ\" àŠà§àŠ²àŠ¿àŠ àŠàаà§àŠš àŠžàŠŸàŠ§àŠŸàŠ°àŠ£ àŠàа àŠ°àŠ¿àŠ²à§ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠŸàŠ° àŠžàŠŸàŠ¥à§ àŠ€à§àŠ²àŠšàŠŸàŠ¯àŠŒ àŠ¬à§àŠ°àŠ¿àŠàŠà§àŠ²àŠ¿ "
+"àŠžàŠàНà§àŠ àŠ¬àŠšà§àЧ àŠàŠ°à§ àŠŠàŠ¿àŠ€à§ àŠªàŠŸàŠ°à§à¥€ àŠžàŠàНà§àŠ àŠ¬à§àŠ¯àŠ°à§àŠ¥ àŠ¹àŠ²à§, àŠàŠªàŠšàŠ¿ àŠ¯à§ àŠ¬à§àŠ°àŠ¿àŠàŠà§àŠ²àŠ¿ àŠªà§àŠ¯àŠŒà§àŠà§àŠš àŠ€àŠŸ "
+"àŠšàŠ¿àŠà§ àŠ¹àŠ€à§ àŠªàŠŸàŠ°à§à¥€ àŠàŠ°àŠ àŠžà§àŠ€à§ àŠ àŠ¿àŠàŠŸàŠšàŠŸ àŠªà§àŠ°àŠŸàŠªà§àŠ€ àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠàŠªàŠ°à§àа àŠªàŠŠà§àŠ§àŠ€àŠ¿àŠà§àŠ²àŠ¿àŠ° àŠàŠàŠàŠ¿ "
+"àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаà§àŠš, àŠàŠ¬àŠ àŠàŠ¬àŠŸàŠ° àŠà§àŠ·à§àŠàŠŸ àŠàаà§àŠšà¥€"
+
+#: circumvention.page:6
+msgid "What to do if the Tor network is blocked"
+msgstr "àŠàŠ°à§ àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠ
àŠ¬àŠ°à§àЧ àŠàŠ°àŠ²à§ àŠàŠ¿ àŠàŠ°àŠ¬à§àŠš?"
+
+#: circumvention.page:10
+msgid "Circumvention"
+msgstr "àŠªà§àŠ°àŠ€àŠŸàŠ°àŠ£àŠŸ"
+
+#: circumvention.page:12
+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 <link xref=\"transports\">Pluggable Transports</link> "
+"page for more information on the types of transport that are currently "
+"available."
+msgstr ""
+"àŠàа àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠà§ àŠžàŠ°àŠŸàŠžàŠ°àŠ¿ àŠ
à§àŠ¯àŠŸàŠà§àŠžà§àŠžàŠàŠ¿ àŠàŠàŠšàŠ àŠàŠàŠšàŠ àŠàŠªàŠšàŠŸàŠ° àŠàŠšà§àŠàŠŸàŠ°àŠšà§àŠ àŠžàŠŸàŠ°à§àŠàŠ¿àŠž "
+"àŠªà§àаà§àŠàŠŸàŠàŠ¡àŠŸàŠ° àŠ¬àŠŸ àŠžàŠ°àŠàŠŸàŠ° àŠàаà§àŠ€à§àŠ àŠ
àŠ¬àŠ°à§àŠŠà§àЧ àŠ¥àŠŸàŠà§à¥€ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠ àŠ¬à§àŠ²àŠ àŠàŠŸàŠàŠŸàŠàŠŸàŠàŠ¿ àŠªà§àŠ€à§ "
+"àŠàŠšà§àН àŠàŠ¿àŠà§ circumvention àŠžàŠ°àŠà§àŠàŠŸàŠ® àŠ
àŠšà§àŠ€àŠ°à§àŠà§àŠà§àŠ€à¥€ àŠàŠ àŠžàŠ°àŠà§àŠàŠŸàŠ®àŠà§àŠ²àŠ¿ <link "
+"xref=\"transports\">\"àŠªà§àŠ²àŠŸàŠàНà§àŠà§àН àŠà§àŠ°àŠŸàŠšà§àŠžàŠªà§àаà§àŠàŠà§àŠ²àŠ¿\"</link> àŠ¬àŠ²àŠŸ àŠ¹àŠ¯àŠŒà¥€ àŠ¬àŠ°à§àŠ€àŠ®àŠŸàŠšà§"
+" àŠàŠªàŠ²àŠ¬à§àЧ àŠ¯à§ àŠ§àŠ°àŠšà§àа àŠ§àŠ°àŠšà§àа àŠàŠªàŠ° àŠàŠ°à§ àŠ€àŠ¥à§àНà§àа àŠàŠšà§àН àŠªà§àвà§àŠ¯àŠŸàŠà§àŠ¬àŠ² àŠà§àŠ°àŠŸàŠšà§àŠžàŠ«àŠ°à§àŠ® àŠªà§àŠ·à§àŠ àŠŸ "
+"àŠŠà§àŠà§àŠš"
+
+#: circumvention.page:22
+msgid "Using pluggable transports"
+msgstr "àŠªà§àвà§àŠ¯àŠŸàŠà§àŠ¬àŠ² àŠà§àŠ°àŠŸàŠšà§àŠžàŠªà§àаà§àŠàŠà§àŠ²àŠ¿ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаà§àŠš"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: circumvention.page:26 first-time.page:35
+msgctxt "_"
+msgid ""
+"external ref='media/circumvention/configure.png' "
+"md5='519d888303eadfe4cb03f178aedd90f5'"
+msgstr ""
+"àŠ¬àŠŸàŠ¹à§àŠ¯àŠ¿àŠ àŠ°à§àŠ«='media/circumvention/configure.png' "
+"md5='519d888303eadfe4cb03f178aedd90f5'"
+
+#: circumvention.page:28
+msgid ""
+"To use pluggable transports, click \"Configure\" in the Tor Launcher window "
+"that appears when you first run Tor Browser."
+msgstr ""
+"àŠªà§àвà§àŠ¯àŠŸàŠà§àŠ¬àŠ² àŠà§àŠ°àŠŸàŠšà§àŠžàŠ«àŠ°à§àŠ® àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠŸàŠ° àŠàŠšà§àН, àŠàа àŠ²àŠà§àŠàŠŸàŠ° àŠàŠàŠšà§àŠ¡à§àŠ€à§ \"àŠàŠšàŠ«àŠ¿àŠàŠŸàŠ° "
+"àŠàаà§àŠš\" àŠà§àŠ²àŠ¿àŠ àŠàаà§àŠš àŠ¯àŠŸ àŠàŠªàŠšàŠ¿ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°àŠàŠ¿ àŠªà§àŠ°àŠ¥àŠ® àŠàŠŸàŠ²àŠŸàŠšà§àа àŠªàŠ°à§ àŠŠà§àŠà§àŠšà¥€"
+
+#: circumvention.page:33
+msgid ""
+"You can also configure pluggable transports while Tor Browser is running, by"
+" clicking on the green onion near your address bar and selecting âTor "
+"Network Settingsâ."
+msgstr ""
+"àŠàŠªàŠšàŠŸàŠ° àŠ
à§àŠ¯àŠŸàŠ¡à§àаà§àŠž àŠ¬àŠŸàŠ°à§àа àŠªàŠŸàŠ¶à§ àŠžàŠ¬à§àŠ onion àŠ àŠà§àŠ²àŠ¿àŠ àŠàŠ°à§ àŠàŠ¬àŠ \"àŠàа àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ "
+"àŠžà§àŠàŠ¿àŠàŠž\" àŠšàŠ¿àŠ°à§àŠ¬àŠŸàŠàŠš àŠàŠ°à§ àŠàŠªàŠšàŠ¿ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠŸàŠ²àŠšàŠŸ àŠàŠ°àŠ²à§ àŠªà§àвà§àŠ¯àŠŸàŠà§àŠ¬àŠ² àŠà§àŠ°àŠŸàŠšà§àŠžàŠ«àŠ°à§àŠ®àŠà§àŠ²àŠ¿"
+" àŠàŠšàŠ«àŠ¿àŠàŠŸàŠ° àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°àŠ¬à§àŠšà¥€"
+
+#: circumvention.page:41
+msgid ""
+"Select âyesâ when asked if your Internet Service Provider blocks connections"
+" to the Tor network."
+msgstr ""
+"àŠàŠªàŠšàŠŸàŠ° àŠàŠšà§àŠàŠŸàŠ°àŠšà§àŠ àŠªàŠ°àŠ¿àŠ·à§àŠ¬àŠŸ àŠžàŠ°àŠ¬àŠ°àŠŸàŠ¹àŠàŠŸàŠ°à§ àŠàа àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠžàŠàНà§àŠ àŠ¬àŠšà§àЧ àŠàŠ°à§ àŠàŠ¿àŠà§àŠàŠŸàŠžàŠŸ àŠàŠ°àŠŸ"
+" àŠ¹àŠ²à§ \"àŠ¹à§àŠ¯àŠŸàŠ\" àŠšàŠ¿àŠ°à§àŠ¬àŠŸàŠàŠš àŠàаà§àŠšà¥€"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: circumvention.page:49
+msgctxt "_"
+msgid ""
+"external ref='media/circumvention/bridges.png' "
+"md5='910cdd5e45860b81a1ad4739c589a195'"
+msgstr ""
+"àŠ¬àŠŸàŠ¹à§àŠ¯àŠ¿àŠ àŠ°à§àŠ«='media/circumvention/bridges.png' "
+"md5='910cdd5e45860b81a1ad4739c589a195'"
+
+#: circumvention.page:51
+msgid ""
+"Select âConnect with provided bridgesâ. Tor Browser currently has six "
+"pluggable transport options to choose from."
+msgstr ""
+"\"àŠžàŠ°àŠ¬àŠ°àŠŸàŠ¹àŠà§àŠ€ àŠ¬à§àŠ°àŠ¿àŠàŠà§àŠ²àŠ¿àŠ° àŠžàŠŸàŠ¥à§ àŠžàŠàНà§àŠ àŠàаà§àŠš\" àŠšàŠ¿àŠ°à§àŠ¬àŠŸàŠàŠš àŠàаà§àŠš àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ¬àŠ°à§àŠ€àŠ®àŠŸàŠšà§ "
+"àŠ¥à§àŠà§ àŠšàŠ¿àŠ°à§àŠ¬àŠŸàŠàŠš àŠàŠ°àŠ€à§ àŠàŠ¯àŠŒ àŠªà§àвà§àŠ¯àŠŸàŠà§àŠ¬àŠ² àŠªàŠ°àŠ¿àŠ¬àŠ¹àŠš àŠ¬àŠ¿àŠàвà§àŠª àŠàŠà§"
+
+#: circumvention.page:60
+msgid "Which transport should I use?"
+msgstr "àŠà§àŠš àŠªàŠ°àŠ¿àŠ¬àŠ¹àŠš àŠàŠ®àŠ¿ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠŸ àŠàŠàŠ¿àŠ€?"
+
+#: circumvention.page:61
+msgid ""
+"Each of the transports listed in Tor Launcherâs menu works in a different "
+"way (for more details, see the <link xref=\"transports\">Pluggable "
+"Transports</link> page), and their effectiveness depends on your individual "
+"circumstances."
+msgstr ""
+"àŠàа àŠ²àŠà§àŠàŠŸàŠ°à§àа àŠ®à§àŠšà§àŠ€à§ àŠ€àŠŸàŠ²àŠ¿àŠàŠŸàŠà§àŠà§àŠ€ àŠªà§àŠ°àŠ€àŠ¿àŠàŠ¿ àŠà§àŠ°àŠŸàŠšà§àŠžàŠ²à§ àŠàŠàŠàŠ¿ àŠàŠ¿àŠšà§àŠš àŠàŠªàŠŸàŠ¯àŠŒà§ àŠàŠŸàŠ àŠàŠ°à§ "
+"(àŠàŠ°à§ àŠ¬àŠ¿àŠ¶àŠŠ àŠ¬àŠ¿àŠ¬àŠ°àŠ£à§àа àŠàŠšà§àН, <link xref=\"transports\">àŠªà§àвà§àŠ¯àŠŸàŠà§àŠ¬àŠ² "
+"àŠà§àŠ°àŠŸàŠšà§àŠžàŠ«àŠ°à§àŠ®</link> àŠªà§àŠ·à§àŠ àŠŸàŠàŠ¿ àŠŠà§àŠà§àŠš), àŠàŠ¬àŠ àŠ€àŠŸàŠŠà§àа àŠàŠŸàŠ°à§àНàŠàŠŸàŠ°àŠ¿àŠ€àŠŸ àŠàŠªàŠšàŠŸàŠ° àŠ¬à§àНàŠà§àŠ€àŠ¿àŠàŠ€ "
+"àŠªàŠ°àŠ¿àŠžà§àŠ¥àŠ¿àŠ€àŠ¿àŠ° àŠàŠªàŠ° àŠšàŠ¿àŠ°à§àŠàа àŠàаà§à¥€"
+
+#: circumvention.page:67
+msgid ""
+"If you are trying to circumvent a blocked connection for the first time, you"
+" should try the different transports: obfs3, obfs4, ScrambleSuit, fte, meek-"
+"azure, meek-amazon."
+msgstr ""
+"àŠ¯àŠŠàŠ¿ àŠàŠªàŠšàŠ¿ àŠªà§àŠ°àŠ¥àŠ®àŠ¬àŠŸàŠ°à§àа àŠàŠšà§àН àŠàŠàŠàŠ¿ àŠ¬à§àŠ²àŠ àŠàŠ°àŠŸ àŠžàŠàНà§àŠàŠà§ àŠà§àŠ£àŠŸ àŠàŠ°àŠŸàŠ° àŠà§àŠ·à§àŠàŠŸ àŠàаàŠà§àŠš, àŠ€àŠŸàŠ¹àŠ²à§"
+" àŠàŠªàŠšàŠŸàŠà§ àŠ¬àŠ¿àŠàŠ¿àŠšà§àŠš àŠà§àŠ°àŠŸàŠšà§àŠžàŠªà§àаà§àŠà§àа àŠà§àŠ·à§àŠàŠŸ àŠàŠ°àŠ€à§ àŠ¹àŠ¬à§: obfs3, obfs4, ScrambleSuit, "
+"fte, meek-azure, meek-amazonी"
+
+#: circumvention.page:72
+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 <link "
+"xref=\"bridges\">Bridges</link> section to learn what bridges are and how to"
+" obtain them."
+msgstr ""
+"àŠàŠªàŠšàŠ¿ àŠ¯àŠŠàŠ¿ àŠàŠ àŠžàŠ®àŠžà§àŠ€ àŠ¬àŠ¿àŠàвà§àŠªàŠà§àŠ²àŠ¿ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаà§àŠš, àŠàŠ¬àŠ àŠ€àŠŸàŠŠà§àа àŠà§àŠàŠ àŠàŠªàŠšàŠŸàŠà§ àŠ
àŠšàŠ²àŠŸàŠàŠšà§ àŠšàŠŸ "
+"àŠªàŠŸàŠš, àŠ€àŠ¬à§ àŠàŠªàŠšàŠŸàŠà§ àŠ®à§àŠ¯àŠŸàŠšà§àŠ¯àŠŒàŠŸàŠ²àŠ¿ àŠ¬à§àŠ°àŠ¿àŠà§àа àŠ àŠ¿àŠàŠŸàŠšàŠŸàŠà§àŠ²àŠ¿ àŠªà§àŠ°àŠ¬à§àж àŠàŠ°àŠ€à§ àŠ¹àŠ¬à§à¥€ àŠ¬à§àŠ°àŠ¿àŠàŠà§àŠ²àŠ¿ "
+"àŠà§àŠàŠŸàŠ¬à§ àŠ¶àŠ¿àŠàŠà§ àŠàŠ¬àŠ àŠàŠ¿àŠàŠŸàŠ¬à§ àŠžà§àŠà§àŠ²àŠ¿ àŠªà§àŠ€à§ àŠ¹àŠ¯àŠŒ àŠ€àŠŸ àŠ¶àŠ¿àŠàŠ€à§ <link "
+"xref=\"bridges\">àŠ¬à§àŠ°àŠ¿àŠà§àŠž</link> àŠ¬àŠ¿àŠàŠŸàŠàŠàŠ¿ àŠªàŠ¡àŠŒà§àŠšà¥€"
+
+#: downloading.page:7
+msgid "How to download Tor Browser"
+msgstr "àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ¡àŠŸàŠàŠšàŠ²à§àŠ¡ àŠàŠ¿àŠàŠŸàŠ¬à§?"
+
+#: downloading.page:10
+msgid "Downloading"
+msgstr "àŠ¡àŠŸàŠàŠšàŠ²à§àŠ¡ àŠ¹àŠà§àŠà§"
+
+#: downloading.page:12
+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 <link xref=\"secure-connections\">HTTPS</link>, which "
+"makes it much harder for somebody to tamper with."
+msgstr ""
+"àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ¡àŠŸàŠàŠšàŠ²à§àŠ¡ àŠàŠ°àŠŸàŠ° àŠžàŠ¬àŠà§àŠ¯àŠŒà§ àŠšàŠ¿àŠ°àŠŸàŠªàŠŠ àŠàŠ¬àŠ àŠžàŠ¹àŠ àŠàŠªàŠŸàŠ¯àŠŒàŠàŠ¿ àŠ¹àŠ² "
+"https://www.torproject.org àŠ àŠ
àŠ«àŠ¿àŠžàŠ¿àŠ¯àŠŒàŠŸàŠ² àŠàа àŠªà§àаàŠàвà§àŠª àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠ àŠ¥à§àŠà§à¥€ àŠžàŠŸàŠàŠàŠàŠ¿àŠ€à§ "
+"àŠàŠªàŠšàŠŸàŠ° àŠžàŠàНà§àŠàŠàŠ¿ HTTPS àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°à§ àŠžà§àаàŠà§àŠ·àŠ¿àŠ€ àŠ¥àŠŸàŠàЬà§, àŠ¯àŠŸàŠ° àŠžàŠŸàŠ¹àŠŸàŠ¯à§àŠ¯à§ àŠàŠŸàŠàŠà§ àŠàŠŸàŠàŠà§ "
+"àŠàŠ¿àŠàŠ¡àŠŒà§ àŠ«à§àŠ²àŠŸ àŠ¹àŠ¬à§à¥€"
+
+#: downloading.page:19
+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 ""
+"àŠ¯àŠŸàŠàйà§àŠ, àŠàŠ®àŠš àŠžàŠ®àŠ¯àŠŒ àŠ¹àŠ€à§ àŠªàŠŸàŠ°à§ àŠ¯àŠàŠš àŠàŠªàŠšàŠ¿ àŠàа àŠªà§àаàŠàвà§àŠª àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠ àŠ
à§àŠ¯àŠŸàŠà§àŠžà§àŠž àŠàŠ°àŠ€à§ "
+"àŠªàŠŸàŠ°àŠ¬à§àŠš àŠšàŠŸ: àŠàŠŠàŠŸàŠ¹àŠ°àŠ£àŠžà§àŠ¬àŠ°à§àŠª, àŠàŠàŠ¿ àŠàŠªàŠšàŠŸàŠ° àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠà§ àŠ¬à§àŠ²àŠ àŠàŠ°àŠŸ àŠ¯à§àŠ€à§ àŠªàŠŸàŠ°à§à¥€ àŠ¯àŠŠàŠ¿ àŠàŠàŠ¿ "
+"àŠàŠà§, àŠàŠªàŠšàŠ¿ àŠšà§àŠà§ àŠ€àŠŸàŠ²àŠ¿àŠàŠŸàŠà§àŠà§àŠ€ àŠ¬àŠ¿àŠàвà§àŠª àŠ¡àŠŸàŠàŠšàŠ²à§àŠ¡ àŠªàŠŠà§àŠ§àŠ€àŠ¿àŠà§àŠ²àŠ¿àŠ° àŠ®àŠ§à§àŠ¯à§ àŠàŠàŠàŠ¿ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° "
+"àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§àŠšà¥€"
+
+#: downloading.page:27
+msgid "GetTor"
+msgstr "GetTor"
+
+#: downloading.page:28
+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 àŠ¹àŠ² àŠàŠàŠàŠ¿ àŠªàŠ°àŠ¿àŠ·à§àŠ¬àŠŸ àŠ¯àŠŸ àŠžà§àŠ¬àŠ¯àŠŒàŠàŠà§àŠ°àŠ¿àŠ¯àŠŒàŠàŠŸàŠ¬à§ àŠ¬àŠ¿àŠàŠ¿àŠšà§àŠš àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°à§àа àŠ¡à§àŠ°àŠªàŠ¬àŠà§àŠž, "
+"Google àŠ¡à§àŠ°àŠŸàŠàŠ àŠàŠ¬àŠ Github àŠ¹àŠ¿àŠžàŠŸàŠ¬à§ àŠ¹à§àŠžà§àŠà§àа àŠžàŠ°à§àŠ¬àŠ¶à§àŠ· àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°à§àа àŠàŠ°à§ àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°à§àа "
+"àŠ²àŠ¿àŠà§àŠàŠà§àŠ²àŠ¿àŠ° àŠžàŠŸàŠ¥à§ àŠ¬àŠŸàŠ°à§àŠ€àŠŸàŠà§àŠ²àŠ¿àŠ€à§ àŠªà§àŠ°àŠ€àŠ¿àŠà§àŠ°àŠ¿àŠ¯àŠŒàŠŸ àŠŠà§àŠ¯àŠŒà¥€"
+
+#: downloading.page:34
+msgid "To use GetTor via email:"
+msgstr "àŠàŠ®à§àвà§àа àŠ®àŠŸàŠ§à§àŠ¯àŠ®à§ GetTor àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠ€à§:"
+
+#: downloading.page:39
+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- àŠ àŠàŠàŠàŠ¿ àŠàŠ®à§àв àŠªàŠŸàŠ àŠŸàŠš, àŠàŠ¬àŠ àŠ¬àŠŸàŠ°à§àŠ€àŠŸàŠàŠ¿ àŠàŠªàŠšàŠŸàŠ° àŠ
àŠªàŠŸàŠ°à§àŠàŠ¿àŠ "
+"àŠžàŠ¿àŠžà§àŠà§àŠ®à§àа àŠàŠªàŠ° àŠšàŠ¿àŠ°à§àŠàа àŠàŠ°à§ àŠ¶à§àŠ§à§ \"àŠàŠàŠšà§àŠ¡à§àŠ\", \"àŠàŠàŠžàŠàŠà§àŠž\", àŠ¬àŠŸ \"àŠ²àŠ¿àŠšàŠŸàŠà§àŠž\" "
+"(àŠàŠŠà§àЧà§àŠ€àŠ¿ àŠàŠ¿àŠ¹à§àŠš àŠàŠŸàŠ¡àŠŒàŠŸàŠ) àŠ²àŠ¿àŠà§àŠšà¥€"
+
+#: downloading.page:46
+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 àŠàŠàŠàŠ¿ àŠàŠ®à§àв àŠ§àŠŸàŠ°àŠ£àŠàŠŸàŠ°à§ àŠ²àŠ¿àŠà§àŠà§ àŠžàŠŸàŠ¡àŠŒàŠŸ àŠŠà§àŠ¬à§ àŠ¯àŠŸàŠ° àŠ¥à§àŠà§ àŠàŠªàŠšàŠ¿ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° "
+"àŠªà§àŠ¯àŠŸàŠà§àŠ àŠ¡àŠŸàŠàŠšàŠ²à§àŠ¡ àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§àŠš, àŠà§àŠ°àŠ¿àŠªà§àŠà§àŠà§àŠ°àŠŸàŠ«àŠ¿àŠ àŠžà§àŠ¬àŠŸàŠà§àŠ·àŠ° (àŠ¡àŠŸàŠàŠšàŠ²à§àŠ¡ àŠ¯àŠŸàŠàŠŸàŠ àŠàŠ°àŠŸàŠ° "
+"àŠàŠšà§àН àŠªà§àŠ°àŠ¯àŠŒà§àŠàŠšà§àŠ¯àŠŒ), àŠžà§àŠ¬àŠŸàŠà§àŠ·àŠ° àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠ¬à§àŠ¯àŠ¬àŠ¹à§àŠ€ àŠà§àŠàŠ¿àŠ° àŠàŠà§àŠà§àвà§àа àŠàŠŸàŠª àŠàŠ¬àŠ "
+"àŠªà§àŠ¯àŠŸàŠà§àŠà§àа àŠà§àŠàŠžàŠŸàŠ®à¥€ àŠàŠªàŠšàŠ¿ \"32-àŠ¬àŠ¿àŠ\" àŠ¬àŠŸ \"64-àŠ¬àŠ¿àŠ\" àŠžàŠ«à§àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ° àŠàŠ¯àŠŒàŠš àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§àŠš:"
+" àŠàŠàŠ¿ àŠàŠªàŠšàŠŸàŠ° àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠŸ àŠàŠ®à§àŠªàŠ¿àŠàŠàŠŸàŠ°à§àа àŠ®àŠ¡à§àвà§àа àŠàŠªàŠ° àŠšàŠ¿àŠ°à§àŠàа àŠàаà§à¥€"
+
+#: downloading.page:57
+msgid "To use GetTor via Twitter:"
+msgstr "àŠà§àŠàŠàŠŸàŠ°à§àа àŠ®àŠŸàŠ§à§àŠ¯àŠ®à§ GetTor àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠ€à§:"
+
+#: downloading.page:62
+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 ""
+"àŠàŠàŠž àŠàŠà§àŠžà§àа àŠàŠšà§àН àŠàŠàаà§àŠàŠ¿àŠ€à§ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ¡àŠŸàŠàŠšàŠ²à§àŠ¡ àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠ²àŠ¿àŠà§àŠ àŠªà§àŠ€à§, àŠàŠàŠ¿àŠ€à§ "
+"\"àŠàŠàŠžàŠàŠà§àŠž àŠàŠš\" àŠ¶àŠ¬à§àŠŠàŠàŠ¿ àŠŠàŠ¿àŠ¯àŠŒà§ (àŠàŠàŠ¿ àŠàŠªàŠšàŠŸàŠà§ àŠ
à§àŠ¯àŠŸàŠàŠŸàŠàŠšà§àŠàŠàŠ¿ àŠ
àŠšà§àŠžàŠ°àŠ£ àŠàŠ°àŠ€à§ àŠ¹àŠ¬à§ àŠšàŠŸ) "
+"àŠŠàŠ¿àŠ¯àŠŒà§ @get_tor- àŠ àŠàŠàŠàŠ¿ àŠžàŠ°àŠŸàŠžàŠ°àŠ¿ àŠ¬àŠŸàŠ°à§àŠ€àŠŸ àŠªàŠŸàŠ àŠŸàŠšà¥€"
+
+#: downloading.page:70
+msgid "To use GetTor via Jabber/XMPP (Tor Messenger, Jitsi, CoyIM):"
+msgstr ""
+"àŠàŠ¬àŠ¬àŠŸàŠ° / àŠàŠà§àŠžàŠàŠ®àŠªàŠ¿àŠªàŠ¿ (àŠàа àŠ®à§àŠžà§àŠà§àŠàŠŸàŠ°, àŠàŠ¿àŠà§, àŠàŠàŠàŠ®) àŠàа àŠ®àŠŸàŠ§à§àŠ¯àŠ®à§ GetTor àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° "
+"àŠàŠ°àŠ€à§:"
+
+#: downloading.page:75
+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 ""
+"àŠ²àŠ¿àŠšàŠŸàŠà§àŠžà§àа àŠàŠšà§àН àŠà§àŠšà§ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ¡àŠŸàŠàŠšàŠ²à§àŠ¡ àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠ²àŠ¿àŠà§àŠ àŠªà§àŠ€à§ "
+"<a>Gettor(a)torproject.org</a>- àŠ àŠàŠàŠàŠ¿ àŠ¬àŠŸàŠ°à§àŠ€àŠŸ àŠªàŠŸàŠ àŠŸàŠš àŠ¯àŠŸàŠ€à§ \"linux zh\" àŠ¶àŠ¬à§àŠŠàŠàŠ¿ "
+"àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаà§àŠšà¥€"
+
+#: downloading.page:84
+msgid "Satori"
+msgstr "Satori"
+
+#: downloading.page:85
+msgid ""
+"Satori is an add-on for the Chrome or Chromium browsers that allows you to "
+"download several security and privacy programs from different sources."
+msgstr ""
+"àŠžàŠà§àŠ°àŠ¿ àŠà§àаà§àŠ® àŠ¬àŠŸ àŠà§àаà§àŠ® àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°àŠà§àŠ²àŠ¿àŠ° àŠàŠšà§àН àŠàŠàŠàŠ¿ àŠ
à§àŠ¯àŠŸàŠ¡-àŠ
àŠš àŠ¯àŠŸ àŠàŠªàŠšàŠŸàŠà§ àŠ¬àŠ¿àŠàŠ¿àŠšà§àŠš àŠàŠ€à§àŠž"
+" àŠ¥à§àŠà§ àŠ¬àŠ¿àŠàŠ¿àŠšà§àŠš àŠšàŠ¿àŠ°àŠŸàŠªàŠ€à§àŠ€àŠŸ àŠàŠ¬àŠ àŠà§àŠªàŠšà§àŠ¯àŠŒàŠ€àŠŸ àŠªà§àаà§àŠà§àŠ°àŠŸàŠ®àŠà§àŠ²àŠ¿ àŠ¡àŠŸàŠàŠšàŠ²à§àŠ¡ àŠàŠ°àŠ€à§ àŠŠà§àŠ¯àŠŒà¥€"
+
+#: downloading.page:90
+msgid "To download Tor Browser using Satori:"
+msgstr "Satori àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°à§ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ¡àŠŸàŠàŠšàŠ²à§àŠ¡ àŠàŠ°àŠ€à§:"
+
+#: downloading.page:95
+msgid "Install Satori from the Chrome App Store."
+msgstr "Chrome àŠ
à§àŠ¯àŠŸàŠª àŠžà§àŠà§àа àŠ¥à§àŠà§ Satori àŠàŠšàŠžà§àŠàв àŠàаà§àŠšà¥€"
+
+#: downloading.page:100
+msgid "Select Satori from your browserâs Apps menu."
+msgstr "àŠàŠªàŠšàŠŸàŠ° àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°à§àа àŠ
à§àŠ¯àŠŸàŠªàŠž àŠ®à§àŠšà§ àŠ¥à§àŠà§ Satori àŠšàŠ¿àŠ°à§àŠ¬àŠŸàŠàŠš àŠàаà§àŠšà¥€"
+
+#: downloading.page:105
+msgid ""
+"When Satori opens, click on your preferred language. A menu will open "
+"listing the available downloads for that language. Find the entry for Tor "
+"Browser under the name of your operating system. Select either âAâ or âBâ "
+"after the name of the program â each one represents a different source from "
+"which to get the software. Your download will then begin."
+msgstr ""
+"Satori àŠ¯àŠàŠš àŠà§àвà§, àŠàŠªàŠšàŠŸàŠ° àŠªàŠàŠšà§àŠŠà§àа àŠàŠŸàŠ·àŠŸàŠ€à§ àŠà§àŠ²àŠ¿àŠ àŠàаà§àŠšà¥€ àŠàŠàŠàŠ¿ àŠ®à§àŠšà§ àŠà§àŠ²àŠŸ àŠ¹àŠ¬à§ àŠ¯à§ àŠàŠŸàŠ·àŠŸ"
+" àŠàŠšà§àН àŠàŠªàŠ²àŠ¬à§àЧ àŠ¡àŠŸàŠàŠšàŠ²à§àŠ¡ àŠ€àŠŸàŠ²àŠ¿àŠàŠŸà¥€ àŠàŠªàŠšàŠŸàŠ° àŠ
àŠªàŠŸàŠ°à§àŠàŠ¿àŠ àŠžàŠ¿àŠžà§àŠà§àŠ®à§àа àŠšàŠŸàŠ®à§àа àŠ
àŠ§à§àŠšà§ àŠàа "
+"àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°à§àа àŠàŠšà§àН àŠàŠšà§àŠà§àŠ°àŠ¿ àŠà§àŠàŠà§àŠšà¥€ àŠªà§àаà§àŠà§àŠ°àŠŸàŠ®à§àа àŠšàŠŸàŠ® àŠ
àŠšà§àŠžàŠŸàŠ°à§ \"A\" àŠ¬àŠŸ \"B\" "
+"àŠšàŠ¿àŠ°à§àŠ¬àŠŸàŠàŠš àŠàаà§àŠš - àŠªà§àŠ°àŠ€àŠ¿àŠàŠ¿ àŠžàŠ«à§àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ° àŠªàŠŸàŠàŠ¯àŠŒàŠŸàŠ° àŠàŠšà§àН àŠàŠàŠàŠ¿ àŠàŠ¿àŠšà§àŠš àŠà§àŠž àŠªà§àŠ°àŠ€àŠ¿àŠšàŠ¿àŠ§àŠ¿àŠ€à§àЬ"
+" àŠàаà§à¥€ àŠàŠªàŠšàŠŸàŠ° àŠ¡àŠŸàŠàŠšàŠ²à§àŠ¡ àŠ€àŠŸàŠ°àŠªàŠ° àŠ¶à§àŠ°à§ àŠ¹àŠ¬à§à¥€"
+
+#: downloading.page:115
+msgid ""
+"Wait for your download to finish, then find the âGenerate Hashâ section in "
+"Satoriâs menu and click âSelect Filesâ."
+msgstr ""
+"àŠàŠªàŠšàŠŸàŠ° àŠ¡àŠŸàŠàŠšàŠ²à§àŠ¡ àŠ¶à§àŠ· àŠ¹àŠàŠ¯àŠŒàŠŸàŠ° àŠàŠšà§àН àŠ
àŠªà§àŠà§àŠ·àŠŸ àŠàаà§àŠš, àŠ€àŠŸàŠ°àŠªàŠ° Satori àŠàа àŠ®à§àŠšà§àŠ€à§ \"àŠ¹à§àŠ¯àŠŸàŠ¶ "
+"àŠ€à§àŠ°àŠ¿ àŠàаà§àŠš\" àŠ¬àŠ¿àŠàŠŸàŠàŠàŠ¿ àŠà§àŠàŠà§àŠš àŠàŠ¬àŠ \"àŠ«àŠŸàŠàв àŠšàŠ¿àŠ°à§àŠ¬àŠŸàŠàŠš àŠàаà§àŠš\" àŠ àŠà§àŠ²àŠ¿àŠ àŠàаà§àŠšà¥€"
+
+#: downloading.page:121
+msgid ""
+"Select the downloaded Tor Browser file. Satori will display the checksum of "
+"the file, which you should compare with the softwareâs original checksum: "
+"you can find this by clicking the word âchecksumâ after the link you clicked"
+" on to start the download. If the checksums match, your download was "
+"successful, and you can <link xref=\"first-time\">begin using Tor "
+"Browser</link>. If they do not match, you may need to try downloading again,"
+" or from a different source."
+msgstr ""
+"àŠ¡àŠŸàŠàŠšàŠ²à§àŠ¡ àŠàŠ°àŠŸ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ«àŠŸàŠàвàŠàŠ¿ àŠšàŠ¿àŠ°à§àŠ¬àŠŸàŠàŠš àŠàаà§àŠšà¥€ Satori àŠ«àŠŸàŠàвà§àа àŠà§àŠàŠžàŠŸàŠ® àŠªà§àŠ°àŠŠàŠ°à§àŠ¶àŠš "
+"àŠàŠ°àŠ¬à§, àŠ¯àŠŸ àŠàŠªàŠšàŠŸàŠà§ àŠžàŠ«àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ°à§àа àŠ®à§àв àŠà§àŠàŠžàŠŸàŠ®à§àа àŠžàŠŸàŠ¥à§ àŠ€à§àŠ²àŠšàŠŸ àŠàŠ°àŠŸ àŠàŠàŠ¿àŠ€: àŠ¡àŠŸàŠàŠšàŠ²à§àŠ¡àŠàŠ¿ "
+"àŠ¡àŠŸàŠàŠšàŠ²à§àŠ¡ àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠàŠªàŠšàŠ¿ àŠ¯à§ àŠ²àŠ¿àŠà§àŠàŠàŠ¿ àŠà§àŠ²àŠ¿àŠ àŠàаà§àŠà§àŠš àŠ€àŠŸàŠ° àŠªàŠ°à§ àŠàŠªàŠšàŠ¿ \"àŠà§àŠàŠžàŠŸàŠ®\" "
+"àŠ¶àŠ¬à§àŠŠàŠàŠ¿ àŠà§àŠ²àŠ¿àŠ àŠàŠ°à§ àŠàŠàŠ¿ àŠà§àŠàŠà§ àŠªà§àŠ€à§ àŠªàŠŸàŠ°à§àŠšà¥€ àŠ¯àŠŠàŠ¿ checksums àŠ®àŠ¿àŠ²àŠ¿àŠ€ àŠ¹àŠ¯àŠŒ, àŠàŠªàŠšàŠŸàŠ° "
+"àŠ¡àŠŸàŠàŠšàŠ²à§àŠ¡ àŠžàŠ«àŠ² àŠ¹àŠ¯àŠŒà§àŠà§, àŠàŠ¬àŠ àŠàŠªàŠšàŠ¿ <link xref=\"first-time\">àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°</link> "
+"àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°à§ àŠ¶à§àŠ°à§ àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§àŠšà¥€ àŠ¯àŠŠàŠ¿ àŠ€àŠŸàŠ°àŠŸ àŠ®àŠ¿àŠ²àŠ¿àŠ€ àŠšàŠŸ àŠ¹àŠ¯àŠŒ, àŠ€àŠ¬à§ àŠàŠªàŠšàŠŸàŠà§ àŠàŠ¬àŠŸàŠ° àŠ¡àŠŸàŠàŠšàŠ²à§àŠ¡ "
+"àŠàŠ°àŠŸàŠ° àŠà§àŠ·à§àŠàŠŸ àŠàŠ°àŠ€à§ àŠ¹àŠ€à§ àŠªàŠŸàŠ°à§, àŠ
àŠ¥àŠ¬àŠŸ àŠàŠàŠàŠ¿ àŠàŠ¿àŠšà§àŠš àŠà§àŠž àŠ¥à§àŠà§à¥€"
+
+#: first-time.page:7
+msgid "Learn how to use Tor Browser for the first time"
+msgstr "àŠªà§àŠ°àŠ¥àŠ®àŠ¬àŠŸàŠ° àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠ¿àŠàŠŸàŠ¬à§ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠ¬à§àŠš àŠàŠŸàŠšà§àŠš"
+
+#: first-time.page:10
+msgid "Running Tor Browser for the first time"
+msgstr "àŠªà§àŠ°àŠ¥àŠ®àŠ¬àŠŸàŠ° àŠ°àŠŸàŠš àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°"
+
+#: first-time.page:12
+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 ""
+"àŠàŠªàŠšàŠ¿ àŠªà§àŠ°àŠ¥àŠ®àŠ¬àŠŸàŠ° àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠŸàŠ²àŠŸàŠšà§àа àŠžàŠ®àŠ¯àŠŒ, àŠàŠªàŠšàŠ¿ àŠàа àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠžà§àŠàŠ¿àŠàŠž àŠàŠàŠšà§àŠ¡à§ "
+"àŠŠà§àŠàŠ€à§ àŠªàŠŸàŠ¬à§àŠšà¥€ àŠàŠàŠ¿ àŠàŠªàŠšàŠŸàŠà§ àŠàа àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠà§ àŠžàŠ°àŠŸàŠžàŠ°àŠ¿ àŠžàŠàНà§àŠà§àа àŠ¬àŠ¿àŠàвà§àŠª àŠªà§àŠ°àŠŠàŠŸàŠš àŠàаà§, "
+"àŠ
àŠ¥àŠ¬àŠŸ àŠàŠªàŠšàŠŸàŠ° àŠžàŠàНà§àŠà§àа àŠàŠšà§àН àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠšàŠ«àŠ¿àŠàŠŸàŠ° àŠàŠ°àŠ€à§ àŠŠà§àŠ¯àŠŒà¥€"
+
+#: first-time.page:19
+msgid "Connect"
+msgstr "àŠžàŠàНà§àŠ àŠàŠ°àŠŸ"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: first-time.page:21 troubleshooting.page:18
+msgctxt "_"
+msgid ""
+"external ref='media/first-time/connect.png' "
+"md5='9d07068f751a3bfd274365a4ba8d90ca'"
+msgstr ""
+"àŠ¬àŠŸàŠ¹à§àŠ¯àŠ¿àŠ àŠ°à§àŠ«='media/first-time/connect.png' "
+"md5='9d07068f751a3bfd274365a4ba8d90ca'"
+
+#: first-time.page:23
+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 "
+"<link xref=\"troubleshooting\">Troubleshooting</link> page for help solving "
+"the problem."
+msgstr ""
+"àŠ¬à§àŠ¶àŠ¿àŠ°àŠàŠŸàŠ àŠà§àŠ·à§àŠ€à§àаà§, \"àŠžàŠàНà§àŠ\" àŠšàŠ¿àŠ°à§àŠ¬àŠŸàŠàŠš àŠàŠ°àŠŸ àŠ¹àŠ²à§ àŠàŠªàŠšàŠ¿ àŠàа àŠàŠŸ àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠ¥à§àŠà§ "
+"àŠžàŠàНà§àŠ àŠžà§àŠ¥àŠŸàŠªàŠšà§àа àŠ
àŠšà§àŠ®àŠ€àŠ¿ àŠŠà§àŠ¬à§ àŠšàŠŸà¥€ àŠàŠàŠ¬àŠŸàŠ° àŠà§àŠ²àŠ¿àŠ àŠàŠ°àŠ²à§, àŠàа àŠàа àŠžàŠàНà§àŠ àŠ
àŠà§àаàŠàŠ€àŠ¿ àŠŠà§àŠàŠŸàŠšà§ "
+"àŠ¹àŠ¬à§, àŠàŠàŠàŠ¿ àŠžà§àŠà§àŠ¯àŠŸàŠàŠŸàŠž àŠ¬àŠŸàŠ° àŠªà§àŠ°àŠŠàŠ°à§àŠ¶àŠ¿àŠ€ àŠ¹àŠ¬à§à¥€ àŠ¯àŠŠàŠ¿ àŠàŠªàŠšàŠ¿ àŠàŠàŠàŠ¿ àŠ
àŠªà§àŠà§àŠ·àŠŸàŠà§àŠ€ àŠŠà§àаà§àŠ€ àŠžàŠàНà§àŠ "
+"àŠàŠà§, àŠàŠ¿àŠšà§àŠ€à§ àŠàŠ àŠ¬àŠŸàŠ° àŠàŠàŠàŠ¿ àŠšàŠ¿àŠ°à§àŠŠàŠ¿àŠ·à§àŠ àŠžàŠ®àŠ¯àŠŒà§ àŠàŠàŠà§ àŠ®àŠšà§ àŠ¹àŠ¯àŠŒ, <link "
+"xref=\"troubleshooting\">àŠžàŠ®àŠžà§àŠ¯àŠŸàŠ° àŠžàŠ®àŠŸàŠ§àŠŸàŠš</link> àŠžàŠŸàŠ¹àŠŸàŠ¯à§àНà§àа àŠàŠšà§àН àŠžàŠ®àŠžà§àŠ¯àŠŸ àŠžàŠ®àŠŸàŠ§àŠŸàŠš "
+"àŠªà§àŠ·à§àŠ àŠŸ àŠŠà§àŠà§àŠšà¥€"
+
+#: first-time.page:33
+msgid "Configure"
+msgstr "àŠàŠšàŠ«àŠ¿àŠàŠŸàŠ° àŠàаà§àŠš"
+
+#: first-time.page:37
+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 ""
+"àŠ¯àŠŠàŠ¿ àŠàŠªàŠšàŠ¿ àŠàŠŸàŠšà§àŠš àŠ¯à§ àŠàŠªàŠšàŠŸàŠ° àŠžàŠàНà§àŠ àŠžà§àŠšà§àŠžàŠ° àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒ, àŠ¬àŠŸ àŠªà§àаàŠà§àŠžàŠ¿ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаà§, àŠàŠªàŠšàŠ¿ "
+"àŠàŠ àŠ¬àŠ¿àŠàвà§àŠªàŠàŠ¿ àŠšàŠ¿àŠ°à§àŠ¬àŠŸàŠàŠš àŠàŠ°àŠŸ àŠàŠàŠ¿àŠ€à¥€ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠšàŠ«àŠ¿àŠàŠŸàŠ°à§àŠ¶àŠš àŠ¬àŠ¿àŠàвà§àŠªàŠà§àŠ²àŠ¿àŠ° àŠàŠàŠàŠ¿ àŠžàŠ¿àŠ°àŠ¿àŠ"
+" àŠ®àŠŸàŠ§à§àŠ¯àŠ®à§ àŠàŠªàŠšàŠŸàŠà§ àŠšàŠ¿àŠ¯àŠŒà§ àŠ¯àŠŸàŠ¬à§à¥€"
+
+#: first-time.page:44
+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 <link "
+"xref=\"circumvention\">Circumvention</link> screen to configure a pluggable "
+"transport."
+msgstr ""
+"àŠàа àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠ
à§àŠ¯àŠŸàŠà§àŠžà§àŠž àŠàŠªàŠšàŠŸàŠ° àŠžàŠàНà§àŠ àŠ¬à§àŠ²àŠ àŠ¬àŠŸ àŠžà§àŠšà§àŠžàŠ° àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒ àŠàŠ¿àŠšàŠŸ àŠªà§àŠ°àŠ¥àŠ® àŠªàŠ°à§àŠŠàŠŸ "
+"àŠàŠ¿àŠà§àŠàŠŸàŠžàŠŸà¥€ àŠ¯àŠŠàŠ¿ àŠàŠªàŠšàŠ¿ àŠ¬àŠ¿àŠ¶à§àŠ¬àŠŸàŠž àŠàаà§àŠš àŠšàŠŸ àŠàŠàŠ¿ àŠàŠ àŠà§àŠ·à§àŠ€à§àаà§, \"àŠšàŠŸ\" àŠšàŠ¿àŠ°à§àŠ¬àŠŸàŠàŠš àŠàаà§àŠš àŠ¯àŠŠàŠ¿"
+" àŠàŠªàŠšàŠ¿ àŠàŠŸàŠšà§àŠš àŠ¯à§ àŠàŠªàŠšàŠŸàŠ° àŠžàŠàНà§àŠ àŠžà§àŠšà§àŠžàŠ° àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒà§àŠà§, àŠ¬àŠŸ àŠàŠªàŠšàŠ¿ àŠà§àŠ·à§àŠàŠŸ àŠàаà§àŠà§àŠš àŠàŠ¬àŠ àŠàа "
+"àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠà§ àŠžàŠàНà§àŠ àŠàŠ°àŠ€à§ àŠ¬à§àŠ¯àŠ°à§àŠ¥ àŠ¹àŠ¯àŠŒà§àŠà§àŠš àŠàŠ¬àŠ àŠ
àŠšà§àН àŠà§àŠšà§ àŠžàŠ®àŠŸàŠ§àŠŸàŠš àŠàŠŸàŠ àŠàаà§àŠšàŠ¿, "
+"\"àŠ¹à§àŠ¯àŠŸàŠ\" àŠšàŠ¿àŠ°à§àŠ¬àŠŸàŠàŠš àŠàаà§àŠšà¥€ àŠàŠàŠàŠ¿ àŠªà§àвà§àŠ¯àŠŸàŠà§àŠ¬àŠ² àŠà§àŠ°àŠŸàŠšà§àŠžàŠªà§àаà§àŠ àŠàŠšàŠ«àŠ¿àŠàŠŸàŠ° àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠàŠªàŠšàŠ¿"
+" àŠ€àŠŸàŠ°àŠªàŠ° <link xref=\"circumvention\">àŠžàŠŸàŠ°à§àŠà§àŠ®àŠŸàŠ®à§àŠªàŠ¶àŠš</link> àŠžà§àŠà§àаà§àŠšà§ àŠšàŠ¿àŠ¯àŠŒà§ "
+"àŠ¯àŠŸàŠ¬à§àŠšà¥€"
+
+#: first-time.page:55
+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 ""
+"àŠàŠªàŠšàŠŸàŠ° àŠžàŠàНà§àŠ àŠàŠàŠàŠ¿ àŠªà§àаàŠà§àŠžàŠ¿ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°à§ àŠªàŠ°à§àа àŠžà§àŠà§àŠ°àŠ¿àŠš àŠàŠ¿àŠà§àŠà§àŠž àŠàаà§à¥€ àŠ¬à§àŠ¶àŠ¿àŠ°àŠàŠŸàŠ "
+"àŠà§àŠ·à§àŠ€à§àаà§, àŠàŠàŠ¿ àŠªà§àŠ°àŠ¯àŠŒà§àŠàŠšà§àŠ¯àŠŒ àŠšàŠ¯àŠŒà¥€ àŠàŠªàŠšàŠ¿ àŠ¯àŠŠàŠ¿ \"àŠ¹à§àŠ¯àŠŸàŠ\" àŠàŠ€à§àŠ€àŠ° àŠŠàŠ¿àŠ€à§ àŠàŠŸàŠš àŠ€àŠ¬à§ àŠàŠªàŠšàŠ¿ "
+"àŠžàŠŸàŠ§àŠŸàŠ°àŠ£àŠ€ àŠàŠŸàŠšàŠ€à§ àŠªàŠŸàŠ°àŠ¬à§àŠš, àŠàŠàŠ àŠžà§àŠàŠ¿àŠàŠž àŠàŠªàŠšàŠŸàŠ° àŠžàŠ¿àŠžà§àŠà§àŠ®à§àа àŠ
àŠšà§àŠ¯àŠŸàŠšà§àН àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°à§àа àŠàŠšà§àН "
+"àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠŸ àŠ¹àŠ¬à§à¥€ àŠ¯àŠŠàŠ¿ àŠžàŠ®à§àŠàЬ àŠ¹àŠ¯àŠŒ àŠ€àŠŸàŠ¹àŠ²à§, àŠšàŠ¿àŠ°à§àŠŠà§àŠ¶àŠ¿àŠàŠŸàŠàŠ¿àŠ° àŠàŠšà§àН àŠàŠªàŠšàŠŸàŠ° àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ "
+"àŠªà§àŠ°àŠ¶àŠŸàŠžàŠà§àа àŠàŠŸàŠà§ àŠàŠ¿àŠà§àŠàŠŸàŠžàŠŸ àŠàаà§àŠšà¥€ àŠ¯àŠŠàŠ¿ àŠàŠªàŠšàŠŸàŠ° àŠžàŠàНà§àŠ àŠà§àŠšàŠ àŠªà§àаàŠà§àŠžàŠ¿ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠšàŠŸ àŠàаà§, "
+"\"àŠ
àŠ¬àŠ¿àŠ°àŠ€\" àŠà§àŠ²àŠ¿àŠ àŠàаà§àŠš"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: first-time.page:63
+msgctxt "_"
+msgid ""
+"external ref='media/first-time/proxy_question.png' "
+"md5='30853b3e86cfd386bbc32e5b8b45a378'"
+msgstr ""
+"àŠ¬àŠŸàŠ¹à§àŠ¯àŠ¿àŠ àŠ°à§àŠ«='media/first-time/proxy_question.png' "
+"md5='30853b3e86cfd386bbc32e5b8b45a378'"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: first-time.page:66
+msgctxt "_"
+msgid ""
+"external ref='media/first-time/proxy.png' "
+"md5='13f21a351cd0aa1cf11aada690f3dc90'"
+msgstr ""
+"àŠ¬àŠŸàŠ¹à§àŠ¯àŠ¿àŠ àŠ°à§àŠ«='media/first-time/proxy.png' "
+"md5='13f21a351cd0aa1cf11aada690f3dc90'"
+
+#: index.page:6
+msgid "Tor Browser User Manual"
+msgstr "àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠàŠàŠŸàŠ° àŠ®à§àŠ¯àŠŸàŠšà§àŠ¯àŠŒàŠŸàŠ²"
+
+#: known-issues.page:6
+msgid "A list of known issues."
+msgstr "àŠªàŠ°àŠ¿àŠàŠ¿àŠ€ àŠ¬àŠ¿àŠ·àŠ¯àŠŒàŠà§àŠ²àŠ¿àŠ° àŠàŠàŠàŠ¿ àŠ€àŠŸàŠ²àŠ¿àŠàŠŸ"
+
+#: known-issues.page:10
+msgid "Known Issues"
+msgstr "àŠà§àŠàŠŸàŠ€ àŠžàŠ®àŠžà§àŠ¯àŠŸ"
+
+#: known-issues.page:14
+msgid ""
+"Tor needs your system clock (and your time zone) set to the correct time."
+msgstr "àŠàа àŠàŠªàŠšàŠŸàŠ° àŠžàŠ¿àŠžà§àŠà§àŠ® àŠàŠ¡àŠŒàŠ¿ àŠªà§àŠ°àŠ¯àŠŒà§àŠàŠš (àŠàŠ¬àŠ àŠàŠªàŠšàŠŸàŠ° àŠžàŠ®àŠ¯àŠŒ àŠ
àŠà§àŠàв) àŠžàŠ àŠ¿àŠ àŠžàŠ®àŠ¯àŠŒ àŠžà§àŠà¥€"
+
+#: known-issues.page:19
+msgid ""
+"The following firewall software have been known to interfere with Tor and "
+"may need to be temporarily disabled:"
+msgstr ""
+"àŠšàŠ¿àŠ®à§àŠšàŠ²àŠ¿àŠàŠ¿àŠ€ àŠ«àŠŸàŠ¯àŠŒàŠŸàŠ°àŠàŠ¯àŠŒàŠŸàŠ² àŠžàŠ«à§àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ° àŠàа àŠ®àŠ§à§àŠ¯à§ àŠ¹àŠžà§àŠ€àŠà§àŠ·à§àŠª àŠªàŠ°àŠ¿àŠàŠ¿àŠ€ àŠ¹àŠ¯àŠŒà§àŠà§ àŠàŠ¬àŠ "
+"àŠžàŠŸàŠ®àŠ¯àŠŒàŠ¿àŠàŠàŠŸàŠ¬à§ àŠ
àŠà§àŠ·àŠ® àŠàŠ°àŠŸ àŠªà§àŠ°àŠ¯àŠŒà§àŠàŠš àŠ¹àŠ€à§ àŠªàŠŸàŠ°à§:"
+
+#: known-issues.page:23
+msgid "Webroot SecureAnywhere"
+msgstr "Webroot Secure Anywhere"
+
+#: known-issues.page:26
+msgid "Kaspersky Internet Security 2012"
+msgstr "Kaspersky Internet Security 2012"
+
+#: known-issues.page:29
+msgid "Sophos Antivirus for Mac"
+msgstr "àŠ®à§àŠ¯àŠŸàŠà§àа àŠàŠšà§àН àŠžà§àŠ«à§àŠž àŠ
à§àŠ¯àŠŸàŠšà§àŠàŠ¿àŠàŠŸàŠàŠ°àŠŸàŠž"
+
+#: known-issues.page:32
+msgid "Microsoft Security Essentials"
+msgstr "Microsoft Security Essentials"
+
+#: known-issues.page:37
+msgid ""
+"Videos that require Adobe Flash are unavailable. Flash is disabled for "
+"security reasons."
+msgstr ""
+"àŠàŠ®àŠš àŠàŠ¿àŠ¡àŠ¿àŠàŠà§àŠ²àŠ¿ àŠ¯àŠŸ Adobe Flash àŠàа àŠªà§àŠ°àŠ¯àŠŒà§àŠàŠš àŠ¹àŠ¯àŠŒ àŠ
àŠšà§àŠªàŠ²àŠ¬à§àŠ§à¥€ àŠšàŠ¿àŠ°àŠŸàŠªàŠ€à§àŠ€àŠŸàŠ° àŠàŠŸàŠ°àŠ£à§ "
+"àŠ«à§àвà§àŠ¯àŠŸàŠ¶ àŠ
àŠà§àŠ·àŠ® àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒà§àŠà§à¥€"
+
+#: known-issues.page:43
+msgid "Tor can not use a bridge if a proxy is set."
+msgstr "àŠàŠàŠàŠ¿ àŠªà§àаàŠà§àŠžàŠ¿ àŠžà§àŠ àŠàŠ°àŠŸ àŠ¹àŠ²à§ àŠàа àŠàŠàŠàŠ¿ àŠžà§àŠ€à§ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°àŠ¬à§àŠš àŠšàŠŸà¥€"
+
+#: known-issues.page:48
+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 ""
+"àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠªà§àŠ¯àŠŸàŠà§àŠ 1 àŠàŠŸàŠšà§àŠ¯àŠŒàŠŸàŠ°à§, 2000 00:00:00 àŠàŠàŠàŠ¿àŠžàŠ¿ àŠ€àŠŸàŠ°àŠ¿àŠà¥€ àŠàŠàŠ¿ àŠšàŠ¿àŠ¶à§àŠàŠ¿àŠ€ "
+"àŠàŠ°àŠ€à§ àŠ¹àŠ¬à§ àŠ¯à§ àŠªà§àŠ°àŠ€àŠ¿àŠàŠ¿ àŠžàŠ«à§àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ° àŠ¬àŠ¿àŠ²à§àŠ¡àŠ àŠžàŠ àŠ¿àŠàŠàŠŸàŠ¬à§ àŠàŠ€à§àŠªàŠŸàŠŠàŠ¿àŠ€ àŠ¹àŠ¯àŠŒà¥€"
+
+#: known-issues.page:54
+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 ""
+"àŠàЬà§àŠšà§àŠà§àŠ€à§ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠŸàŠ²àŠŸàŠšà§àа àŠàŠšà§àН, àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ°àŠàŠŸàŠ°à§àŠŠà§àа àŠàŠàŠàŠ¿ àŠ¶à§àв àŠžà§àŠà§àŠ°àŠ¿àŠªà§àŠ àŠàŠŸàŠ²àŠŸàŠšà§"
+" àŠªà§àŠ°àŠ¯àŠŒà§àŠàŠšà¥€ \"àŠ«àŠŸàŠàвàŠà§àŠ²àŠ¿\" (àŠàŠàŠšàŠ¿àŠàŠ¿ àŠàа àŠàŠà§àŠžàŠªà§àвà§àŠ°àŠŸàŠ°) àŠà§àвà§àŠš, àŠàŠªà§àŠš àŠªà§àаà§àŠ«àŠŸàŠ°à§àŠšà§àŠž â "
+"àŠàŠàŠ°àŠ£ àŠà§àŠ¯àŠŸàŠ¬ â àŠžà§àŠ àŠàаà§àŠš \"àŠàŠà§àŠžàŠ¿àŠàŠ¿àŠàŠà§àŠ¬àŠ² àŠà§àŠà§àŠžàŠ àŠ«àŠŸàŠàвàŠà§àŠ²àŠ¿ àŠ¯àŠàŠš àŠà§àŠ²àŠŸ àŠ¹àŠ¯àŠŒ àŠ€àŠàŠš\" "
+"\"àŠªà§àŠ°àŠ€à§àНà§àŠàŠ¬àŠŸàŠ° àŠàŠ¿àŠà§àŠàŠŸàŠžàŠŸ àŠàаà§àŠš\" -àŠ àŠà§àŠ²àŠ¿àŠ àŠàаà§àŠš, àŠ€àŠŸàŠ°àŠªàŠ° àŠ àŠ¿àŠ àŠàŠà§ àŠà§àŠ²àŠ¿àŠ àŠàаà§àŠšà¥€"
+
+#: known-issues.page:62
+msgid ""
+"Tor Browser can also be started from the command line by running the "
+"following command from inside the Tor Browser directory:"
+msgstr ""
+"àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°à§àа àŠàŠ¿àŠ€àŠ° àŠ¥à§àŠà§ àŠšàŠ¿àŠ®à§àŠšà§àŠà§àŠ€ àŠàŠ®àŠŸàŠšà§àŠ¡àŠàŠ¿ àŠàŠŸàŠ²àŠŸàŠšà§àа àŠ®àŠŸàŠ§à§àŠ¯àŠ®à§ àŠàŠ®àŠŸàŠšà§àŠ¡ àŠ²àŠŸàŠàŠš àŠ¥à§àŠà§ "
+"àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°àŠàŠ¿ àŠàŠŸàŠ²à§ àŠàŠ°àŠŸ àŠ¯àŠŸàŠ¯àŠŒ:"
+
+#: known-issues.page:66
+#, no-wrap
+msgid ""
+"\n"
+" ./start-tor-browser.desktop\n"
+" "
+msgstr ""
+"\n"
+" ./start-tor-browser.desktop\n"
+" "
+
+#: managing-identities.page:6
+msgid "Learn how to control personally-identifying information in Tor Browser"
+msgstr ""
+"àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°à§ àŠ¬à§àНàŠà§àŠ€àŠ¿àŠàŠ€àŠàŠŸàŠ¬à§ àŠžàŠšàŠŸàŠà§àŠ€àŠàŠŸàŠ°à§ àŠ€àŠ¥à§àН àŠà§àŠàŠŸàŠ¬à§ àŠšàŠ¿àŠ¯àŠŒàŠšà§àŠ€à§àŠ°àŠ£ àŠàŠ°àŠ¬à§àŠš àŠ€àŠŸ àŠàŠŸàŠšà§àŠš"
+
+#: managing-identities.page:10
+msgid "Managing identities"
+msgstr "àŠžàŠšàŠŸàŠà§àŠ€àŠàŠ°àŠ£ àŠªàŠ°àŠ¿àŠàŠŸàŠ²àŠšàŠŸ"
+
+#: managing-identities.page:12
+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 ""
+"àŠ¯àŠàŠš àŠàŠªàŠšàŠ¿ àŠà§àŠšàŠ àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠà§àа àŠžàŠŸàŠ¥à§ àŠžàŠàНà§àŠà§àŠ€ àŠ¹àŠš, àŠàŠàŠ¿ àŠà§àŠ¬àŠ² àŠžà§àŠ àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠà§àа àŠ
àŠªàŠŸàŠ°à§àŠàа "
+"àŠšàŠ¯àŠŒ àŠ¯àŠŸ àŠàŠªàŠšàŠŸàŠ° àŠŠàŠ°à§àŠ¶àŠš àŠžàŠ®à§àŠªàŠ°à§àŠà§ àŠ€àŠ¥à§àН àŠ°à§àŠàаà§àŠ¡ àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§à¥€ àŠ¬à§àŠ¶àŠ¿àŠ°àŠàŠŸàŠ àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠ àŠàŠàŠš "
+"àŠžà§àжà§àŠ¯àŠŸàŠ² àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠàŠ¿àŠ \"àŠ¬à§àŠ€àŠŸàŠ®àŠà§àŠ²àŠ¿\", àŠàŠšàŠŸàŠ²àŠ¿àŠàŠ¿àŠà§àŠž àŠà§àаà§àŠ¯àŠŸàŠàŠŸàŠ°à§àŠž àŠàŠ¬àŠ àŠ¬àŠ¿àŠà§àŠàŠŸàŠªàŠš àŠ¬à§àŠàŠš"
+" àŠžàŠ¹ àŠ¬àŠ¿àŠàŠ¿àŠšà§àŠš àŠ€à§àŠ€à§àŠ¯àŠŒ àŠªàŠà§àŠ·à§àа àŠªàŠ°àŠ¿àŠ·à§àŠ¬àŠŸàŠà§àŠ²àŠ¿ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаà§, àŠ¯àŠŸ àŠžàŠ®àŠžà§àŠ€ àŠ¬àŠ¿àŠàŠ¿àŠšà§àŠš àŠžàŠŸàŠàŠ "
+"àŠà§àŠ¡àŠŒà§ àŠàŠªàŠšàŠŸàŠ° àŠàŠŸàŠ°à§àНàŠàŠ²àŠŸàŠª àŠ²àŠ¿àŠà§àŠ àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§à¥€"
+
+#: managing-identities.page:20
+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 ""
+"àŠàа àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°à§ àŠàŠªàŠšàŠŸàŠ° àŠžàŠ àŠ¿àŠ àŠ
àŠ¬àŠžà§àŠ¥àŠŸàŠš àŠàŠ¬àŠ IP àŠ àŠ¿àŠàŠŸàŠšàŠŸ àŠàŠ¬àŠ¿àŠ·à§àŠàŠŸàŠ° àŠàŠ°àŠ€à§ "
+"àŠªàŠ°à§àŠ¯àŠ¬à§àŠà§àŠ·àŠàŠŠà§àа àŠžà§àŠàŠª àŠàаà§, àŠàŠ¿àŠšà§àŠ€à§ àŠàŠ àŠ€àŠ¥à§àН àŠàŠŸàŠ¡àŠŒàŠŸàŠ àŠ€àŠŸàŠ°àŠŸ àŠàŠªàŠšàŠŸàŠ° àŠàŠŸàŠ°à§àНàŠàŠ²àŠŸàŠªà§àа àŠ¬àŠ¿àŠàŠ¿àŠšà§àŠš"
+" àŠà§àŠ·à§àŠ€à§àаàŠà§àŠ²àŠ¿ àŠàŠàŠžàŠà§àŠà§ àŠžàŠàНà§àŠà§àŠ€ àŠàŠ°àŠ€à§ àŠžàŠà§àŠ·àŠ® àŠ¹àŠ€à§ àŠªàŠŸàŠ°à§à¥€ àŠàŠ àŠàŠŸàŠ°àŠ£à§, àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°à§ "
+"àŠàŠ¿àŠà§ àŠ
àŠ€àŠ¿àŠ°àŠ¿àŠà§àŠ€ àŠ¬à§àŠ¶àŠ¿àŠ·à§àŠà§àН àŠ°àŠ¯àŠŒà§àŠà§ àŠ¯àŠŸ àŠàŠªàŠšàŠŸàŠà§ àŠàŠªàŠšàŠŸàŠ° àŠªàŠ°àŠ¿àŠàŠ¯àŠŒ àŠ¥à§àŠà§ àŠàŠ¿ àŠ€àŠ¥à§àН àŠžàŠàНà§àŠà§àŠ€ "
+"àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§ àŠ€àŠŸ àŠšàŠ¿àŠ¯àŠŒàŠšà§àŠ€à§àŠ°àŠ£à§ àŠžàŠ¹àŠŸàŠ¯àŠŒàŠ€àŠŸ àŠàаà§à¥€"
+
+#: managing-identities.page:29
+msgid "The URL bar"
+msgstr "URL àŠ¬àŠŸàŠ°"
+
+#: managing-identities.page:30
+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 ""
+"àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠàŠàаàŠàв àŠ¬àŠŸàŠ°à§ àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠà§àа àŠžàŠŸàŠ¥à§ àŠàŠªàŠšàŠŸàŠ° àŠžàŠ®à§àŠªàŠ°à§àŠà§àа àŠàŠŸàŠàŠŸàŠàŠŸàŠàŠ¿ àŠàŠªàŠšàŠŸàŠ° "
+"àŠàŠ¯àŠŒà§àЬ àŠ
àŠàŠ¿àŠà§àŠàŠ€àŠŸàŠà§ àŠà§àŠšà§àŠŠà§àа àŠàаà§à¥€ àŠàŠ®àŠšàŠàŠ¿ àŠ¯àŠŠàŠ¿ àŠàŠªàŠšàŠ¿ àŠàŠàŠ àŠ€à§àŠ€à§àŠ¯àŠŒ àŠªàŠà§àŠ·à§àа àŠà§àаà§àŠ¯àŠŸàŠàŠ¿àŠ "
+"àŠªàŠ°àŠ¿àŠ·à§àŠ¬àŠŸ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°à§ àŠàŠ®àŠš àŠŠà§àŠàŠ¿ àŠàŠ¿àŠšà§àŠš àŠžàŠŸàŠàŠàŠà§àŠ²àŠ¿àŠ° àŠžàŠŸàŠ¥à§ àŠžàŠàНà§àŠà§àŠ€ àŠ¹àŠš, àŠ€àŠ¬à§ àŠàа "
+"àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°àŠàŠ¿ àŠžàŠŸàŠ®àŠà§àаà§àŠàŠ¿ àŠŠà§àŠàŠ¿ àŠàŠ¿àŠšà§àŠš àŠàа àŠžàŠŸàŠ°à§àŠàŠ¿àŠàŠà§àŠ²àŠ¿àŠ€à§ àŠªàŠ°àŠ¿àŠ¬à§àŠ¶àŠ¿àŠ€ àŠàŠ°àŠ€à§ àŠ¬àŠŸàŠ§à§àН àŠàŠ°àŠ¬à§, "
+"àŠ€àŠŸàŠ àŠà§àаà§àŠ¯àŠŸàŠàŠŸàŠ° àŠàŠŸàŠšà§àŠš àŠšàŠŸ àŠ¯à§ àŠàŠàŠ¯àŠŒ àŠžàŠàНà§àŠ àŠàŠªàŠšàŠŸàŠ° àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ¥à§àŠà§ àŠàŠŠà§àŠà§àŠ€ àŠ¹àŠ¬à§à¥€"
+
+#: managing-identities.page:38
+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 ""
+"àŠ
àŠšà§àŠ¯àŠŠàŠ¿àŠà§, àŠàŠàŠ àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠà§àа àŠžàŠ®àŠžà§àŠ€ àŠ àŠ¿àŠàŠŸàŠšàŠŸ àŠàŠàŠ àŠàа àŠžàŠŸàŠ°à§àŠàŠ¿àŠà§ àŠ€à§àŠ°àŠ¿ àŠàŠ°àŠŸ àŠ¹àŠ¬à§, àŠ¯àŠŸàŠ° "
+"àŠ®àŠŸàŠšà§ àŠàŠªàŠšàŠ¿ àŠàŠŸàŠ°à§àНàŠàŠ°à§ àŠà§àŠš àŠà§àŠ·àŠ€àŠ¿ àŠàŠŸàŠ¡àŠŒàŠŸ àŠªà§àŠ¥àŠ àŠà§àŠ¯àŠŸàŠ¬ àŠ¬àŠŸ àŠàŠàŠšà§àŠ¡à§àŠ€à§ àŠàŠàŠ àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠà§àа "
+"àŠ¬àŠ¿àŠàŠ¿àŠšà§àŠš àŠªà§àŠ·à§àŠ àŠŸ àŠ¬à§àŠ°àŠŸàŠàŠ àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§àŠšà¥€"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: managing-identities.page:46
+msgctxt "_"
+msgid ""
+"external ref='media/managing-identities/circuit_full.png' "
+"md5='bd46d22de952fee42643be46d3f95928'"
+msgstr ""
+"àŠ¬àŠŸàŠ¹à§àŠ¯àŠ¿àŠ àŠ°à§àŠ«='media/managing-identities/circuit_full.png' "
+"md5='bd46d22de952fee42643be46d3f95928'"
+
+#: managing-identities.page:48
+msgid ""
+"You can see a diagram of the circuit that Tor Browser is using for the "
+"current tab in the onion menu."
+msgstr ""
+"àŠàŠªàŠšàŠ¿ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° onion àŠ®à§àŠšà§àŠ€à§ àŠ¬àŠ°à§àŠ€àŠ®àŠŸàŠš àŠà§àŠ¯àŠŸàŠ¬à§àа àŠàŠšà§àН àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒ àŠ¯à§ "
+"àŠ¬àŠ°à§àŠ€àŠšà§ àŠàŠàŠàŠ¿ àŠ¡àŠŸàŠ¯àŠŒàŠŸàŠà§àŠ°àŠŸàŠ® àŠŠà§àŠàŠ€à§ àŠªàŠŸàŠ°à§àŠšà¥€"
+
+#: managing-identities.page:55
+msgid "Logging in over Tor"
+msgstr "Logging in over Tor"
+
+#: managing-identities.page:56
+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 ""
+"àŠ¯àŠŠàŠ¿àŠ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°àŠàŠ¿ àŠàŠ¯àŠŒà§àŠ¬à§ àŠžàŠ°à§àЬàŠàŠšà§àŠš àŠ
àŠà§àŠàŠŸàŠ€àŠ€àŠŸ àŠžàŠà§àŠ·àŠ® àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠ¡àŠ¿àŠàŠŸàŠàŠš àŠàŠ°àŠŸ "
+"àŠ¹àŠ¯àŠŒà§àŠà§, àŠ€àŠ¬à§ àŠàŠ®àŠš àŠªàŠ°àŠ¿àŠžà§àŠ¥àŠ¿àŠ€àŠ¿àŠ€à§ àŠ¥àŠŸàŠàŠ€à§ àŠªàŠŸàŠ°à§ àŠ¯à§àŠà§àŠ²àŠ¿ àŠàŠ®àŠš àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠàŠà§àŠ²àŠ¿àŠ° àŠžàŠŸàŠ¥à§ àŠàа "
+"àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠ€à§ àŠ¬à§àŠàŠŸàŠ¯àŠŒ àŠ¯àŠŸ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ°àŠàŠŸàŠ°à§àа àŠšàŠŸàŠ®, àŠªàŠŸàŠžàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ¡ àŠ¬àŠŸ àŠ
àŠšà§àН àŠžàŠšàŠŸàŠà§àŠ€àŠàŠŸàŠ°à§ "
+"àŠ€àŠ¥à§àНàŠà§àŠ²àŠ¿àŠ° àŠªà§àŠ°àŠ¯àŠŒà§àŠàŠšà¥€"
+
+#: managing-identities.page:62
+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 ""
+"àŠ¯àŠŠàŠ¿ àŠàŠªàŠšàŠ¿ àŠàŠàŠàŠ¿ àŠšàŠ¿àŠ¯àŠŒàŠ®àŠ¿àŠ€ àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°à§ àŠàŠàŠàŠ¿ àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠ àŠ²àŠ àŠàŠš, àŠàŠªàŠšàŠ¿ "
+"àŠªà§àаàŠà§àŠ°àŠ¿àŠ¯àŠŒàŠŸ àŠàŠªàŠšàŠŸàŠ° IP àŠ àŠ¿àŠàŠŸàŠšàŠŸ àŠàŠ¬àŠ àŠà§àŠàŠ²àŠ¿àŠ àŠ
àŠ¬àŠžà§àŠ¥àŠŸàŠš àŠªà§àаàŠàŠŸàŠ¶à¥€ àŠàŠªàŠšàŠ¿ àŠ¯àŠàŠš àŠàŠàŠàŠ¿ àŠàŠ®à§àв "
+"àŠªàŠŸàŠ àŠŸàŠš àŠ€àŠàŠš àŠàŠàŠ àŠàŠ¥àŠŸ àŠªà§àŠ°àŠŸàŠ¯àŠŒàŠ àŠžàŠ€à§àН àŠ¹àŠ¯àŠŒà¥€ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°à§ àŠàŠªàŠšàŠŸàŠ° àŠžà§àжà§àŠ¯àŠŸàŠ² "
+"àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠàŠ¿àŠ àŠ¬àŠŸ àŠàŠ®à§àŠàв àŠ
à§àŠ¯àŠŸàŠàŠŸàŠàŠšà§àŠà§ àŠ²àŠàŠàŠš àŠàŠ°àŠŸàŠ° àŠ®àŠŸàŠ§à§àŠ¯àŠ®à§ àŠàŠªàŠšàŠ¿ àŠ¯à§ àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠàŠà§àŠ²àŠ¿ "
+"àŠ¬à§àŠ°àŠŸàŠàŠ àŠàаà§àŠš àŠžà§àŠ àŠ€àŠ¥à§àНàŠà§àŠ²àŠ¿ àŠàŠªàŠšàŠ¿ àŠªà§àаàŠàŠŸàŠ¶ àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°àŠ¬à§àŠšà¥€ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°à§ àŠ²àŠ"
+" àŠàŠš àŠàŠ°àŠŸàŠ àŠŠàŠ°àŠàŠŸàŠ°à§ àŠ¯àŠŠàŠ¿ àŠàŠªàŠšàŠŸàŠ° àŠàŠŸàŠà§ àŠªà§àŠàŠàŠŸàŠšà§àа àŠà§àŠ·à§àŠàŠŸ àŠàŠ°àŠŸ àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠàŠàŠ¿ àŠàŠªàŠšàŠŸàŠ° "
+"àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠà§àа àŠàŠªàŠ° àŠžà§àŠšà§àŠžàŠ° àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒà¥€"
+
+#: managing-identities.page:72
+msgid ""
+"When you log in to a website over Tor, there are several points you should "
+"bear in mind:"
+msgstr ""
+"àŠàŠªàŠšàŠ¿ àŠàа àŠàŠªàŠ° àŠàŠàŠàŠ¿ àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠà§ àŠ²àŠ àŠàŠš àŠàŠ°àŠŸàŠ° àŠžàŠ®àŠ¯àŠŒ, àŠàŠªàŠšàŠ¿ àŠ®àŠšà§ àŠàŠ°àŠŸ àŠàŠàŠ¿àŠ€ àŠ¬àŠ¿àŠàŠ¿àŠšà§àŠš "
+"àŠªàŠ¯àŠŒà§àŠšà§àŠ àŠàŠà§:"
+
+#: managing-identities.page:79
+msgid ""
+"See the <link xref=\"secure-connections\">Secure Connections</link> page for"
+" important information on how to secure your connection when logging in."
+msgstr ""
+"àŠ²àŠ àŠàŠš àŠàŠš àŠàŠ°àŠŸàŠ° àŠžàŠ®àŠ¯àŠŒ àŠà§àŠàŠŸàŠ¬à§ àŠàŠªàŠšàŠŸàŠ° àŠžàŠàНà§àŠ àŠžà§àаàŠà§àŠ·àŠ¿àŠ€ àŠ°àŠŸàŠàŠ€à§ àŠà§àаà§àŠ€à§àŠ¬àŠªà§àаà§àŠ£ àŠ€àŠ¥à§àНà§àа "
+"<link xref=\"secure-connections\">àŠšàŠ¿àŠ°àŠŸàŠªàŠŠ àŠžàŠàНà§àŠàŠà§àŠ²àŠ¿</link> àŠªà§àŠ·à§àŠ àŠŸàŠàŠ¿ àŠŠà§àŠà§àŠšà¥€"
+
+#: managing-identities.page:87
+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 ""
+"àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠªà§àŠ°àŠŸàŠ¯àŠŒàŠ àŠàŠªàŠšàŠŸàŠ° àŠžàŠàНà§àŠ àŠªà§àŠ°àŠŠàŠ°à§àŠ¶àŠ¿àŠ€ àŠ¹àŠ¯àŠŒ àŠ¯à§àŠš àŠàŠàŠ¿ àŠ¬àŠ¿àŠ¶à§àЬà§àа àŠàŠàŠàŠ¿ àŠžàŠ®à§àŠªà§àаà§àŠ£ "
+"àŠàŠ¿àŠšà§àŠš àŠ
àŠàж àŠ¥à§àŠà§ àŠàŠžàŠà§à¥€ àŠàŠ¿àŠà§ àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠ, àŠ¯à§àŠ®àŠš àŠ¬à§àŠ¯àŠŸàŠà§àŠ àŠ¬àŠŸ àŠàŠ®à§àв àŠªà§àŠ°àŠŠàŠŸàŠšàŠàŠŸàŠ°à§, àŠàŠªàŠšàŠŸàŠ° "
+"àŠ
à§àŠ¯àŠŸàŠàŠŸàŠàŠšà§àŠ àŠ¹à§àŠ¯àŠŸàŠ àŠ¬àŠŸ àŠàŠªà§àŠž àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒà§àŠà§ àŠàŠ®àŠš àŠàŠàŠàŠ¿ àŠàŠ¿àŠ¹à§àŠš àŠ¹àŠ¿àŠžàŠŸàŠ¬à§ àŠàŠàŠ¿ àŠ¬à§àŠ¯àŠŸàŠà§àŠ¯àŠŸ àŠàŠ°àŠ€à§ "
+"àŠªàŠŸàŠ°à§, àŠàŠ¬àŠ àŠàŠªàŠšàŠŸàŠà§ àŠ²àŠ àŠàŠàŠ àŠàŠàŠ¿ àŠžàŠ®àŠŸàŠ§àŠŸàŠš àŠàŠ°àŠŸàŠ° àŠàŠàŠ®àŠŸàŠ€à§àа àŠàŠªàŠŸàŠ¯àŠŒ àŠ
à§àŠ¯àŠŸàŠàŠŸàŠàŠšà§àŠ "
+"àŠªà§àŠšàŠ°à§àŠŠà§àŠ§àŠŸàŠ°à§àа àŠàŠšà§àН àŠžàŠŸàŠàŠà§àа àŠªà§àŠ°àŠžà§àŠ€àŠŸàŠ¬àŠ¿àŠ€ àŠªàŠŠà§àŠ§àŠ€àŠ¿ àŠ
àŠšà§àŠžàŠ°àŠ£ àŠàаà§, àŠ¬àŠŸ àŠ
àŠªàŠŸàŠ°à§àŠàŠ°àŠŠà§àа àŠžàŠŸàŠ¥à§ "
+"àŠ¯à§àŠàŠŸàŠ¯à§àŠ àŠàŠ°àŠŸ àŠàŠ¬àŠ àŠªàŠ°àŠ¿àŠžà§àŠ¥àŠ¿àŠ€àŠ¿ àŠ¬à§àŠ¯àŠŸàŠà§àŠ¯àŠŸ àŠàаà§à¥€"
+
+#: managing-identities.page:101
+msgid "Changing identities and circuits"
+msgstr "àŠžàŠšàŠŸàŠà§àŠ€àŠàŠ°àŠ£ àŠàŠ¬àŠ àŠžàŠŸàŠ°à§àŠàŠ¿àŠ àŠªàŠ°àŠ¿àŠ¬àŠ°à§àŠ€àŠš"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: managing-identities.page:103
+msgctxt "_"
+msgid ""
+"external ref='media/managing-identities/new_identity.png' "
+"md5='15b01e35fa83185d94b57bf0ccf09d76'"
+msgstr ""
+"àŠ¬àŠŸàŠ¹à§àŠ¯àŠ¿àŠ àŠ°à§àŠ«='media/managing-identities/new_identity.png' "
+"md5='15b01e35fa83185d94b57bf0ccf09d76'"
+
+#: managing-identities.page:105
+msgid ""
+"Tor Browser features âNew Identityâ and âNew Tor Circuit for this Siteâ "
+"options, located in the Torbutton menu."
+msgstr ""
+"àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ¬à§àŠ¶àŠ¿àŠ·à§àŠà§àН \"àŠšàŠ€à§àŠš àŠªàŠ°àŠ¿àŠàŠ¯àŠŒ\" àŠàŠ¬àŠ \"àŠàŠ àŠžàŠŸàŠàŠà§àа àŠàŠšà§àН àŠšàŠ€à§àŠš àŠàа àŠžàŠŸàŠ°à§àŠàŠ¿àŠ\""
+" àŠ
àŠªàŠ¶àŠš, Torbutton àŠ®à§àŠšà§àŠ€à§ àŠ
àŠ¬àŠžà§àŠ¥àŠ¿àŠ€à¥€"
+
+#: managing-identities.page:111
+msgid "New Identity"
+msgstr "àŠšàŠ€à§àŠš àŠªàŠ°àŠ¿àŠàŠ¯àŠŒ"
+
+#: managing-identities.page:112
+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 ""
+"àŠàŠ àŠ¬àŠ¿àŠàвà§àŠªàŠàŠ¿ àŠàŠªàŠàŠŸàŠ°à§ àŠ¯àŠŠàŠ¿ àŠàŠªàŠšàŠ¿ àŠàŠªàŠšàŠŸàŠ° àŠªàŠ°àŠ¬àŠ°à§àŠ€à§ àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°à§àа àŠà§àŠ°àŠ¿àŠ¯àŠŒàŠŸàŠàŠ²àŠŸàŠªàŠà§ àŠàŠªàŠšàŠ¿ àŠàŠà§ "
+"àŠàŠ¿ àŠàаàŠà§àŠš àŠ€àŠŸ àŠ²àŠ¿àŠà§àŠàНà§àŠà§àН àŠ¹àŠ€à§ àŠªà§àŠ°àŠ€àŠ¿àŠ°à§àЧ àŠàŠ°àŠ€à§ àŠàŠŸàŠàŠ²à§ àŠàŠàŠ¿ àŠšàŠ¿àŠ°à§àŠ¬àŠŸàŠàŠš àŠàŠ°àŠ²à§ àŠàŠªàŠšàŠŸàŠ° àŠžàŠ¬ "
+"àŠà§àŠ²àŠŸ àŠà§àŠ¯àŠŸàŠ¬ àŠàŠ¬àŠ àŠàŠàŠšà§àŠ¡à§ àŠ¬àŠšà§àЧ àŠ¹àŠ¯àŠŒà§ àŠ¯àŠŸàŠ¬à§, àŠà§àŠàŠ¿àŠ àŠàŠ¬àŠ àŠ¬à§àŠ°àŠŸàŠàŠàŠ¿àŠàŠ¯àŠŒà§àа àŠàŠ€àŠ¿àŠ¹àŠŸàŠžà§àа àŠ®àŠ€à§ "
+"àŠžàŠ®àŠžà§àŠ€ àŠ¬à§àНàŠà§àŠ€àŠ¿àŠàŠ€ àŠ€àŠ¥à§àН àŠ®à§àŠà§ àŠ«à§àŠ²àŠŸ àŠ¹àŠ¬à§ àŠàŠ¬àŠ àŠžàŠ®àŠžà§àŠ€ àŠžàŠàНà§àŠàŠà§àŠ²àŠ¿àŠ° àŠàŠšà§àН àŠšàŠ€à§àŠš àŠàа àŠžàŠŸàŠ°à§àŠàŠ¿àŠ"
+" àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠ¬à§à¥€ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠªàŠšàŠŸàŠà§ àŠžàŠ€àŠ°à§àŠ àŠàŠ°àŠ¬à§ àŠ¯à§ àŠžàŠ®àŠžà§àŠ€ àŠàŠŸàŠ°à§àНàŠàŠ²àŠŸàŠª àŠàŠ¬àŠ "
+"àŠ¡àŠŸàŠàŠšàŠ²à§àŠ¡àŠà§àŠ²àŠ¿ àŠ¬àŠšà§àЧ àŠ¹àŠ¯àŠŒà§ àŠ¯àŠŸàŠ¬à§, àŠ€àŠŸàŠ \"àŠšàŠ€à§àŠš àŠªàŠ°àŠ¿àŠàŠ¯àŠŒ\" àŠà§àŠ²àŠ¿àŠ àŠàŠ°àŠŸàŠ° àŠªà§àаà§àŠ¬à§ àŠàŠàŠ¿ "
+"àŠ¬àŠ¿àŠ¬à§àŠàŠšàŠŸ àŠàаà§àŠšà¥€"
+
+#: managing-identities.page:123
+msgid "New Tor Circuit for this Site"
+msgstr "àŠàŠ àŠžàŠŸàŠàŠà§àа àŠàŠšà§àН àŠšàŠ€à§àŠš àŠàа àŠžàŠŸàŠ°à§àŠàŠ¿àŠ"
+
+#: managing-identities.page:124
+msgid ""
+"This option is useful if the <link xref=\"about-tor-browser#how-tor-"
+"works\">exit relay</link> 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 ""
+"àŠªà§àŠ°àŠžà§àŠ¥àŠŸàŠš àŠ°àŠ¿àŠ²à§ àŠàŠ àŠ¬àŠ¿àŠàвà§àŠªàŠàŠ¿ àŠ¯àŠŠàŠ¿ àŠŠàŠ°àŠàŠŸàŠ°à§\n"
+" àŠàŠªàŠšàŠ¿ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаàŠà§àŠš àŠàŠªàŠšàŠŸàŠ° àŠªà§àŠ°àŠ¯àŠŒà§àŠàŠšà§àŠ¯àŠŒ àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠà§àа àŠžàŠŸàŠ¥à§ àŠžàŠàНà§àŠ àŠàŠ°àŠ€à§ àŠ
àŠà§àŠ·àŠ®, àŠ
àŠ¥àŠ¬àŠŸ àŠàŠàŠ¿ àŠžàŠ àŠ¿àŠàŠàŠŸàŠ¬à§ àŠ²à§àŠ¡ àŠàŠ°àŠŸ àŠ¹àŠà§àŠà§ àŠšàŠŸà¥€ àŠàŠàŠ¿ àŠšàŠ¿àŠ°à§àŠ¬àŠŸàŠàŠš àŠàŠ°àŠ²à§ àŠ¬àŠ°à§àŠ€àŠ®àŠŸàŠšà§-àŠžàŠà§àŠ°àŠ¿àŠ¯àŠŒ àŠà§àŠ¯àŠŸàŠ¬ àŠ¬àŠŸ àŠàŠàŠšà§àŠ¡à§àŠàŠ¿ àŠàŠàŠàŠ¿ àŠšàŠ€à§àŠš àŠàа àŠžàŠŸàŠ°à§àŠàŠ¿àŠà§ àŠªà§àŠšàŠ°àŠŸàŠ¯àŠŒ àŠ²à§àŠ¡ àŠ¹àŠ¬à§à¥€ àŠàŠàŠ àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠ àŠ¥à§àŠà§ àŠ
àŠšà§àН àŠà§àŠ²àŠŸ àŠà§àŠ¯àŠŸàŠ¬ àŠàŠ¬àŠ àŠàŠàŠšà§àŠ¡à§àŠà§àŠ²àŠ¿ àŠšàŠ€à§àŠš àŠžàŠŸàŠ°à§àŠàŠ¿àŠ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°à§ àŠàŠàŠ¬àŠŸàŠ° àŠžà§àŠà§àŠ²àŠ¿ àŠªà§àŠšàŠ°àŠŸàŠ¯àŠŒ àŠ²à§àŠ¡ àŠ¹àŠ¬à§à¥€ àŠàŠ àŠ¬àŠ¿àŠàвà§àŠªàŠàŠ¿ àŠà§àŠšàŠ àŠ¬à§àНàŠà§àŠ€àŠ¿àŠàŠ€ àŠ€àŠ¥à§àН àŠžàŠŸàŠ« àŠàŠ°à§ àŠšàŠŸ àŠ¬àŠŸ àŠàŠªàŠšàŠŸàŠ° àŠàŠŸàŠ°à§àНàŠàŠ²àŠŸàŠªàŠà§ àŠ²àŠ¿àŠà
§àŠàŠ®à§àŠà§àŠ€ àŠàŠ°à§ àŠšàŠŸ, àŠàŠàŠ¿ àŠàŠªàŠšàŠŸàŠ° àŠ¬àŠ°à§àŠ€àŠ®àŠŸàŠš àŠžàŠàНà§àŠàŠà§àŠ²àŠ¿ àŠ
àŠšà§àŠ¯àŠŸàŠšà§àН àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠàŠà§àŠ²àŠ¿àŠ€à§àŠ àŠªà§àаàŠàŠŸàŠ¬àŠ¿àŠ€ àŠàŠ°à§ àŠšàŠŸà¥€"
+
+#: onionsites.page:6
+msgid "Services that are only accessible using Tor"
+msgstr "àŠªàŠ°àŠ¿àŠ·à§àŠ¬àŠŸàŠà§àŠ²àŠ¿ àŠà§àŠ¬àŠ² àŠàа àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°à§ àŠ
à§àŠ¯àŠŸàŠà§àŠžà§àŠžàŠ¯à§àŠà§àН"
+
+#: onionsites.page:10
+msgid "Onion Services"
+msgstr "Onion àŠžà§àŠ¬àŠŸ"
+
+#: onionsites.page:11
+msgid ""
+"Onion services (formerly known as âhidden servicesâ) are services (like "
+"websites) that are only accessible through the Tor network."
+msgstr ""
+"Onion àŠªàŠ°àŠ¿àŠ·à§àŠ¬àŠŸàŠà§àŠ²àŠ¿ (àŠªà§àаà§àŠ¬à§ \"àŠ²à§àŠàŠŸàŠšà§ àŠªàŠ°àŠ¿àŠ·à§àŠ¬àŠŸàŠà§àŠ²àŠ¿\" àŠšàŠŸàŠ®à§ àŠªàŠ°àŠ¿àŠàŠ¿àŠ€) àŠžà§àŠ¬àŠŸàŠà§àŠ²àŠ¿ (àŠ¯à§àŠ®àŠš"
+" àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠ) àŠ¯àŠŸ àŠàа àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠàа àŠ®àŠŸàŠ§à§àŠ¯àŠ®à§ àŠ
à§àŠ¯àŠŸàŠà§àŠžà§àŠžàŠ¯à§àŠà§àŠ¯à¥€"
+
+#: onionsites.page:16
+msgid ""
+"Onion services offer several advantages over ordinary services on the non-"
+"private web:"
+msgstr ""
+"Onion àŠªàŠ°àŠ¿àŠ·à§àŠ¬àŠŸàŠà§àŠ²àŠ¿ àŠ
-àŠªà§àŠ°àŠŸàŠàŠà§àŠ àŠàŠ¯àŠŒà§àЬà§àа àŠžàŠŸàŠ§àŠŸàŠ°àŠ£ àŠªàŠ°àŠ¿àŠ·à§àŠ¬àŠŸàŠà§àŠ²àŠ¿àŠ° àŠàŠªàŠ° àŠ
àŠšà§àŠ àŠžà§àŠ¬àŠ¿àŠ§àŠŸ "
+"àŠªà§àŠ°àŠŠàŠŸàŠš àŠàаà§:"
+
+#: onionsites.page:23
+msgid ""
+"An onion servicesâs location and IP address are hidden, making it difficult "
+"for adversaries to censor it or identify its operators."
+msgstr ""
+"àŠàŠàŠàŠ¿ onion àŠªàŠ°àŠ¿àŠ·à§àŠ¬àŠŸàŠà§àŠ²àŠ¿àŠ° àŠ
àŠ¬àŠžà§àŠ¥àŠŸàŠš àŠàŠ¬àŠ IP àŠ àŠ¿àŠàŠŸàŠšàŠŸ àŠ²à§àŠàŠŸàŠšà§ àŠàŠà§, àŠ¬àŠ¿àŠ°à§àЧà§àŠŠà§àа àŠªàŠà§àŠ·à§ "
+"àŠàŠàŠ¿ àŠžà§àŠšà§àŠžàŠ° àŠàŠ°àŠŸ àŠ¬àŠŸ àŠ€àŠŸàŠ° àŠ
àŠªàŠŸàŠ°à§àŠàŠ°àŠŠà§àа àŠžàŠšàŠŸàŠà§àŠ€ àŠàŠ°àŠŸ àŠàŠ àŠ¿àŠš àŠàŠ°à§ àŠ€à§àвà§à¥€"
+
+#: onionsites.page:29
+msgid ""
+"All traffic between Tor users and onion services is end-to-end encrypted, so"
+" you do not need to worry about <link xref=\"secure-connections\">connecting"
+" over HTTPS</link>."
+msgstr ""
+"àŠàа àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ°àŠàŠŸàŠ°à§àŠŠà§àа àŠàŠ¬àŠ onion àŠªàŠ°àŠ¿àŠ·à§àŠ¬àŠŸàŠà§àŠ²àŠ¿àŠ° àŠ®àŠ§à§àŠ¯à§ àŠžàŠ®àŠžà§àŠ€ àŠà§àаà§àŠ¯àŠŸàŠ«àŠ¿àŠ àŠ¶à§àŠ·-àŠ¥à§àŠà§-àŠ¶à§àŠ· "
+"àŠàŠšàŠà§àŠ°àŠ¿àŠªà§àŠ àŠ¹àŠ¯àŠŒà§àŠà§, àŠ€àŠŸàŠ àŠàŠªàŠšàŠŸàŠà§ HTTPS àŠàа àŠžàŠŸàŠ¥à§ àŠžàŠàНà§àŠà§àа àŠ¬àŠ¿àŠ·àŠ¯àŠŒà§ àŠàŠ¿àŠšà§àŠ€àŠŸ àŠàŠ°àŠ€à§ àŠ¹àŠ¬à§ "
+"àŠšàŠŸà¥€"
+
+#: onionsites.page:36
+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 ""
+"àŠàŠàŠàŠ¿ onion àŠªàŠ°àŠ¿àŠ·à§àŠ¬àŠŸ àŠ àŠ¿àŠàŠŸàŠšàŠŸ àŠžà§àŠ¬àŠ¯àŠŒàŠàŠà§àŠ°àŠ¿àŠ¯àŠŒàŠàŠŸàŠ¬à§ àŠàŠ€à§àŠªàŠšà§àŠš àŠ¹àŠ¯àŠŒ, àŠ€àŠŸàŠ àŠ
àŠªàŠŸàŠ°à§àŠàа àŠàŠàŠàŠ¿ "
+"àŠ¡à§àŠ®à§àŠš àŠšàŠŸàŠ® àŠà§àŠ°àŠ¯àŠŒ àŠàŠ°àŠ€à§ àŠ¹àŠ¬à§ àŠšàŠŸ; .àŠàŠš àŠàŠàŠàаàŠàв àŠàаàŠà§ àŠšàŠ¿àŠ¶à§àŠàŠ¿àŠ€ àŠàŠ°à§ àŠ¯à§ àŠàŠàŠ¿ àŠžàŠ àŠ¿àŠ "
+"àŠ
àŠ¬àŠžà§àŠ¥àŠŸàŠšà§àа àŠžàŠŸàŠ¥à§ àŠžàŠàНà§àŠ àŠžà§àŠ¥àŠŸàŠªàŠš àŠàаàŠà§ àŠàŠ¬àŠ àŠžàŠàНà§àŠ àŠ¬àŠ¿àŠà§àŠàŠ¿àŠšà§àŠš àŠàŠ°àŠŸ àŠ¹àŠà§àŠà§ àŠšàŠŸà¥€"
+
+#: onionsites.page:46
+msgid "How to access an onion service"
+msgstr "àŠàŠàŠàŠ¿ onion àŠªàŠ°àŠ¿àŠ·à§àŠ¬àŠŸ àŠ
à§àŠ¯àŠŸàŠà§àŠžà§àŠž àŠàŠ¿àŠàŠŸàŠ¬à§"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: onionsites.page:48
+msgctxt "_"
+msgid ""
+"external ref='media/onionsites/onion_url.png' "
+"md5='f97f7fe10f07c3959c4430934974bbaa'"
+msgstr ""
+"àŠ¬àŠŸàŠ¹à§àŠ¯àŠ¿àŠ àŠ°à§àŠ«='media/onionsites/onion_url.png' "
+"md5='f97f7fe10f07c3959c4430934974bbaa'"
+
+#: onionsites.page:50
+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 sixteen "
+"mostly random letters and numbers, followed by â.onionâ."
+msgstr ""
+"àŠ
àŠšà§àН àŠà§àŠšàŠ àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠà§àа àŠ®àŠ€àŠ, àŠàŠªàŠšàŠŸàŠ° àŠžàŠŸàŠ¥à§ àŠžàŠàНà§àŠ àŠžà§àŠ¥àŠŸàŠªàŠšà§àа àŠàŠšà§àН àŠàŠàŠàŠ¿ àŠªà§àŠàŠ¯àŠŒàŠŸàŠ "
+"àŠªàŠ°àŠ¿àŠ·à§àŠ¬àŠŸàŠàŠ¿àŠ° àŠ àŠ¿àŠàŠŸàŠšàŠŸ àŠàŠŸàŠšàŠ€à§ àŠ¹àŠ¬à§à¥€ àŠàŠàŠàŠ¿ onion àŠ àŠ¿àŠàŠŸàŠšàŠŸ àŠ¹àŠ² àŠ¬à§àŠ¶àŠ¿àŠ°àŠàŠŸàŠ àŠ°à§àŠ¯àŠŸàŠšà§àŠ¡àŠ® àŠ
àŠà§àŠ·àŠ° "
+"àŠàŠ¬àŠ àŠžàŠàŠà§àŠ¯àŠŸàŠ° àŠàŠàŠàŠ¿ àŠžà§àŠà§àŠ°àŠ¿àŠâ.onionâी"
+
+#: onionsites.page:58 troubleshooting.page:10
+msgid "Troubleshooting"
+msgstr "àŠžàŠ®àŠžà§àŠ¯àŠŸ àŠžàŠ®àŠŸàŠ§àŠŸàŠš"
+
+#: onionsites.page:59
+msgid ""
+"If you cannot reach the onion service you require, make sure that you have "
+"entered the 16-character onion address correctly: even a small mistake will "
+"stop Tor Browser from being able to reach the site."
+msgstr ""
+"àŠàŠªàŠšàŠ¿ àŠ¯àŠŠàŠ¿ àŠªà§àŠàŠ¯àŠŒàŠŸàŠ àŠªàŠ°àŠ¿àŠ·à§àŠ¬àŠŸàŠ€à§ àŠªà§àŠàŠàŠŸàŠ€à§ àŠšàŠŸ àŠªàŠŸàŠ°à§àŠš, àŠ€àŠ¬à§ àŠšàŠ¿àŠ¶à§àŠàŠ¿àŠ€ àŠàаà§àŠš àŠ¯à§ àŠàŠªàŠšàŠ¿ "
+"16-àŠ
àŠà§àŠ·àŠ°à§àа àŠªà§àŠàŠš àŠ àŠ¿àŠàŠŸàŠšàŠŸàŠàŠ¿ àŠžàŠ àŠ¿àŠàŠàŠŸàŠ¬à§ àŠ²àŠ¿àŠà§àŠà§àŠš: àŠàŠ®àŠšàŠàŠ¿ àŠàŠàŠàŠ¿ àŠà§àŠ àŠà§àв àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°àŠàŠ¿ "
+"àŠžàŠŸàŠàŠà§ àŠªà§àŠàŠàŠŸàŠ€à§ àŠžàŠà§àŠ·àŠ® àŠ¹àŠ¬à§àŠšàŠŸà¥€"
+
+#: onionsites.page:64
+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 ""
+"àŠ¯àŠŠàŠ¿ àŠàŠªàŠšàŠ¿ àŠàŠàŠšàŠ àŠªà§àŠàŠ¯àŠŒàŠŸàŠ àŠªàŠ°àŠ¿àŠ·à§àŠ¬àŠŸ àŠžàŠàНà§àŠ àŠàŠ°àŠ€à§ àŠ
àŠà§àŠ·àŠ® àŠ¹àŠš, àŠ€àŠŸàŠ¹àŠ²à§ àŠªàŠ°à§ àŠàŠ¬àŠŸàŠ° àŠà§àŠ·à§àŠàŠŸ "
+"àŠàаà§àŠšà¥€ àŠàŠàŠàŠ¿ àŠ
àŠžà§àŠ¥àŠŸàŠ¯àŠŒà§ àŠžàŠàНà§àŠ àŠžàŠ®àŠžà§àŠ¯àŠŸ àŠ¹àŠ€à§ àŠªàŠŸàŠ°à§, àŠ¬àŠŸ àŠžàŠŸàŠàŠ àŠ
àŠªàŠŸàŠ°à§àŠàа àŠàŠàŠ¿ àŠžàŠ€àŠ°à§àŠàŠ¬àŠŸàŠ°à§àŠ€àŠŸ "
+"àŠàŠŸàŠ¡àŠŒàŠŸ àŠ
àŠ«àŠ²àŠŸàŠàŠšà§ àŠ¯à§àŠ€à§ àŠ
àŠšà§àŠ®àŠ€àŠ¿ àŠŠà§àŠàŠ¯àŠŒàŠŸ àŠ¹àŠ€à§ àŠªàŠŸàŠ°à§à¥€"
+
+#: onionsites.page:69
+msgid ""
+"You can also ensure that you're able to access other onion services by "
+"connecting to <link href=\"http://3g2upl4pq6kufc4m.onion/\">DuckDuckGo's "
+"Onion Service</link>"
+msgstr ""
+"àŠàŠªàŠšàŠ¿ àŠšàŠ¿àŠ¶à§àŠàŠ¿àŠ€ àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§àŠš àŠ¯à§ àŠàŠªàŠšàŠ¿ <link "
+"href=\"http://3g2upl4pq6kufc4m.onion/\">DuckDuckGo's Onion</link> àŠªàŠ°àŠ¿àŠ·à§àŠ¬àŠŸàŠ€à§ "
+"àŠžàŠàНà§àŠà§àŠ€ àŠàŠ°à§ àŠ
àŠšà§àŠ¯àŠŸàŠšà§àН àŠªà§àŠàŠ¯àŠŒàŠŸàŠ àŠªàŠ°àŠ¿àŠ·à§àŠ¬àŠŸàŠà§àŠ²àŠ¿ àŠ
à§àŠ¯àŠŸàŠà§àŠžà§àŠž àŠàŠ°àŠ€à§ àŠžàŠà§àŠ·àŠ® àŠ¹àŠà§àŠà§àŠš"
+
+#: plugins.page:6
+msgid "How Tor Browser handles add-ons, plugins and JavaScript"
+msgstr "àŠàŠ¿àŠàŠŸàŠ¬à§ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ
à§àŠ¯àŠŸàŠ¡-àŠ
àŠš, àŠªà§àŠ²àŠŸàŠàŠàŠš àŠàŠ¬àŠ àŠàŠŸàŠàŠŸàŠžà§àŠà§àŠ°àŠ¿àŠªà§àŠ àŠªàŠ°àŠ¿àŠàŠŸàŠ²àŠšàŠŸ àŠàаà§"
+
+#: plugins.page:10
+msgid "Plugins, add-ons and JavaScript"
+msgstr "àŠªà§àŠ²àŠŸàŠàŠàŠš, àŠ
à§àŠ¯àŠŸàŠ¡-àŠ
àŠš àŠàŠ¬àŠ àŠàŠŸàŠàŠŸàŠžà§àŠà§àŠ°àŠ¿àŠªà§àŠ"
+
+#: plugins.page:13
+msgid "Flash Player"
+msgstr "àŠ«à§àвà§àŠ¯àŠŸàŠ¶ àŠªà§àвà§àŠ¯àŠŒàŠŸàŠ°"
+
+#: plugins.page:14
+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 ""
+"àŠàŠ¿àŠ¡àŠ¿àŠ àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠàŠà§àŠ²àŠ¿, àŠ¯à§àŠ®àŠš àŠàŠ¿àŠ®àŠ¿àŠ àŠàŠ¿àŠ¡àŠ¿àŠ àŠžàŠŸàŠ®àŠà§àŠ°à§ àŠªà§àŠ°àŠŠàŠ°à§àŠ¶àŠšà§àа àŠàŠšà§àН àŠ«à§àвà§àŠ¯àŠŸàŠ¶ "
+"àŠªà§àвà§àŠ¯àŠŒàŠŸàŠ° àŠªà§àŠ²àŠŸàŠàŠàŠš àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаà§à¥€ àŠŠà§àаà§àŠàŠŸàŠà§àŠ¯àŠ¬àŠ¶àŠ€, àŠàŠ àŠžàŠ«àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ°àŠàŠ¿ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°à§àа "
+"àŠžà§àŠ¬àŠŸàŠ§à§àŠšàŠàŠŸàŠ¬à§ àŠàŠŸàŠ àŠàŠ°à§ àŠàŠ¬àŠ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°à§àа àŠªà§àаàŠà§àŠžàŠ¿ àŠžà§àŠàŠ¿àŠàŠžàŠà§àŠ²àŠ¿ àŠªàŠŸàŠ²àŠš àŠàŠ°àŠ€à§ àŠžàŠ¹àŠà§àŠ àŠàŠ°àŠŸ"
+" àŠ¯àŠŸàŠ¯àŠŒ àŠšàŠŸà¥€ àŠàŠàŠ¿ àŠàŠªàŠšàŠŸàŠ° àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠ àŠàŠ¬àŠ àŠ
àŠªàŠŸàŠ°à§àŠàŠ°àŠŠà§àа àŠàŠŸàŠà§ àŠàŠªàŠšàŠŸàŠ° àŠªà§àаàŠà§àŠ€ àŠ
àŠ¬àŠžà§àŠ¥àŠŸàŠš àŠ IP "
+"àŠ àŠ¿àŠàŠŸàŠšàŠŸ àŠªà§àаàŠàŠŸàŠ¶ àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§, àŠ
àŠ¥àŠ¬àŠŸ àŠ¬àŠŸàŠàаà§àа àŠªàŠ°à§àŠ¯àŠ¬à§àŠà§àŠ·àŠ àŠ¹àŠ€à§ àŠªàŠŸàŠ°à§à¥€ àŠàŠ àŠàŠŸàŠ°àŠ£à§, àŠàŠ°à§ "
+"àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°à§ àŠ«à§àвà§àŠ¯àŠŸàŠ¶ àŠ¡àŠ¿àŠ«àŠ²à§àŠàŠàŠŸàŠ¬à§ àŠšàŠ¿àŠ·à§àŠà§àŠ°àŠ¿àŠ¯àŠŒ àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒà§àŠà§, àŠàŠ¬àŠ àŠžàŠà§àŠ·àŠ® àŠàŠ°àŠŸ àŠàŠàŠ¿àŠ° "
+"àŠªà§àŠ°àŠžà§àŠ€àŠŸàŠ¬àŠ¿àŠ€ àŠšàŠ¯àŠŒà¥€"
+
+#: plugins.page:23
+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 ""
+"àŠàŠ¿àŠà§ àŠàŠ¿àŠ¡àŠ¿àŠ àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠ (àŠ¯à§àŠ®àŠš àŠàŠàŠàŠ¿àŠàЬ) àŠ«à§àвà§àŠ¯àŠŸàŠ¶ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°à§ àŠšàŠŸ àŠàŠ®àŠš àŠ¬àŠ¿àŠàвà§àŠª àŠàŠ¿àŠ¡àŠ¿àŠ "
+"àŠ¬àŠ¿àŠ€àŠ°àŠ£ àŠªàŠŠà§àŠ§àŠ€àŠ¿ àŠªà§àŠ°àŠžà§àŠ€àŠŸàŠ¬ àŠàаà§à¥€ àŠàŠ àŠªàŠŠà§àŠ§àŠ€àŠ¿àŠà§àŠ²àŠ¿ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°à§àа àŠžàŠŸàŠ¥à§ àŠžàŠŸàŠ®àŠà§àŠàŠžà§àŠ¯àŠªà§àаà§àŠ£ "
+"àŠ¹àŠ€à§ àŠªàŠŸàŠ°à§à¥€"
+
+#: plugins.page:31
+msgid "JavaScript"
+msgstr "JavaScript"
+
+#: plugins.page:32
+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 ""
+"àŠàŠŸàŠàŠŸàŠžà§àŠà§àŠ°àŠ¿àŠªà§àŠ àŠàŠàŠàŠ¿ àŠªà§àаà§àŠà§àŠ°àŠŸàŠ®àŠ¿àŠ àŠàŠŸàŠ·àŠŸ àŠ¯àŠŸ àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠàŠà§àŠ²àŠ¿ àŠàŠšà§àŠàŠŸàŠ°àŠ
à§àŠ¯àŠŸàŠà§àŠàŠ¿àŠ "
+"àŠàŠªàŠŸàŠŠàŠŸàŠšàŠà§àŠ²àŠ¿ àŠ¯à§àŠ®àŠš àŠàŠ¿àŠ¡àŠ¿àŠ, àŠ
à§àŠ¯àŠŸàŠšàŠ¿àŠ®à§àŠ¶àŠš, àŠ
àŠ¡àŠ¿àŠ, àŠàŠ¬àŠ àŠžà§àŠ¥àŠ¿àŠ€àŠ¿ àŠžàŠ®àŠ¯àŠŒàŠžà§àŠ®àŠŸ àŠªà§àŠ°àŠŠàŠŸàŠš àŠàŠ°àŠ€à§ "
+"àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаà§à¥€ àŠŠà§àаà§àŠàŠŸàŠà§àŠ¯àŠ¬àŠ¶àŠ€, àŠàŠŸàŠàŠŸàŠžà§àŠà§àŠ°àŠ¿àŠªà§àŠ àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°à§àа àŠšàŠ¿àŠ°àŠŸàŠªàŠ€à§àŠ€àŠŸàŠ° àŠàŠªàŠ° "
+"àŠàŠà§àŠ°àŠ®àŠ£àŠà§àŠ²àŠ¿ àŠžàŠà§àŠ°àŠ¿àŠ¯àŠŒ àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§, àŠ¯àŠŸ àŠ¡àŠ¿àŠšàŠŸàŠ®àŠŸàŠàŠ®àŠŸàŠàŠà§àŠ¶àŠš àŠ¹àŠ€à§ àŠªàŠŸàŠ°à§à¥€"
+
+#: plugins.page:39
+msgid ""
+"Tor Browser includes an add-on called NoScript, accessed through the âSâ "
+"icon at the top-left of the window, which allows you to control the "
+"JavaScript that runs on individual web pages, or to block it entirely."
+msgstr ""
+"àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°à§ àŠšà§àŠàŠªà§àŠ¯àŠŸàŠ¡ àŠšàŠŸàŠ®à§ àŠàŠàŠàŠ¿ àŠ
à§àŠ¯àŠŸàŠ¡-àŠ
àŠš àŠ°àŠ¯àŠŒà§àŠà§, àŠ¯àŠŸ àŠàŠàŠšà§àŠ¡à§àŠàŠ¿àŠ° àŠàŠªàŠ°à§ àŠ¬àŠŸàŠ®à§ "
+"\"àŠàŠž\" àŠàŠàŠàŠš àŠŠà§àŠ¬àŠŸàŠ°àŠŸ àŠ
à§àŠ¯àŠŸàŠà§àŠžà§àŠž àŠàаà§, àŠ¯àŠŸ àŠàŠªàŠšàŠŸàŠà§ àŠàŠŸàŠàŠŸàŠžà§àŠà§àŠ°àŠ¿àŠªà§àŠ àŠšàŠ¿àŠ¯àŠŒàŠšà§àŠ€à§àŠ°àŠ£ àŠàŠ°àŠ€à§ "
+"àŠŠà§àŠ¯àŠŒ àŠ¯àŠŸ àŠªà§àŠ¥àŠ àŠàŠ¯àŠŒà§àЬ àŠªà§àŠàŠà§àŠ²àŠ¿àŠ€à§ àŠàŠŸàŠ²àŠŸàŠ¯àŠŒ, àŠ
àŠ¥àŠ¬àŠŸ àŠàŠàŠ¿ àŠžàŠ®à§àŠªà§àаà§àŠ£àŠàŠŸàŠ¬à§ àŠ¬à§àŠ²àŠ àŠàŠ°àŠ€à§ àŠŠà§àŠ¯àŠŒà¥€"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: plugins.page:45
+msgctxt "_"
+msgid ""
+"external ref='media/plugins/noscript_menu.png' "
+"md5='df9e684b76a3c2e2bdcb879a19c20471'"
+msgstr ""
+"àŠ¬àŠŸàŠ¹à§àŠ¯àŠ¿àŠ àŠ°à§àŠ«='media/plugins/noscript_menu.png' "
+"md5='df9e684b76a3c2e2bdcb879a19c20471'"
+
+#: plugins.page:47
+msgid ""
+"Users who require a high degree of security in their web browsing should set"
+" Tor Browserâs <link xref=\"security-slider\">Security Slider</link> to "
+"âMedium-Highâ (which disables JavaScript for non-HTTPS websites) or âHighâ "
+"(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."
+msgstr ""
+"àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ°àŠàŠŸàŠ°à§àŠ°àŠŸ, àŠ¯àŠŸàŠ°àŠŸ àŠ€àŠŸàŠŠà§àа àŠàŠ¯àŠŒà§àЬ àŠ¬à§àŠ°àŠŸàŠàŠàŠ¿àŠàŠ¯àŠŒà§àа àŠ®àŠ§à§àŠ¯à§ àŠàŠà§àŠàŠ€àŠ° àŠšàŠ¿àŠ°àŠŸàŠªàŠ€à§àŠ€àŠŸ àŠªà§àŠ°àŠ¯àŠŒà§àŠàŠš"
+" àŠ€àŠŸàŠŠà§àа àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°à§àа àŠžàŠ¿àŠàŠ¿àŠàŠ°àŠ¿àŠàŠ¿ àŠžà§àŠ²àŠŸàŠàŠ¡àŠŸàŠ°àŠà§ \"àŠ®àŠŸàŠàŠŸàŠ°àŠ¿ àŠàŠà§àŠ\" (àŠ¯àŠŸ àŠ
-HTTPS "
+"àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠà§àа àŠàŠšà§àН JavaScript àŠšàŠ¿àŠ·à§àŠà§àŠ°àŠ¿àŠ¯àŠŒ àŠàаà§) àŠ¬àŠŸ \"àŠ¹àŠŸàŠ\" (àŠ¯àŠŸ àŠžàŠ®àŠžà§àŠ€ "
+"àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠàŠà§àŠ²àŠ¿àŠ° àŠàŠšà§àН àŠ€àŠŸàŠ àŠàаà§) -àŠ àŠàŠ°àŠŸ àŠàŠàŠ¿àŠ€à¥€ àŠ¯àŠŸàŠàйà§àŠ, àŠàŠŸàŠàŠŸàŠžà§àŠà§àŠ°àŠ¿àŠªà§àŠ àŠšàŠ¿àŠ·à§àŠà§àŠ°àŠ¿àŠ¯àŠŒ "
+"àŠàŠ°àŠŸ àŠ
àŠšà§àŠ àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠ àŠžàŠ àŠ¿àŠàŠàŠŸàŠ¬à§ àŠªà§àŠ°àŠŠàŠ°à§àŠ¶àŠš àŠàŠ°àŠŸ àŠªà§àŠ°àŠ€àŠ¿àŠ°à§àЧ àŠàŠ°àŠ¬à§, àŠ€àŠŸàŠ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°à§àа "
+"àŠ¡àŠ¿àŠ«àŠ²à§àŠ àŠžà§àŠàŠ¿àŠ àŠžàŠ®àŠžà§àŠ€ àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠ àŠžà§àŠà§àŠ°àŠ¿àŠªà§àŠ àŠàŠŸàŠ²àŠŸàŠšà§àа àŠ
àŠšà§àŠ®àŠ€àŠ¿ àŠŠà§àŠ¯àŠŒà¥€"
+
+#: plugins.page:58
+msgid "Browser Add-ons"
+msgstr "àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ
à§àŠ¯àŠŸàŠ¡-àŠ
àŠš"
+
+#: plugins.page:59
+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 ""
+"àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ«àŠŸàŠ¯àŠŒàŠŸàŠ°àŠ«àŠà§àŠž àŠàŠ¿àŠ€à§àŠ€àŠ¿àŠ àŠàŠ¬àŠ àŠ«àŠŸàŠ¯àŠŒàŠŸàŠ°àŠ«àŠà§àŠžà§àа àŠžàŠŸàŠ¥à§ àŠžàŠŸàŠ®àŠà§àŠàŠžà§àŠ¯àŠªà§àаà§àŠ£ àŠà§àŠšà§ "
+"àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ
à§àŠ¯àŠŸàŠ¡-àŠ
àŠš àŠ¬àŠŸ àŠ¥àŠ¿àŠ® àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°à§ àŠàŠšàŠžà§àŠàв àŠàŠ°àŠŸ àŠ¯àŠŸàŠ¯àŠŒà¥€"
+
+#: plugins.page:64
+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 ""
+"àŠ¯àŠŸàŠàйà§àŠ, àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°à§àа àŠžàŠŸàŠ¥à§ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ°à§àа àŠàŠšà§àН àŠ¶à§àЧà§àŠ®àŠŸàŠ€à§àа àŠ
à§àŠ¯àŠŸàŠ¡-àŠ
àŠšàŠà§àŠ²àŠ¿ àŠªàŠ°à§àŠà§àŠ·àŠŸ àŠàŠ°àŠŸ"
+" àŠ¹àŠ¯àŠŒà§àŠà§ àŠ¯àŠŸàŠ°àŠŸ àŠ¡àŠ¿àŠ«àŠ²à§àŠàŠàŠŸàŠ¬à§ àŠ
àŠšà§àŠ€àŠ°à§àŠà§àŠà§àŠ€à¥€ àŠ
àŠšà§àН àŠà§àŠšàŠ àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ
à§àŠ¯àŠŸàŠ¡-àŠ
àŠš àŠàŠšàŠžà§àŠàв àŠàŠ°àŠ²à§"
+" àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°à§àа àŠàŠŸàŠ°à§àНàŠàŠŸàŠ°àŠ¿àŠ€àŠŸ àŠà§àŠà§àŠà§ àŠ¯à§àŠ€à§ àŠªàŠŸàŠ°à§ àŠ¬àŠŸ àŠàŠªàŠšàŠŸàŠ° àŠà§àŠªàŠšà§àŠ¯àŠŒàŠ€àŠŸ àŠàŠ¬àŠ àŠšàŠ¿àŠ°àŠŸàŠªàŠ€à§àŠ€àŠŸ"
+" àŠªà§àаàŠàŠŸàŠ¬àŠ¿àŠ€ àŠàŠ°à§ àŠàŠ®àŠš àŠàŠ°à§ àŠà§àаà§àŠ€àŠ° àŠžàŠ®àŠžà§àŠ¯àŠŸàŠà§àŠ²àŠ¿àŠ° àŠàŠŸàŠ°àŠ£ àŠ¹àŠ€à§ àŠªàŠŸàŠ°à§à¥€ àŠ
àŠ€àŠ¿àŠ°àŠ¿àŠà§àŠ€ "
+"àŠ
à§àŠ¯àŠŸàŠ¡-àŠ
àŠšàŠà§àŠ²àŠ¿ àŠàŠšàŠžà§àŠàв àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠàŠàŠ¿ àŠŠà§àŠ¢àŠŒàŠàŠŸàŠ¬à§ àŠšàŠ¿àŠ°à§à§àŠžàŠŸàŠ¹àŠ¿àŠ€ àŠ¹àŠ¯àŠŒ àŠàŠ¬àŠ àŠàа àŠªà§àаàŠàвà§àŠª àŠàŠ "
+"àŠàŠšàŠ«àŠ¿àŠàŠŸàŠ°à§àŠ¶àŠšà§àа àŠàŠšà§àН àŠžàŠ®àŠ°à§àŠ¥àŠš àŠªà§àŠ°àŠŠàŠŸàŠš àŠàŠ°àŠ¬à§ àŠšàŠŸà¥€"
+
+#: secure-connections.page:8
+msgid "Learn how to protect your data using Tor Browser and HTTPS"
+msgstr ""
+"àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠ¬àŠ HTTPS àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°à§ àŠàŠªàŠšàŠŸàŠ° àŠ¡à§àŠàŠŸ àŠžà§àаàŠà§àŠ·àŠ¿àŠ€ àŠàŠ°àŠŸàŠ° àŠªàŠŠà§àŠ§àŠ€àŠ¿ àŠ¶àŠ¿àŠà§àŠš"
+
+#: secure-connections.page:12
+msgid "Secure Connections"
+msgstr "àŠšàŠ¿àŠ°àŠŸàŠªàŠŠ àŠžàŠàНà§àŠàŠà§àŠ²àŠ¿"
+
+#: secure-connections.page:14
+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 ""
+"àŠ¯àŠŠàŠ¿ àŠà§àŠšàŠ àŠ¬à§àНàŠà§àŠ€àŠ¿àŠàŠ€ àŠ€àŠ¥à§àН àŠ¯à§àŠ®àŠš àŠ²àŠàŠàŠš àŠªàŠŸàŠžàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ¡ àŠàŠšà§àŠàŠŸàŠ°àŠšà§àŠà§ àŠ
à§àŠ¯àŠŸàŠšàŠà§àŠ°àŠ¿àŠªàŠà§àŠ¡ àŠà§àŠ°àŠ®àŠ£ "
+"àŠàаà§, àŠ€àŠ¬à§ àŠàŠàŠ¿ àŠà§àЬ àŠžàŠ¹àŠà§àŠ àŠàŠàŠàŠ¿ àŠàвàŠàŠŸàŠ€à§àŠ°à§ àŠŠà§àŠ¬àŠŸàŠ°àŠŸ àŠàŠàŠàŠŸàŠšà§ àŠ¯àŠŸàŠ¯àŠŒà¥€ àŠ¯àŠŠàŠ¿ àŠàŠªàŠšàŠ¿ àŠà§àŠšàŠ "
+"àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠà§ àŠ²àŠ àŠàŠš àŠàаà§àŠš, àŠ€àŠ¬à§ àŠàŠªàŠšàŠ¿ àŠšàŠ¿àŠ¶à§àŠàŠ¿àŠ€ àŠ¹àŠ¬à§àŠš àŠ¯à§ àŠàŠ àŠžàŠŸàŠàŠàŠàŠ¿ HTTPS àŠàŠšàŠà§àŠ°àŠ¿àŠªàŠ¶àŠš "
+"àŠ
àŠ«àŠŸàŠ° àŠàаà§, àŠ¯àŠŸ àŠàŠ àŠ§àŠ°àŠšà§àа eavesdropping àŠàа àŠ¬àŠ¿àŠ°à§àŠŠà§àŠ§à§ àŠ°àŠà§àŠ·àŠŸ àŠàаà§à¥€ àŠàŠªàŠšàŠ¿ URL àŠ¬àŠŸàŠ°à§ àŠàŠàŠ¿"
+" àŠ¯àŠŸàŠàŠŸàŠ àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§àŠš: àŠàŠªàŠšàŠŸàŠ° àŠžàŠàНà§àŠ àŠàŠšàŠà§àŠ°àŠ¿àŠªà§àŠ àŠàŠ°àŠŸ àŠ¹àŠ²à§, àŠ àŠ¿àŠàŠŸàŠšàŠŸàŠàŠ¿ \"http: //\" àŠàа "
+"àŠªàŠ°àŠ¿àŠ¬àŠ°à§àŠ€à§ \"https: //\" àŠŠàŠ¿àŠ¯àŠŒà§ àŠ¶à§àŠ°à§ àŠ¹àŠ¬à§à¥€"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: secure-connections.page:24
+msgctxt "_"
+msgid ""
+"external ref='media/secure-connections/https.png' "
+"md5='364bcbde7a649b0cea9ae178007c1a50'"
+msgstr ""
+"àŠ¬àŠŸàŠ¹à§àŠ¯àŠ¿àŠ àŠ°à§àŠ«='media/secure-connections/https.png' "
+"md5='364bcbde7a649b0cea9ae178007c1a50'"
+
+#: secure-connections.page:26
+msgid ""
+"The following visualization shows what information is visible to "
+"eavesdroppers with and without Tor Browser and HTTPS encryption:"
+msgstr ""
+"àŠšà§àŠà§àа àŠàŠ¿àŠà§àНà§àŠ¯àŠŒàŠŸàŠ²àŠŸàŠàŠà§àŠ¶àŠŸàŠšàŠàŠ¿ àŠŠà§àŠàŠŸàŠ¯àŠŒ àŠ¯à§ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠ¬àŠ HTTPS àŠàŠšàŠà§àŠ°àŠ¿àŠªàŠ¶àŠšà§àа àŠžàŠŸàŠ¥à§ "
+"àŠàŠ¬àŠ àŠàŠŸàŠ¡àŠŒàŠŸ àŠàŠŸàŠ¡àŠŒàŠŸ àŠà§ eavesdroppers àŠŠà§àŠàŠ€à§ àŠ¹àŠ¯àŠŒ:"
+
+#: secure-connections.page:35
+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 àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаàŠà§àŠš àŠ¯àŠàŠš àŠªàŠ°à§àŠ¯àŠ¬à§àŠà§àŠ·àŠ àŠŠà§àжà§àŠ¯àŠ®àŠŸàŠš àŠàŠ¿ àŠŠà§àŠàŠ€à§ \"àŠàа\" àŠ¬à§àŠ€àŠŸàŠ® àŠà§àŠ²àŠ¿àŠ "
+"àŠàаà§àŠšà¥€ àŠ¯à§ àŠàаàŠàŠ¿ àŠàŠŸàŠ²à§ àŠàŠà§ àŠ€àŠŸ àŠšàŠ¿àŠ°à§àŠŠà§àж àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠ¬à§àŠ€àŠŸàŠ®àŠàŠ¿ àŠžàŠ¬à§àŠ àŠ¹àŠ¯àŠŒà§ àŠ¯àŠŸàŠ¬à§à¥€"
+
+#: secure-connections.page:42
+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 àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаàŠà§àŠš àŠ€àŠàŠš àŠªàŠ°à§àŠ¯àŠ¬à§àŠà§àŠ·àŠàŠŠà§àа àŠàŠŸàŠà§ àŠ¯à§ àŠ¡à§àŠàŠŸ àŠŠà§àжà§àŠ¯àŠ®àŠŸàŠš àŠ€àŠŸ "
+"àŠŠà§àŠàŠ€à§ \"HTTPS\" àŠ¬à§àŠ€àŠŸàŠ®àŠàŠ¿ àŠà§àŠ²àŠ¿àŠ àŠàаà§àŠšà¥€ àŠ¯à§ HTTPS àŠàŠŸàŠ²à§ àŠàŠà§ àŠ€àŠŸ àŠšàŠ¿àŠ°à§àŠŠà§àж àŠàŠ°àŠŸàŠ° àŠàŠšà§àН "
+"àŠ¬à§àŠ€àŠŸàŠ®àŠàŠ¿ àŠžàŠ¬à§àŠ àŠ¹àŠ¯àŠŒà§ àŠ¯àŠŸàŠ¬à§à¥€"
+
+#: secure-connections.page:49
+msgid ""
+"When both buttons are green, you see the data that is visible to observers "
+"when you are using both tools."
+msgstr ""
+"àŠ¯àŠàŠš àŠàŠàŠ¯àŠŒ àŠ¬à§àŠ€àŠŸàŠ®àŠà§àŠ²àŠ¿ àŠžàŠ¬à§àŠ àŠ¹àŠ¯àŠŒ, àŠ€àŠàŠš àŠàŠªàŠšàŠ¿ àŠŠà§àŠàŠ€à§ àŠªàŠŸàŠš àŠ¯à§ àŠàŠªàŠšàŠ¿ àŠàŠàŠ¯àŠŒ àŠžàŠ°àŠà§àŠàŠŸàŠ®àŠà§àŠ²àŠ¿ "
+"àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаàŠà§àŠš àŠ€àŠàŠš àŠàŠªàŠšàŠ¿ àŠŠà§àŠàŠ€à§ àŠªàŠŸàŠ¬à§àŠš àŠàŠ®àŠš àŠ¡à§àŠàŠŸ àŠŠà§àŠà§àŠšà¥€"
+
+#: secure-connections.page:55
+msgid ""
+"When both buttons are grey, you see the data that is visible to observers "
+"when you don't use either tool."
+msgstr ""
+"àŠ¯àŠàŠš àŠàŠàŠ¯àŠŒ àŠ¬à§àŠ€àŠŸàŠ®àŠà§àŠ²àŠ¿ àŠžàŠ¬à§àŠ àŠ¹àŠ¯àŠŒ, àŠ€àŠàŠš àŠàŠªàŠšàŠ¿ àŠŠà§àŠàŠ€à§ àŠªàŠŸàŠš àŠ¯à§ àŠàŠªàŠšàŠ¿ àŠàŠàŠ¯àŠŒ àŠžàŠ°àŠà§àŠàŠŸàŠ®àŠà§àŠ²àŠ¿ "
+"àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаàŠà§àŠš àŠ€àŠàŠš àŠàŠªàŠšàŠ¿ àŠŠà§àŠàŠ€à§ àŠªàŠŸàŠ¬à§àŠš àŠàŠ®àŠš àŠ¡à§àŠàŠŸ àŠŠà§àŠà§àŠšà¥€"
+
+#: secure-connections.page:62
+msgid "Potentially visible data"
+msgstr "àŠžàŠ®à§àŠàŠŸàŠ¬à§àН àŠŠà§àжà§àŠ¯àŠ®àŠŸàŠš àŠ¡à§àŠàŠŸ"
+
+#: secure-connections.page:70
+msgid "The site being visited."
+msgstr "àŠžàŠŸàŠàŠ àŠªàŠ°àŠ¿àŠŠàŠ°à§àŠ¶àŠš àŠàŠ°àŠŸ àŠ¹àŠà§àŠà§à¥€"
+
+#: secure-connections.page:81
+msgid "Username and password used for authentication."
+msgstr "àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ°àŠàŠŸàŠ°à§àа àŠšàŠŸàŠ® àŠàŠ¬àŠ àŠªàŠŸàŠžàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ¡ àŠªà§àŠ°àŠ®àŠŸàŠ£à§àŠàŠ°àŠ£à§àа àŠàŠšà§àН àŠ¬à§àŠ¯àŠ¬àŠ¹à§àŠ€à¥€"
+
+#: secure-connections.page:92
+msgid "Data being transmitted."
+msgstr "àŠ€àŠ¥à§àН àŠªà§àаà§àŠ°àŠ£ àŠàŠ°àŠŸ àŠ¹àŠà§àŠà§à¥€"
+
+#: secure-connections.page:103
+msgid ""
+"Network location of the computer used to visit the website (the public IP "
+"address)."
+msgstr ""
+"àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠà§àа àŠàŠšà§àН àŠ¬à§àŠ¯àŠ¬àŠ¹à§àŠ€ àŠàŠ®à§àŠªàŠ¿àŠàŠàŠŸàŠ°à§àа àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠžà§àŠ¥àŠŸàŠš (àŠªàŠŸàŠ¬àŠ²àŠ¿àŠ àŠàŠàŠªàŠ¿ àŠ àŠ¿àŠàŠŸàŠšàŠŸ)ी"
+
+#: secure-connections.page:115
+msgid "Whether or not Tor is being used."
+msgstr "àŠàаà§àŠ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠŸ àŠ¹àŠà§àŠà§ àŠàŠ¿àŠšàŠŸ àŠ¬àŠŸ àŠšàŠŸà¥€"
+
+#: security-slider.page:6
+msgid "Configuring Tor Browser for security and usability"
+msgstr "àŠšàŠ¿àŠ°àŠŸàŠªàŠ€à§àŠ€àŠŸ àŠàŠ¬àŠ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ°àŠ¯à§àŠà§àŠ¯àŠ€àŠŸ àŠàŠšà§àН àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠšàŠ«àŠ¿àŠàŠŸàŠ°"
+
+#: security-slider.page:10
+msgid "Security Slider"
+msgstr "àŠšàŠ¿àŠ°àŠŸàŠªàŠ€à§àŠ€àŠŸ àŠžà§àŠ²àŠŸàŠàŠ¡àŠŸàŠ°"
+
+#: security-slider.page:11
+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 ""
+"àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°àŠàŠ¿ àŠàŠàŠàŠ¿ \"àŠžàŠ¿àŠàŠ¿àŠàŠ°àŠ¿àŠàŠ¿ àŠžà§àŠ²àŠŸàŠàŠ¡àŠŸàŠ°\" àŠ
àŠšà§àŠ€àŠ°à§àŠà§àŠà§àŠ€ àŠàŠ°à§ àŠ¯àŠŸ àŠàŠªàŠšàŠŸàŠà§ àŠàŠªàŠšàŠŸàŠ° "
+"àŠžà§àаàŠà§àŠ·àŠŸ àŠàŠ¬àŠ àŠà§àŠªàŠšà§àŠ¯àŠŒàŠ€àŠŸ àŠàŠà§àŠ°àŠ®àŠ£à§àа àŠàŠšà§àН àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠŸ àŠ¯à§àŠ€à§ àŠªàŠŸàŠ°à§ àŠàŠ®àŠš àŠšàŠ¿àŠ°à§àŠŠàŠ¿àŠ·à§àŠ "
+"àŠàŠ¯àŠŒà§àЬ àŠ¬à§àŠ¶àŠ¿àŠ·à§àŠà§àН àŠ
àŠà§àŠ·àŠ® àŠàŠ°à§ àŠàŠªàŠšàŠŸàŠ° àŠšàŠ¿àŠ°àŠŸàŠªàŠ€à§àŠ€àŠŸ àŠ¬à§àŠŠà§àŠ§àŠ¿ àŠàаà§à¥€ àŠà§àŠ°àŠ®àŠ¬àŠ°à§àŠ§àŠ®àŠŸàŠš àŠàа "
+"àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°à§àа àŠšàŠ¿àŠ°àŠŸàŠªàŠ€à§àŠ€àŠŸ àŠžà§àŠ€àŠ° àŠžàŠ àŠ¿àŠàŠàŠŸàŠ¬à§ àŠàŠŸàŠ àŠàŠ°àŠŸàŠ° àŠàŠ¿àŠà§ àŠàŠ¯àŠŒà§àЬ àŠªà§àŠ àŠ¬àŠšà§àЧ àŠàŠ°àŠ¬à§, àŠ€àŠŸàŠ "
+"àŠàŠªàŠšàŠŸàŠ° àŠªà§àŠ°àŠ¯àŠŒà§àŠàŠšà§àŠ¯àŠŒ àŠªà§àŠ°àŠ¯àŠŒà§àŠàŠšà§àŠ¯àŠŒàŠ€àŠŸàŠàŠ¿ àŠ¡àŠ¿àŠà§àŠ°àŠ¿àŠ° àŠ¬àŠ¿àŠ°à§àŠŠà§àŠ§à§ àŠàŠªàŠšàŠŸàŠ° àŠžà§àаàŠà§àŠ·àŠŸàŠ° "
+"àŠªà§àŠ°àŠ¯àŠŒà§àŠàŠšàŠà§àŠ²àŠ¿àŠ° àŠ€à§àŠ²àŠšàŠŸ àŠàŠ°àŠŸ àŠàŠàŠ¿àŠ€à¥€"
+
+#: security-slider.page:21
+msgid "Accessing the Security Slider"
+msgstr "Accessing the Security Slider"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: security-slider.page:23
+msgctxt "_"
+msgid ""
+"external ref='media/security-slider/slider.png' "
+"md5='3c469cd3ed9f60ebb6bbbc63daa90082'"
+msgstr ""
+"àŠ¬àŠŸàŠ¹à§àŠ¯àŠ¿àŠ àŠ°à§àŠ«='media/security-slider/slider.png' "
+"md5='3c469cd3ed9f60ebb6bbbc63daa90082'"
+
+#: security-slider.page:25
+msgid ""
+"The Security Slider is located in Torbuttonâs âPrivacy and Security "
+"Settingsâ menu."
+msgstr ""
+"àŠšàŠ¿àŠ°àŠŸàŠªàŠ€à§àŠ€àŠŸ àŠžà§àŠ²àŠŸàŠàŠ¡àŠŸàŠ° Torbutton àŠàа \"àŠà§àŠªàŠšà§àŠ¯àŠŒàŠ€àŠŸ àŠàŠ¬àŠ àŠšàŠ¿àŠ°àŠŸàŠªàŠ€à§àŠ€àŠŸ àŠžà§àŠàŠ¿àŠàŠž\" àŠ®à§àŠšà§àŠ€à§ "
+"àŠ
àŠ¬àŠžà§àŠ¥àŠ¿àŠ€à¥€"
+
+#: security-slider.page:32
+msgid "Security Levels"
+msgstr "àŠšàŠ¿àŠ°àŠŸàŠªàŠ€à§àŠ€àŠŸ àŠžà§àŠ€àŠ°"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: security-slider.page:34
+msgctxt "_"
+msgid ""
+"external ref='media/security-slider/slider_window.png' "
+"md5='c733bdccd1731ed1a772777b25bae7a1'"
+msgstr ""
+"àŠ¬àŠŸàŠ¹à§àŠ¯àŠ¿àŠ àŠ°à§àŠ«='media/security-slider/slider_window.png' "
+"md5='c733bdccd1731ed1a772777b25bae7a1'"
+
+#: security-slider.page:36
+msgid ""
+"Increasing the level of the Security Slider will disable or partially "
+"disable certain browser features to protect against possible attacks."
+msgstr ""
+"Increasing the level of the Security Slider will disable or partially "
+"disable certain browser features to protect against possible attacks."
+
+#: security-slider.page:42
+msgid "High"
+msgstr "àŠàŠà§àŠ"
+
+#: security-slider.page:43
+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 ""
+"àŠàŠ àŠžà§àŠ€àŠ°à§, HTML5 àŠàŠ¿àŠ¡àŠ¿àŠ àŠàŠ¬àŠ àŠ
àŠ¡àŠ¿àŠ àŠ®àŠ¿àŠ¡àŠ¿àŠ¯àŠŒàŠŸ àŠšà§àŠàŠžàŠªà§àа àŠ®àŠŸàŠ§à§àŠ¯àŠ®à§ àŠà§àŠ²àŠ¿àŠ àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠà§àŠ²àŠ¿àŠ"
+" àŠàаà§; àŠžàŠ®àŠžà§àŠ€ àŠàŠŸàŠàŠŸàŠžà§àŠà§àŠ°àŠ¿àŠªà§àŠ àŠ
àŠªà§àŠàŠ¿àŠ®àŠŸàŠàŠà§àŠ¶àŠš àŠšàŠ¿àŠ·à§àŠà§àŠ°àŠ¿àŠ¯àŠŒ àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒ àŠàŠ¿àŠà§ àŠàŠŸàŠ£àŠ¿àŠ€àŠ¿àŠ "
+"àŠžàŠ®à§àŠàŠ°àŠ£ àŠžàŠ àŠ¿àŠàŠàŠŸàŠ¬à§ àŠªà§àŠ°àŠŠàŠ°à§àŠ¶àŠš àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§ àŠšàŠŸ; àŠàŠ¿àŠà§ àŠ«àŠšà§àŠ àŠ°à§àŠšà§àŠ¡àŠŸàŠ°àŠ¿àŠ àŠ¬à§àŠ¶àŠ¿àŠ·à§àŠà§àН "
+"àŠšàŠ¿àŠ·à§àŠà§àŠ°àŠ¿àŠ¯àŠŒ àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒ; àŠàŠ¿àŠà§ àŠ§àŠ°àŠšà§àа àŠàŠ®à§àŠ àŠ
àŠà§àŠ·àŠ® àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒ; àŠàŠŸàŠàŠŸàŠžà§àŠà§àŠ°àŠ¿àŠªà§àŠ àŠžàŠ®àŠžà§àŠ€ àŠžàŠŸàŠàŠ "
+"àŠ¡àŠ¿àŠ«àŠ²à§àŠ àŠŠà§àŠ¬àŠŸàŠ°àŠŸ àŠ
àŠà§àŠ·àŠ® àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒ; àŠ
àŠ§àŠ¿àŠàŠŸàŠàж àŠàŠ¿àŠ¡àŠ¿àŠ àŠàŠ¬àŠ àŠ
àŠ¡àŠ¿àŠ àŠ«àŠ°àŠ®à§àŠ¯àŠŸàŠ àŠ
àŠà§àŠ·àŠ®; àŠàŠ¬àŠ àŠàŠ¿àŠà§ "
+"àŠ«àŠšà§àŠ àŠàŠ¬àŠ àŠàŠàŠàŠš àŠžàŠ àŠ¿àŠàŠàŠŸàŠ¬à§ àŠªà§àŠ°àŠŠàŠ°à§àŠ¶àŠš àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§ àŠšàŠŸà¥€"
+
+#: security-slider.page:53
+msgid "Medium-High"
+msgstr "àŠ®à§àŠàŠŸàŠ®à§àŠàŠ¿ àŠàŠà§"
+
+#: security-slider.page:54
+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-<link xref=\"secure-"
+"connections\">HTTPS</link> sites."
+msgstr ""
+"àŠàŠ àŠžà§àŠ€àŠ°à§, HTML5 àŠàŠ¿àŠ¡àŠ¿àŠ àŠàŠ¬àŠ àŠ
àŠ¡àŠ¿àŠ àŠ®àŠ¿àŠ¡àŠ¿àŠ¯àŠŒàŠŸ àŠšà§àŠàŠžàŠªà§àа àŠ®àŠŸàŠ§à§àŠ¯àŠ®à§ àŠà§àŠ²àŠ¿àŠ àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠà§àŠ²àŠ¿àŠ"
+" àŠàаà§; àŠžàŠ®àŠžà§àŠ€ àŠàŠŸàŠàŠŸàŠžà§àŠà§àŠ°àŠ¿àŠªà§àŠ àŠ
àŠªà§àŠàŠ¿àŠ®àŠŸàŠàŠà§àŠ¶àŠš àŠšàŠ¿àŠ·à§àŠà§àŠ°àŠ¿àŠ¯àŠŒ àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒ àŠàŠ¿àŠà§ àŠàŠŸàŠ£àŠ¿àŠ€àŠ¿àŠ "
+"àŠžàŠ®à§àŠàŠ°àŠ£ àŠžàŠ àŠ¿àŠàŠàŠŸàŠ¬à§ àŠªà§àŠ°àŠŠàŠ°à§àŠ¶àŠš àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§ àŠšàŠŸ; àŠàŠ¿àŠà§ àŠ«àŠšà§àŠ àŠ°à§àŠšà§àŠ¡àŠŸàŠ°àŠ¿àŠ àŠ¬à§àŠ¶àŠ¿àŠ·à§àŠà§àН "
+"àŠšàŠ¿àŠ·à§àŠà§àŠ°àŠ¿àŠ¯àŠŒ àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒ; àŠàŠ¿àŠà§ àŠ§àŠ°àŠšà§àа àŠàŠ®à§àŠ àŠ
àŠà§àŠ·àŠ® àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒ; àŠàŠ¬àŠ àŠžàŠ®àŠžà§àŠ€ àŠ
-HTTPS "
+"àŠžàŠŸàŠàŠàŠà§àŠ²àŠ¿àŠ€à§ àŠ¡àŠ¿àŠ«àŠ²à§àŠàŠàŠŸàŠ¬à§ àŠàŠŸàŠàŠŸàŠžà§àŠà§àŠ°àŠ¿àŠªà§àŠ àŠšàŠ¿àŠ·à§àŠà§àŠ°àŠ¿àŠ¯àŠŒ àŠàŠ°àŠŸ àŠàŠà§à¥€"
+
+#: security-slider.page:64
+msgid "Medium-Low"
+msgstr "àŠ®àŠŸàŠàŠŸàŠ°àŠ¿ àŠšàŠ¿àŠ®à§àŠš"
+
+#: security-slider.page:65
+msgid ""
+"At this level, HTML5 video and audio media become click-to-play via "
+"NoScript; some <link xref=\"plugins\">JavaScript</link> performance "
+"optimizations are disabled, causing some websites to run more slowly; and "
+"some mathematical equations may not display properly."
+msgstr ""
+"àŠàŠ àŠžà§àŠ€àŠ°à§, HTML5 àŠàŠ¿àŠ¡àŠ¿àŠ àŠàŠ¬àŠ àŠ
àŠ¡àŠ¿àŠ àŠ®àŠ¿àŠ¡àŠ¿àŠ¯àŠŒàŠŸ àŠšà§àŠàŠžàŠªà§àа àŠ®àŠŸàŠ§à§àŠ¯àŠ®à§ àŠà§àŠ²àŠ¿àŠ àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠà§àŠ²àŠ¿àŠ"
+" àŠàаà§; àŠàŠ¿àŠà§ àŠàŠŸàŠàŠŸàŠžà§àŠà§àŠ°àŠ¿àŠªà§àŠ àŠ
àŠªà§àŠàŠ¿àŠ®àŠŸàŠàŠà§àŠ¶àŠš àŠšàŠ¿àŠ·à§àŠà§àŠ°àŠ¿àŠ¯àŠŒ, àŠàŠ¿àŠà§ àŠàŠ¯àŠŒà§àŠ¬àŠžàŠŸàŠàŠ àŠàŠ°à§ àŠ§à§àŠ°à§ "
+"àŠ§à§àŠ°à§ àŠàŠŸàŠ²àŠŸàŠšà§àа àŠàŠŸàŠ°àŠ£à§; àŠàŠ¬àŠ àŠàŠ¿àŠà§ àŠàŠŸàŠ£àŠ¿àŠ€àŠ¿àŠ àŠžàŠ®à§àŠàŠ°àŠ£ àŠžàŠ àŠ¿àŠàŠàŠŸàŠ¬à§ àŠªà§àŠ°àŠŠàŠ°à§àŠ¶àŠ¿àŠ€ àŠ¹àŠ¬à§ àŠšàŠŸà¥€"
+
+#: security-slider.page:73
+msgid "Low"
+msgstr "àŠšàŠ¿àŠ®à§àŠš"
+
+#: security-slider.page:74
+msgid ""
+"At this level, all browser features are enabled. This is the most usable "
+"option."
+msgstr ""
+"àŠàŠ àŠžà§àŠ€àŠ°à§, àŠžàŠ®àŠžà§àŠ€ àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ¬à§àŠ¶àŠ¿àŠ·à§àŠà§àН àŠžàŠà§àŠ·àŠ® àŠàŠ°àŠŸ àŠàŠà§à¥€ àŠàŠàŠ¿ àŠžàŠ¬àŠà§àŠ¯àŠŒà§ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ°àŠ¯à§àŠà§àН "
+"àŠ¬àŠ¿àŠàвà§àŠªà¥€"
+
+#: transports.page:6 transports.page:20
+msgid "Types of pluggable transport"
+msgstr "àŠªà§àвà§àŠ¯àŠŸàŠà§àŠ¬àŠ² àŠà§àŠ°àŠŸàŠšà§àŠžàŠªà§àаà§àŠà§àа àŠ§àŠ°àŠš"
+
+#: transports.page:10
+msgid "Pluggable Transports"
+msgstr "àŠªà§àвà§àŠ¯àŠŸàŠà§àŠ¬àŠ² àŠà§àŠ°àŠŸàŠšà§àŠžàŠªà§àаà§àŠàŠà§àŠ²àŠ¿"
+
+#: transports.page:12
+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 ""
+"àŠªà§àвà§àŠ¯àŠŸàŠà§àŠ¬àŠ² àŠà§àŠ°àŠŸàŠšà§àŠžàŠ«àŠ°à§àŠ®àŠà§àŠ²àŠ¿ àŠàŠ®àŠš àŠžàŠ°àŠà§àŠàŠŸàŠ®àŠà§àŠ²àŠ¿ àŠ¯àŠŸ àŠàаàŠà§ àŠà§àаà§àŠ¯àŠŸàŠ«àŠ¿àŠà§àа àŠàŠŠà§àŠ®àŠ¬à§àŠ¶à§ "
+"àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§à¥€ àŠàŠàŠ¿ àŠàŠàŠàŠ¿ àŠàŠšà§àŠàŠŸàŠ°àŠšà§àŠ àŠªàŠ°àŠ¿àŠ·à§àŠ¬àŠŸ àŠžàŠ°àŠ¬àŠ°àŠŸàŠ¹àŠàŠŸàŠ°à§ àŠ¬àŠŸ àŠ
àŠšà§àН àŠàаà§àŠ€à§àŠªàŠà§àŠ· "
+"àŠžàŠà§àŠ°àŠ¿àŠ¯àŠŒàŠàŠŸàŠ¬à§ àŠàа àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠžàŠàНà§àŠ àŠžàŠàНà§àŠ àŠ
àŠ¬àŠ°à§àЧ àŠ¯à§àŠàŠŸàŠšà§ àŠªàŠ°àŠ¿àŠžà§àŠ¥àŠ¿àŠ€àŠ¿àŠ€à§ àŠŠàŠ°àŠàŠŸàŠ°à§ àŠ¹àŠ€à§ "
+"àŠªàŠŸàŠ°à§à¥€"
+
+#: transports.page:21
+msgid ""
+"Currently there are six pluggable transports available, but more are being "
+"developed."
+msgstr ""
+"àŠ¬àŠ°à§àŠ€àŠ®àŠŸàŠšà§ àŠàŠ¯àŠŒàŠàŠ¿ àŠªà§àвà§àŠ¯àŠŸàŠà§àŠ¬àŠ² àŠà§àŠ°àŠŸàŠšà§àŠžàŠªà§àаà§àŠàŠà§àŠ²àŠ¿ àŠªàŠŸàŠàŠ¯àŠŒàŠŸ àŠ¯àŠŸàŠ¯àŠŒ, àŠ€àŠ¬à§ àŠàŠ°à§ àŠàŠšà§àŠšàŠ€ àŠàŠ°àŠŸ "
+"àŠ¹àŠà§àŠà§à¥€"
+
+#: transports.page:28
+msgid "obfs3"
+msgstr "obfs3"
+
+#: transports.page:33
+msgid ""
+"obfs3 makes Tor traffic look random, so that it does not look like Tor or "
+"any other protocol. obfs3 bridges will work in most places."
+msgstr ""
+"obfs3 àŠàа àŠà§àаà§àŠ¯àŠŸàŠ«àŠ¿àŠ àŠ°à§àŠ¯àŠŸàŠšà§àŠ¡àŠ® àŠŠà§àŠàŠŸàŠ¯àŠŒ, àŠ¯àŠŸàŠ€à§ àŠàŠàŠ¿ àŠàа àŠ¬àŠŸ àŠ
àŠšà§àН àŠà§àŠšàŠ àŠªà§àаà§àŠà§àŠàвà§àа àŠ®àŠ€à§ "
+"àŠŠà§àŠàŠ€à§ àŠšàŠŸ àŠ¹àŠ¯àŠŒà¥€ obfs3 àŠžà§àŠ€à§ àŠ
àŠ§àŠ¿àŠàŠŸàŠàж àŠàŠŸàŠ¯àŠŒàŠàŠŸàŠ¯àŠŒ àŠàŠŸàŠ àŠàŠ°àŠ¬à§à¥€"
+
+#: transports.page:42
+msgid "obfs4"
+msgstr "obfs4"
+
+#: transports.page:47
+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 àŠàа àŠà§àаà§àŠ¯àŠŸàŠ«àŠ¿àŠàŠàŠ¿ àŠ
à§àŠ¯àŠŸàŠ®àŠ«àŠž 3 àŠàа àŠ®àŠ€à§ àŠ°à§àŠ¯àŠŸàŠšà§àŠ¡àŠ® àŠŠà§àŠàŠŸàŠ¯àŠŒ, àŠàŠ¬àŠ àŠàŠšà§àŠàŠŸàŠ°àŠšà§àŠ "
+"àŠžà§àŠà§àŠ¯àŠŸàŠšàŠ¿àŠ àŠŠà§àŠ¬àŠŸàŠ°àŠŸ àŠ¬à§àŠ°àŠ¿àŠ àŠà§àŠàŠà§ àŠªà§àŠ€à§ àŠžà§àŠšà§àŠžàŠ°àŠà§àŠ²àŠ¿àŠà§àŠ àŠªà§àŠ°àŠ€àŠ¿àŠ°à§àЧ àŠàаà§à¥€ obfs4 àŠ¬à§àŠ°àŠ¿àŠ "
+"obfs3 àŠ¬à§àŠ°àŠ¿àŠà§àа àŠà§àŠ¯àŠŒà§ àŠ¬à§àŠ²àŠ àŠàŠ°àŠŸ àŠžàŠ®à§àŠàŠ¬àŠ€ àŠàŠ®à¥€"
+
+#: transports.page:56
+msgid "Scramblesuit"
+msgstr "Scramblesuit"
+
+#: transports.page:61
+msgid "ScrambleSuit is similar to obfs4 but has a different set of bridges."
+msgstr "ScrambleSuit obfs4 àŠ
àŠšà§àаà§àŠª àŠàŠ¿àŠšà§àŠ€à§ àŠ¬à§àŠ°àŠ¿àŠ àŠàŠàŠàŠ¿ àŠàŠ¿àŠšà§àŠš àŠžà§àŠ àŠàŠà§à¥€"
+
+#: transports.page:69
+msgid "FTE"
+msgstr "FTE"
+
+#: transports.page:74
+msgid ""
+"FTE (format-transforming encryption) disguises Tor traffic as ordinary web "
+"(HTTP) traffic."
+msgstr ""
+"FTE (àŠ«àŠ°àŠ®à§àŠ¯àŠŸàŠ-àŠ°à§àŠªàŠŸàŠšà§àŠ€àŠ° àŠàŠšàŠà§àŠ°àŠ¿àŠªàŠ¶àŠš) àŠžàŠŸàŠ§àŠŸàŠ°àŠ£ àŠàŠ¯àŠŒà§àЬ (HTTP) àŠà§àаà§àŠ¯àŠŸàŠ«àŠ¿àŠ àŠ¹àŠ¿àŠžàŠŸàŠ¬à§ àŠàа "
+"àŠà§àŠ°àŠŸàŠ«àŠ¿àŠ àŠàŠŠà§àŠ®àŠ¬à§àŠ¶à¥€"
+
+#: transports.page:82
+msgid "meek"
+msgstr "meek"
+
+#: transports.page:87
+msgid ""
+"These 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 ""
+"àŠàŠ àŠžàŠ¬ transports àŠàŠªàŠšàŠ¿ àŠàа àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠŸàŠ° àŠªàŠ°àŠ¿àŠ¬àŠ°à§àŠ€à§ àŠàŠàŠàŠ¿ àŠªà§àŠ°àŠ§àŠŸàŠš àŠàŠ¯àŠŒà§àЬ àŠžàŠŸàŠàŠ àŠ¬à§àŠ°àŠŸàŠàŠ"
+" àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒ àŠ®àŠ€ àŠŠà§àŠàŠ€à§ àŠàŠàŠ¿à¥€ àŠšàŠ®àŠžà§àŠàŠŸàŠ°-àŠà§àŠ¯àŠŸàŠ®à§àŠàŠŸàŠš àŠàŠàŠ¿ àŠŠà§àŠàŠŸàŠ¯àŠŒ àŠ¯à§ àŠàŠªàŠšàŠ¿ àŠ
à§àŠ¯àŠŸàŠ®àŠŸàŠàŠš àŠàŠ¯àŠŒà§àЬ "
+"àŠªàŠ°àŠ¿àŠ·à§àŠ¬àŠŸ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаàŠà§àŠš; àŠ®à§àŠàŠŸàŠ°-àŠ
àŠàа àŠàŠàŠ¿ àŠàŠàŠàŠ¿ àŠ®àŠŸàŠàŠà§àаà§àŠžàŠ«à§àŠ àŠàŠ¯àŠŒà§àЬ àŠžàŠŸàŠàŠ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаà§"
+" àŠŠà§àŠàŠŸàŠ¯àŠŒ; àŠàŠ¬àŠ àŠšàŠ¿àŠà§àŠàŠ€-àŠà§àŠàв àŠàŠàŠ¿ àŠŠà§àŠàŠŸàŠ¯àŠŒ àŠ¯à§ àŠàŠªàŠšàŠ¿ àŠà§àŠàв àŠ
àŠšà§àŠžàŠšà§àŠ§àŠŸàŠš àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаàŠà§àŠšà¥€"
+
+#: troubleshooting.page:6
+msgid "What to do if Tor Browser doesnât work"
+msgstr "àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠŸàŠ àŠšàŠŸ àŠàŠ°àŠ²à§ àŠàŠ¿ àŠàŠ°àŠ¬à§àŠš?"
+
+#: troubleshooting.page:12
+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 ""
+"àŠàŠªàŠšàŠ¿ àŠªà§àаà§àŠà§àŠ°àŠŸàŠ®àŠàŠ¿ àŠàŠŸàŠ²àŠŸàŠšà§àа àŠªàŠ°à§, àŠàŠ¬àŠ àŠàŠªàŠšàŠ¿ \"àŠªà§àŠ°àŠ¥àŠ®àŠ¬àŠŸàŠ°à§àа àŠ®àŠ€ àŠàŠàŠ¿ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаà§\" àŠ¯àŠŠàŠ¿"
+" \"àŠžàŠàНà§àŠ\" àŠ¬à§àŠ€àŠŸàŠ®àŠàŠ¿ àŠà§àŠ²àŠ¿àŠ àŠàŠ°àŠŸàŠ° àŠªàŠ°à§ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°à§ àŠàŠ¯àŠŒà§àŠ¬à§ àŠ¬à§àŠ°àŠŸàŠàŠ àŠàŠ°àŠŸ "
+"àŠ¶à§àŠ°à§ àŠàŠ°àŠ€à§ àŠžàŠà§àŠ·àŠ® àŠ¹àŠàŠ¯àŠŒàŠŸ àŠàŠàŠ¿àŠ€à¥€"
+
+#: troubleshooting.page:21
+msgid "Quick fixes"
+msgstr "àŠŠà§àаà§àŠ€ àŠžàŠàжà§àŠ§àŠš"
+
+#: troubleshooting.page:22
+msgid ""
+"If Tor Browser doesnât connect, there may be a simple solution. Try each of "
+"the following:"
+msgstr ""
+"àŠ¯àŠŠàŠ¿ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠžàŠàНà§àŠà§àŠ€ àŠšàŠŸ àŠ¹àŠ¯àŠŒ, àŠ€àŠ¬à§ àŠàŠàŠàŠ¿ àŠžàŠ¹àŠ àŠžàŠ®àŠŸàŠ§àŠŸàŠš àŠ¹àŠ€à§ àŠªàŠŸàŠ°à§à¥€ àŠšàŠ¿àŠ®à§àŠšàŠ²àŠ¿àŠàŠ¿àŠ€ "
+"àŠªà§àŠ°àŠ€àŠ¿àŠàŠ¿ àŠà§àŠ·à§àŠàŠŸ àŠàаà§àŠš:"
+
+#: troubleshooting.page:29
+msgid ""
+"Your computerâs system clock must be set correctly, or Tor will not be able "
+"to connect."
+msgstr ""
+"àŠàŠªàŠšàŠŸàŠ° àŠàŠ®à§àŠªàŠ¿àŠàŠàŠŸàŠ°à§àа àŠžàŠ¿àŠžà§àŠà§àŠ® àŠàŠ¡àŠŒàŠ¿ àŠžàŠ àŠ¿àŠàŠàŠŸàŠ¬à§ àŠžà§àŠ àŠàŠ°àŠŸ àŠàŠàŠ¿àŠ€, àŠ
àŠ¥àŠ¬àŠŸ Tor àŠžàŠàНà§àŠ àŠàŠ°àŠ€à§ "
+"àŠžàŠà§àŠ·àŠ® àŠ¹àŠ¬à§ àŠšàŠŸà¥€"
+
+#: troubleshooting.page:35
+msgid ""
+"Make sure another Tor Browser is not already running. If youâre not sure if "
+"Tor Browser is running, restart your computer."
+msgstr ""
+"àŠ
àŠšà§àН àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠ€àŠ¿àŠ®àŠ§à§àŠ¯à§ àŠàвàŠà§ àŠšàŠŸ àŠšàŠ¿àŠ¶à§àŠàŠ¿àŠ€ àŠàаà§àŠšà¥€ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàвàŠà§ àŠàŠ¿àŠšàŠŸ àŠ€àŠŸ "
+"àŠšàŠ¿àŠ¶à§àŠàŠ¿àŠ€ àŠšàŠŸ àŠ¹àŠ²à§ àŠàŠªàŠšàŠŸàŠ° àŠàŠ®à§àŠªàŠ¿àŠàŠàŠŸàŠ° àŠªà§àŠšàŠ°àŠŸàŠ¯àŠŒ àŠàŠŸàŠ²à§ àŠàаà§àŠšà¥€"
+
+#: troubleshooting.page:41
+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 ""
+"àŠšàŠ¿àŠ¶à§àŠàŠ¿àŠ€ àŠàаà§àŠš àŠ¯à§ àŠàŠªàŠšàŠ¿ àŠ¯à§ àŠà§àŠšàŠ àŠ
à§àŠ¯àŠŸàŠšà§àŠàŠ¿àŠàŠŸàŠàŠ°àŠŸàŠž àŠªà§àаà§àŠà§àŠ°àŠŸàŠ® àŠàŠšàŠžà§àŠàв àŠàаà§àŠà§àŠš àŠžà§àŠàŠ¿ "
+"àŠàаàŠà§ àŠàŠ²àŠ®àŠŸàŠš àŠ¥à§àŠà§ àŠ¬àŠ¿àŠ°àŠ€ àŠàŠ°àŠŸ àŠ¹àŠà§àŠà§ àŠšàŠŸà¥€ àŠàŠªàŠšàŠŸàŠ° àŠ
à§àŠ¯àŠŸàŠšà§àŠàŠ¿àŠàŠŸàŠàŠ°àŠŸàŠž àŠžàŠ«àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ°à§àа àŠàŠšà§àН "
+"àŠ¡àŠà§àŠ®à§àŠšà§àŠà§àŠ¶àŠšà§àа àŠžàŠŸàŠ¥à§ àŠªàŠ°àŠŸàŠ®àŠ°à§àж àŠàŠ°àŠ€à§ àŠ¹àŠ¬à§ àŠ¯àŠŠàŠ¿ àŠàŠªàŠšàŠ¿ àŠàŠàŠ¿ àŠàŠ¿àŠàŠŸàŠ¬à§ àŠàŠ°àŠ€à§ àŠšàŠŸ àŠàŠŸàŠšà§àŠšà¥€"
+
+#: troubleshooting.page:49
+msgid "Temporarily disable your firewall."
+msgstr "àŠ
àŠžà§àŠ¥àŠŸàŠ¯àŠŒà§àŠàŠŸàŠ¬à§ àŠàŠªàŠšàŠŸàŠ° àŠ«àŠŸàŠ¯àŠŒàŠŸàŠ°àŠàŠ¯àŠŒàŠŸàŠ² àŠ
àŠà§àŠ·àŠ® àŠàаà§àŠšà¥€"
+
+#: troubleshooting.page:54
+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 ""
+"àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ®à§àŠà§àŠš àŠàŠ¬àŠ àŠàŠàŠ¿ àŠàŠ¬àŠŸàŠ° àŠàŠšàŠžà§àŠàв àŠàаà§àŠšà¥€ àŠàŠªàŠ¡à§àŠ àŠàŠ°àŠ²à§, àŠ¶à§àŠ§à§ àŠàŠªàŠšàŠŸàŠ° àŠªà§àаà§àЬà§àа "
+"àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ«àŠŸàŠàвàŠà§àŠ²àŠ¿àŠà§ àŠàŠàŠŸàŠ°àŠ°àŠŸàŠàŠ àŠàŠ°àŠ¬à§àŠš àŠšàŠŸ; àŠ€àŠŸàŠ°àŠŸ àŠªà§àаà§àŠªà§àŠ°àŠ¿ àŠªà§àаà§àŠªà§àŠ°àŠ¿ àŠ®à§àŠà§ àŠ«à§àŠ²àŠŸ "
+"àŠ¹àŠ¯àŠŒ àŠšàŠ¿àŠ¶à§àŠàŠ¿àŠ€à¥€"
+
+#: troubleshooting.page:64
+msgid "Is your connection censored?"
+msgstr "àŠàŠªàŠšàŠŸàŠ° àŠžàŠàНà§àŠ àŠžà§àŠšà§àŠžàŠ° àŠ¹àŠ¯àŠŒ?"
+
+#: troubleshooting.page:65
+msgid ""
+"If you still canât connect, your Internet Service Provider might be "
+"censoring connections to the Tor network. Read the <link "
+"xref=\"circumvention\">Circumvention</link> section for possible solutions."
+msgstr ""
+"àŠàŠªàŠšàŠ¿ àŠ¯àŠŠàŠ¿ àŠàŠàŠšàŠ àŠžàŠàНà§àŠ àŠàŠ°àŠ€à§ àŠšàŠŸ àŠªàŠŸàŠ°à§àŠš, àŠ€àŠŸàŠ¹àŠ²à§ àŠàŠªàŠšàŠŸàŠ° àŠàŠšà§àŠàŠŸàŠ°àŠšà§àŠ àŠªàŠ°àŠ¿àŠ·à§àŠ¬àŠŸ àŠžàŠ°àŠ¬àŠ°àŠŸàŠ¹àŠàŠŸàŠ°à§ "
+"àŠàа àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠà§ àŠžàŠàНà§àŠ àŠ¬àŠ¿àŠà§àŠàŠ¿àŠšà§àŠš àŠ¹àŠ€à§ àŠªàŠŸàŠ°à§à¥€ àŠžàŠ®à§àŠàЬ àŠžàŠ®àŠŸàŠ§àŠŸàŠš àŠàŠšà§àН àŠžà§àŠ®àŠŸàŠ¬àŠŠà§àŠ§àŠ€àŠŸ "
+"àŠ
àŠ§à§àŠ¯àŠŸàŠ¯àŠŒ àŠªàŠ¡àŠŒà§àŠš"
+
+#: troubleshooting.page:74
+msgid "Known issues"
+msgstr "àŠà§àŠàŠŸàŠ€ àŠžàŠ®àŠžà§àŠ¯àŠŸ"
+
+#: troubleshooting.page:75
+msgid ""
+"Tor Browser is under constant development, and some issues are known about "
+"but not yet fixed. Please check the <link xref=\"known-issues\">Known "
+"Issues</link> page to see if the problem you are experiencing is already "
+"listed there."
+msgstr ""
+"àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ§à§àаà§àŠ¬àŠ àŠàŠšà§àŠšàŠ¯àŠŒàŠš àŠ
àŠ§à§àŠšà§, àŠàŠ¬àŠ àŠàŠ¿àŠà§ àŠ¬àŠ¿àŠ·àŠ¯àŠŒ àŠžàŠ®à§àŠªàŠ°à§àŠà§ àŠàŠŸàŠšàŠŸ àŠ¯àŠŸàŠ¯àŠŒ àŠàŠ¿àŠšà§àŠ€à§ "
+"àŠàŠàŠšà§ àŠžàŠàжà§àŠ§àŠš àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒ àŠšàŠ¿à¥€ àŠàŠªàŠšàŠ¿ àŠžàŠ®à§àŠ®à§àŠà§àŠš àŠžàŠ®àŠžà§àŠ¯àŠŸ àŠàŠ€àŠ¿àŠ®àŠ§à§àŠ¯à§ àŠžà§àŠàŠŸàŠšà§ àŠ€àŠŸàŠ²àŠ¿àŠàŠŸàŠà§àŠà§àŠ€ àŠàŠ°àŠŸ"
+" àŠ¹àŠ¯àŠŒ àŠàŠ¿àŠšàŠŸ àŠ€àŠŸ àŠàŠŸàŠšàŠŸàŠ° àŠàŠšà§àН àŠà§àŠàŠŸàŠ€ àŠžàŠ®àŠžà§àŠ¯àŠŸ àŠªà§àŠ·à§àŠ àŠŸ àŠà§àŠ àŠàаà§àŠšà¥€"
+
+#: uninstalling.page:6
+msgid "How to remove Tor Browser from your system"
+msgstr "àŠàŠªàŠšàŠŸàŠ° àŠžàŠ¿àŠžà§àŠà§àŠ® àŠ¥à§àŠà§ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ
àŠªàŠžàŠŸàŠ°àŠ£ àŠàŠ¿àŠàŠŸàŠ¬à§"
+
+#: uninstalling.page:10
+msgid "Uninstalling"
+msgstr "àŠàŠšàŠàŠšàŠžà§àŠàв àŠ¹àŠà§àŠà§"
+
+#: uninstalling.page:12
+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 ""
+"àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠà§àŠšàŠ àŠ¬àŠ¿àŠŠà§àŠ¯àŠ®àŠŸàŠš àŠžàŠ«àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ° àŠ¬àŠŸ àŠàŠªàŠšàŠŸàŠ° àŠàŠ®à§àŠªàŠ¿àŠàŠàŠŸàŠ°à§àа àŠžà§àŠàŠ¿àŠàŠžàŠà§ àŠªà§àаàŠàŠŸàŠ¬àŠ¿àŠ€ "
+"àŠàŠ°à§ àŠšàŠŸà¥€ àŠàŠšàŠàŠšàŠžà§àŠàв àŠàŠ°àŠŸ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠªàŠšàŠŸàŠ° àŠžàŠ¿àŠžà§àŠà§àŠ®à§àа àŠžàŠ«à§àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ° àŠ¬àŠŸ àŠžà§àŠàŠ¿àŠàŠž "
+"àŠªà§àаàŠàŠŸàŠ¬àŠ¿àŠ€ àŠàŠ°àŠ¬à§ àŠšàŠŸà¥€"
+
+#: uninstalling.page:18
+msgid "Removing Tor Browser from your system is simple:"
+msgstr "àŠàŠªàŠšàŠŸàŠ° àŠžàŠ¿àŠžà§àŠà§àŠ® àŠ¥à§àŠà§ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ
àŠªàŠžàŠŸàŠ°àŠ£ àŠžàŠ¹àŠ:"
+
+#: uninstalling.page:24
+msgid ""
+"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 ""
+"àŠàŠªàŠšàŠŸàŠ° àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ«à§àвà§àŠ¡àŠŸàŠ° àŠžàŠšàŠŸàŠà§àŠ€à¥€ àŠàŠàŠšà§àŠ¡à§àŠà§àа àŠ¡àŠ¿àŠ«àŠ²à§àŠ àŠ
àŠ¬àŠžà§àŠ¥àŠŸàŠšàŠàŠ¿ àŠ¡à§àŠžà§àŠàŠàŠª; àŠ®à§àŠ¯àŠŸàŠ "
+"àŠàŠàŠž àŠàŠà§àŠž àŠ àŠàŠàŠ¿ àŠ
à§àŠ¯àŠŸàŠªà§àŠ²àŠ¿àŠà§àŠ¶àŠš àŠ«à§àвà§àŠ¡àŠŸàŠ°à¥€ àŠ²àŠ¿àŠšàŠŸàŠà§àŠžà§, àŠà§àŠš àŠ¡àŠ¿àŠ«àŠ²à§àŠ àŠ
àŠ¬àŠžà§àŠ¥àŠŸàŠš àŠšà§àŠ, àŠ€àŠ¬à§ "
+"àŠ¯àŠŠàŠ¿ àŠàŠªàŠšàŠ¿ àŠàŠàаà§àŠ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠŸàŠ²àŠŸàŠà§àŠà§àŠš àŠ€àŠ¬à§ àŠ«à§àвà§àŠ¡àŠŸàŠ°àŠàŠ¿àŠ° àŠšàŠŸàŠ® \"tor-browser_en-"
+"US\" àŠ¥àŠŸàŠàЬà§à¥€"
+
+#: uninstalling.page:32
+msgid "Delete the Tor Browser folder."
+msgstr "àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ«à§àвà§àŠ¡àŠŸàŠ°àŠàŠ¿ àŠ®à§àŠà§àŠš"
+
+#: uninstalling.page:35
+msgid "Empty your Trash"
+msgstr "àŠàŠªàŠšàŠŸàŠ° àŠà§àаà§àŠ¯àŠŸàŠ¶ àŠàŠŸàŠ²àŠ¿ àŠàаà§àŠš"
+
+#: uninstalling.page:39
+msgid ""
+"Note that your operating systemâs standard âUninstallâ utility is not used."
+msgstr ""
+"àŠàвà§àвà§àŠà§àН àŠàŠªàŠšàŠŸàŠ° àŠ
àŠªàŠŸàŠ°à§àŠàŠ¿àŠ àŠžàŠ¿àŠžà§àŠà§àŠ®à§àа àŠ®àŠŸàŠš \"àŠàŠšàŠàŠšàŠžà§àŠàв\" àŠàŠàŠàŠ¿àŠ²àŠ¿àŠàŠ¿ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒ "
+"àŠšàŠŸà¥€"
+
+#: updating.page:6
+msgid "How to update Tor Browser"
+msgstr "àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠªàŠ¡à§àŠ àŠàŠ¿àŠàŠŸàŠ¬à§"
+
+#: updating.page:10
+msgid "Updating"
+msgstr "àŠàŠªàŠ¡à§àŠ àŠàŠ°àŠŸ àŠ¹àŠà§àŠà§"
+
+#: updating.page:12
+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 ""
+"àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠžàŠ¬ àŠžàŠ®àŠ¯àŠŒà§ àŠàŠªàŠ¡à§àŠ àŠàŠ°àŠŸ àŠàŠ¬àŠ¶à§àНàŠà¥€ àŠàŠªàŠšàŠ¿ àŠ¯àŠŠàŠ¿ àŠžàŠ«à§àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ°à§àа àŠàŠàŠàŠ¿ àŠªà§àаà§àŠšà§ "
+"àŠžàŠàŠžà§àŠàŠ°àŠ£ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠŸ àŠàŠŸàŠ²àŠ¿àŠ¯àŠŒà§ àŠ¯àŠŸàŠš, àŠ€àŠŸàŠ¹àŠ²à§ àŠàŠªàŠšàŠŸàŠ° àŠà§àŠªàŠšà§àŠ¯àŠŒàŠ€àŠŸ àŠàŠ¬àŠ àŠà§àŠªàŠšà§àŠ¯àŠŒàŠ€àŠŸàŠ° àŠžàŠŸàŠ¥à§ "
+"àŠàŠªàŠž àŠàŠ°à§ àŠàŠ®àŠš àŠà§àаà§àŠ€àŠ° àŠšàŠ¿àŠ°àŠŸàŠªàŠ€à§àŠ€àŠŸ àŠ€à§àаà§àŠàŠ¿àŠà§àŠ²àŠ¿àŠ° àŠàŠšà§àН àŠàŠªàŠšàŠ¿ àŠŠà§àаà§àŠ¬àŠ² àŠ¹àŠ€à§ àŠªàŠŸàŠ°à§àŠšà¥€"
+
+#: updating.page:18
+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 ""
+"àŠàŠ°à§ àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠªàŠšàŠŸàŠà§ àŠšàŠ€à§àŠš àŠžàŠ«à§àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ° àŠàŠªàŠ¡à§àŠ àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠžàŠ«à§àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ°àŠàŠ¿ àŠàŠªàŠ¡à§àŠ "
+"àŠàŠ°àŠ€à§ àŠ¬àŠ²àŠ¬à§: Torbutton àŠàŠàŠàŠšàŠàŠ¿ àŠàŠàŠàŠ¿ àŠ¹àŠ²à§àŠŠ àŠ€à§àŠ°àŠ¿àŠà§àŠ àŠªà§àŠ°àŠŠàŠ°à§àŠ¶àŠš àŠàŠ°àŠ¬à§ àŠàŠ¬àŠ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° "
+"àŠà§àŠ²àŠŸàŠ° àŠªàŠ° àŠàŠªàŠšàŠ¿ àŠàŠàŠàŠ¿ àŠ²àŠ¿àŠàŠ¿àŠ€ àŠàŠªàŠ¡à§àŠ àŠšàŠ¿àŠ°à§àŠŠà§àŠ¶àŠ àŠŠà§àŠàŠ€à§ àŠªàŠŸàŠ¬à§àŠšà¥€ àŠàŠªàŠšàŠ¿ àŠžà§àŠ¬àŠ¯àŠŒàŠàŠà§àŠ°àŠ¿àŠ¯àŠŒàŠàŠŸàŠ¬à§ "
+"àŠ¬àŠŸ àŠ®à§àŠ¯àŠŸàŠšà§àŠ¯àŠŒàŠŸàŠ² àŠàŠªàŠ¡à§àŠ àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§àŠšà¥€"
+
+#: updating.page:26
+msgid "Updating Tor Browser automatically"
+msgstr "àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠžà§àŠ¬àŠ¯àŠŒàŠàŠà§àŠ°àŠ¿àŠ¯àŠŒàŠàŠŸàŠ¬à§ àŠàŠªàŠ¡à§àŠ àŠ¹àŠà§àŠà§"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: updating.page:30
+msgctxt "_"
+msgid ""
+"external ref='media/updating/update1.png' "
+"md5='9ff01eb653d92124746fc31efde2bf07'"
+msgstr ""
+"àŠ¬àŠŸàŠ¹à§àŠ¯àŠ¿àŠ àŠ°à§àŠ«='media/updating/update1.png' "
+"md5='9ff01eb653d92124746fc31efde2bf07'"
+
+#: updating.page:32
+msgid ""
+"When you are prompted to update Tor Browser, click on the Torbutton icon, "
+"then select âCheck for Tor Browser Updateâ."
+msgstr ""
+"àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠªàŠ¡à§àŠ àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠàŠªàŠšàŠŸàŠà§ àŠªàŠ°àŠŸàŠ®àŠ°à§àж àŠŠà§àŠàŠ¯àŠŒàŠŸ àŠ¹àŠ²à§ Torbutton àŠàŠàŠàŠšà§ àŠà§àŠ²àŠ¿àŠ "
+"àŠàаà§àŠš, àŠ€àŠŸàŠ°àŠªàŠ° \"àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠªàŠ¡à§àŠà§àа àŠàŠšà§àН àŠà§àŠ àŠàаà§àŠš\" àŠšàŠ¿àŠ°à§àŠ¬àŠŸàŠàŠš àŠàаà§àŠšà¥€"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: updating.page:39
+msgctxt "_"
+msgid ""
+"external ref='media/updating/update3.png' "
+"md5='4bd08622b0cacf20b13f75c432176ed3'"
+msgstr ""
+"àŠ¬àŠŸàŠ¹à§àŠ¯àŠ¿àŠ àŠ°à§àŠ«='media/updating/update3.png' "
+"md5='4bd08622b0cacf20b13f75c432176ed3'"
+
+#: updating.page:41
+msgid ""
+"When Tor Browser has finished checking for updates, click on the âUpdateâ "
+"button."
+msgstr ""
+"àŠ¯àŠàŠš àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠªàŠ¡à§àŠàŠà§àŠ²àŠ¿àŠ° àŠàŠšà§àН àŠªàŠ°à§àŠà§àŠ·àŠŸ àŠžàŠ®àŠŸàŠªà§àŠ€ àŠàаà§, àŠ€àŠàŠš \"àŠàŠªàŠ¡à§àŠ\" àŠ¬à§àŠ€àŠŸàŠ®à§ "
+"àŠà§àŠ²àŠ¿àŠ àŠàаà§àŠšà¥€"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: updating.page:48
+msgctxt "_"
+msgid ""
+"external ref='media/updating/update4.png' "
+"md5='1d795e7b695738531db9d4b2b0fb5313'"
+msgstr ""
+"àŠ¬àŠŸàŠ¹à§àŠ¯àŠ¿àŠ àŠ°à§àŠ«='media/updating/update4.png' "
+"md5='1d795e7b695738531db9d4b2b0fb5313'"
+
+#: updating.page:50
+msgid ""
+"Wait for the update to download and install, then restart Tor Browser. You "
+"will now be running the latest version."
+msgstr ""
+"àŠ¡àŠŸàŠàŠšàŠ²à§àŠ¡ àŠàŠ¬àŠ àŠàŠšàŠžà§àŠàв àŠàŠ°àŠŸàŠ° àŠàŠªàŠ¡à§àŠà§àа àŠàŠšà§àН àŠ
àŠªà§àŠà§àŠ·àŠŸ àŠàаà§àŠš, àŠ€àŠŸàŠ°àŠªàŠ° àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠªà§àŠšàŠ°àŠŸàŠ¯àŠŒ"
+" àŠàŠŸàŠ²à§ àŠàаà§àŠšà¥€ àŠàŠªàŠšàŠ¿ àŠàŠàŠš àŠžàŠ°à§àŠ¬àŠ¶à§àŠ· àŠžàŠàŠžà§àŠàŠ°àŠ£ àŠàŠ²àŠ®àŠŸàŠš àŠ¹àŠ¬à§à¥€"
+
+#: updating.page:58
+msgid "Updating Tor Browser manually"
+msgstr "àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠªàŠ¡à§àŠ àŠ¹àŠà§àŠà§ àŠ®à§àŠ¯àŠŸàŠšà§àŠ¯àŠŒàŠŸàŠ²àŠ¿"
+
+#: updating.page:61
+msgid ""
+"When you are prompted to update Tor Browser, finish the browsing session and"
+" close the program."
+msgstr ""
+"àŠàŠªàŠšàŠ¿ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠªàŠ¡à§àŠ àŠàŠ°àŠŸàŠ° àŠ
àŠšà§àаà§àЧ àŠàŠŸàŠšàŠŸàŠšà§ àŠ¹àŠ²à§, àŠ¬à§àŠ°àŠŸàŠàŠàŠ¿àŠ àŠ
àŠ§àŠ¿àŠ¬à§àŠ¶àŠš àŠ¶à§àŠ· àŠàаà§àŠš àŠàЬàŠ"
+" àŠªà§àаà§àŠà§àŠ°àŠŸàŠ® àŠ¬àŠšà§àЧ àŠàаà§àŠšà¥€"
+
+#: updating.page:67
+msgid ""
+"Remove Tor Browser from your system by deleting the folder that contains it "
+"(see the <link xref=\"uninstalling\">Uninstalling</link> section for more "
+"information)."
+msgstr ""
+"àŠàŠªàŠšàŠŸàŠ° àŠžàŠ¿àŠžà§àŠà§àŠ®à§ àŠ«à§àвà§àŠ¡àŠŸàŠ°àŠàŠ¿ àŠ®à§àŠà§ àŠŠàŠ¿àŠ¯àŠŒà§ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°àŠàŠ¿ àŠžàŠ°àŠŸàŠš (àŠàŠ°àŠ àŠ€àŠ¥à§àНà§àа àŠàŠšà§àН "
+"àŠàŠšàŠàŠšàŠžà§àŠàв àŠ¬àŠ¿àŠàŠŸàŠ àŠŠà§àŠà§àŠš)ी"
+
+#: updating.page:74
+msgid ""
+"Visit <link href=\"https://www.torproject.org/projects/torbrowser.html.en\">"
+" https://www.torproject.org/projects/torbrowser.html.en</link> and download "
+"a copy of the latest Tor Browser release, then install it as before."
+msgstr ""
+"Https://www.torproject.org/projects/torbrowser.html àŠ àŠ¯àŠŸàŠš àŠàŠ¬àŠ àŠžàŠ°à§àŠ¬àŠ¶à§àŠ· àŠàа "
+"àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ°àŠ¿àŠ²àŠ¿àŠà§àа àŠàŠàŠàŠ¿ àŠ
àŠšà§àŠ²àŠ¿àŠªàŠ¿ àŠ¡àŠŸàŠàŠšàŠ²à§àŠ¡ àŠàаà§àŠš, àŠ€àŠŸàŠ°àŠªàŠ°à§ àŠàŠàŠ¿ àŠàŠà§àа àŠ®àŠ€à§ àŠàŠšàŠžà§àŠàв àŠàаà§àŠš"
1
0
commit 517096c017eaf461abbc61f3c4ebb14de7ba2996
Author: Colin Childs <colin(a)torproject.org>
Date: Tue Sep 18 14:11:08 2018 -0500
Adding ga translations
---
Makefile.am | 2 +-
ga/ga.po | 2004 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 2005 insertions(+), 1 deletion(-)
diff --git a/Makefile.am b/Makefile.am
index 8b1db95..eb78a9d 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -8,7 +8,7 @@ TOR_AND_HTTPS = ../tor-and-https
HELP_ID = tor-browser-user-manual
HELP_FILES = $(shell cd $(srcdir)/C && git ls-files '*.page')
HELP_MEDIA = $(shell cd $(srcdir)/C && git ls-files 'media')
-HELP_LINGUAS = en-US ja sv @TOR_BROWSER_BUNDLE_LOCALES@
+HELP_LINGUAS = en-US ja sv ga @TOR_BROWSER_BUNDLE_LOCALES@
.PHONY: html
html: all media-symlinks.stamp
diff --git a/ga/ga.po b/ga/ga.po
new file mode 100644
index 0000000..1783f03
--- /dev/null
+++ b/ga/ga.po
@@ -0,0 +1,2004 @@
+# Translators:
+# Robbi McMillen <hi(a)roboplegic.com>, 2016
+# Kevin Scannell <kscanne(a)gmail.com>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2018-09-07 16:48-0500\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Kevin Scannell <kscanne(a)gmail.com>, 2016\n"
+"Language-Team: Irish (https://www.transifex.com/otf/teams/1519/ga/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: ga\n"
+"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n"
+
+#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
+msgctxt "_"
+msgid "translator-credits"
+msgstr "Kevin Scannell <kscanne at gmail>, 2017"
+
+#: about-tor-browser.page:7
+msgid "Learn what Tor Browser can do to protect your privacy and anonymity"
+msgstr ""
+"Foghlaim conas is féidir Brabhsálaí Tor a úsáid chun do phríobháideachas "
+"agus d'aitheantas a chosaint ar líne."
+
+#: about-tor-browser.page:10
+msgid "About Tor Browser"
+msgstr "Maidir le Brabhsálaí Tor"
+
+#: about-tor-browser.page:12
+msgid ""
+"Tor Browser uses the Tor network to protect your privacy and anonymity. "
+"Using the Tor network has two main properties:"
+msgstr ""
+"Úsáideann Brabhsálaí Tor líonra Tor chun do phríobháideachas a chosaint. "
+"Baineann dhá ghné speisialta le líonra Tor:"
+
+#: about-tor-browser.page:18
+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 ""
+"Ní bheidh do sholáthraí seirbhíse Idirlín, ná aon duine atá ag faire ort go "
+"háitiúil, in ann do chuid gníomhaíochta ar líne a lorg, ainmneacha agus "
+"seoltaí na suíomh a dtugann tú cuairt orthu san áireamh."
+
+#: about-tor-browser.page:25
+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 ""
+"Feicfidh na daoine atá i gceannas ar na suímh agus ar na seirbhísí a "
+"úsáideann tú, agus na daoine ag breathnú orthu, ceangal ag teacht ó líonra "
+"Tor seachas ó d'fhíorsheoladh Idirlín (IP), agus ní bheidh a fhios acu cé "
+"thú féin mura ligeann tú d'aithne chucu d'aon turas."
+
+#: about-tor-browser.page:34
+msgid ""
+"In addition, Tor Browser is designed to prevent websites from "
+"“fingerprinting” or identifying you based on your browser configuration."
+msgstr ""
+"Chomh maith leis sin, déanann Brabhsálaí Tor a dhícheall cosc a chur ar "
+"“mhéarlorgaireacht”, is é sin bheith do d'aithint bunaithe ar chumraíocht do"
+" bhrabhsálaí."
+
+#: about-tor-browser.page:39
+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 <link xref"
+"=\"managing-identities#new-identity\">New Identity</link> is requested)."
+msgstr ""
+"De réir réamhshocraithe, ní choinníonn Brabhsálaí Tor aon stair bhrabhsála. "
+"Bíonn fianáin bailí ar feadh seisiúin amháin (go dtí go scoirfidh tú de Tor,"
+" nó go dtí go n-iarrfaidh tú <link xref=\"managing-identities#new-"
+"identity\">Aitheantas Nua</link>)."
+
+#: about-tor-browser.page:50
+msgid "How Tor works"
+msgstr "Cén chaoi a n-oibríonn Tor"
+
+#: about-tor-browser.page:52
+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 <em>relays</em>) in the Tor network. The"
+" last relay in the circuit (the “exit relay”) then sends the traffic out "
+"onto the public Internet."
+msgstr ""
+"Is líonra tollán fíorúil é Tor a chabhraíonn leat do phríobháideachas agus "
+"do shlándáil ar an Idirlíon a fheabhsú. Seolann Tor do chuid tráchta trí trí"
+" fhreastalaí randamacha (a dtugtar <em>athsheachadáin</em> orthu) i líonra "
+"Tor. Ansin seolann an t-athsheachadán deireanach sa chiorcad (\"an "
+"t-athsheachadán amach\") an trácht amach go dtí an tIdirlíon poiblí."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: about-tor-browser.page:59
+msgctxt "_"
+msgid ""
+"external ref='media/how-tor-works.png' "
+"md5='6fe4151a88b7a518466f0582e40ccc8c'"
+msgstr ""
+"external ref='media/how-tor-works.png' "
+"md5='6fe4151a88b7a518466f0582e40ccc8c'"
+
+#: about-tor-browser.page:60
+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 ""
+"Léiríonn an pictiúr thuas úsáideoir ag brabhsáil suíomhanna éagsúla thar "
+"Tor. Athsheachadáin i líonra Tor is ea na ríomhairí uaine sa lár, agus "
+"léiríonn na trí eochair na trí shraith chriptithe idir an úsáideoir agus "
+"gach athsheachadán."
+
+#: bridges.page:6
+msgid "Learn what bridges are and how to get them"
+msgstr "Foghlaim cad is droichead ann, agus conas is féidir droichid a fháil"
+
+#: bridges.page:10
+msgid "Bridges"
+msgstr "Droichid"
+
+#: bridges.page:12
+msgid ""
+"Most <link xref=\"transports\">Pluggable Transports</link>, 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 ""
+"Úsáideann an chuid is mó de na <link xref=\"transports\">Córais Iompair "
+"Ionphlugáilte</link>, mar shampla obfs3 agus obfs4, athsheachadáin "
+"\"droichid\". Cosúil le gnáth-athsheachadáin Tor, is iad saorálaithe atá i "
+"gceannas ar na droichid seo; ach, murab ionann is gnáth-athsheachadán, ní "
+"fhoilsítear go poiblí iad, sa chaoi nárbh fhéidir le namhaid iad a aithint "
+"go héasca. Nuair a úsáideann tú droichead in éineacht le córas iompair "
+"inphlugáilte, níl sé soiléir go bhfuil tú ag úsáid Tor."
+
+#: bridges.page:21
+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 ""
+"Úsáideann córais iompair ionphlugáilte eile, mar shampla meek, modhanna "
+"frithchinsireachta difriúla nach bhfuil ag brath ar dhroichid ar chor ar "
+"bith. Ní gá duit seoladh droichid a fháil chun na córais iompair seo a "
+"úsáid."
+
+#: bridges.page:28
+msgid "Getting bridge addresses"
+msgstr "Seoltaí droichid á bhfáil"
+
+#: bridges.page:29
+msgid ""
+"Because bridge addresses are not public, you will need to request them "
+"yourself. You have two options:"
+msgstr ""
+"Toisc nach bhfuil seoltaí droichid ar fáil go poiblí, caithfidh tú iad a "
+"iarraidh as do stuaim féin. Tá dhá rogha agat:"
+
+#: bridges.page:36
+msgid ""
+"Visit <link "
+"href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</link>"
+" and follow the instructions, or"
+msgstr ""
+"Tabhair cuairt ar <link "
+"href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</link>"
+" agus lean na treoracha, nó"
+
+#: bridges.page:42
+msgid ""
+"Email bridges(a)torproject.org from a Gmail, Yahoo, or Riseup email address, "
+"or"
+msgstr ""
+"Seol ríomhphost chuig bridges(a)torproject.org ó sheoladh Gmail, Yahoo, nó "
+"Riseup, nó"
+
+#: bridges.page:51
+msgid "Entering bridge addresses"
+msgstr "Seoltaí droichid a chur isteach"
+
+#: bridges.page:52
+msgid ""
+"Once you have obtained some bridge addresses, you will need to enter them "
+"into Tor Launcher."
+msgstr ""
+"Tar éis duit roinnt seoltaí droichid a fháil, caithfidh tú iad a chur "
+"isteach i dTosaitheoir Tor."
+
+#: bridges.page:57
+msgid ""
+"Choose “yes” when asked if your Internet Service Provider blocks connections"
+" to the Tor network. Select “Use custom bridges” and enter each bridge "
+"address on a separate line."
+msgstr ""
+"Roghnaigh \"tá\" nuair a fhiafraítear díot an bhfuil do Sholáthraí Seirbhíse"
+" Idirlín ag cur cosc ar cheangail le líonra Tor. Roghnaigh “Cuir isteach "
+"droichid saincheaptha” agus cuir gach seoladh droichid isteach ar a líne "
+"féin."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: bridges.page:63
+msgctxt "_"
+msgid ""
+"external ref='media/tor-launcher-custom-bridges.png' "
+"md5='34b5e99516d297fcbb467209d8479f40'"
+msgstr ""
+"external ref='media/tor-launcher-custom-bridges.png' "
+"md5='34b5e99516d297fcbb467209d8479f40'"
+
+#: bridges.page:65
+msgid ""
+"Click “Connect”. Using bridges may slow down the connection compared to "
+"using ordinary Tor relays. 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 ""
+"Cliceáil “Ceangail”. Seans go mbeidh an ceangal trí dhroichid níos moille ná"
+" gnáthcheangal Tor trí athsheachadáin. Má theipeann ar an gceangal, "
+"b'fhéidir go bhfuil na droichid a fuair tú as fearas. Sa chás sin, ba chóir "
+"duit tuilleadh droichead a fháil trí cheann de na modhanna thuas, ansin "
+"iarracht eile a dhéanamh."
+
+#: circumvention.page:6
+msgid "What to do if the Tor network is blocked"
+msgstr "Má tá cosc ar líonra Tor"
+
+#: circumvention.page:10
+msgid "Circumvention"
+msgstr "Timpeallú"
+
+#: circumvention.page:12
+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 <link xref=\"transports\">Pluggable Transports</link> "
+"page for more information on the types of transport that are currently "
+"available."
+msgstr ""
+"Uaireanta ní féidir leat rochtain dhíreach a fháil ar líonra Tor, mar gheall"
+" ar bhac a chuir do Sholáthraí Seirbhíse Idirlín nó rialtas romhat. Cuireann"
+" Brabhsálaí Tor roinnt uirlisí ar fáil a chabhraíonn leat na baic seo a "
+"sheachaint, darb ainm \"córais iompair ionphlugáilte\". Féach ar <link "
+"xref=\"transports\">an leathanach seo</link> chun tuilleadh eolais a fháil "
+"faoi na córais iompair atá ar fáil faoi láthair."
+
+#: circumvention.page:22
+msgid "Using pluggable transports"
+msgstr "Córais iompair ionphlugáilte a úsáid"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: circumvention.page:26 first-time.page:35
+msgctxt "_"
+msgid ""
+"external ref='media/circumvention/configure.png' "
+"md5='1107595d21fe90f2aab1263d7fb0abd3'"
+msgstr ""
+"external ref='media/circumvention/configure.png' "
+"md5='1107595d21fe90f2aab1263d7fb0abd3'"
+
+#: circumvention.page:28
+msgid ""
+"To use pluggable transports, click \"Configure\" in the Tor Launcher window "
+"that appears when you first run Tor Browser."
+msgstr ""
+"Chun córas iompair ionphlugáilte a úsáid, cliceáil \"Cumraigh\" i bhfuinneog"
+" Thosaitheoir Tor a fheiceann tú nuair a ritheann tú Brabhsálaí Tor den "
+"chéad uair."
+
+#: circumvention.page:33
+msgid ""
+"You can also configure pluggable transports while Tor Browser is running, by"
+" clicking on the green onion near your address bar and selecting “Tor "
+"Network Settings”."
+msgstr ""
+"Nó is féidir córais iompair ionphlugáilte a chumrú agus Brabhsálaí Tor ar "
+"siúl, tríd an oinniún glas in aice leis an mbarra suímh a chliceáil agus "
+"\"Socruithe Líonra Tor\" a roghnú."
+
+#: circumvention.page:41
+msgid ""
+"Select “yes” when asked if your Internet Service Provider blocks connections"
+" to the Tor network."
+msgstr ""
+"Roghnaigh \"tá\" nuair a fhiafraítear díot an bhfuil do Sholáthraí Seirbhíse"
+" Idirlín ag cur cosc ar cheangail le líonra Tor."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: circumvention.page:49
+msgctxt "_"
+msgid ""
+"external ref='media/circumvention/bridges.png' "
+"md5='f5acc05bd9bacf6c69a31163d25a8778'"
+msgstr ""
+"external ref='media/circumvention/bridges.png' "
+"md5='f5acc05bd9bacf6c69a31163d25a8778'"
+
+#: circumvention.page:51
+msgid ""
+"Select “Connect with provided bridges”. Tor Browser currently has six "
+"pluggable transport options to choose from."
+msgstr ""
+"Roghnaigh \"Ceangail le droichead ionsuite\". Tá sé cinn de chórais iompair "
+"ionphlugáilte ar fáil i mbrabhsálaí Tor faoi láthair."
+
+#: circumvention.page:60
+msgid "Which transport should I use?"
+msgstr "Cén cineál iompair ba chóir dom a úsáid?"
+
+#: circumvention.page:61
+msgid ""
+"Each of the transports listed in Tor Launcher’s menu works in a different "
+"way (for more details, see the <link xref=\"transports\">Pluggable "
+"Transports</link> page), and their effectiveness depends on your individual "
+"circumstances."
+msgstr ""
+"Feidhmíonn gach ceann de na córais iompair i dTosaitheoir Tor ar bhealach "
+"difriúil (féach an leathanach <link xref=\"transports\">Córais Iompair "
+"Ionphlugáilte</link> chun tuilleadh eolais a fháil), agus braitheann a "
+"n-éifeachtacht ar na cúinsí speisialta a bhaineann leatsa féin."
+
+#: circumvention.page:67
+msgid ""
+"If you are trying to circumvent a blocked connection for the first time, you"
+" should try the different transports: obfs3, obfs4, ScrambleSuit, fte, meek-"
+"azure and Snowflake."
+msgstr ""
+"Má tá tú ag iarraidh bac a sheachaint den chéad uair, ba chóir duit triail a"
+" bhaint as na cineálacha iompair éagsúla: obfs3, obfs4, ScrambleSuit, fte, "
+"meek-azure, agus Snowflake."
+
+#: circumvention.page:72
+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 <link "
+"xref=\"bridges\">Bridges</link> section to learn what bridges are and how to"
+" obtain them."
+msgstr ""
+"Má bhain tú triail as na roghanna seo go léir agus ní féidir leat dul ar "
+"líne fós, ní mór duit seoltaí droichid a chur isteach de láimh. Léigh an "
+"rannóg maidir le <link xref=\"bridges\">Droichid</link> le foghlaim cad is "
+"droichead ann agus conas is féidir iad a fháil."
+
+#: downloading.page:7
+msgid "How to download Tor Browser"
+msgstr "Conas Brabhsálaí Tor a íoslódáil"
+
+#: downloading.page:10
+msgid "Downloading"
+msgstr "Íoslódáil"
+
+#: downloading.page:12
+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 <link xref=\"secure-connections\">HTTPS</link>, which "
+"makes it much harder for somebody to tamper with."
+msgstr ""
+"Is é íoslódáil ó shuíomh oifigiúil Tor https://www.torproject.org an bealach"
+" is fusa is sábháilte chun Brabhsálaí Tor a fháil. Ceanglóidh tú leis an "
+"suíomh trí <link xref=\"secure-connections\">HTTPS</link>, ionas go mbeidh "
+"sé níos deacra do bhradaí ionsaí a dhéanamh ar an gceangal. "
+
+#: downloading.page:19
+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 ""
+"Uaireanta ní bheidh tú in ann suíomh oifigiúil Thionscadal Tor a rochtain; "
+"mar shampla, dá mbeadh cosc air ar do líonra. Má tharlaíonn sé seo, is "
+"féidir leat ceann de na modhanna malartacha seo a leanas a úsáid chun Tor a "
+"íoslódáil."
+
+#: downloading.page:27
+msgid "GetTor"
+msgstr "GetTor"
+
+#: downloading.page:28
+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 ""
+"Is éard atá in GetTor ná seirbhís a fhreagraíonn teachtaireachtaí le "
+"nascanna leis an leagan is déanaí de Bhrabhsálaí Tor, óstáilte in áiteanna "
+"éagsúla, ar nós Dropbox, Tiomántán Google, agus Github."
+
+#: downloading.page:33
+msgid "To use GetTor via email:"
+msgstr "Le GetTor a úsáid trí ríomhphost:"
+
+#: downloading.page:38
+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 ""
+"Seol teachtaireacht rphoist chuig gettor(a)torproject.org agus cuir an focal "
+"amháín “windows”, “osx”, nó “linux” (gan comharthaí athfhriotail) i gcorp na"
+" teachtaireachta, ag brath ar an gcóras oibriúcháin atá agat."
+
+#: downloading.page:45
+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 ""
+"Seolfaidh GetTor ríomhphost ar ais chugat ina bhfuil nascanna le pacáiste "
+"Brabhsálaí Tor, leis an síniú cripteagrafach (chun an íoslódáil a "
+"dheimhniú), le méarlorg na heochrach a úsáideadh chun an síniú a dhéanamh, "
+"agus le suim sheiceála an phacáiste. Seans go mbeidh deis agat leagan "
+"“32-giotán” nó “64-giotán” a íoslódáil; braitheann sé ar an ríomhaire a "
+"úsáideann tú."
+
+#: downloading.page:56
+msgid "To use GetTor via Twitter:"
+msgstr "Le GetTor a úsáid trí Twitter:"
+
+#: downloading.page:61
+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 ""
+"Más mian leat Brabhsálaí Tor i mBéarla ar OS X a íoslódáil, seol "
+"Teachtaireacht Dhíreach chuig @get_tor leis na focail \"osx en\" (ní gá duit"
+" an cuntas a leanúint), agus gheobhaidh tú nasc lena íoslódáil."
+
+#: downloading.page:69
+msgid "To use GetTor via Jabber/XMPP (Jitsi, CoyIM, etc.):"
+msgstr "Le GetTor a úsáid trí Jabber/XMPP (Jitsi, CoyIM, srl.)."
+
+#: downloading.page:74
+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 ""
+"Más mian leat Brabhsálaí Tor i Sínis ar Linux a íoslódáil, seol "
+"teachtaireacht chuig gettor(a)torproject.org leis na focail \"linux zh\" inti "
+"agus gheobhaidh tú nasc lena íoslódáil."
+
+#: downloading.page:83
+msgid "Satori"
+msgstr "Satori"
+
+#: downloading.page:84
+msgid ""
+"Satori is an add-on for the Chrome or Chromium browsers that allows you to "
+"download several security and privacy programs from different sources."
+msgstr ""
+"Is breiseán do bhrabhsálaí Chrome nó Chromium é Satori a ligeann duit roinnt"
+" feidhmchlár slándála agus uirlisí príobháideachais a íoslódáil ó fhoinsí "
+"éagsúla."
+
+#: downloading.page:89
+msgid "To download Tor Browser using Satori:"
+msgstr "Le Brabhsálaí Tor a íoslódáil trí Satori:"
+
+#: downloading.page:94
+msgid "Install Satori from the Chrome App Store."
+msgstr "Suiteáil Satori ó Shiopa Chrome."
+
+#: downloading.page:99
+msgid "Select Satori from your browser’s Apps menu."
+msgstr "Roghnaigh Satori sa roghchlár Apps i do bhrabhsálaí."
+
+#: downloading.page:104
+msgid ""
+"When Satori opens, click on your preferred language. A menu will open "
+"listing the available downloads for that language. Find the entry for Tor "
+"Browser under the name of your operating system. Select either “A” or “B” "
+"after the name of the program — each one represents a different source from "
+"which to get the software. Your download will then begin."
+msgstr ""
+"Nuair a osclaíonn Satori, cliceáil do rogha teanga. Osclóidh roghchlár a "
+"thaispeánann na híoslódálacha atá ar fáil don teanga sin. Aimsigh an "
+"iontráil do Bhrabhsálaí Tor faoi ainm do chórais oibriúcháin. Roghnaigh “A” "
+"nó “B” tar éis ainm an fheidhmchláir — seasann siad d'fhoinsí éagsúla ónar "
+"féidir leat an bogearra a fháil. Ansin tosóidh an íoslódáil."
+
+#: downloading.page:114
+msgid ""
+"Wait for your download to finish, then find the “Generate Hash” section in "
+"Satori’s menu and click “Select Files”."
+msgstr ""
+"Fan go gcríochnóidh an íoslódáil, ansin aimsigh an rannán “Generate Hash” i "
+"roghchlár Satori agus cliceáil “Select Files”."
+
+#: downloading.page:120
+msgid ""
+"Select the downloaded Tor Browser file. Satori will display the checksum of "
+"the file, which you should compare with the software’s original checksum: "
+"you can find this by clicking the word “checksum” after the link you clicked"
+" on to start the download. If the checksums match, your download was "
+"successful, and you can <link xref=\"first-time\">begin using Tor "
+"Browser</link>. If they do not match, you may need to try downloading again,"
+" or from a different source."
+msgstr ""
+"Roghnaigh an pacáiste do Bhrabhsálaí Tor a d'íoslódáil tú. Taispeánfaidh "
+"Satori suim sheiceála an phacáiste agus ba chóir duit í a chur i gcomparáid "
+"leis an tsuim sheiceála a tháinig leis an mbogearra féin. Is féidir leat an "
+"uimhir seo a fháil trí “checksum” a chliceáil in aice leis an nasc a d'úsáid"
+" tú chun an pacáiste a íoslódáil. Más ionann na suimeanna seiceála, d'éirigh"
+" leis an íoslódáil, agus tá tú in ann <link xref=\"first-time\">Brabhsálaí "
+"Tor a úsáid</link>. Murab ionann iad, ba chóir duit an pacáiste a íoslódáil "
+"arís, b'fhéidir ó fhoinse difriúil."
+
+#: first-time.page:7
+msgid "Learn how to use Tor Browser for the first time"
+msgstr "An chéad uair a úsáideann tú Tor"
+
+#: first-time.page:10
+msgid "Running Tor Browser for the first time"
+msgstr "An chéad uair a úsáideann tú Brabhsálaí Tor"
+
+#: first-time.page:12
+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 ""
+"Nuair a úsáidfidh tú Brabhsálaí Tor den chéad uair, feicfidh tú an fhuinneog"
+" Socruithe Líonra Tor. Tugann seo rogha duit ceangal go díreach le líonra "
+"Tor, nó Brabhsálaí Tor a chur in oiriúint do do cheangal líonra féin."
+
+#: first-time.page:19
+msgid "Connect"
+msgstr "Ceangail"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: first-time.page:21 troubleshooting.page:18
+msgctxt "_"
+msgid ""
+"external ref='media/first-time/connect.png' "
+"md5='f6de80de01c8fa2a8f80857eb8213768'"
+msgstr ""
+"external ref='media/first-time/connect.png' "
+"md5='f6de80de01c8fa2a8f80857eb8213768'"
+
+#: first-time.page:23
+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 "
+"<link xref=\"troubleshooting\">Troubleshooting</link> page for help solving "
+"the problem."
+msgstr ""
+"De ghnáth, bíonn tú ceangailte le líonra Tor tar éis duit \"Ceangail\" a "
+"chliceáil, gan chumraíocht sa bhreis a dhéanamh. Ansin, feicfidh tú barra "
+"stádais a thaispeánann dul chun cinn an cheangail. Má théann an barra seo in"
+" abar agus ceangal Idirlín measartha maith agat, féach ar an leathanach "
+"<link xref=\"troubleshooting\">Fabhtcheartú</link> chun cúnamh a fháil."
+
+#: first-time.page:33
+msgid "Configure"
+msgstr "Cumraigh"
+
+#: first-time.page:37
+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 ""
+"Má tá a fhios agat go bhfuil do cheangal faoi chinsireacht, nó má úsáideann "
+"sé seachfhreastalaí, ba chóir duit é seo a roghnú. Treoróidh Brabhsálaí Tor "
+"tríd an bpróiseas cumraíochta thú."
+
+#: first-time.page:44
+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 <link "
+"xref=\"circumvention\">Circumvention</link> screen to configure a pluggable "
+"transport."
+msgstr ""
+"Fiafraítear díot ar an chéad scáileán an bhfuil cosc ar líonra Tor nó an "
+"bhfuil sé faoi chinsireacht ar do cheangal. Mura gcreideann tú go bhfuil, "
+"roghnaigh “Níl”. Má tá a fhios agat go bhfuil do cheangal faoi chinsireacht,"
+" nó má theip ort ceangal a bhunú le líonra Tor gan aon réiteach ar an "
+"bhfadhb, roghnaigh “Tá”. Sa chás sin, osclófar an scáileán <link "
+"xref=\"circumvention\">Timpeallú</link>, áit ar féidir leat córas iompair "
+"ionphlugáilte a shocrú."
+
+#: first-time.page:55
+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 ""
+"Fiafraítear díot ar an chéad scáileán eile an úsáideann do cheangal "
+"seachfhreastalaí. Níl seachfhreastalaí ag teastáil an chuid is mó den am, "
+"agus dá mbeadh sé ag teastáil uaitse, is dócha go mbeadh a fhios agat "
+"cheana, toisc gur ghá na socruithe céanna a úsáid leis na brabhsálaithe eile"
+" ar do chóras. Más féidir, cuir ceist ar riarthóir do líonra. Mura "
+"n-úsáideann do cheangal seachfhreastalaí, cliceáil “Ar Aghaidh”."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: first-time.page:63
+msgctxt "_"
+msgid ""
+"external ref='media/first-time/proxy_question.png' "
+"md5='f72753a963e3449129718e3d824a8ac8'"
+msgstr ""
+"external ref='media/first-time/proxy_question.png' "
+"md5='f72753a963e3449129718e3d824a8ac8'"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: first-time.page:66
+msgctxt "_"
+msgid ""
+"external ref='media/first-time/proxy.png' "
+"md5='9a5cf5c044b1dfc5f006a9d1ff77507b'"
+msgstr ""
+"external ref='media/first-time/proxy.png' "
+"md5='9a5cf5c044b1dfc5f006a9d1ff77507b'"
+
+#: index.page:8
+msgid "Tor Browser User Manual"
+msgstr "Lámhleabhar Úsáideora Bhrabhsálaí Tor"
+
+#: known-issues.page:6
+msgid "A list of known issues."
+msgstr "Liosta fadhbanna ar eolas."
+
+#: known-issues.page:10
+msgid "Known Issues"
+msgstr "Fadhbanna ar eolas"
+
+#: known-issues.page:14
+msgid ""
+"Tor needs your system clock (and your time zone) set to the correct time."
+msgstr ""
+"Teastaíonn an t-am ceart ar chlog an chórais (agus an crios ama ceart) ó "
+"Tor."
+
+#: known-issues.page:19
+msgid ""
+"The following firewall software have been known to interfere with Tor and "
+"may need to be temporarily disabled:"
+msgstr ""
+"Is eol dúinn go gcuireann na bogearraí balla dóiteáin seo isteach ar Tor, "
+"agus seans gur gá duit iad a dhíchumasú go sealadach:"
+
+#: known-issues.page:23
+msgid "Webroot SecureAnywhere"
+msgstr "Webroot SecureAnywhere"
+
+#: known-issues.page:26
+msgid "Kaspersky Internet Security 2012"
+msgstr "Kaspersky Internet Security 2012"
+
+#: known-issues.page:29
+msgid "Sophos Antivirus for Mac"
+msgstr "Bogearra Frithvíreas Sophos ar Mac"
+
+#: known-issues.page:32
+msgid "Microsoft Security Essentials"
+msgstr "Riachtanais Slándála Microsoft"
+
+#: known-issues.page:37
+msgid ""
+"Videos that require Adobe Flash are unavailable. Flash is disabled for "
+"security reasons."
+msgstr ""
+"Níl aon fháil ar fhíseáin a úsáideann Adobe Flash. Tá Flash díchumasaithe ar"
+" chúiseanna slándála."
+
+#: known-issues.page:43
+msgid "Tor can not use a bridge if a proxy is set."
+msgstr "Ní féidir le Tor droichead a úsáid má tá seachfhreastalaí ann."
+
+#: known-issues.page:48
+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 ""
+"Is é 1 Eanáir 2000 00:00:00 UTC an dáta ar phacáiste Bhrabhsálaí Tor. "
+"Cinntíonn sé seo gur féidir gach leagan den bhogearra a atáirgeadh go "
+"cruinn."
+
+#: known-issues.page:54
+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 ""
+"Caithfidh tú script a rith chun Brabhsálaí Tor a úsáid ar chóras Ubuntu. "
+"Oscail \"File\" (taiscéalaí Unity), oscail Preferences → Behavior Tab agus "
+"faoi \"Run executable text files when they are opened\", roghnaigh \"Ask "
+"every time\", ansin cliceáil \"OK\"."
+
+#: known-issues.page:62
+msgid ""
+"Tor Browser can also be started from the command line by running the "
+"following command from inside the Tor Browser directory:"
+msgstr ""
+"Nó is féidir leat Brabhsálaí Tor a thosú ó líne na n-orduithe tríd an ordú "
+"seo a leanas a rith laistigh de chomhadlann Bhrabhsálaí Tor:"
+
+#: known-issues.page:66
+#, no-wrap
+msgid ""
+"\n"
+" ./start-tor-browser.desktop\n"
+" "
+msgstr ""
+"\n"
+" ./start-tor-browser.desktop\n"
+" "
+
+#: managing-identities.page:6
+msgid "Learn how to control personally-identifying information in Tor Browser"
+msgstr "Foghlaim conas is féidir sonraí pearsanta a rialú i mBrabhsálaí Tor"
+
+#: managing-identities.page:10
+msgid "Managing identities"
+msgstr "Aitheantais a bhainistiú"
+
+#: managing-identities.page:12
+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 ""
+"Nuair a dhéanann tú ceangal le suíomh Gréasáin, ní iad oibreoirí an tsuímh "
+"amháin atá in ann eolas fútsa a bhailiú. Úsáideann go leor suíomh seirbhísí "
+"tríú páirtí, mar shampla cnaipí sóisialta \"Is maith liom é\", lorgairí "
+"anailísíochta, agus rabhcháin fógraíochta, iad ar fad in ann do chuid "
+"gníomhaíochta a lorg ó shuíomh go suíomh."
+
+#: managing-identities.page:20
+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 ""
+"Coisceann líonra Tor ar chúléisteoirí do láthair gheografach agus do "
+"sheoladh IP a fháil amach. Ach fiú gan an t-eolas seo, is féidir leo na "
+"rudaí a dhéanann tú in áiteanna éagsúla a nascadh le chéile. Dá bharr seo, "
+"chuireamar roinnt gnéithe i mBrabhsálaí Tor a chuidíonn leat sonraí a "
+"bhaineann leatsa go pearsanta a choinneáil faoi smacht."
+
+#: managing-identities.page:29
+msgid "The URL bar"
+msgstr "An barra URL"
+
+#: managing-identities.page:30
+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 ""
+"Díríonn Brabhsálaí Tor d'eispéireas Gréasáin ar an ngaol idir tusa agus an "
+"suíomh Gréasáin sa bharra URL. Fiú dá ndéanfá ceangal le dhá shuíomh "
+"dhifriúla a bhaineann úsáid as an tseirbhís lorgaireachta chéanna, "
+"d'iarrfadh Brabhsálaí Tor an t-ábhar ó na suímh trí dhá chiorcad Tor "
+"dhifriúla, ionas nach mbeadh a fhios ag an tseirbhís lorgaireachta gur "
+"tháinig an dá cheangal ó do bhrabhsálaí."
+
+#: managing-identities.page:38
+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 ""
+"Os a choinne sin, déanfar gach ceangal le suíomh amháin ar an gciorcad "
+"céanna Tor, rud a chiallaíonn gur féidir leat leathanaigh éagsúla ó shuíomh "
+"Gréasáin amháin a bhrabhsáil i gcluaisíní nó i bhfuinneoga éagsúla, gan chur"
+" isteach ar fheidhmiú an tsuímh."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: managing-identities.page:46
+msgctxt "_"
+msgid ""
+"external ref='media/managing-identities/circuit_full.png' "
+"md5='bd46d22de952fee42643be46d3f95928'"
+msgstr ""
+"external ref='media/managing-identities/circuit_full.png' "
+"md5='bd46d22de952fee42643be46d3f95928'"
+
+#: managing-identities.page:48
+msgid ""
+"You can see a diagram of the circuit that Tor Browser is using for the "
+"current tab in the onion menu."
+msgstr ""
+"Is féidir leat léaráid den chiorcad atá in úsáid sa chluaisín reatha a fháil"
+" i roghchlár an oinniúin."
+
+#: managing-identities.page:55
+msgid "Logging in over Tor"
+msgstr "Logáil isteach trí Tor"
+
+#: managing-identities.page:56
+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 ""
+"Cé cur dearadh Brabhsálaí Tor chun cabhrú leat d'aitheantas a choinneáil i "
+"bhfolach ar an nGréasán, uaireanta tá sé ciallmhar Tor a úsáid ar shuímh "
+"Ghréasáin a éilíonn ainm úsáideora, focal faire, nó faisnéis phearsanta "
+"eile. "
+
+#: managing-identities.page:62
+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 ""
+"Nuair a logálann tú isteach i suíomh Gréasáin trí ghnáthbhrabhsálaí, "
+"nochtann tú do sheoladh IP agus do láthair gheografach sa phróiseas. Is "
+"ionann an cás nuair a sheolann tú ríomhphost. Ach nuair a úsáideann tú "
+"Brabhsálaí Tor chun logáil isteach i gcuntas ríomhphoist nó i suíomh "
+"sóisialta, bíonn tú in ann an t-eolas a nochtann tú don suíomh a rialú. Tá "
+"Brabhsálaí Tor áisiúil freisin sa chás go bhfuil an suíomh atá tú ag "
+"iarraidh baint amach faoi chinsireacht ar do líonra."
+
+#: managing-identities.page:72
+msgid ""
+"When you log in to a website over Tor, there are several points you should "
+"bear in mind:"
+msgstr ""
+"Roinnt pointí ba chóir duit a choinneáil i gcuimhne nuair a logálann tú "
+"isteach i suíomh Gréasáin trí Tor:"
+
+#: managing-identities.page:79
+msgid ""
+"See the <link xref=\"secure-connections\">Secure Connections</link> page for"
+" important information on how to secure your connection when logging in."
+msgstr ""
+"Féach ar an leathanach <link xref=\"secure-connections\">Ceangail "
+"Shlána</link> chun eolas tábhachtach a fháil maidir le conas is féidir do "
+"cheangal a dhaingniú nuair a logálann tú isteach."
+
+#: managing-identities.page:87
+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 ""
+"Nuair a úsáideann tú Brabhsálaí Tor, is minic go ndealraíonn sé go bhfuil do"
+" cheangal ag teacht ó áit éigin go hiomlán difriúil ar domhan. Dá bharr seo,"
+" seans go gceapfaidh suímh áirithe, mar shampla bainc nó soláthraithe "
+"ríomhphoist, gur bhris bradaí isteach i do chuntas agus cuirfidh siad do "
+"chuntas faoi ghlas. Is é an bealach amháin leis seo a réiteach ná an "
+"próiseas athshlánaithe cuntais ar an suíomh a leanúint, nó dul i dteagmháil "
+"le stiúrthóirí an tsuímh chun cúrsaí a mhíniú."
+
+#: managing-identities.page:101
+msgid "Changing identities and circuits"
+msgstr "Aitheantais agus ciorcaid a athrú"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: managing-identities.page:103
+msgctxt "_"
+msgid ""
+"external ref='media/managing-identities/new_identity.png' "
+"md5='15b01e35fa83185d94b57bf0ccf09d76'"
+msgstr ""
+"external ref='media/managing-identities/new_identity.png' "
+"md5='15b01e35fa83185d94b57bf0ccf09d76'"
+
+#: managing-identities.page:105
+msgid ""
+"Tor Browser features “New Identity” and “New Tor Circuit for this Site” "
+"options, located in the Torbutton menu."
+msgstr ""
+"Tá roghanna \"Aitheantas Nua\" agus \"Ciorcad Nua Tor don Suíomh seo\" ar "
+"fáil, i roghchlár an chnaipe Tor."
+
+#: managing-identities.page:111
+msgid "New Identity"
+msgstr "Aitheantas Nua"
+
+#: managing-identities.page:112
+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 ""
+"Tá an rogha seo úsáideach má tá tú ag iarraidh cosc a chur ar lorgairí do "
+"ghníomhaíocht bhrabhsála sa todhchaí a nascadh lena ndearna tú roimhe seo. "
+"Má roghnaíonn tú é seo, dúnfar gach cluaisín agus fuinneog oscailte, glanfar"
+" aon fhaisnéis phearsanta, ar nós fianán agus do stair bhrabhsála, agus "
+"bunófar ciorcaid nua Tor do gach ceangal. Tabharfaidh Brabhsálaí Tor rabhadh"
+" duit go bhfuil sé ar tí do ghníomhaíocht agus íoslódálacha a stopadh, rud "
+"le cur san áireamh sula gcliceálfaidh tú “Aitheantas Nua”."
+
+#: managing-identities.page:123
+msgid "New Tor Circuit for this Site"
+msgstr "Ciorcad Nua Tor don Suíomh seo"
+
+#: managing-identities.page:124
+msgid ""
+"This option is useful if the <link xref=\"about-tor-browser#how-tor-"
+"works\">exit relay</link> 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 ""
+"Tá an rogha seo úsáideach mura bhfuil <link xref=\"about-tor-browser#how-"
+"tor-works\">an t-athsheachadán amach</link> a úsáideann tú in ann ceangal a "
+"bhunú leis an suíomh atá uait, nó mura bhfuil sé ag lódáil i gceart. Má "
+"roghnaíonn tú é seo, athlódálfar an cluaisín nó an fhuinneog ghníomhach ar "
+"chiorcad nua Tor. Úsáidfidh cluaisíní nó fuinneoga oscailte eile ón suíomh "
+"céanna an ciorcad nua seo freisin chomh luath is a athlódálfar iad. Ní "
+"ghlanann an rogha seo aon fhaisnéis phríobháideach, ní dhínascann sé do "
+"ghníomhaíocht, agus ní théann sé i bhfeidhm ar cheangail le suímh eile."
+
+#: onionsites.page:6
+msgid "Services that are only accessible using Tor"
+msgstr "Seirbhísí ar fáil trí Tor amháin"
+
+#: onionsites.page:10
+msgid "Onion Services"
+msgstr "Seirbhísí Onion"
+
+#: onionsites.page:11
+msgid ""
+"Onion services (formerly known as “hidden services”) are services (like "
+"websites) that are only accessible through the Tor network."
+msgstr ""
+"Is éard atá i Seirbhísí Onion (\"seirbhísí folaithe\" roimhe seo) ná "
+"seirbhísí (ar nós suíomh Gréasáin) nach bhfuil ar fáil ach trí Líonra Tor."
+
+#: onionsites.page:16
+msgid ""
+"Onion services offer several advantages over ordinary services on the non-"
+"private web:"
+msgstr ""
+"Tá roinnt buntáistí ag seirbhísí Onion ar ghnáthsheirbhísí an Ghréasáin "
+"phoiblí:"
+
+#: onionsites.page:23
+msgid ""
+"An onion services’s location and IP address are hidden, making it difficult "
+"for adversaries to censor it or identify its operators."
+msgstr ""
+"Coinnítear an áit ina bhfuil an tseirbhís onion i bhfolach, chomh maith lena"
+" seoladh IP, sa chaoi go mbeadh sé níos deacra cinsireacht a dhéanamh "
+"uirthi, nó stiúrthóirí na seirbhíse a aithint."
+
+#: onionsites.page:29
+msgid ""
+"All traffic between Tor users and onion services is end-to-end encrypted, so"
+" you do not need to worry about <link xref=\"secure-connections\">connecting"
+" over HTTPS</link>."
+msgstr ""
+"Déantar criptiú ar an trácht go léir idir úsáideoirí Tor agus seirbhísí "
+"Onion ó cheann go ceann, sa dóigh nach gá duit <link xref=\"secure-"
+"connections\">ceangal HTTPS a úsáid</link> riamh."
+
+#: onionsites.page:36
+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 ""
+"Gintear seoladh na seirbhíse Onion go huathoibríoch. Mar sin, ní gá don "
+"oibreoir ainm fearainn a cheannach, agus cinntíonn an URL .onion go bhfuil "
+"Tor ag ceangal leis an suíomh ceart agus nach bhfuil aon duine ag cur "
+"isteach ar an gceangal."
+
+#: onionsites.page:46
+msgid "How to access an onion service"
+msgstr "Conas Seirbhís Onion a rochtain"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: onionsites.page:48
+msgctxt "_"
+msgid ""
+"external ref='media/onionsites/onion_url.png' "
+"md5='f97f7fe10f07c3959c4430934974bbaa'"
+msgstr ""
+"external ref='media/onionsites/onion_url.png' "
+"md5='f97f7fe10f07c3959c4430934974bbaa'"
+
+#: onionsites.page:50
+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 ""
+"Go díreach cosúil le haon suíomh Gréasáin eile, teastaíonn uait seoladh na "
+"seirbhíse onion chun ceangal léi. Is éard atá i seoladh onion ná teaghrán de"
+" 16 (agus i bhformáid V3, 56) litir agus uimhir, randamach den chuid is mó, "
+"agus “.onion” ag an deireadh."
+
+#: onionsites.page:58 troubleshooting.page:10
+msgid "Troubleshooting"
+msgstr "Fabhtcheartú"
+
+#: onionsites.page:59
+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 ""
+"Murar féidir leat an tseirbhís onion atá uait a bhaint amach, deimhnigh gur "
+"chuir tú an seoladh onion isteach i gceart: chuirfeadh fiú botún beag "
+"Brabhsálaí Tor ar strae agus ní bheadh Brabhsálaí Tor in ann an tseirbhís a "
+"bhaint amach."
+
+#: onionsites.page:64
+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 ""
+"Murar féidir leat ceangal leis an tseirbhís onion fós, bain triail eile as "
+"ar ball. B'fhéidir go bhfuil fadhb shealadach leis an líonra, nó b'fhéidir "
+"gur lig stiúrthóirí an tsuímh dó dul as líne gan rabhadh."
+
+#: onionsites.page:69
+msgid ""
+"You can also ensure that you're able to access other onion services by "
+"connecting to <link href=\"http://3g2upl4pq6kufc4m.onion/\">DuckDuckGo's "
+"Onion Service</link>"
+msgstr ""
+"Agus is féidir leat deimhniú go bhfuil tú in ann seirbhísí Onion eile a "
+"rochtain trí cheangal a bhunú le <link "
+"href=\"http://3g2upl4pq6kufc4m.onion/\">Seirbhís Onion DuckDuckGo</link>"
+
+#: plugins.page:6
+msgid "How Tor Browser handles add-ons, plugins and JavaScript"
+msgstr ""
+"Conas a láimhseálann Brabhsálaí Tor breiseáin, forlíontáin, agus JavaScript"
+
+#: plugins.page:10
+msgid "Plugins, add-ons and JavaScript"
+msgstr "Forlíontáin, breiseáin, agus JavaScript"
+
+#: plugins.page:13
+msgid "Flash Player"
+msgstr "Seinnteoir Flash"
+
+#: plugins.page:14
+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 ""
+"Úsáideann go leor suíomh comhroinnte físeán, mar shampla Vimeo, an "
+"forlíontán Flash Player chun ábhar físe a sheinm sa bhrabhsálaí. Faraor, tá "
+"an forlíontán seo neamhspleách ar Bhrabhsálaí Tor agus níl sé ró-éasca "
+"tabhairt air socruithe seachfhreastalaí Bhrabhsálaí Tor a úsáid. Mar sin, tá"
+" seans ann go nochtfadh sé do láthair gheografach nó do sheoladh IP do "
+"stiúrthóirí an tsuímh, nó do chúléisteoir seachtrach. Ar an ábhar seo, tá "
+"Flash díchumasaithe i mBrabhsálaí Tor de réir réamhshocraithe, agus "
+"mholfaimis duit gan é a chumasú."
+
+#: plugins.page:23
+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 ""
+"Cuireann suímh áirithe (mar shampla YouTube) modhanna malartacha le físeáin "
+"a thaispeáint ar fáil, modhanna nach mbaineann úsáid as Flash. Uaireanta "
+"bíonn siad comhoiriúnach le Brabhsálaí Tor."
+
+#: plugins.page:31
+msgid "JavaScript"
+msgstr "JavaScript"
+
+#: plugins.page:32
+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 ""
+"Is teanga ríomhchlárúcháin é JavaScript a úsáidtear ar shuímh Ghréasáin chun"
+" gnéithe idirghníomhacha a chur ar fáil, mar shampla físeáin, beochan, "
+"fuaim, agus amlínte stádas. Faraor, éascaíonn JavaScript ionsaithe áirithe "
+"ar shlándáil an bhrabhsálaí, ionsaithe a d'fhéadfadh d'aitheantas a "
+"nochtadh."
+
+#: plugins.page:39
+msgid ""
+"Tor Browser includes an add-on called NoScript, accessed through the “S” "
+"icon at the top-left of the window. NoScript allows you to control the "
+"JavaScript (and other scripts) that runs on individual web pages, or block "
+"it entirely."
+msgstr ""
+"Tá breiseán darb ainm NoScript ag gabháil le Brabhsálaí Tor, ar fáil tríd an"
+" deilbhín “S” ag barr na fuinneoige ar chlé. Ligeann NoScript duit smacht a "
+"choinneáil ar an gcód JavaScript (agus scripteanna eile) a ritheann ar "
+"leathanaigh ar leith, nó cosc iomlán a chur air."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: plugins.page:46
+msgctxt "_"
+msgid ""
+"external ref='media/plugins/noscript_menu.png' "
+"md5='df9e684b76a3c2e2bdcb879a19c20471'"
+msgstr ""
+"external ref='media/plugins/noscript_menu.png' "
+"md5='df9e684b76a3c2e2bdcb879a19c20471'"
+
+#: plugins.page:48
+msgid ""
+"Users who require a high degree of security in their web browsing should set"
+" Tor Browser’s <link xref=\"security-slider\">Security Slider</link> 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 ""
+"Ba chóir d'úsáideoirí a dteastaíonn slándáil an-daingean uathu an <link xref"
+"=\"security-slider\">Sleamhnán Slándála</link> i mBrabhsálaí Tor a shocrú go"
+" dtí “Níos Sábháilte” (a dhíchumasaíonn JavaScript ar shuímh nach "
+"n-úsáideann HTTPS) nó “Is Sábháilte” (a dhíchumasaíonn ar gach suíomh é). "
+"Ach, má dhíchumasaíonn tú JavaScript, ní fheidhmeoidh go leor suíomh mar is "
+"ceart, agus dá bharr sin ligeann Brabhsálaí Tor do gach suíomh scripteanna a"
+" rith de réir réamhshocraithe."
+
+#: plugins.page:59
+msgid "Browser Add-ons"
+msgstr "Breiseáin Bhrabhsálaí"
+
+#: plugins.page:60
+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 ""
+"Tá Brabhsálaí Tor bunaithe ar Firefox, agus is féidir leat aon bhreiseán nó "
+"téama atá comhoiriúnach le Firefox a shuiteáil i mBrabhsálaí Tor freisin."
+
+#: plugins.page:65
+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 ""
+"Ní dhearnadh tástáil ar bith ar bhreiseáin seachas ar na cinn a thagann le "
+"Brabhsálaí Tor de réir réamhshocraithe. Má shuiteálann tú aon bhreiseán "
+"eile, seans maith nach bhfeidhmeoidh Brabhsálaí Tor i gceart, agus go minic "
+"is cúis le fadhbanna níos tromchúisí na breiseáin seo, fadhbanna a dhéanann "
+"dochar don phríobháideachas agus don tslándáil. Molaimid go láidir duit gan "
+"breiseáin eile a shuiteáil, agus ní thacóidh Tionscadal Tor leis na "
+"cumraíochtaí malartacha seo."
+
+#: secure-connections.page:8
+msgid "Learn how to protect your data using Tor Browser and HTTPS"
+msgstr ""
+"Foghlaim conas is féidir do chuid sonraí a chosaint le Brabhsálaí Tor agus "
+"HTTPS"
+
+#: secure-connections.page:12
+msgid "Secure Connections"
+msgstr "Ceangail Shlána"
+
+#: secure-connections.page:14
+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 ""
+"Má sheolann tú sonraí phearsanta, mar shampla focail fhaire, ar an Idirlíon "
+"gan chriptiú, tá sé an-éasca do chúléisteoir iad a idircheapadh. Má tá tú ag"
+" logáil isteach i suíomh Gréasáin, ba chóir duit deimhniú go n-úsáideann an "
+"suíomh criptiú HTTPS, rud a chosnaíonn ar an sórt seo cúléisteachta thú. Is"
+" féidir leat é seo a dheimhniú sa bharra URL: má tá do cheangal criptithe, "
+"tosóidh an seoladh le “https://”, in áit “http://”."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: secure-connections.page:24
+msgctxt "_"
+msgid ""
+"external ref='media/secure-connections/https.png' "
+"md5='364bcbde7a649b0cea9ae178007c1a50'"
+msgstr ""
+"external ref='media/secure-connections/https.png' "
+"md5='364bcbde7a649b0cea9ae178007c1a50'"
+
+#: secure-connections.page:26
+msgid ""
+"The following visualization shows what information is visible to "
+"eavesdroppers with and without Tor Browser and HTTPS encryption:"
+msgstr ""
+"Taispeánann an pictiúr seo an t-eolas atá cúléisteoirí in ann a fheiceáil le"
+" Brabhsálaí Tor agus criptiú HTTPS, agus gan iad:"
+
+#: secure-connections.page:35
+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 ""
+"Tar éis duit an cnaipe “Tor” a chliceáil, taispeánfar na sonraí a bhíonn "
+"cúléisteoirí in ann a fheiceáil nuair a úsáideann tú Tor. Iompóidh an cnaipe"
+" uaine mar léiriú go bhfuil Tor ar siúl."
+
+#: secure-connections.page:42
+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 ""
+"Tar éis duit an cnaipe “HTTPS” a chliceáil, taispeánfar na sonraí a bhíonn "
+"cúléisteoirí in ann a fheiceáil nuair a úsáideann tú HTTPS. Iompóidh an "
+"cnaipe uaine mar léiriú go bhfuil HTTPS ar siúl."
+
+#: secure-connections.page:49
+msgid ""
+"When both buttons are green, you see the data that is visible to observers "
+"when you are using both tools."
+msgstr ""
+"Nuair a bhíonn an dá chnaipe uaine, léiríonn sé na sonraí a bhíonn "
+"cúléisteoirí in ann a fheiceáil nuair a úsáideann tú Tor agus HTTPS le "
+"chéile."
+
+#: secure-connections.page:55
+msgid ""
+"When both buttons are grey, you see the data that is visible to observers "
+"when you don't use either tool."
+msgstr ""
+"Nuair a bhíonn an dá chnaipe liath, léiríonn sé na sonraí a bhíonn "
+"cúléisteoirí in ann a fheiceáil nuair nach n-úsáideann tú Tor ná HTTPS."
+
+#: secure-connections.page:62
+msgid "Potentially visible data"
+msgstr "Sonraí a d'fhéadfadh a bheith infheicthe"
+
+#: secure-connections.page:70
+msgid "The site being visited."
+msgstr "An suíomh a dtugtar cuairt air."
+
+#: secure-connections.page:81
+msgid "Username and password used for authentication."
+msgstr "Ainm úsáideora agus focal faire a úsáidtear le fíordheimhniú."
+
+#: secure-connections.page:92
+msgid "Data being transmitted."
+msgstr "Na sonraí á n-aistriú."
+
+#: secure-connections.page:103
+msgid ""
+"Network location of the computer used to visit the website (the public IP "
+"address)."
+msgstr ""
+"Seoladh an ríomhaire a úsáideadh chun cuairt a thabhairt ar an suíomh (an "
+"seoladh IP poiblí)."
+
+#: secure-connections.page:115
+msgid "Whether or not Tor is being used."
+msgstr "An bhfuil Tor in úsáid nó nach bhfuil."
+
+#: security-slider.page:6
+msgid "Configuring Tor Browser for security and usability"
+msgstr "Brabhsálaí Tor a chumrú ar son slándála agus inúsáidteachta"
+
+#: security-slider.page:10
+msgid "Security Slider"
+msgstr "An Sleamhnán Slándála"
+
+#: security-slider.page:11
+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 ""
+"Tá “Sleamhnán Slándála” ar fáil mar chuid de Bhrabhsálaí Tor, rud a "
+"neartaíonn do shlándáil trí ghnéithe áirithe sa bhrabhsálaí a dhíchumasú, go"
+" háirithe gnéithe a úsáidtear chun ionsaí a dhéanamh ort. Má ardaíonn tú an "
+"leibhéal slándála i mBrabhsálaí Tor, ní fheidhmeoidh leathanaigh áirithe mar"
+" is ceart, agus dá bharr sin caithfidh tú do shlándáil a mheas in aghaidh "
+"inúsáidteacht na suíomh a dtugann tú cuairt orthu."
+
+#: security-slider.page:21
+msgid "Accessing the Security Slider"
+msgstr "Rochtain ar an Sleamhnán Slándála"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: security-slider.page:23
+msgctxt "_"
+msgid ""
+"external ref='media/security-slider/slider.png' "
+"md5='026da7c021ba5b85caf04bbf45530667'"
+msgstr ""
+"external ref='media/security-slider/slider.png' "
+"md5='026da7c021ba5b85caf04bbf45530667'"
+
+#: security-slider.page:25
+msgid ""
+"The Security Slider is located in Torbutton’s “Security Settings” menu."
+msgstr ""
+"Gheobhaidh tú an Sleamhnán Slándála i roghchlár an chnaipe Tor faoi "
+"“Socruithe Slándála”."
+
+#: security-slider.page:32
+msgid "Security Levels"
+msgstr "Leibhéil Slándála"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: security-slider.page:34
+msgctxt "_"
+msgid ""
+"external ref='media/security-slider/slider_window.png' "
+"md5='d5faf391c99f88aff8541a68bdc6a776'"
+msgstr ""
+"external ref='media/security-slider/slider_window.png' "
+"md5='d5faf391c99f88aff8541a68bdc6a776'"
+
+#: security-slider.page:36
+msgid ""
+"Increasing the level of the Security Slider will disable or partially "
+"disable certain browser features to protect against possible attacks."
+msgstr ""
+"Má ardaíonn tú leibhéal an tSleamhnáin Slándála, díchumasófar gnéithe "
+"áirithe sa bhrabhsálaí mar chosaint ar ionsaithe."
+
+#: security-slider.page:42
+msgid "Safest"
+msgstr "Is Sábháilte"
+
+#: security-slider.page:43
+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 ""
+"Ag an leibhéal seo, caithfidh tú físeáin agus comhaid fuaime HTML5 a "
+"chliceáil chun iad a sheinm trí NoScript; ní chuirtear aon optamú JavaScript"
+" i bhfeidhm; seans nach dtaispeántar cothromóidí áirithe matamaiticiúla i "
+"gceart; ní úsáidtear gnéithe áirithe agus clófhoirne á dtarraingt ar an "
+"scáileán; ní thaispeántar cineálacha áirithe íomhá; tá JavaScript "
+"díchumasaithe de réir réamhshocraithe ar gach suíomh; tá an chuid is mó de "
+"na formáidí físe agus fuaime díchumasaithe; agus ní thaispeántar roinnt "
+"clófhoirne agus deilbhíní i gceart."
+
+#: security-slider.page:53
+msgid "Safer"
+msgstr "Níos Sábháilte"
+
+#: security-slider.page:54
+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-<link xref=\"secure-"
+"connections\">HTTPS</link> sites."
+msgstr ""
+"Ag an leibhéal seo, caithfidh tú físeáin agus comhaid fuaime HTML5 a "
+"chliceáil chun iad a sheinm trí NoScript; ní chuirtear aon optamú JavaScript"
+" i bhfeidhm; seans nach dtaispeántar cothromóidí áirithe matamaiticiúla i "
+"gceart; ní úsáidtear gnéithe áirithe agus clófhoirne á dtarraingt ar an "
+"scáileán; ní thaispeántar cineálacha áirithe íomhá; agus tá JavaScript "
+"díchumasaithe de réir réamhshocraithe ar gach suíomh nach mbaineann úsáid as"
+" <link xref=\"secure-connections\">HTTPS</link>."
+
+#: security-slider.page:64
+msgid "Standard"
+msgstr "Gnáthshlándáil"
+
+#: security-slider.page:65
+msgid ""
+"At this level, all browser features are enabled. This is the most usable "
+"option."
+msgstr ""
+"Ag an leibhéal seo, tá gach gné cumasaithe. Seo an rogha is inúsáidte."
+
+#: translate.page:6
+msgid "Becoming a translator for the Tor Project"
+msgstr "Bí i d'aistritheoir ar Thionscadal Tor"
+
+#: translate.page:10
+msgid "Becoming a Tor Translator"
+msgstr "Eolas maidir le haistriúchán Tor"
+
+#: translate.page:12
+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!"
+" In order to begin contributing you will have to sign up with Transifex, the"
+" third-party that faciliates our translations. Below is an outline of how to"
+" sign up and begin."
+msgstr ""
+"Más mian leat cabhrú leis an tionscadal trí aistriúchán a dhéanamh ar an "
+"lámhleabhar nó ar bhrabhsálaí Tor féin, bheimis an-bhuíoch díot! Len é seo a"
+" dhéanamh, caithfidh tú clárú leis an suíomh Transifex, tríú páirtí a "
+"éascaíonn ár bpróiseas aistriúcháin. Seo duit na treoracha cláraithe."
+
+#: translate.page:21
+msgid "Signing up on Transifex"
+msgstr "Clárú le Transifex"
+
+#: translate.page:24
+msgid ""
+"Head over to the <link href=\"https://transifex.com/signup/\">Transifex "
+"signup page</link>."
+msgstr ""
+"Tabhair cuairt ar <link href=\"https://transifex.com/signup/\">leathanach "
+"cláraithe Transifex</link>."
+
+#: translate.page:30
+msgid "Enter your information into the fields and click the 'Sign Up' button:"
+msgstr "Cuir do shonraí isteach agus cliceáil an cnaipe 'Sign Up':"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: translate.page:34
+msgctxt "_"
+msgid ""
+"external ref='media/translate/tr1.png' "
+"md5='a94cfd90c9982916a987e2807ae5e4f6'"
+msgstr ""
+"external ref='media/translate/tr1.png' "
+"md5='a94cfd90c9982916a987e2807ae5e4f6'"
+
+#: translate.page:38
+msgid ""
+"Fill out the next page with your name and select \"Localization\" and "
+"\"Translator\" from the drop-down menus:"
+msgstr ""
+"Líon isteach an chéad leathanach eile agus roghnaigh \"Localization\" agus "
+"\"Translator\" ó na roghchláir aníos:"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: translate.page:43
+msgctxt "_"
+msgid ""
+"external ref='media/translate/tr2.png' "
+"md5='06debc9e9dbc7ac198103a89a6961774'"
+msgstr ""
+"external ref='media/translate/tr2.png' "
+"md5='06debc9e9dbc7ac198103a89a6961774'"
+
+#: translate.page:47
+msgid "On the next page, select 'Join an existing project' and continue."
+msgstr ""
+"Ar an chéad leathanach eile, roghnaigh 'Join an existing project' agus lean "
+"ar aghaidh."
+
+#: translate.page:52
+msgid ""
+"On the next page, select the languages you speak from the drop-down menu and"
+" continue."
+msgstr ""
+"Ar an chéad leathanach eile, roghnaigh na teangacha ar do thoil agat ón "
+"roghchlár aníos agus lean ar aghaidh."
+
+#: translate.page:58
+msgid ""
+"You are now signed up! Go to the <link "
+"href=\"https://www.transifex.com/otf/torproject/\">Tor Transifex "
+"page</link>."
+msgstr ""
+"Tá tú cláraithe anois! Tabhair cuairt ar <link "
+"href=\"https://www.transifex.com/otf/torproject/\">leathanach Tor ar "
+"Transifex</link>."
+
+#: translate.page:64
+msgid "Click the blue 'Join Team' button on the far right:"
+msgstr "Cliceáil an cnaipe gorm 'Join Team' ar dheis ar fad:"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: translate.page:68
+msgctxt "_"
+msgid ""
+"external ref='media/translate/tr3.png' "
+"md5='7da6c9968cabbe9c1ecc7cdf645407e8'"
+msgstr ""
+"external ref='media/translate/tr3.png' "
+"md5='7da6c9968cabbe9c1ecc7cdf645407e8'"
+
+#: translate.page:72
+msgid ""
+"Select the language you would like to translate from the dropdown menu:"
+msgstr "Roghnaigh do theanga ón roghchlár aníos:"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: translate.page:76
+msgctxt "_"
+msgid ""
+"external ref='media/translate/tr4.png' "
+"md5='835a266a5d4c368a2777cf171980f0b4'"
+msgstr ""
+"external ref='media/translate/tr4.png' "
+"md5='835a266a5d4c368a2777cf171980f0b4'"
+
+#: translate.page:80
+msgid "A notification will now show up on the top of the page like so:"
+msgstr "Feicfidh tú fógra ar bharr an leathanaigh mar seo:"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: translate.page:84
+msgctxt "_"
+msgid ""
+"external ref='media/translate/tr5.png' "
+"md5='935417a5d3b4a89e5d00508ea671a1fc'"
+msgstr ""
+"external ref='media/translate/tr5.png' "
+"md5='935417a5d3b4a89e5d00508ea671a1fc'"
+
+#: translate.page:88
+msgid ""
+"After your membership is approved you can begin translating; simply navigate"
+" back to the <link href=\"https://www.transifex.com/otf/torproject/\">Tor "
+"Transifex page</link> when you are ready to begin. Thanks for your interest "
+"in helping the project!"
+msgstr ""
+"Tar éis go nglacfar leat mar aistritheoir, is féidir leat tosú ag obair; níl"
+" i gceist ach cuairt a thabhairt ar <link "
+"href=\"https://www.transifex.com/otf/torproject/\">leathanach Tor ar "
+"Transifex</link> nuair a bheidh tú réidh. Go raibh maith agat as cabhrú "
+"linn!"
+
+#: transports.page:6 transports.page:20
+msgid "Types of pluggable transport"
+msgstr "Cineálacha iompair ionphlugáilte"
+
+#: transports.page:10
+msgid "Pluggable Transports"
+msgstr "Córais Iompair Ionphlugáilte"
+
+#: transports.page:12
+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 ""
+"Is éard atá i gcóras iompair ionphlugáilte ná uirlis a chuireann bréagriocht"
+" ar an trácht Idirlín a sheolann Tor amach. Tá sé seo úsáideach nuair a "
+"chuireann Soláthraí Seirbhíse Idirlín nó údarás eile bac ar cheangail le "
+"líonra Tor."
+
+#: transports.page:21
+msgid ""
+"Currently there are six pluggable transports available, but more are being "
+"developed."
+msgstr ""
+"Tá sé cinn de chórais iompair ionphlugáilte ar fáil faoi láthair, ach táimid"
+" i mbun oibre ar chinn eile."
+
+#: transports.page:28
+msgid "obfs3"
+msgstr "obfs3"
+
+#: transports.page:33
+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 ""
+"Cuireann obfs3 cuma randamach ar thrácht Tor, sa dóigh nach mbeadh cosúlacht"
+" aige le gnáth-thrácht Tor ná le haon phrótacal eile. Cé go bhfuil obfs3 ar "
+"fáil fós de réir réamhshocraithe, molaimid duit obfs4 a úsáid ina áit, toisc"
+" go bhfuil sé níos fearr ná obfs3 ó thaobh slándála."
+
+#: transports.page:43
+msgid "obfs4"
+msgstr "obfs4"
+
+#: transports.page:48
+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 ""
+"Cuireann obfs4 cuma randamach ar thrácht Tor go díreach cosúil le obfs3, "
+"agus cuireann sé cosc ar chinsirí droichid a aimsiú trí scanadh an Idirlín. "
+"Níos lú an seans go gcuirtear cosc ar dhroichead obfs4 ná ar dhroichead "
+"obfs3."
+
+#: transports.page:57
+msgid "Scramblesuit"
+msgstr "Scramblesuit"
+
+#: transports.page:62
+msgid "ScrambleSuit is similar to obfs4 but has a different set of bridges."
+msgstr ""
+"Córas cosúil le obfs4 é ScrambleSuit, ach úsáideann sé droichid dhifriúla."
+
+#: transports.page:70
+msgid "FTE"
+msgstr "FTE"
+
+#: transports.page:75
+msgid ""
+"FTE (format-transforming encryption) disguises Tor traffic as ordinary web "
+"(HTTP) traffic."
+msgstr ""
+"Cuireann FTE (criptiúchán trasfhoirmithe) cuma ghnáth-thrácht Gréasáin "
+"(HTTP) ar thrácht Tor."
+
+#: transports.page:83
+msgid "meek"
+msgstr "meek"
+
+#: transports.page:88
+msgid ""
+"These 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 ""
+"Nuair a úsáideann tú na córais iompair seo, dealraíonn sé go bhfuil tú ag "
+"brabhsáil suíomh éigin mór-le-rá in áit Tor. Mar shampla, le meek-amazon, "
+"dealraíonn sé go bhfuil tú ag úsáid Seirbhísí Gréasáin Amazon; le meek-"
+"azure, go bhfuil tú ag úsáid suímh de chuid Microsoft; agus le meek-google, "
+"go bhfuil tú ag déanamh cuardaigh Google."
+
+#: transports.page:100
+msgid "Snowflake"
+msgstr "Snowflake"
+
+#: transports.page:105
+msgid ""
+"Snowflake is an improvement upon Flashproxy. It sends your traffic through "
+"WebRTC, a peer-to-peer protocol with built-in NAT punching."
+msgstr ""
+"Leagan feabhsaithe de Flashproxy is ea Snowflake. Seolann sé do chuid "
+"tráchta trí WebRTC, prótacal ó ríomhaire go ríomhaire a bhfuil cumas tollta "
+"NAT ionsuite ann."
+
+#: troubleshooting.page:6
+msgid "What to do if Tor Browser doesn’t work"
+msgstr "Cad is féidir a dhéanamh mura bhfuil Brabhsálaí Tor ag obair"
+
+#: troubleshooting.page:12
+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 ""
+"Ba cheart go mbeifeá in ann an Gréasán a bhrabhsáil le Brabhsálaí Tor go "
+"díreach tar éis duit an clár a thosú, agus an cnaipe “Ceangail” a chliceáil "
+"an chéad uair a úsáideann tú é."
+
+#: troubleshooting.page:21
+msgid "Quick fixes"
+msgstr "Réiteach tapa"
+
+#: troubleshooting.page:22
+msgid ""
+"If Tor Browser doesn’t connect, there may be a simple solution. Try each of "
+"the following:"
+msgstr ""
+"Murar féidir le Brabhsálaí Tor ceangal leis an líonra, seans go bhfuil "
+"réiteach simplí ann. Bain triail as gach ceann de na moltaí seo:"
+
+#: troubleshooting.page:29
+msgid ""
+"Your computer’s system clock must be set correctly, or Tor will not be able "
+"to connect."
+msgstr ""
+"Ní mór do chlog an chórais a bheith socraithe i gceart, nó nach mbeidh Tor "
+"in ann ceangal leis an líonra."
+
+#: troubleshooting.page:35
+msgid ""
+"Make sure another Tor Browser is not already running. If you’re not sure if "
+"Tor Browser is running, restart your computer."
+msgstr ""
+"Deimhnigh nach bhfuil Brabhsálaí Tor eile ag rith cheana. Mura bhfuil tú "
+"cinnte faoi seo, atosaigh do ríomhaire."
+
+#: troubleshooting.page:41
+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 ""
+"Deimhnigh nach bhfuil aon bhogearra frithvíreas ag cur cosc ar Tor. Seans "
+"gur gá duit doiciméadú an bhogearra frithvíreas a cheadú mura bhfuil a fhios"
+" agat conas é seo a dhéanamh."
+
+#: troubleshooting.page:49
+msgid "Temporarily disable your firewall."
+msgstr "Díchumasaigh do bhalla dóiteáin go sealadach."
+
+#: troubleshooting.page:54
+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 ""
+"Scrios an Brabhsálaí Tor agus suiteáil arís é. Má tá leagan nua ar fáil, ná "
+"forscríobh na comhaid a bhí ann; deimhnigh gur scrios tú go hiomlán iad ar "
+"dtús."
+
+#: troubleshooting.page:64
+msgid "Is your connection censored?"
+msgstr "An bhfuil do cheangal faoi chinsireacht?"
+
+#: troubleshooting.page:65
+msgid ""
+"If you still can’t connect, your Internet Service Provider might be "
+"censoring connections to the Tor network. Read the <link "
+"xref=\"circumvention\">Circumvention</link> section for possible solutions."
+msgstr ""
+"Mura bhfuil tú in ann ceangal fós, b'fhéidir go bhfuil do Sholáthraí "
+"Seirbhíse Idirlín ag déanamh cinsireacht ar líonra Tor. Léigh an leathanach "
+"<link xref=\"circumvention\">Timpeallú</link>le foghlaim conas is féidir an "
+"fhadhb a réiteach."
+
+#: troubleshooting.page:74
+msgid "Known issues"
+msgstr "Fadhbanna ar eolas"
+
+#: troubleshooting.page:75
+msgid ""
+"Tor Browser is under constant development, and some issues are known about "
+"but not yet fixed. Please check the <link xref=\"known-issues\">Known "
+"Issues</link> page to see if the problem you are experiencing is already "
+"listed there."
+msgstr ""
+"Tá Brabhsálaí Tor á fhorbairt ar bhonn leanúnach, agus tá a fhios againn "
+"faoi roinnt fadhbanna nach bhfuil réiteach orthu fós. Féach ar an leathanach"
+" <link xref=\"known-issues\">Fadhbanna ar eolas</link> le féachaint an "
+"bhfuil an fhadhb a fheiceann tusa ann cheana."
+
+#: uninstalling.page:6
+msgid "How to remove Tor Browser from your system"
+msgstr "Conas Brabhsálaí Tor a bhaint de do chóras"
+
+#: uninstalling.page:10
+msgid "Uninstalling"
+msgstr "Díshuiteáil"
+
+#: uninstalling.page:12
+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 ""
+"Ní théann Brabhsálaí Tor i bhfeidhm ar aon bhogearraí eile ar do ríomhaire, "
+"ná ar shocruithe do chórais. Má bhaineann tú Brabhsálaí Tor de do ríomhaire,"
+" ní rachaidh sé i bhfeidhm ar bhogearraí ná ar shocruithe do chórais."
+
+#: uninstalling.page:18
+msgid "Removing Tor Browser from your system is simple:"
+msgstr "Tá sé an-éasca Brabhsálaí Tor a bhaint de do chóras:"
+
+#: uninstalling.page:24
+msgid ""
+"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 ""
+"Aimsigh fillteán Bhrabhsálaí Tor. Seo é an Deasc de réir réamhshocraithe ar "
+"Windows, agus an fillteán Applications ar Mac OS X. Níl aon suíomh "
+"réamhshocraithe ar Linux, ach is é \"tor-browser_en-US\" ainm an fhillteáin "
+"má tá an leagan Béarla agat."
+
+#: uninstalling.page:32
+msgid "Delete the Tor Browser folder."
+msgstr "Scrios fillteán Bhrabhsálaí Tor."
+
+#: uninstalling.page:35
+msgid "Empty your Trash"
+msgstr "Folmhaigh an Bruscar"
+
+#: uninstalling.page:39
+msgid ""
+"Note that your operating system’s standard “Uninstall” utility is not used."
+msgstr ""
+"Tabhair faoi deara nach mbaintear úsáid as an ngnáthuirlis \"Uninstall\" ar "
+"do chóras."
+
+#: updating.page:6
+msgid "How to update Tor Browser"
+msgstr "Conas Brabhsálaí Tor a nuashonrú"
+
+#: updating.page:10
+msgid "Updating"
+msgstr "Nuashonrú"
+
+#: updating.page:12
+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 ""
+"Caithfidh tú Brabhsálaí Tor a choinneáil cothrom le dáta i gcónaí. Má "
+"úsáideann tú leagan den bhogearra atá as dáta, is dócha go mbeidh tú i mbaol"
+" ionsaithe mar gheall ar lochtanna tromchúiseacha slándála a d'fhéadfadh "
+"d'aitheantas nó do chuid sonraí pearsanta a nochtadh."
+
+#: updating.page:18
+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 ""
+"Fiafróidh Brabhsálaí Tor díot ar mhaith leat an bogearra a nuashonrú chomh "
+"luath agus a bheidh leagan nua ar fáil: taispeánfaidh deilbhín an chnaipe "
+"Tor triantán buí, agus seans go bhfeicfidh tú táscaire scríofa faoin "
+"nuashonrú nuair a osclóidh Brabhsálaí Tor. Is féidir leat é a nuashonrú go "
+"huathoibríoch nó de láimh."
+
+#: updating.page:26
+msgid "Updating Tor Browser automatically"
+msgstr "Nuashonrú uathoibríoch ar Bhrabhsálaí Tor"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: updating.page:30
+msgctxt "_"
+msgid ""
+"external ref='media/updating/update1.png' "
+"md5='9ff01eb653d92124746fc31efde2bf07'"
+msgstr ""
+"external ref='media/updating/update1.png' "
+"md5='9ff01eb653d92124746fc31efde2bf07'"
+
+#: updating.page:32
+msgid ""
+"When you are prompted to update Tor Browser, click on the Torbutton icon, "
+"then select “Check for Tor Browser Update”."
+msgstr ""
+"Nuair a iarrfar ort Brabhsálaí Tor a nuashonrú, cliceáil an cnaipe Tor, "
+"ansin roghnaigh “Lorg Nuashonrú ar Bhrabhsálaí Tor”."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: updating.page:39
+msgctxt "_"
+msgid ""
+"external ref='media/updating/update3.png' "
+"md5='19b1f46d748dbcd9250883044165d218'"
+msgstr ""
+"external ref='media/updating/update3.png' "
+"md5='19b1f46d748dbcd9250883044165d218'"
+
+#: updating.page:41
+msgid ""
+"When Tor Browser has finished checking for updates, click on the “Update” "
+"button."
+msgstr ""
+"Tar éis do Bhrabhsálaí Tor nuashonruithe a lorg, cliceáil an cnaipe "
+"“Nuashonraigh”."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: updating.page:48
+msgctxt "_"
+msgid ""
+"external ref='media/updating/update4.png' "
+"md5='7e8ead67c03597f00c580c77c3103fbb'"
+msgstr ""
+"external ref='media/updating/update4.png' "
+"md5='7e8ead67c03597f00c580c77c3103fbb'"
+
+#: updating.page:50
+msgid ""
+"Wait for the update to download and install, then restart Tor Browser. You "
+"will now be running the latest version."
+msgstr ""
+"Fan go dtí go mbeidh an nuashonrú íoslódáilte agus suiteáilte, agus atosaigh"
+" Brabhsálaí Tor. Ansin, beidh an leagan is déanaí agat."
+
+#: updating.page:58
+msgid "Updating Tor Browser manually"
+msgstr "Nuashonrú de láimh ar Bhrabhsálaí Tor"
+
+#: updating.page:61
+msgid ""
+"When you are prompted to update Tor Browser, finish the browsing session and"
+" close the program."
+msgstr ""
+"Nuair a iarrfar ort Brabhsálaí Tor a nuashonrú, críochnaigh an seisiún "
+"brabhsála agus dún an ríomhchlár."
+
+#: updating.page:67
+msgid ""
+"Remove Tor Browser from your system by deleting the folder that contains it "
+"(see the <link xref=\"uninstalling\">Uninstalling</link> section for more "
+"information)."
+msgstr ""
+"Chun Brabhsálaí Tor a bhaint de do chóras, scrios an fillteán ina bhfuil sé "
+"(féach ar <link xref=\"uninstalling\">Díshuiteáil</link> le tuilleadh eolais"
+" a fháil)."
+
+#: updating.page:74
+msgid ""
+"Visit <link href=\"https://www.torproject.org/projects/torbrowser.html.en\">"
+" https://www.torproject.org/projects/torbrowser.html.en</link> and download "
+"a copy of the latest Tor Browser release, then install it as before."
+msgstr ""
+"Tabhair cuairt ar <link "
+"href=\"https://www.torproject.org/projects/torbrowser.html.en\"> "
+"https://www.torproject.org/projects/torbrowser.html.en</link> agus íoslódáil"
+" cóip den leagan is déanaí de Bhrabhsálaí Tor, agus suiteáil é mar a rinne "
+"tú roimhe seo."
1
0
commit 3f888664afcfe6f15299ae73b76e4e4983079112
Author: Colin Childs <colin(a)torproject.org>
Date: Tue Sep 18 14:08:40 2018 -0500
Pushing sv translations
---
Makefile.am | 2 +-
sv/sv.po | 1817 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 1818 insertions(+), 1 deletion(-)
diff --git a/Makefile.am b/Makefile.am
index 5c58dea..8b1db95 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -8,7 +8,7 @@ TOR_AND_HTTPS = ../tor-and-https
HELP_ID = tor-browser-user-manual
HELP_FILES = $(shell cd $(srcdir)/C && git ls-files '*.page')
HELP_MEDIA = $(shell cd $(srcdir)/C && git ls-files 'media')
-HELP_LINGUAS = en-US ja @TOR_BROWSER_BUNDLE_LOCALES@
+HELP_LINGUAS = en-US ja sv @TOR_BROWSER_BUNDLE_LOCALES@
.PHONY: html
html: all media-symlinks.stamp
diff --git a/sv/sv.po b/sv/sv.po
new file mode 100644
index 0000000..a469561
--- /dev/null
+++ b/sv/sv.po
@@ -0,0 +1,1817 @@
+# Translators:
+# cryptohead <cryptohead(a)gmail.com>, 2016
+# Alexandra <alexandra_fischer90(a)hotmail.com>, 2016
+# WinterFairy <winterfairy(a)riseup.net>, 2016
+# Jonatan Nyberg, 2016
+# Daniel Sjöberg <sjbrg(a)protonmail.com>, 2016
+# Yoga Andersson <yoga.andersson(a)gmail.com>, 2016
+# Nikolai Stenfors <nikolai.stenfors(a)bahnhof.se>, 2016
+# Jacob Andersson <jacob.c.andersson(a)protonmail.com>, 2016
+# Bo Serrander <bserrander(a)gmail.com>, 2017
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2016-12-06 16:36-0600\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Bo Serrander <bserrander(a)gmail.com>, 2017\n"
+"Language-Team: Swedish (https://www.transifex.com/otf/teams/1519/sv/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: sv\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
+msgctxt "_"
+msgid "translator-credits"
+msgstr "Lista med översättare"
+
+#: about-tor-browser.page:7
+msgid "Learn what Tor Browser can do to protect your privacy and anonymity"
+msgstr ""
+"Ta reda på vad Tor-webbläsaren kan göra för att skydda din integritet och "
+"anonymitet"
+
+#: about-tor-browser.page:10
+msgid "About Tor Browser"
+msgstr "Om Tor-webbläsare"
+
+#: about-tor-browser.page:12
+msgid ""
+"Tor Browser uses the Tor network to protect your privacy and anonymity. "
+"Using the Tor network has two main properties:"
+msgstr ""
+"Tor webbläsare använder Tor nätverket för att skydda din integritet och din "
+"anonymitet. Tor nätverk har två huvudsakliga egenskaper:"
+
+#: about-tor-browser.page:18
+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 ""
+"Din Internetleverantör, och alla som bevakar på din anslutning lokalt, "
+"kommer inte att kunna spåra din Internet-aktivitet, inklusive namn och "
+"adresser till de webbplatser du besöker."
+
+#: about-tor-browser.page:25
+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 ""
+"Operatörerna av de webbplatser och tjänster som du använder, och alla som "
+"bevakar dem, kommer att se en förbindelse som kommer från Tor-nätverket "
+"istället för din riktiga Internet (IP) adress, och kommer inte att veta vem "
+"du är om du inte uttryckligen identifiera dig."
+
+#: about-tor-browser.page:34
+msgid ""
+"In addition, Tor Browser is designed to prevent websites from "
+"“fingerprinting” or identifying you based on your browser configuration."
+msgstr ""
+"Dessutom är Tor Browser utformad för att förhindra webbplatser från "
+"\"fingeravtryck\" eller identifiera dig baserat på din "
+"webbläsarkonfiguration."
+
+#: about-tor-browser.page:39
+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 <link xref"
+"=\"managing-identities#new-identity\">New Identity</link> is requested)."
+msgstr ""
+"Som standard behåller Tor Browser inte någon webbhistorik . Cookies är "
+"endast giltig för en enda session (tills Tor Browser avslutas eller en <link"
+" xref=\"managing-identities#new-identity\">Ny identitet </link> begärs)."
+
+#: about-tor-browser.page:50
+msgid "How Tor works"
+msgstr "Hur Tor fungerar"
+
+#: about-tor-browser.page:52
+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 <em>relays</em>) in the Tor network. The"
+" last relay in the circuit (the “exit relay”) then sends the traffic out "
+"onto the public Internet."
+msgstr ""
+"Tor är ett nätverk av virtuella tunnlar som tillåter dig att förbättra din "
+"integritet och säkerhet på Internet. Tor fungerar genom att skicka din "
+"trafik genom tre slump servrar (även känd som <em>reläer</em>) i Tor-"
+"nätverket. Den sista relän i kretsen (\"exit relä\") skickar sedan trafiken "
+"ut på det publika Internet."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: about-tor-browser.page:59
+msgctxt "_"
+msgid ""
+"external ref='media/how-tor-works.png' "
+"md5='6fe4151a88b7a518466f0582e40ccc8c'"
+msgstr ""
+"extern ref='media/how-tor-works.png' md5='6fe4151a88b7a518466f0582e40ccc8c'"
+
+#: about-tor-browser.page:60
+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 ""
+"Bilden ovan visar en användare som surfar till olika webbplatser över Tor. "
+"De gröna mellan datorerna representerar reläer i Tor-nätverket, medan de tre"
+" knapparna representerar lagren av kryptering mellan användaren och varje "
+"relä."
+
+#: bridges.page:6
+msgid "Learn what bridges are and how to get them"
+msgstr "Lär dig vad bryggor är och hur man får tillgång till dem"
+
+#: bridges.page:10
+msgid "Bridges"
+msgstr "Broar"
+
+#: bridges.page:12
+msgid ""
+"Most <link xref=\"transports\">Pluggable Transports</link>, 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 ""
+"Flesta <link xref = \"transports\">Pluggbara transporter</link>, som obfs3 "
+"och obfs4, är beroende av användningen av \"bro\"-reläer. Som vanliga Tor-"
+"reläer körs broar av volontärer. Till skillnad från vanliga reläer är de "
+"inte listade offentligt, så en motståndare kan inte identifiera dem enkelt. "
+"Användning av broar i kombination med pluggbara transporter hjälper till att"
+" dölja det faktum att du använder Tor."
+
+#: bridges.page:21
+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 ""
+"Andra pluggbara transporter, som meek, använder olika anticensurtekniker som"
+" inte bygger på broar. Du behöver inte få broadresser för att kunna använda "
+"dessa transporter."
+
+#: bridges.page:28
+msgid "Getting bridge addresses"
+msgstr "Skaffar bryggadresser"
+
+#: bridges.page:29
+msgid ""
+"Because bridge addresses are not public, you will need to request them "
+"yourself. You have two options:"
+msgstr ""
+"Eftersom bryggadresser inte är offentliga, måste du begära dem själv. Du har"
+" två alternativ:"
+
+#: bridges.page:36
+msgid ""
+"Visit <link "
+"href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</link>"
+" and follow the instructions, or"
+msgstr ""
+"Besök <link "
+"href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</link>"
+" och följ instruktionerna, eller"
+
+#: bridges.page:42
+msgid ""
+"Email bridges(a)torproject.org from a Gmail, Yahoo, or Riseup email address, "
+"or"
+msgstr ""
+"Maila bridges(a)torproject.org från en Gmail, Yahoo eller RiseUp e-postadress "
+"eller"
+
+#: bridges.page:51
+msgid "Entering bridge addresses"
+msgstr "Skriver in broadresser"
+
+#: bridges.page:52
+msgid ""
+"Once you have obtained some bridge addresses, you will need to enter them "
+"into Tor Launcher."
+msgstr "När du har fått några broadresser, måste du ange dem i Tor Launcher."
+
+#: bridges.page:57
+msgid ""
+"Choose “yes” when asked if your Internet Service Provider blocks connections"
+" to the Tor network. Select “Use custom bridges” and enter each bridge "
+"address on a separate line."
+msgstr ""
+"Välj \"ja\" på frågan om din Internet-tjänsteleverantören blockerar "
+"anslutningar till Tor-nätverket. Välj \"Använd egna bryggor\" och ange en "
+"bryggadress per rad."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: bridges.page:63
+msgctxt "_"
+msgid ""
+"external ref='media/tor-launcher-custom-bridges_en-US.png' "
+"md5='93365c2aa3fb4d627497e83f28a39b7e'"
+msgstr ""
+"extern ref='media/tor-launcher-custom-bridges_en-US.png' "
+"md5='93365c2aa3fb4d627497e83f28a39b7e'"
+
+#: bridges.page:65
+msgid ""
+"Click “Connect”. Using bridges may slow down the connection compared to "
+"using ordinary Tor relays. 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 ""
+"Klicka på \"Anslut\". Det kan gå långsammare när du använder bryggor "
+"jämntemot vanliga Tor-reläer. Om anslutningen misslyckas kan broadressen du "
+"fick vara nere. Använd en av metoderna ovan för att få fler broadresser och "
+"försök igen."
+
+#: circumvention.page:6
+msgid "What to do if the Tor network is blocked"
+msgstr "Vad du ska göra ifall Tor nätverket är blockerat"
+
+#: circumvention.page:10
+msgid "Circumvention"
+msgstr "Kringgående"
+
+#: circumvention.page:12
+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 <link xref=\"transports\">Pluggable Transports</link> "
+"page for more information on the types of transport that are currently "
+"available."
+msgstr ""
+"Direktåtkomst till Tor-nätverket kan ibland blockeras av din "
+"Internetleverantör eller av en regering. Tor Browser innehåller några "
+"kringgående verktyg för att komma runt dessa blockeringar. Dessa verktyg "
+"kallas \"pluggbara transporter\". Se sidan <link "
+"xref=\"transports\">Pluggbara transporter</link> för mer information om "
+"vilka transporttyper som för närvarande finns tillgängliga."
+
+#: circumvention.page:22
+msgid "Using pluggable transports"
+msgstr "Använder pluggbara transporter"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: circumvention.page:26 first-time.page:35
+msgctxt "_"
+msgid ""
+"external ref='media/circumvention/configure.png' "
+"md5='519d888303eadfe4cb03f178aedd90f5'"
+msgstr ""
+"extern ref='media/circumvention/configure.png' "
+"md5='519d888303eadfe4cb03f178aedd90f5'"
+
+#: circumvention.page:28
+msgid ""
+"To use pluggable transports, click \"Configure\" in the Tor Launcher window "
+"that appears when you first run Tor Browser."
+msgstr ""
+"För att använda pluggbara transporter, klicka på \"Konfigurera\" i Tor "
+"Launcher-fönstret som visas när du först kör Tor Browser."
+
+#: circumvention.page:33
+msgid ""
+"You can also configure pluggable transports while Tor Browser is running, by"
+" clicking on the green onion near your address bar and selecting “Tor "
+"Network Settings”."
+msgstr ""
+"Du kan också konfigurera pluggbara transporter medan Tor Browser körs, genom"
+" att klicka på den gröna löken i närheten av adressfältet och välja \"Tor "
+"nätverk inställningar\"."
+
+#: circumvention.page:41
+msgid ""
+"Select “yes” when asked if your Internet Service Provider blocks connections"
+" to the Tor network."
+msgstr ""
+"Välj \"ja\" på frågan om din Internet-tjänsteleverantören blockerar "
+"anslutningar till Tor-nätverket."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: circumvention.page:49
+msgctxt "_"
+msgid ""
+"external ref='media/circumvention/bridges.png' "
+"md5='910cdd5e45860b81a1ad4739c589a195'"
+msgstr ""
+"extern ref='media/circumvention/bridges.png' "
+"md5='910cdd5e45860b81a1ad4739c589a195'"
+
+#: circumvention.page:51
+msgid ""
+"Select “Connect with provided bridges”. Tor Browser currently has six "
+"pluggable transport options to choose from."
+msgstr ""
+"Välj \"Anslut med tillhandahållna broar\". Tor Browser har för närvarande "
+"sex pluggbara transport alternativ att välja mellan."
+
+#: circumvention.page:60
+msgid "Which transport should I use?"
+msgstr "Vilka transporter ska jag använda?"
+
+#: circumvention.page:61
+msgid ""
+"Each of the transports listed in Tor Launcher’s menu works in a different "
+"way (for more details, see the <link xref=\"transports\">Pluggable "
+"Transports</link> page), and their effectiveness depends on your individual "
+"circumstances."
+msgstr ""
+"Var och en av de transporter som anges i Tor Launcher-menyn fungerar på ett "
+"annat sätt (för mer information, se <link xref=\"transports\">Pluggbara "
+"transporter</link>-sidan) och deras effektivitet beror på dina individuella "
+"omständigheter."
+
+#: circumvention.page:67
+msgid ""
+"If you are trying to circumvent a blocked connection for the first time, you"
+" should try the different transports: obfs3, obfs4, ScrambleSuit, fte, meek-"
+"azure, meek-amazon."
+msgstr ""
+"Om du försöker att kringgå en blockerad anslutning för första gången, bör du"
+" prova olika transporter: obfs3, obfs4, ScrambleSuit, fte, meed-azure, meek-"
+"amazon."
+
+#: circumvention.page:72
+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 <link "
+"xref=\"bridges\">Bridges</link> section to learn what bridges are and how to"
+" obtain them."
+msgstr ""
+"Om du försöker alla dessa alternativ, och ingen av dem får dig på nätet, "
+"måste du ange broadresser manuellt. Läs avsnittet <link "
+"xref=\"bridges\">Broar</link> för att lära dig vilka broar som finns och hur"
+" man hämtar dem."
+
+#: downloading.page:7
+msgid "How to download Tor Browser"
+msgstr "Hur du laddar ner Tor"
+
+#: downloading.page:10
+msgid "Downloading"
+msgstr "Hämtar"
+
+#: downloading.page:12
+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 <link xref=\"secure-connections\">HTTPS</link>, which "
+"makes it much harder for somebody to tamper with."
+msgstr ""
+"Det säkraste och enklaste sättet att ladda ner Tor Browser är från den "
+"officiella Tor Project-webbplatsen på https://www.torproject.org. Din "
+"anslutning till webbplatsen kommer att säkras med hjälp av <link xref"
+"=\"secure-connections\">HTTPS</link>, vilket gör det mycket svårare för "
+"någon att manipulera med."
+
+#: downloading.page:19
+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 ""
+"Det kan dock finnas tillfällen då du inte kan komma åt Tor Project-"
+"webbplatsen. Det kan till exempel vara blockerat på ditt nätverk. Om det "
+"händer kan du använda en av de alternativa hämtningsmetoderna nedan."
+
+#: downloading.page:27
+msgid "GetTor"
+msgstr "GetTor"
+
+#: downloading.page:28
+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 är en tjänst som automatiskt svarar på meddelanden med länkar till "
+"den senaste versionen av Tor Browser, som finns på flera olika platser, till"
+" exempel Dropbox, Google Drive och Github."
+
+#: downloading.page:34
+msgid "To use GetTor via email:"
+msgstr "För att använda GetTor via e-post:"
+
+#: downloading.page:39
+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 ""
+"Skicka ett e-post till gettor(a)torproject.org med något av följande i "
+"meddelandetexten \"winows\", \"osx\" eller \"linux\" (ta inte med "
+"citattecken) beroende på ditt val av operativsystem."
+
+#: downloading.page:46
+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 svarar med ett e-postmeddelande med länkar från vilka du kan hämta "
+"Tor Browser-paketet, kryptografiska signaturen (behövs för att verifiera "
+"hämtningen), fingeravtryck av den nyckel som används för att göra signaturen"
+" och paketets kontrollsumma. Du kan erbjudas ett val av \"32-bitars\" eller "
+"\"64-bitars\" programvara: detta beror på vilken modell av datorn du "
+"använder."
+
+#: downloading.page:57
+msgid "To use GetTor via Twitter:"
+msgstr "För att använda GetTor via Twitter:"
+
+#: downloading.page:62
+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 ""
+"För att få länkar för att hämta Tor Browser på engelska för OS X, skicka ett"
+" direktmeddelande till @get_tor med orden \"osx en\" i det (du behöver inte "
+"följa kontot)."
+
+#: downloading.page:70
+msgid "To use GetTor via Jabber/XMPP (Tor Messenger, Jitsi, CoyIM):"
+msgstr "För att använda GetTor via Jabber/XMPP (Tor Messenger, Jitsi, CoyIM):"
+
+#: downloading.page:75
+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 ""
+"För att få länkar för att hämta Tor Browser på kinesiska för Linux, skicka "
+"ett meddelande till gettor(a)torproject.org med orden \"linux zh\" i det."
+
+#: downloading.page:84
+msgid "Satori"
+msgstr "Satori"
+
+#: downloading.page:85
+msgid ""
+"Satori is an add-on for the Chrome or Chromium browsers that allows you to "
+"download several security and privacy programs from different sources."
+msgstr ""
+"Satori är ett tillägg för Chrome eller Chromium webbläsarna som låter dig "
+"hämta flera säkerhets- och sekretessprogram från olika källor."
+
+#: downloading.page:90
+msgid "To download Tor Browser using Satori:"
+msgstr "Ladda ner Tor med Satori:"
+
+#: downloading.page:95
+msgid "Install Satori from the Chrome App Store."
+msgstr "Installera Satori med Chrome App Store."
+
+#: downloading.page:100
+msgid "Select Satori from your browser’s Apps menu."
+msgstr "Välj Satori från din webbläsares Appar-meny."
+
+#: downloading.page:105
+msgid ""
+"When Satori opens, click on your preferred language. A menu will open "
+"listing the available downloads for that language. Find the entry for Tor "
+"Browser under the name of your operating system. Select either “A” or “B” "
+"after the name of the program — each one represents a different source from "
+"which to get the software. Your download will then begin."
+msgstr ""
+"När Satori öppnas klickar du på ditt önskade språk. Kommer en meny öppnas "
+"med listan över tillgängliga hämtningar för det språket. Hitta posten för "
+"Tor Browser under namnet på ditt operativsystem. Välj antingen \"A\" eller "
+"\"B\" efter programmets namn - var och en representerar en annan källa för "
+"att hämta mjukvaran. Din nedladdning startar sedan."
+
+#: downloading.page:115
+msgid ""
+"Wait for your download to finish, then find the “Generate Hash” section in "
+"Satori’s menu and click “Select Files”."
+msgstr ""
+"Vänta på att din hämtning är klar och hitta sedan avsnittet \"Generera "
+"Hash\" i Satori-menyn och klicka på \"Välj filer\"."
+
+#: downloading.page:121
+msgid ""
+"Select the downloaded Tor Browser file. Satori will display the checksum of "
+"the file, which you should compare with the software’s original checksum: "
+"you can find this by clicking the word “checksum” after the link you clicked"
+" on to start the download. If the checksums match, your download was "
+"successful, and you can <link xref=\"first-time\">begin using Tor "
+"Browser</link>. If they do not match, you may need to try downloading again,"
+" or from a different source."
+msgstr ""
+"Välj den hämtade Tor Browser-filen. Satori kommer att visa kontrollsumma för"
+" filen, som du bör jämföra med programmets ursprungliga kontrollsumma: du "
+"kan hitta det genom att klicka på ordet \"checksum\" efter länken du "
+"klickade på för att starta hämtningen. Om kontrollsummorna matchar var din "
+"hämtning framgångsrik, och du kan <link xref=\"first-time\">börja använda "
+"Tor Browser</link>. Om de inte matchar kan du behöva försöka hämta igen, "
+"eller från en annan källa."
+
+#: first-time.page:7
+msgid "Learn how to use Tor Browser for the first time"
+msgstr "Lär dig använda Tor för första gången"
+
+#: first-time.page:10
+msgid "Running Tor Browser for the first time"
+msgstr "Att använda Tor för första gången"
+
+#: first-time.page:12
+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 ""
+"När du kör Tor Browser för första gången ser du fönstret Tor Network "
+"Settings. Detta ger dig möjlighet att ansluta direkt till Tor-nätverket "
+"eller konfigurera Tor Browser för din anslutning."
+
+#: first-time.page:19
+msgid "Connect"
+msgstr "Anslut"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: first-time.page:21 troubleshooting.page:18
+msgctxt "_"
+msgid ""
+"external ref='media/first-time/connect.png' "
+"md5='9d07068f751a3bfd274365a4ba8d90ca'"
+msgstr ""
+"external ref='media/first-time/connect.png' "
+"md5='9d07068f751a3bfd274365a4ba8d90ca'"
+
+#: first-time.page:23
+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 "
+"<link xref=\"troubleshooting\">Troubleshooting</link> page for help solving "
+"the problem."
+msgstr ""
+"I de flesta fall kan du välja \"Anslut\" så att du kan ansluta till Tor-"
+"nätverket utan ytterligare konfiguration. Efter att du klickat visas ett "
+"statusfält som visar Tors anslutningsframsteg. Om du har en relativt snabb "
+"anslutning, men den här fältet fastnar vid en viss punkt, se sidan <link "
+"xref=\"troubleshooting\">Felsökning</link> för att lösa problemet."
+
+#: first-time.page:33
+msgid "Configure"
+msgstr "Konfigurera"
+
+#: first-time.page:37
+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 ""
+"Om du vet att din anslutning är censurerad eller använder en proxy, ska du "
+"välja det här alternativet. Tor Browser tar dig igenom en rad "
+"konfigurationsalternativ."
+
+#: first-time.page:44
+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 <link "
+"xref=\"circumvention\">Circumvention</link> screen to configure a pluggable "
+"transport."
+msgstr ""
+"Den första skärmen frågar om åtkomst till Tor-nätverket är blockerat eller "
+"censurerat på din anslutning. Om du inte tror detta är fallet, välj \"Nej\"."
+" Om du vet att din anslutning är censurerad, eller om du har försökt och "
+"misslyckats med att ansluta till Tor-nätverket och inga andra lösningar har "
+"fungerat, välj \"Ja\". Du kommer då att tas till skärmen <link "
+"xref=\"circumvention\">Kringgående</link> för att konfigurera en pluggbar "
+"transport."
+
+#: first-time.page:55
+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 ""
+"Nästa skärm frågar om din anslutning använder en proxy. I de flesta fall är "
+"det inte nödvändigt. Du vet vanligen om du behöver svara \"Ja\", eftersom "
+"samma inställningar kommer att användas för andra webbläsare på ditt system."
+" Om möjligt, fråga din nätverksadministratör för vägledning. Om din "
+"anslutning inte använder en proxy, klicka på \"Fortsätt\"."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: first-time.page:63
+msgctxt "_"
+msgid ""
+"external ref='media/first-time/proxy_question.png' "
+"md5='30853b3e86cfd386bbc32e5b8b45a378'"
+msgstr ""
+"external ref='media/first-time/proxy_question.png' "
+"md5='30853b3e86cfd386bbc32e5b8b45a378'"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: first-time.page:66
+msgctxt "_"
+msgid ""
+"external ref='media/first-time/proxy.png' "
+"md5='13f21a351cd0aa1cf11aada690f3dc90'"
+msgstr ""
+"external ref='media/first-time/proxy.png' "
+"md5='13f21a351cd0aa1cf11aada690f3dc90'"
+
+#: index.page:6
+msgid "Tor Browser User Manual"
+msgstr "Tor Browser bruksanvisning"
+
+#: known-issues.page:6
+msgid "A list of known issues."
+msgstr "En lista över kända problem"
+
+#: known-issues.page:10
+msgid "Known Issues"
+msgstr "Kända problem"
+
+#: known-issues.page:14
+msgid ""
+"Tor needs your system clock (and your time zone) set to the correct time."
+msgstr ""
+"Tor kräver att din systemklocka (och din tidszon) är inställd på rätt tid."
+
+#: known-issues.page:19
+msgid ""
+"The following firewall software have been known to interfere with Tor and "
+"may need to be temporarily disabled:"
+msgstr ""
+"Följande brandväggsprogram har varit känd för att störa Tor och kan behöva "
+"inaktiveras tillfälligt:"
+
+#: known-issues.page:23
+msgid "Webroot SecureAnywhere"
+msgstr "Webroot SecureAnywhere"
+
+#: known-issues.page:26
+msgid "Kaspersky Internet Security 2012"
+msgstr "Kaspersky Internet Security 2012"
+
+#: known-issues.page:29
+msgid "Sophos Antivirus for Mac"
+msgstr "Sophos Antivirus for Mac"
+
+#: known-issues.page:32
+msgid "Microsoft Security Essentials"
+msgstr "Microsoft säkerhetsväsentligheter"
+
+#: known-issues.page:37
+msgid ""
+"Videos that require Adobe Flash are unavailable. Flash is disabled for "
+"security reasons."
+msgstr ""
+"Videoklipp som kräver Adobe Flash är inte tillgängliga. Flash är inaktiverad"
+" av säkerhetsskäl."
+
+#: known-issues.page:43
+msgid "Tor can not use a bridge if a proxy is set."
+msgstr "Tor kan inte använda en bro om en proxy är inställd."
+
+#: known-issues.page:48
+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 paketet är daterad 1 jan 2000 00:00:00 UTC. Detta för att "
+"säkerställa att varje byggd mjukvara är exakt reproducerbar."
+
+#: known-issues.page:54
+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 ""
+"För att köra Tor Browser på Ubuntu måste användarna exekvera ett skalskript."
+" Öppna \"Filer\" (Unity explorer), öppna Inställningar → Beteendeflik → Ange"
+" \"Kör körbara textfiler när de öppnas\" till \"Fråga varje gång\" och "
+"klicka sedan på OK."
+
+#: known-issues.page:62
+msgid ""
+"Tor Browser can also be started from the command line by running the "
+"following command from inside the Tor Browser directory:"
+msgstr ""
+"Tor Browser kan också startas från kommandoraden genom att köra följande "
+"kommando från inuti Tor Browser-katalogen:"
+
+#: known-issues.page:66
+#, no-wrap
+msgid ""
+"\n"
+" ./start-tor-browser.desktop\n"
+" "
+msgstr ""
+"\n"
+" ./start-tor-browser.desktop\n"
+" "
+
+#: managing-identities.page:6
+msgid "Learn how to control personally-identifying information in Tor Browser"
+msgstr ""
+"Lär dig hur du kontrollerar personligt identifierande information i Tor "
+"Browser"
+
+#: managing-identities.page:10
+msgid "Managing identities"
+msgstr "Hantera identiteter"
+
+#: managing-identities.page:12
+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 ""
+"När du ansluter till en webbplats är det inte bara operatörerna på den "
+"webbplatsen som kan spela in information om ditt besök. De flesta "
+"webbplatser använder nu många tredjepartstjänster, bland annat "
+"\"Gilla\"-knappar för sociala nätverk, analytikerspårare och reklamfiler, "
+"som alla kan länka din aktivitet på olika webbplatser."
+
+#: managing-identities.page:20
+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 ""
+"Med hjälp av Tor-nätverket hindras observatörer från att kunna upptäcka din "
+"exakta plats och IP-adress, men även utan denna information kan de "
+"eventuellt länka olika delar av din verksamhet tillsammans. Av denna "
+"anledning innehåller Tor Browser några ytterligare funktioner som hjälper "
+"dig att styra vilken information som kan kopplas till din identitet."
+
+#: managing-identities.page:29
+msgid "The URL bar"
+msgstr "Adressfältet"
+
+#: managing-identities.page:30
+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 centrerar din webbupplevelse kring ditt förhållande till "
+"webbplatsen i webbläsarfältet. Även om du ansluter till två olika "
+"webbplatser som använder samma tredjeparts spårningstjänst, kommer Tor "
+"Browser att tvinga innehållet som ska serveras över två olika Tor-kretsar, "
+"så spåraren vet inte att båda anslutningarna kommer från din webbläsare."
+
+#: managing-identities.page:38
+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 ""
+"Å andra sidan kommer alla anslutningar till en enda webbplatsadress att "
+"göras över samma Tor-krets, vilket innebär att du kan bläddra i olika sidor "
+"på en enda webbplats i separata flikar eller fönster, utan att det går någon"
+" förlust av funktionaliteten."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: managing-identities.page:46
+msgctxt "_"
+msgid ""
+"external ref='media/managing-identities/circuit_full.png' "
+"md5='bd46d22de952fee42643be46d3f95928'"
+msgstr ""
+"external ref='media/managing-identities/circuit_full.png' "
+"md5='bd46d22de952fee42643be46d3f95928'"
+
+#: managing-identities.page:48
+msgid ""
+"You can see a diagram of the circuit that Tor Browser is using for the "
+"current tab in the onion menu."
+msgstr ""
+"Du kan se ett diagram över den krets som Tor Browser använder för den "
+"aktuella fliken i onionmenyn."
+
+#: managing-identities.page:55
+msgid "Logging in over Tor"
+msgstr "Logga in över Tor"
+
+#: managing-identities.page:56
+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 ""
+"Även om Tor Browser är utformad för att möjliggöra total användaranonymitet "
+"på webben kan det finnas situationer där det är vettigt att använda Tor med "
+"webbplatser som kräver användarnamn, lösenord eller annan identifierande "
+"information."
+
+#: managing-identities.page:62
+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 ""
+"Om du loggar in på en webbplats med en vanlig webbläsare avslöjar du också "
+"din IP-adress och geografiska plats i processen. Detsamma är ofta sant när "
+"du skickar ett mail. Genom att logga in på dina sociala nätverk eller "
+"e-postkonton med hjälp av Tor Browser kan du välja exakt vilken information "
+"du avslöjar för de webbplatser du surfar på. Att logga in med Tor Browser är"
+" också användbart om webbplatsen du försöker nå är censurerad på ditt "
+"nätverk."
+
+#: managing-identities.page:72
+msgid ""
+"When you log in to a website over Tor, there are several points you should "
+"bear in mind:"
+msgstr ""
+"När du loggar in på en webbplats över Tor finns det flera punkter du bör "
+"tänka på: "
+
+#: managing-identities.page:79
+msgid ""
+"See the <link xref=\"secure-connections\">Secure Connections</link> page for"
+" important information on how to secure your connection when logging in."
+msgstr ""
+"Se <link xref=\"secure-connections\">Säkra anslutningar</link>-sidan för "
+"viktig information om hur du säkrar din anslutning när du loggar in."
+
+#: managing-identities.page:87
+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 gör att din anslutning ofta visas som om den kommer från en helt"
+" annan del av världen. Vissa webbplatser, till exempel banker eller "
+"e-postleverantörer, kan tolka detta som ett tecken på att ditt konto har "
+"hackats eller kompromissad och låser ut dig. Det enda sättet att lösa det "
+"här är att följa webbplatsens rekommenderade procedur för kontoåterställning"
+" eller kontakta operatörerna och förklara situationen."
+
+#: managing-identities.page:101
+msgid "Changing identities and circuits"
+msgstr "Ändra identiteter och kretsar"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: managing-identities.page:103
+msgctxt "_"
+msgid ""
+"external ref='media/managing-identities/new_identity.png' "
+"md5='15b01e35fa83185d94b57bf0ccf09d76'"
+msgstr ""
+"external ref='media/managing-identities/new_identity.png' "
+"md5='15b01e35fa83185d94b57bf0ccf09d76'"
+
+#: managing-identities.page:105
+msgid ""
+"Tor Browser features “New Identity” and “New Tor Circuit for this Site” "
+"options, located in the Torbutton menu."
+msgstr ""
+"Tor Browser har alternativet \"Ny identitet\" och \"Ny Tor krets för denna "
+"sida\", som finns i Torbutton-menyn."
+
+#: managing-identities.page:111
+msgid "New Identity"
+msgstr "Ny identitet"
+
+#: managing-identities.page:112
+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 ""
+"Denna inställningen är användbar ifall du vill förebygga din föregående "
+"aktivitet ska vara länkbar med vad du har gjort innan. Vid val av denna "
+"inställningen kommer att stänga alla öppna flikar, fönster, all privat data "
+"som cookies och webbläsar historik kommer att tas bort, och nya Tor kretsar "
+"kommer användas för alla uppkopplingar. Tor webläsaren kommer att varna dig "
+"att all aktivitet och nedladdningar kommer att stoppas, tänk på detta innan "
+"du klicka \"Ny identitet\"."
+
+#: managing-identities.page:123
+msgid "New Tor Circuit for this Site"
+msgstr "Ny Tor-krets för den här webbplatsen"
+
+#: managing-identities.page:124
+msgid ""
+"This option is useful if the <link xref=\"about-tor-browser#how-tor-"
+"works\">exit relay</link> 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 ""
+"Det här alternativet är användbart om <link xref=\"about-tor-browser#how-"
+"tor-works\">utgångsrelän</link> du använder inte kan ansluta till "
+"webbplatsen du begär, eller den laddas inte ordentligt. Om du väljer det "
+"kommer den aktuella aktiva fliken eller fönstret att laddas om över en ny "
+"Tor-krets. Andra öppna flikar och fönster från samma webbplats kommer även "
+"att använda den nya kretsen när de laddas om. Det här alternativet rensar "
+"inte någon privat information eller kopplar bort din aktivitet, och det "
+"påverkar inte dina aktuella anslutningar till andra webbplatser."
+
+#: onionsites.page:6
+msgid "Services that are only accessible using Tor"
+msgstr "Tjänster som endast nås via Tor"
+
+#: onionsites.page:10
+msgid "Onion Services"
+msgstr "Onion tjänster"
+
+#: onionsites.page:11
+msgid ""
+"Onion services (formerly known as “hidden services”) are services (like "
+"websites) that are only accessible through the Tor network."
+msgstr ""
+"Onion tjänster (innan känt som \"gömda tjänster) är tjänster (t.ex "
+"webbplatser) som endast är synliga via Tor nätverket"
+
+#: onionsites.page:16
+msgid ""
+"Onion services offer several advantages over ordinary services on the non-"
+"private web:"
+msgstr ""
+"Onion tjänster har fler fördelar över vanliga tjänster för den icke privata "
+"webben."
+
+#: onionsites.page:23
+msgid ""
+"An onion services’s location and IP address are hidden, making it difficult "
+"for adversaries to censor it or identify its operators."
+msgstr ""
+"En Onions användares plats och IP adress är gömd, vilket gör det svårt för "
+"motståndare att censurera den eller identifiera användaren."
+
+#: onionsites.page:29
+msgid ""
+"All traffic between Tor users and onion services is end-to-end encrypted, so"
+" you do not need to worry about <link xref=\"secure-connections\">connecting"
+" over HTTPS</link>."
+msgstr ""
+"All trafik mellan Tor användaren och Onions tjänster är end-to-end "
+"krypterat, så du behöver inte oroa dig över <link xref=\"secure-"
+"connections\"> förbinder över HTTPS </link>."
+
+#: onionsites.page:36
+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 ""
+"Adressen för en Onion tjänst genereras automatisk, användaren behöver inte "
+"köpa ett domän namn; .onion URL som hjälper Tor säkerställa att förbindelsen"
+" är till rätt plats och att anslutningen inte blir manipuleras."
+
+#: onionsites.page:46
+msgid "How to access an onion service"
+msgstr "Hur du kan komma åt en onion tjänst"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: onionsites.page:48
+msgctxt "_"
+msgid ""
+"external ref='media/onionsites/onion_url.png' "
+"md5='f97f7fe10f07c3959c4430934974bbaa'"
+msgstr ""
+"external ref='media/onionsites/onion_url.png' "
+"md5='f97f7fe10f07c3959c4430934974bbaa'"
+
+#: onionsites.page:50
+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 sixteen "
+"mostly random letters and numbers, followed by “.onion”."
+msgstr ""
+"Precis som vilken annan webbplats behöver du veta adressen till en onion "
+"tjänst för att kunna ansluta dig till den. En Onion adress är en sträng med "
+"sexton slumpmässigt valda bokstäver och nummer följt av .onion."
+
+#: onionsites.page:58 troubleshooting.page:10
+msgid "Troubleshooting"
+msgstr "Felsökning"
+
+#: onionsites.page:59
+msgid ""
+"If you cannot reach the onion service you require, make sure that you have "
+"entered the 16-character onion address correctly: even a small mistake will "
+"stop Tor Browser from being able to reach the site."
+msgstr ""
+"Ifall du inte kan nå Onion tjänsten du vill, dubbel kolla att de 16 tecken i"
+" onion adressen stämmer. Även ett lite misstag kan stoppa Tor webbläsaren "
+"från att kunna nå sidan."
+
+#: onionsites.page:64
+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 ""
+"Om du fortfarande inte kan ansluta till Onion tjänsten, var god att försök "
+"senare. Det kan finnas tillfälliga anslutnings problem, eller har en sid "
+"operatör låtit den gå offline utan att ge en förvarning. "
+
+#: onionsites.page:69
+msgid ""
+"You can also ensure that you're able to access other onion services by "
+"connecting to <link href=\"http://3g2upl4pq6kufc4m.onion/\">DuckDuckGo's "
+"Onion Service</link>"
+msgstr ""
+"Du kan också se till att du har tillgång till andra onion-tjänster genom att"
+" ansluta till <link href=\"http://3g2upl4pq6kufc4m.onion/\">DuckDuckGo's "
+"Onion Service</link>"
+
+#: plugins.page:6
+msgid "How Tor Browser handles add-ons, plugins and JavaScript"
+msgstr "Hur Tor Browser hanterar add-ons, pluginsoch JavaScript"
+
+#: plugins.page:10
+msgid "Plugins, add-ons and JavaScript"
+msgstr "Plugins, add-ons och JavaScript"
+
+#: plugins.page:13
+msgid "Flash Player"
+msgstr "Flash Player"
+
+#: plugins.page:14
+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 ""
+"Video webbplatser, som Vimeo, använder sig av Flash Player för att kunna "
+"spela upp video innehållet. Tyvärr verkar detta programmet utanför Tor "
+"webbläsaren och det går inte att få det att lätt uppnå Tor webbläsarens "
+"proxy inställningar. Flash player kan därför visa din riktiga position och "
+"IP-adress till webbplatsens operatör eller andra observatörer. På grund av "
+"detta är Flash avstängt från början i Tor webbläsaren, men det går att slå "
+"på den fast det rekomenderas inte."
+
+#: plugins.page:23
+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 ""
+"En del video webbplatser (som Youtube) erbjuder andra alternativ för att "
+"kunna spela upp video innehållet som inte använder sig av Flash. Dessa "
+"alternativen kan vara kompatibla med Tor webbläsaren."
+
+#: plugins.page:31
+msgid "JavaScript"
+msgstr "JavaScript"
+
+#: plugins.page:32
+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 är ett programerings språk som används av webbplatser för att "
+"skapa interaktiva delar som video, animationer, ljud och status tidslinjer. "
+"Javascrupt kan tyvärr också göra det möjligt för attacker på webbläsarens "
+"säkerhet, vilket kan leda till att du inte är anonym längre. "
+
+#: plugins.page:39
+msgid ""
+"Tor Browser includes an add-on called NoScript, accessed through the “S” "
+"icon at the top-left of the window, which allows you to control the "
+"JavaScript that runs on individual web pages, or to block it entirely."
+msgstr ""
+"Tor webbläsaren inkluderar ett plug-in som heter NoScript, tillgängligt via "
+"\"S\" ikonen högst upp i fönstrets vänstra hörnan, vilket gör det möjligt "
+"för dig att kontrollera den JavaScript som körs på inviduella webbplatser "
+"eller att blocker allt helt. "
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: plugins.page:45
+msgctxt "_"
+msgid ""
+"external ref='media/plugins/noscript_menu.png' "
+"md5='df9e684b76a3c2e2bdcb879a19c20471'"
+msgstr ""
+"external ref='media/plugins/noscript_menu.png' "
+"md5='df9e684b76a3c2e2bdcb879a19c20471'"
+
+#: plugins.page:47
+msgid ""
+"Users who require a high degree of security in their web browsing should set"
+" Tor Browser’s <link xref=\"security-slider\">Security Slider</link> to "
+"“Medium-High” (which disables JavaScript for non-HTTPS websites) or “High” "
+"(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."
+msgstr ""
+"Användare som behöver en hög grad av säkerhet i sin webbläsning bör ställa "
+"in Tor Browsers <link xref=\"security-slider\">Säkerhetsreglage</link> till "
+"\"Medel-Hög\" (som inaktiverar JavaScript för webbplatser utan HTTPS) eller "
+"\"Hög\" (vilket gör det för alla webbplatser). Om du inaktiverar JavaScript "
+"kommer det dock att hindra att många webbplatser visas korrekt, så Tor "
+"Browsers standardinställning tillåter alla webbplatser att köra skript."
+
+#: plugins.page:58
+msgid "Browser Add-ons"
+msgstr "Add-ons till webläsaren"
+
+#: plugins.page:59
+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 är baserad på Firefox, och alla webbläsartillägg eller teman som"
+" är kompatibla med Firefox kan också installeras i Tor Browser."
+
+#: plugins.page:64
+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 ""
+"Men de enda tillägg som har testats för användning med Tor Browser är de som"
+" ingår som standard. Installera andra tilläggsprogram för webbläsare kan "
+"bryta funktionen i Tor Browser eller orsaka allvarligare problem som "
+"påverkar din integritet och säkerhet. Det är starkt avskräckt att installera"
+" ytterligare tillägg, och Tor Project erbjuder inte stöd för dessa "
+"konfigurationer."
+
+#: secure-connections.page:8
+msgid "Learn how to protect your data using Tor Browser and HTTPS"
+msgstr "Lär hur du skyddar din data med hjälp av Tor Browser och HTTPS"
+
+#: secure-connections.page:12
+msgid "Secure Connections"
+msgstr "Säkra anslutningar"
+
+#: secure-connections.page:14
+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 ""
+"Om personuppgifter, t.ex. ett inloggningslösenord, körs okrypterat via "
+"Internet, kan det mycket enkelt avlyssas av en tjuvlyssnare. Om du loggar in"
+" på någon webbplats bör du se till att webbplatsen erbjuder HTTPS-"
+"kryptering, vilket skyddar mot denna typ av avlyssning. Du kan verifiera "
+"detta i adressfältet: Om din anslutning är krypterad börjar adressen med "
+"\"https://\", snarare än \"http://\"."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: secure-connections.page:24
+msgctxt "_"
+msgid ""
+"external ref='media/secure-connections/https.png' "
+"md5='364bcbde7a649b0cea9ae178007c1a50'"
+msgstr ""
+"external ref='media/secure-connections/https.png' "
+"md5='364bcbde7a649b0cea9ae178007c1a50'"
+
+#: secure-connections.page:26
+msgid ""
+"The following visualization shows what information is visible to "
+"eavesdroppers with and without Tor Browser and HTTPS encryption:"
+msgstr ""
+"Följande visualisering visar vilken information som är synlig för "
+"tjuvlyssnare med och utan Tor Browser och HTTPS-kryptering:"
+
+#: secure-connections.page:35
+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 ""
+"Klicka på \"Tor\"-knappen för att se vilka data som är synliga för "
+"observatörer när du använder Tor. Knappen blir grön för att indikera att Tor"
+" är på."
+
+#: secure-connections.page:42
+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 ""
+"Klicka på knappen \"HTTPS\" för att se vilken data som är synlig för "
+"observatörer när du använder HTTPS. Knappen blir grön för att indikera att "
+"HTTPS är på."
+
+#: secure-connections.page:49
+msgid ""
+"When both buttons are green, you see the data that is visible to observers "
+"when you are using both tools."
+msgstr ""
+"När båda knapparna är gröna, ser du de data som är synliga för observatörer "
+"när du använder båda verktygen."
+
+#: secure-connections.page:55
+msgid ""
+"When both buttons are grey, you see the data that is visible to observers "
+"when you don't use either tool."
+msgstr ""
+"När båda knapparna är grå, ser du de data som är synliga för observatörer "
+"när du inte använder något av dessa verktyg."
+
+#: secure-connections.page:62
+msgid "Potentially visible data"
+msgstr "Potentiellt synliga data"
+
+#: secure-connections.page:70
+msgid "The site being visited."
+msgstr "Webbplatsen som besöks."
+
+#: secure-connections.page:81
+msgid "Username and password used for authentication."
+msgstr "Användarnamn och lösenord som används för autentisering"
+
+#: secure-connections.page:92
+msgid "Data being transmitted."
+msgstr "Data överförs"
+
+#: secure-connections.page:103
+msgid ""
+"Network location of the computer used to visit the website (the public IP "
+"address)."
+msgstr ""
+"Nätverksplats på datorn som används för att besöka webbplatsen (den publika "
+"IP-adress)."
+
+#: secure-connections.page:115
+msgid "Whether or not Tor is being used."
+msgstr "Om Tor används eller ej"
+
+#: security-slider.page:6
+msgid "Configuring Tor Browser for security and usability"
+msgstr "Konfigurera Tor Browser för säkerhet och användbarhet"
+
+#: security-slider.page:10
+msgid "Security Slider"
+msgstr "Säkerhetsreglage"
+
+#: security-slider.page:11
+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 innehåller en \"Säkerhetsreglage\" som låter dig öka säkerheten "
+"genom att inaktivera vissa webbfunktioner som kan användas för att attackera"
+" din säkerhet och anonymitet. Ökande av Tor Browserens säkerhetsnivå hindrar"
+" vissa webbplatser från att fungera korrekt, så du borde väga dina "
+"säkerhetsbehov mot den grad av användbarhet du behöver."
+
+#: security-slider.page:21
+msgid "Accessing the Security Slider"
+msgstr "Åtkomst till säkerhetsreglaget"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: security-slider.page:23
+msgctxt "_"
+msgid ""
+"external ref='media/security-slider/slider.png' "
+"md5='3c469cd3ed9f60ebb6bbbc63daa90082'"
+msgstr ""
+"external ref='media/security-slider/slider.png' "
+"md5='3c469cd3ed9f60ebb6bbbc63daa90082'"
+
+#: security-slider.page:25
+msgid ""
+"The Security Slider is located in Torbutton’s “Privacy and Security "
+"Settings” menu."
+msgstr ""
+"Säkerhetsreglaget finns i Torbuttons \"Sekretess och "
+"säkerhetsinställningar\"-meny."
+
+#: security-slider.page:32
+msgid "Security Levels"
+msgstr "Säkerhetsnivåer"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: security-slider.page:34
+msgctxt "_"
+msgid ""
+"external ref='media/security-slider/slider_window.png' "
+"md5='c733bdccd1731ed1a772777b25bae7a1'"
+msgstr ""
+"external ref='media/security-slider/slider_window.png' "
+"md5='c733bdccd1731ed1a772777b25bae7a1'"
+
+#: security-slider.page:36
+msgid ""
+"Increasing the level of the Security Slider will disable or partially "
+"disable certain browser features to protect against possible attacks."
+msgstr ""
+"Om du höjer nivån på säkerhetsreglaget kommer du att inaktivera eller delvis"
+" inaktivera vissa webbläsarfunktioner för att skydda mot eventuella "
+"attacker."
+
+#: security-slider.page:42
+msgid "High"
+msgstr "Hög"
+
+#: security-slider.page:43
+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 ""
+"På den här nivån blir HTML5-video och ljudmedia klicka-för-att-spela via "
+"NoScript; alla JavaScript-prestandaoptimeringar är inaktiverade; vissa "
+"matematiska ekvationer kanske inte visas korrekt; vissa typsnittsfunktioner "
+"är inaktiverade; vissa typer av bilder är inaktiverade; Javascript är "
+"inaktiverat som standard på alla webbplatser; De flesta video- och "
+"ljudformat är inaktiverade; och vissa typsnitt och ikoner kanske inte visas "
+"korrekt."
+
+#: security-slider.page:53
+msgid "Medium-High"
+msgstr "Medium-hög"
+
+#: security-slider.page:54
+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-<link xref=\"secure-"
+"connections\">HTTPS</link> sites."
+msgstr ""
+"På den här nivån blir HTML5-video och ljudmedia klicka-för-att-spela via "
+"NoScript; alla JavaScript-prestandaoptimeringar är inaktiverade; vissa "
+"matematiska ekvationer kanske inte visas korrekt; vissa typsnittsfunktioner "
+"är inaktiverade; vissa typer av bilder är inaktiverade; Javascript är "
+"inaktiverat som standard på alla webbplatser; De flesta video- och "
+"ljudformat är inaktiverade; och vissa typsnitt och ikoner kanske inte visas "
+"korrekt på alla <link xref=\"secure-connections\">HTTPS</link>-sidor."
+
+#: security-slider.page:64
+msgid "Medium-Low"
+msgstr "Medium-låg"
+
+#: security-slider.page:65
+msgid ""
+"At this level, HTML5 video and audio media become click-to-play via "
+"NoScript; some <link xref=\"plugins\">JavaScript</link> performance "
+"optimizations are disabled, causing some websites to run more slowly; and "
+"some mathematical equations may not display properly."
+msgstr ""
+"På den här nivån blir HTML5-video och ljudmedia klicka-för-att-spela via "
+"NoScript; vissa <link xref=\"plugins\">JavaScript</link> "
+"prestandaoptimeringar är inaktiverade, vilket gör att vissa webbplatser körs"
+" långsammare; och vissa matematiska ekvationer kanske inte visas korrekt."
+
+#: security-slider.page:73
+msgid "Low"
+msgstr "Låg"
+
+#: security-slider.page:74
+msgid ""
+"At this level, all browser features are enabled. This is the most usable "
+"option."
+msgstr ""
+"På den här säkerhetsnivån är webbläsarens alla funktioner aktiverade. Detta "
+"är det mest användbara alternativet. "
+
+#: transports.page:6 transports.page:20
+msgid "Types of pluggable transport"
+msgstr "Typer av pluggbara transporter"
+
+#: transports.page:10
+msgid "Pluggable Transports"
+msgstr "Pluggbara transporter"
+
+#: transports.page:12
+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 ""
+"Pluggbara transporter är verktyg som Tor kan använda för att dölja den "
+"trafik som den skickar ut. Detta kan vara användbart i situationer där en "
+"Internetleverantör eller annan myndighet aktivt blockerar anslutningar till "
+"Tor-nätverket."
+
+#: transports.page:21
+msgid ""
+"Currently there are six pluggable transports available, but more are being "
+"developed."
+msgstr ""
+"För närvarande finns sex pluggbara transporter tillgängliga, men fler "
+"utvecklas."
+
+#: transports.page:28
+msgid "obfs3"
+msgstr "obfs3"
+
+#: transports.page:33
+msgid ""
+"obfs3 makes Tor traffic look random, so that it does not look like Tor or "
+"any other protocol. obfs3 bridges will work in most places."
+msgstr ""
+"obfs3 gör att Tor-trafiken ser slumpmässig ut, så att den inte ser ut som "
+"Tor eller något annat protokoll. obfs3-broar kommer att fungera på de flesta"
+" platser."
+
+#: transports.page:42
+msgid "obfs4"
+msgstr "obfs4"
+
+#: transports.page:47
+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 gör att Tor-trafiken ser slumpmässigt ut som obfs3, och hindrar också "
+"censorer från att hitta broar via Internet-skanning. obfs4-bryggor är mindre"
+" benägna att blockeras än obfs3-broar."
+
+#: transports.page:56
+msgid "Scramblesuit"
+msgstr "Scramblesuit"
+
+#: transports.page:61
+msgid "ScrambleSuit is similar to obfs4 but has a different set of bridges."
+msgstr "ScrambleSuit liknar obfs4 men har en annan uppsättning av bryggor."
+
+#: transports.page:69
+msgid "FTE"
+msgstr "FTE"
+
+#: transports.page:74
+msgid ""
+"FTE (format-transforming encryption) disguises Tor traffic as ordinary web "
+"(HTTP) traffic."
+msgstr ""
+"FTE (format-omvandlingskryptering) döljer Tor-trafik som vanlig webb (HTTP) "
+"trafik."
+
+#: transports.page:82
+msgid "meek"
+msgstr "meek"
+
+#: transports.page:87
+msgid ""
+"These 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 ""
+"Dessa transporter gör att det ser ut som om du surfar på en större webbplats"
+" istället för att använda Tor. meek-amazon gör att det ser ut som om du "
+"använder Amazon Web Services; meek azure gör att det ser ut som om du "
+"använder en Microsoft-webbplats. och meek-google gör att det ser ut som om "
+"du använder Google-sökning."
+
+#: troubleshooting.page:6
+msgid "What to do if Tor Browser doesn’t work"
+msgstr "Vad du kan göra om Tor webbläsare inte fungerar"
+
+#: troubleshooting.page:12
+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 ""
+"Du bör kunna börja surfa på webben med Tor Browser snart efter att du kör "
+"programmet och klickar på \"Anslut\"-knappen om du använder den för första "
+"gången."
+
+#: troubleshooting.page:21
+msgid "Quick fixes"
+msgstr "Snabba åtgärder"
+
+#: troubleshooting.page:22
+msgid ""
+"If Tor Browser doesn’t connect, there may be a simple solution. Try each of "
+"the following:"
+msgstr ""
+"Om Tor webbläsare inte ansluter, kan det finnas en enkel lösning. Prova "
+"följande alternativ:"
+
+#: troubleshooting.page:29
+msgid ""
+"Your computer’s system clock must be set correctly, or Tor will not be able "
+"to connect."
+msgstr ""
+"Datorns klocka måste vara korrekt inställd, annars kan Tor inte ansluta."
+
+#: troubleshooting.page:35
+msgid ""
+"Make sure another Tor Browser is not already running. If you’re not sure if "
+"Tor Browser is running, restart your computer."
+msgstr ""
+"Se till att en annan Tor Browser inte redan körs. Om du inte är säker på om "
+"Tor Browser körs startar du om datorn."
+
+#: troubleshooting.page:41
+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 ""
+"Se till att alla antivirusprogram du har installerat inte hindrar Tor från "
+"att köras. Du kan behöva konsultera dokumentationen för ditt "
+"antivirusprogram om du inte vet hur du gör det här."
+
+#: troubleshooting.page:49
+msgid "Temporarily disable your firewall."
+msgstr "Stäng av din brandvägg tillfälligt"
+
+#: troubleshooting.page:54
+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 ""
+"Ta bort Tor Browser och installera den igen. Om du uppdaterar, skriv inte "
+"bara över dina tidigare Tor Browser-filer; se till att de helt raderas i "
+"förväg."
+
+#: troubleshooting.page:64
+msgid "Is your connection censored?"
+msgstr "Är din anslutning censurerad?"
+
+#: troubleshooting.page:65
+msgid ""
+"If you still can’t connect, your Internet Service Provider might be "
+"censoring connections to the Tor network. Read the <link "
+"xref=\"circumvention\">Circumvention</link> section for possible solutions."
+msgstr ""
+"Om du fortfarande inte kan ansluta kan din Internetleverantör censurera "
+"anslutningar till Tor-nätverket. Läs avsnittet <link "
+"xref=\"circumvention\">Kringgående</link> för möjliga lösningar."
+
+#: troubleshooting.page:74
+msgid "Known issues"
+msgstr "Kända problem"
+
+#: troubleshooting.page:75
+msgid ""
+"Tor Browser is under constant development, and some issues are known about "
+"but not yet fixed. Please check the <link xref=\"known-issues\">Known "
+"Issues</link> page to see if the problem you are experiencing is already "
+"listed there."
+msgstr ""
+"Tor Browser är under konstant utveckling, och vissa problem är kända men "
+"ännu inte åtgärdaded. Kontrollera sidan med <link xref=\"known-"
+"issues\">kända problem</link> för att se om problemet du upplever är redan "
+"listat där."
+
+#: uninstalling.page:6
+msgid "How to remove Tor Browser from your system"
+msgstr "Hur du raderar Tor webbläsare från ditt system"
+
+#: uninstalling.page:10
+msgid "Uninstalling"
+msgstr "Avinstallera"
+
+#: uninstalling.page:12
+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 påverkar inte någon befintlig programvara eller inställningar på"
+" din dator. Avinstallation av Tor Browser påverkar inte ditt systems program"
+" eller inställningar."
+
+#: uninstalling.page:18
+msgid "Removing Tor Browser from your system is simple:"
+msgstr "Att radera Tor från ditt system är enkelt:"
+
+#: uninstalling.page:24
+msgid ""
+"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 ""
+"Leta reda på din Tor Browser-mapp. Standardplatsen i Windows är skrivbordet;"
+" På Mac OS X är det mappen Program. På Linux finns ingen standardplats, men "
+"mappen kommer att benämnas \"tor-browser_en-US\" om du kör den engelska Tor "
+"Browser."
+
+#: uninstalling.page:32
+msgid "Delete the Tor Browser folder."
+msgstr "Radera Tor mappen"
+
+#: uninstalling.page:35
+msgid "Empty your Trash"
+msgstr "Töm din Skräpkorg"
+
+#: uninstalling.page:39
+msgid ""
+"Note that your operating system’s standard “Uninstall” utility is not used."
+msgstr ""
+"Observera att operativsystemets standard \"Avinstallera\"-verktyg inte "
+"används."
+
+#: updating.page:6
+msgid "How to update Tor Browser"
+msgstr "Hur du uppdaterar Tor Webläsare"
+
+#: updating.page:10
+msgid "Updating"
+msgstr "Uppdaterar"
+
+#: updating.page:12
+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 måste hållas uppdaterad hela tiden. Om du fortsätter att använda"
+" en föråldrad version av programvaran, kan du vara utsatt för allvarliga "
+"säkerhetsbrister som äventyrar din integritet och anonymitet."
+
+#: updating.page:18
+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 ""
+"Tor Browser uppmanar dig att uppdatera programvaran när en ny version har "
+"släppts: Torbutton-ikonen kommer att visa en gul triangel och du kan se en "
+"skriftlig uppdateringsindikator när Tor Browser öppnas. Du kan uppdatera "
+"antingen automatiskt eller manuellt."
+
+#: updating.page:26
+msgid "Updating Tor Browser automatically"
+msgstr "Uppdatera Tor webbläsare automatiskt"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: updating.page:30
+msgctxt "_"
+msgid ""
+"external ref='media/updating/update1.png' "
+"md5='9ff01eb653d92124746fc31efde2bf07'"
+msgstr ""
+"external ref='media/updating/update1.png' "
+"md5='9ff01eb653d92124746fc31efde2bf07'"
+
+#: updating.page:32
+msgid ""
+"When you are prompted to update Tor Browser, click on the Torbutton icon, "
+"then select “Check for Tor Browser Update”."
+msgstr ""
+"När du uppmanas att uppdatera Tor Browser, klicka på Torbutton-ikonen och "
+"välj sedan \"Kontrollera efter uppdatering av Tor Browser\"."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: updating.page:39
+msgctxt "_"
+msgid ""
+"external ref='media/updating/update3.png' "
+"md5='4bd08622b0cacf20b13f75c432176ed3'"
+msgstr ""
+"external ref='media/updating/update3.png' "
+"md5='4bd08622b0cacf20b13f75c432176ed3'"
+
+#: updating.page:41
+msgid ""
+"When Tor Browser has finished checking for updates, click on the “Update” "
+"button."
+msgstr ""
+"När Tor webbläsare har granskat om tillgängliga uppdateringar finns, klicka "
+"på knappen \"Uppdatera\"."
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: updating.page:48
+msgctxt "_"
+msgid ""
+"external ref='media/updating/update4.png' "
+"md5='1d795e7b695738531db9d4b2b0fb5313'"
+msgstr ""
+"external ref='media/updating/update4.png' "
+"md5='1d795e7b695738531db9d4b2b0fb5313'"
+
+#: updating.page:50
+msgid ""
+"Wait for the update to download and install, then restart Tor Browser. You "
+"will now be running the latest version."
+msgstr ""
+"Vänta på att uppdateringen ska hämtas och installeras, starta sedan om Tor "
+"Browser. Du kommer nu att köra den senaste versionen."
+
+#: updating.page:58
+msgid "Updating Tor Browser manually"
+msgstr "Uppdatera Tor webbläsaren manuellt"
+
+#: updating.page:61
+msgid ""
+"When you are prompted to update Tor Browser, finish the browsing session and"
+" close the program."
+msgstr ""
+"När du uppmanas att uppdatera Tor Browser, avsluta webbläsningssessionen och"
+" stäng programmet."
+
+#: updating.page:67
+msgid ""
+"Remove Tor Browser from your system by deleting the folder that contains it "
+"(see the <link xref=\"uninstalling\">Uninstalling</link> section for more "
+"information)."
+msgstr ""
+"Ta bort Tor Browser från ditt system genom att radera mappen som innehåller "
+"den (se avsnittet <link xref=\"uninstalling\">Avinstallera</link> för mer "
+"information)."
+
+#: updating.page:74
+msgid ""
+"Visit <link href=\"https://www.torproject.org/projects/torbrowser.html.en\">"
+" https://www.torproject.org/projects/torbrowser.html.en</link> and download "
+"a copy of the latest Tor Browser release, then install it as before."
+msgstr ""
+"Besök <link href=\"https://www.torproject.org/projects/torbrowser.html.en\">"
+" https://www.torproject.org/projects/torbrowser.html.en</link> och ladda ner"
+" en kopia av den senaste Tor Browser utgåvan, installera den sedan som "
+"förut."
1
0
commit ce3bb881ba111094d54d058e8c2629a3654f45d0
Author: Colin Childs <colin(a)torproject.org>
Date: Tue Sep 18 14:02:50 2018 -0500
Adding ja translations
---
Makefile.am | 2 +-
ja/ja.po | 1576 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 1577 insertions(+), 1 deletion(-)
diff --git a/Makefile.am b/Makefile.am
index 267ee64..5c58dea 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -8,7 +8,7 @@ TOR_AND_HTTPS = ../tor-and-https
HELP_ID = tor-browser-user-manual
HELP_FILES = $(shell cd $(srcdir)/C && git ls-files '*.page')
HELP_MEDIA = $(shell cd $(srcdir)/C && git ls-files 'media')
-HELP_LINGUAS = en-US @TOR_BROWSER_BUNDLE_LOCALES@
+HELP_LINGUAS = en-US ja @TOR_BROWSER_BUNDLE_LOCALES@
.PHONY: html
html: all media-symlinks.stamp
diff --git a/ja/ja.po b/ja/ja.po
new file mode 100644
index 0000000..a3567ed
--- /dev/null
+++ b/ja/ja.po
@@ -0,0 +1,1576 @@
+# Translators:
+# タカハシ <indexial(a)outlook.jp>, 2016
+# maruyuki <contact(a)maruyuki.net>, 2016
+# Yawning Angel <yawning(a)schwanenlied.me>, 2016
+# 816daijin <twitter816(a)hotmail.co.jp>, 2016
+# 9g0Z3it0gjbxzope, 2016
+# Hussein Hassan <hehewawa1(a)gmail.com>, 2017
+# daisuke osada (daiskeh) <dosada(a)gmail.com>, 2017
+# Steve Dougherty, 2018
+# ishikawa satoru <qaz345(a)protonmail.com>, 2018
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2018-09-07 16:48-0500\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: ishikawa satoru <qaz345(a)protonmail.com>, 2018\n"
+"Language-Team: Japanese (https://www.transifex.com/otf/teams/1519/ja/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: ja\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
+msgctxt "_"
+msgid "translator-credits"
+msgstr "翻訳者のクレジット"
+
+#: about-tor-browser.page:7
+msgid "Learn what Tor Browser can do to protect your privacy and anonymity"
+msgstr "あなたのプライバシーと匿名性を守るために Tor Browser が何をできるかを学ぶ"
+
+#: about-tor-browser.page:10
+msgid "About Tor Browser"
+msgstr "Tor Browser について"
+
+#: about-tor-browser.page:12
+msgid ""
+"Tor Browser uses the Tor network to protect your privacy and anonymity. "
+"Using the Tor network has two main properties:"
+msgstr "Tor Browser はプライバシーと匿名を守るため、Tor ネットワークを使います。Torネットワークは二つの特質があります:"
+
+#: about-tor-browser.page:18
+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 ""
+"インターネットサービスプロバイダーやその他あなたの接続の監視者は、あなたが訪れているウェブサイトの名前やアドレスといったインターネット上の活動を追跡することができなくなります。"
+
+#: about-tor-browser.page:25
+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 ""
+"あなたが使用しているウェブサイトやサービスの運用者およびその監視者は、あなたの本当のインターネット(IP)アドレスの代わりに Tor "
+"ネットワークからの接続を見ることになり、あなた自身がはっきりと自らの身元を名乗らない限りあなたが誰であるのかはわからなくなります。"
+
+#: about-tor-browser.page:34
+msgid ""
+"In addition, Tor Browser is designed to prevent websites from "
+"“fingerprinting” or identifying you based on your browser configuration."
+msgstr ""
+"しかも、Tor Browser "
+"はウェブサイトによる「fingerprinting」、すなわちあなたのブラウザーの設定によってあなたを識別する行為を防ぐように設計されています。"
+
+#: about-tor-browser.page:39
+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 <link xref"
+"=\"managing-identities#new-identity\">New Identity</link> is requested)."
+msgstr ""
+"初期設定では、Tor Browser はいかなる閲覧履歴も保存しません。Cookie はひとつのセッション(Tor Browser "
+"が終了するか<link xref=\"managing-identities#new-"
+"identity\">新しい識別子</link>が要求されるまで)だけで有効です。"
+
+#: about-tor-browser.page:50
+msgid "How Tor works"
+msgstr "Torはどのように動作するか"
+
+#: about-tor-browser.page:52
+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 <em>relays</em>) in the Tor network. The"
+" last relay in the circuit (the “exit relay”) then sends the traffic out "
+"onto the public Internet."
+msgstr ""
+"Tor はインターネット上のプライバシーとセキュリティの向上を実現する仮想トンネルのネットワークです。Tor はトラフィックを Tor "
+"ネットワークの3つのランダムなサーバー(<em>リレー</em>とも呼ばれる)を通して送信します。その上で、サーキットの最後のリレー(exit "
+"リレー)が公開のインターネットにトラフィックを送信します。"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: about-tor-browser.page:59
+msgctxt "_"
+msgid ""
+"external ref='media/how-tor-works.png' "
+"md5='6fe4151a88b7a518466f0582e40ccc8c'"
+msgstr ""
+"external ref='media/how-tor-works.png' "
+"md5='6fe4151a88b7a518466f0582e40ccc8c'"
+
+#: about-tor-browser.page:60
+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 ""
+"上の図はさまざまなウェブサイトに Tor を通して接続しているユーザーを示したものです。中央の緑色のコンピューターは Tor "
+"ネットワークのリレーを表し、3つの鍵はユーザーとそれぞれのリレーとの間の暗号化の層を表しています。"
+
+#: bridges.page:6
+msgid "Learn what bridges are and how to get them"
+msgstr ""
+
+#: bridges.page:10
+msgid "Bridges"
+msgstr "ブリッジ"
+
+#: bridges.page:12
+msgid ""
+"Most <link xref=\"transports\">Pluggable Transports</link>, 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 ""
+
+#: bridges.page:21
+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 ""
+
+#: bridges.page:28
+msgid "Getting bridge addresses"
+msgstr "ブリッジ アドレスを取得する"
+
+#: bridges.page:29
+msgid ""
+"Because bridge addresses are not public, you will need to request them "
+"yourself. You have two options:"
+msgstr ""
+
+#: bridges.page:36
+msgid ""
+"Visit <link "
+"href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</link>"
+" and follow the instructions, or"
+msgstr ""
+
+#: bridges.page:42
+msgid ""
+"Email bridges(a)torproject.org from a Gmail, Yahoo, or Riseup email address, "
+"or"
+msgstr ""
+
+#: bridges.page:51
+msgid "Entering bridge addresses"
+msgstr ""
+
+#: bridges.page:52
+msgid ""
+"Once you have obtained some bridge addresses, you will need to enter them "
+"into Tor Launcher."
+msgstr ""
+
+#: bridges.page:57
+msgid ""
+"Choose “yes” when asked if your Internet Service Provider blocks connections"
+" to the Tor network. Select “Use custom bridges” and enter each bridge "
+"address on a separate line."
+msgstr ""
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: bridges.page:63
+msgctxt "_"
+msgid ""
+"external ref='media/tor-launcher-custom-bridges.png' "
+"md5='34b5e99516d297fcbb467209d8479f40'"
+msgstr ""
+
+#: bridges.page:65
+msgid ""
+"Click “Connect”. Using bridges may slow down the connection compared to "
+"using ordinary Tor relays. 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 ""
+
+#: circumvention.page:6
+msgid "What to do if the Tor network is blocked"
+msgstr "Tor ネットワークがブロックされている時には"
+
+#: circumvention.page:10
+msgid "Circumvention"
+msgstr ""
+
+#: circumvention.page:12
+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 <link xref=\"transports\">Pluggable Transports</link> "
+"page for more information on the types of transport that are currently "
+"available."
+msgstr ""
+"Tor ネットワークへの直接のアクセスがインターネットサービスプロバイダーや政府によってブロックされている場合があります。Tor Browser "
+"にはこうしたブロックを回避するためのツール群が含まれています。これらのツールは「Pluggable "
+"Transport」と呼ばれます。現在利用可能なトランスポートの種類についての情報は <link "
+"xref=\"transports\">Pluggable Transport</link> ページをご覧ください。"
+
+#: circumvention.page:22
+msgid "Using pluggable transports"
+msgstr "Pluggable Transport を使う"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: circumvention.page:26 first-time.page:35
+msgctxt "_"
+msgid ""
+"external ref='media/circumvention/configure.png' "
+"md5='1107595d21fe90f2aab1263d7fb0abd3'"
+msgstr ""
+
+#: circumvention.page:28
+msgid ""
+"To use pluggable transports, click \"Configure\" in the Tor Launcher window "
+"that appears when you first run Tor Browser."
+msgstr ""
+
+#: circumvention.page:33
+msgid ""
+"You can also configure pluggable transports while Tor Browser is running, by"
+" clicking on the green onion near your address bar and selecting “Tor "
+"Network Settings”."
+msgstr ""
+
+#: circumvention.page:41
+msgid ""
+"Select “yes” when asked if your Internet Service Provider blocks connections"
+" to the Tor network."
+msgstr ""
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: circumvention.page:49
+msgctxt "_"
+msgid ""
+"external ref='media/circumvention/bridges.png' "
+"md5='f5acc05bd9bacf6c69a31163d25a8778'"
+msgstr ""
+
+#: circumvention.page:51
+msgid ""
+"Select “Connect with provided bridges”. Tor Browser currently has six "
+"pluggable transport options to choose from."
+msgstr ""
+
+#: circumvention.page:60
+msgid "Which transport should I use?"
+msgstr ""
+
+#: circumvention.page:61
+msgid ""
+"Each of the transports listed in Tor Launcher’s menu works in a different "
+"way (for more details, see the <link xref=\"transports\">Pluggable "
+"Transports</link> page), and their effectiveness depends on your individual "
+"circumstances."
+msgstr ""
+
+#: circumvention.page:67
+msgid ""
+"If you are trying to circumvent a blocked connection for the first time, you"
+" should try the different transports: obfs3, obfs4, ScrambleSuit, fte, meek-"
+"azure and Snowflake."
+msgstr ""
+
+#: circumvention.page:72
+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 <link "
+"xref=\"bridges\">Bridges</link> section to learn what bridges are and how to"
+" obtain them."
+msgstr ""
+
+#: downloading.page:7
+msgid "How to download Tor Browser"
+msgstr "Tor Browser をダウンロードするには"
+
+#: downloading.page:10
+msgid "Downloading"
+msgstr "ダウンロード"
+
+#: downloading.page:12
+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 <link xref=\"secure-connections\">HTTPS</link>, which "
+"makes it much harder for somebody to tamper with."
+msgstr ""
+"Tor Browser をダウンロードする最も安全かつシンプルな方法は Tor Project 公式ウェブサイト "
+"https://www.torproject.org から入手することです。接続は改ざんを困難にする <link xref=\"secure-"
+"connections\">HTTPS</link> で守られます。"
+
+#: downloading.page:19
+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 ""
+"しかしながら、Tor Project "
+"ウェブサイトにアクセスできない場合もありえます。たとえば、利用しているネットワークでブロックされていることがあります。この場合、以下に示す代替のダウンロード手段を利用できます。"
+
+#: downloading.page:27
+msgid "GetTor"
+msgstr ""
+
+#: downloading.page:28
+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 ""
+
+#: downloading.page:33
+msgid "To use GetTor via email:"
+msgstr "GetTor を電子メール経由で利用するには"
+
+#: downloading.page:38
+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 宛に電子メールを送信します。使用している OS "
+"によって、本文には単に「windows」「osx」「linux」(カギ括弧を除く)と記入してください。"
+
+#: downloading.page:45
+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 ""
+
+#: downloading.page:56
+msgid "To use GetTor via Twitter:"
+msgstr ""
+
+#: downloading.page:61
+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 ""
+
+#: downloading.page:69
+msgid "To use GetTor via Jabber/XMPP (Jitsi, CoyIM, etc.):"
+msgstr ""
+
+#: downloading.page:74
+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 ""
+
+#: downloading.page:83
+msgid "Satori"
+msgstr ""
+
+#: downloading.page:84
+msgid ""
+"Satori is an add-on for the Chrome or Chromium browsers that allows you to "
+"download several security and privacy programs from different sources."
+msgstr ""
+
+#: downloading.page:89
+msgid "To download Tor Browser using Satori:"
+msgstr ""
+
+#: downloading.page:94
+msgid "Install Satori from the Chrome App Store."
+msgstr ""
+
+#: downloading.page:99
+msgid "Select Satori from your browser’s Apps menu."
+msgstr ""
+
+#: downloading.page:104
+msgid ""
+"When Satori opens, click on your preferred language. A menu will open "
+"listing the available downloads for that language. Find the entry for Tor "
+"Browser under the name of your operating system. Select either “A” or “B” "
+"after the name of the program — each one represents a different source from "
+"which to get the software. Your download will then begin."
+msgstr ""
+
+#: downloading.page:114
+msgid ""
+"Wait for your download to finish, then find the “Generate Hash” section in "
+"Satori’s menu and click “Select Files”."
+msgstr ""
+
+#: downloading.page:120
+msgid ""
+"Select the downloaded Tor Browser file. Satori will display the checksum of "
+"the file, which you should compare with the software’s original checksum: "
+"you can find this by clicking the word “checksum” after the link you clicked"
+" on to start the download. If the checksums match, your download was "
+"successful, and you can <link xref=\"first-time\">begin using Tor "
+"Browser</link>. If they do not match, you may need to try downloading again,"
+" or from a different source."
+msgstr ""
+
+#: first-time.page:7
+msgid "Learn how to use Tor Browser for the first time"
+msgstr "Tor Browser をはじめて使う方法を学ぶ"
+
+#: first-time.page:10
+msgid "Running Tor Browser for the first time"
+msgstr ""
+
+#: first-time.page:12
+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 ""
+
+#: first-time.page:19
+msgid "Connect"
+msgstr "接続"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: first-time.page:21 troubleshooting.page:18
+msgctxt "_"
+msgid ""
+"external ref='media/first-time/connect.png' "
+"md5='f6de80de01c8fa2a8f80857eb8213768'"
+msgstr ""
+
+#: first-time.page:23
+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 "
+"<link xref=\"troubleshooting\">Troubleshooting</link> page for help solving "
+"the problem."
+msgstr ""
+
+#: first-time.page:33
+msgid "Configure"
+msgstr "構成"
+
+#: first-time.page:37
+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 ""
+
+#: first-time.page:44
+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 <link "
+"xref=\"circumvention\">Circumvention</link> screen to configure a pluggable "
+"transport."
+msgstr ""
+
+#: first-time.page:55
+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 ""
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: first-time.page:63
+msgctxt "_"
+msgid ""
+"external ref='media/first-time/proxy_question.png' "
+"md5='f72753a963e3449129718e3d824a8ac8'"
+msgstr ""
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: first-time.page:66
+msgctxt "_"
+msgid ""
+"external ref='media/first-time/proxy.png' "
+"md5='9a5cf5c044b1dfc5f006a9d1ff77507b'"
+msgstr ""
+
+#: index.page:8
+msgid "Tor Browser User Manual"
+msgstr "Tor Browser ユーザーマニュアル"
+
+#: known-issues.page:6
+msgid "A list of known issues."
+msgstr ""
+
+#: known-issues.page:10
+msgid "Known Issues"
+msgstr ""
+
+#: known-issues.page:14
+msgid ""
+"Tor needs your system clock (and your time zone) set to the correct time."
+msgstr ""
+
+#: known-issues.page:19
+msgid ""
+"The following firewall software have been known to interfere with Tor and "
+"may need to be temporarily disabled:"
+msgstr ""
+
+#: known-issues.page:23
+msgid "Webroot SecureAnywhere"
+msgstr ""
+
+#: known-issues.page:26
+msgid "Kaspersky Internet Security 2012"
+msgstr ""
+
+#: known-issues.page:29
+msgid "Sophos Antivirus for Mac"
+msgstr ""
+
+#: known-issues.page:32
+msgid "Microsoft Security Essentials"
+msgstr ""
+
+#: known-issues.page:37
+msgid ""
+"Videos that require Adobe Flash are unavailable. Flash is disabled for "
+"security reasons."
+msgstr ""
+
+#: known-issues.page:43
+msgid "Tor can not use a bridge if a proxy is set."
+msgstr ""
+
+#: known-issues.page:48
+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 ""
+
+#: known-issues.page:54
+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 ""
+
+#: known-issues.page:62
+msgid ""
+"Tor Browser can also be started from the command line by running the "
+"following command from inside the Tor Browser directory:"
+msgstr ""
+
+#: known-issues.page:66
+#, no-wrap
+msgid ""
+"\n"
+" ./start-tor-browser.desktop\n"
+" "
+msgstr ""
+
+#: managing-identities.page:6
+msgid "Learn how to control personally-identifying information in Tor Browser"
+msgstr ""
+
+#: managing-identities.page:10
+msgid "Managing identities"
+msgstr ""
+
+#: managing-identities.page:12
+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 ""
+
+#: managing-identities.page:20
+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 ""
+
+#: managing-identities.page:29
+msgid "The URL bar"
+msgstr ""
+
+#: managing-identities.page:30
+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 ""
+
+#: managing-identities.page:38
+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 ""
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: managing-identities.page:46
+msgctxt "_"
+msgid ""
+"external ref='media/managing-identities/circuit_full.png' "
+"md5='bd46d22de952fee42643be46d3f95928'"
+msgstr ""
+
+#: managing-identities.page:48
+msgid ""
+"You can see a diagram of the circuit that Tor Browser is using for the "
+"current tab in the onion menu."
+msgstr ""
+
+#: managing-identities.page:55
+msgid "Logging in over Tor"
+msgstr ""
+
+#: managing-identities.page:56
+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 ""
+
+#: managing-identities.page:62
+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 ""
+
+#: managing-identities.page:72
+msgid ""
+"When you log in to a website over Tor, there are several points you should "
+"bear in mind:"
+msgstr ""
+
+#: managing-identities.page:79
+msgid ""
+"See the <link xref=\"secure-connections\">Secure Connections</link> page for"
+" important information on how to secure your connection when logging in."
+msgstr ""
+
+#: managing-identities.page:87
+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 ""
+
+#: managing-identities.page:101
+msgid "Changing identities and circuits"
+msgstr ""
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: managing-identities.page:103
+msgctxt "_"
+msgid ""
+"external ref='media/managing-identities/new_identity.png' "
+"md5='15b01e35fa83185d94b57bf0ccf09d76'"
+msgstr ""
+
+#: managing-identities.page:105
+msgid ""
+"Tor Browser features “New Identity” and “New Tor Circuit for this Site” "
+"options, located in the Torbutton menu."
+msgstr ""
+
+#: managing-identities.page:111
+msgid "New Identity"
+msgstr "新しい匿名"
+
+#: managing-identities.page:112
+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 ""
+
+#: managing-identities.page:123
+msgid "New Tor Circuit for this Site"
+msgstr "このサイト用の新しい Tor サーキット"
+
+#: managing-identities.page:124
+msgid ""
+"This option is useful if the <link xref=\"about-tor-browser#how-tor-"
+"works\">exit relay</link> 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 ""
+
+#: onionsites.page:6
+msgid "Services that are only accessible using Tor"
+msgstr ""
+
+#: onionsites.page:10
+msgid "Onion Services"
+msgstr ""
+
+#: onionsites.page:11
+msgid ""
+"Onion services (formerly known as “hidden services”) are services (like "
+"websites) that are only accessible through the Tor network."
+msgstr ""
+
+#: onionsites.page:16
+msgid ""
+"Onion services offer several advantages over ordinary services on the non-"
+"private web:"
+msgstr ""
+
+#: onionsites.page:23
+msgid ""
+"An onion services’s location and IP address are hidden, making it difficult "
+"for adversaries to censor it or identify its operators."
+msgstr ""
+
+#: onionsites.page:29
+msgid ""
+"All traffic between Tor users and onion services is end-to-end encrypted, so"
+" you do not need to worry about <link xref=\"secure-connections\">connecting"
+" over HTTPS</link>."
+msgstr ""
+
+#: onionsites.page:36
+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 ""
+
+#: onionsites.page:46
+msgid "How to access an onion service"
+msgstr ""
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: onionsites.page:48
+msgctxt "_"
+msgid ""
+"external ref='media/onionsites/onion_url.png' "
+"md5='f97f7fe10f07c3959c4430934974bbaa'"
+msgstr ""
+
+#: onionsites.page:50
+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 ""
+
+#: onionsites.page:58 troubleshooting.page:10
+msgid "Troubleshooting"
+msgstr "問題の解決"
+
+#: onionsites.page:59
+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 ""
+
+#: onionsites.page:64
+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 ""
+
+#: onionsites.page:69
+msgid ""
+"You can also ensure that you're able to access other onion services by "
+"connecting to <link href=\"http://3g2upl4pq6kufc4m.onion/\">DuckDuckGo's "
+"Onion Service</link>"
+msgstr ""
+
+#: plugins.page:6
+msgid "How Tor Browser handles add-ons, plugins and JavaScript"
+msgstr ""
+
+#: plugins.page:10
+msgid "Plugins, add-ons and JavaScript"
+msgstr ""
+
+#: plugins.page:13
+msgid "Flash Player"
+msgstr ""
+
+#: plugins.page:14
+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 ""
+
+#: plugins.page:23
+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 ""
+
+#: plugins.page:31
+msgid "JavaScript"
+msgstr ""
+
+#: plugins.page:32
+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 ""
+
+#: plugins.page:39
+msgid ""
+"Tor Browser includes an add-on called NoScript, accessed through the “S” "
+"icon at the top-left of the window. NoScript allows you to control the "
+"JavaScript (and other scripts) that runs on individual web pages, or block "
+"it entirely."
+msgstr ""
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: plugins.page:46
+msgctxt "_"
+msgid ""
+"external ref='media/plugins/noscript_menu.png' "
+"md5='df9e684b76a3c2e2bdcb879a19c20471'"
+msgstr ""
+
+#: plugins.page:48
+msgid ""
+"Users who require a high degree of security in their web browsing should set"
+" Tor Browser’s <link xref=\"security-slider\">Security Slider</link> 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 ""
+
+#: plugins.page:59
+msgid "Browser Add-ons"
+msgstr ""
+
+#: plugins.page:60
+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 ""
+
+#: plugins.page:65
+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 ""
+
+#: secure-connections.page:8
+msgid "Learn how to protect your data using Tor Browser and HTTPS"
+msgstr ""
+
+#: secure-connections.page:12
+msgid "Secure Connections"
+msgstr ""
+
+#: secure-connections.page:14
+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 ""
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: secure-connections.page:24
+msgctxt "_"
+msgid ""
+"external ref='media/secure-connections/https.png' "
+"md5='364bcbde7a649b0cea9ae178007c1a50'"
+msgstr ""
+
+#: secure-connections.page:26
+msgid ""
+"The following visualization shows what information is visible to "
+"eavesdroppers with and without Tor Browser and HTTPS encryption:"
+msgstr ""
+
+#: secure-connections.page:35
+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 ""
+
+#: secure-connections.page:42
+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 ""
+
+#: secure-connections.page:49
+msgid ""
+"When both buttons are green, you see the data that is visible to observers "
+"when you are using both tools."
+msgstr ""
+
+#: secure-connections.page:55
+msgid ""
+"When both buttons are grey, you see the data that is visible to observers "
+"when you don't use either tool."
+msgstr ""
+
+#: secure-connections.page:62
+msgid "Potentially visible data"
+msgstr ""
+
+#: secure-connections.page:70
+msgid "The site being visited."
+msgstr ""
+
+#: secure-connections.page:81
+msgid "Username and password used for authentication."
+msgstr "認証のためのユーザ名とパスワード"
+
+#: secure-connections.page:92
+msgid "Data being transmitted."
+msgstr ""
+
+#: secure-connections.page:103
+msgid ""
+"Network location of the computer used to visit the website (the public IP "
+"address)."
+msgstr ""
+
+#: secure-connections.page:115
+msgid "Whether or not Tor is being used."
+msgstr ""
+
+#: security-slider.page:6
+msgid "Configuring Tor Browser for security and usability"
+msgstr ""
+
+#: security-slider.page:10
+msgid "Security Slider"
+msgstr ""
+
+#: security-slider.page:11
+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 ""
+
+#: security-slider.page:21
+msgid "Accessing the Security Slider"
+msgstr ""
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: security-slider.page:23
+msgctxt "_"
+msgid ""
+"external ref='media/security-slider/slider.png' "
+"md5='026da7c021ba5b85caf04bbf45530667'"
+msgstr ""
+
+#: security-slider.page:25
+msgid ""
+"The Security Slider is located in Torbutton’s “Security Settings” menu."
+msgstr ""
+
+#: security-slider.page:32
+msgid "Security Levels"
+msgstr "セキュリティレベル"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: security-slider.page:34
+msgctxt "_"
+msgid ""
+"external ref='media/security-slider/slider_window.png' "
+"md5='d5faf391c99f88aff8541a68bdc6a776'"
+msgstr ""
+
+#: security-slider.page:36
+msgid ""
+"Increasing the level of the Security Slider will disable or partially "
+"disable certain browser features to protect against possible attacks."
+msgstr ""
+
+#: security-slider.page:42
+msgid "Safest"
+msgstr "最も安全"
+
+#: security-slider.page:43
+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 ""
+
+#: security-slider.page:53
+msgid "Safer"
+msgstr "より安全"
+
+#: security-slider.page:54
+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-<link xref=\"secure-"
+"connections\">HTTPS</link> sites."
+msgstr ""
+
+#: security-slider.page:64
+msgid "Standard"
+msgstr "標準"
+
+#: security-slider.page:65
+msgid ""
+"At this level, all browser features are enabled. This is the most usable "
+"option."
+msgstr ""
+
+#: translate.page:6
+msgid "Becoming a translator for the Tor Project"
+msgstr ""
+
+#: translate.page:10
+msgid "Becoming a Tor Translator"
+msgstr ""
+
+#: translate.page:12
+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!"
+" In order to begin contributing you will have to sign up with Transifex, the"
+" third-party that faciliates our translations. Below is an outline of how to"
+" sign up and begin."
+msgstr ""
+
+#: translate.page:21
+msgid "Signing up on Transifex"
+msgstr ""
+
+#: translate.page:24
+msgid ""
+"Head over to the <link href=\"https://transifex.com/signup/\">Transifex "
+"signup page</link>."
+msgstr ""
+
+#: translate.page:30
+msgid "Enter your information into the fields and click the 'Sign Up' button:"
+msgstr ""
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: translate.page:34
+msgctxt "_"
+msgid ""
+"external ref='media/translate/tr1.png' "
+"md5='a94cfd90c9982916a987e2807ae5e4f6'"
+msgstr ""
+
+#: translate.page:38
+msgid ""
+"Fill out the next page with your name and select \"Localization\" and "
+"\"Translator\" from the drop-down menus:"
+msgstr ""
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: translate.page:43
+msgctxt "_"
+msgid ""
+"external ref='media/translate/tr2.png' "
+"md5='06debc9e9dbc7ac198103a89a6961774'"
+msgstr ""
+
+#: translate.page:47
+msgid "On the next page, select 'Join an existing project' and continue."
+msgstr ""
+
+#: translate.page:52
+msgid ""
+"On the next page, select the languages you speak from the drop-down menu and"
+" continue."
+msgstr ""
+
+#: translate.page:58
+msgid ""
+"You are now signed up! Go to the <link "
+"href=\"https://www.transifex.com/otf/torproject/\">Tor Transifex "
+"page</link>."
+msgstr ""
+
+#: translate.page:64
+msgid "Click the blue 'Join Team' button on the far right:"
+msgstr ""
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: translate.page:68
+msgctxt "_"
+msgid ""
+"external ref='media/translate/tr3.png' "
+"md5='7da6c9968cabbe9c1ecc7cdf645407e8'"
+msgstr ""
+
+#: translate.page:72
+msgid ""
+"Select the language you would like to translate from the dropdown menu:"
+msgstr ""
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: translate.page:76
+msgctxt "_"
+msgid ""
+"external ref='media/translate/tr4.png' "
+"md5='835a266a5d4c368a2777cf171980f0b4'"
+msgstr ""
+
+#: translate.page:80
+msgid "A notification will now show up on the top of the page like so:"
+msgstr ""
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: translate.page:84
+msgctxt "_"
+msgid ""
+"external ref='media/translate/tr5.png' "
+"md5='935417a5d3b4a89e5d00508ea671a1fc'"
+msgstr ""
+
+#: translate.page:88
+msgid ""
+"After your membership is approved you can begin translating; simply navigate"
+" back to the <link href=\"https://www.transifex.com/otf/torproject/\">Tor "
+"Transifex page</link> when you are ready to begin. Thanks for your interest "
+"in helping the project!"
+msgstr ""
+
+#: transports.page:6 transports.page:20
+msgid "Types of pluggable transport"
+msgstr ""
+
+#: transports.page:10
+msgid "Pluggable Transports"
+msgstr ""
+
+#: transports.page:12
+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 ""
+
+#: transports.page:21
+msgid ""
+"Currently there are six pluggable transports available, but more are being "
+"developed."
+msgstr ""
+
+#: transports.page:28
+msgid "obfs3"
+msgstr ""
+
+#: transports.page:33
+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 ""
+
+#: transports.page:43
+msgid "obfs4"
+msgstr ""
+
+#: transports.page:48
+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 ""
+
+#: transports.page:57
+msgid "Scramblesuit"
+msgstr ""
+
+#: transports.page:62
+msgid "ScrambleSuit is similar to obfs4 but has a different set of bridges."
+msgstr ""
+
+#: transports.page:70
+msgid "FTE"
+msgstr ""
+
+#: transports.page:75
+msgid ""
+"FTE (format-transforming encryption) disguises Tor traffic as ordinary web "
+"(HTTP) traffic."
+msgstr ""
+
+#: transports.page:83
+msgid "meek"
+msgstr ""
+
+#: transports.page:88
+msgid ""
+"These 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 ""
+
+#: transports.page:100
+msgid "Snowflake"
+msgstr ""
+
+#: transports.page:105
+msgid ""
+"Snowflake is an improvement upon Flashproxy. It sends your traffic through "
+"WebRTC, a peer-to-peer protocol with built-in NAT punching."
+msgstr ""
+
+#: troubleshooting.page:6
+msgid "What to do if Tor Browser doesn’t work"
+msgstr "Tor Browser が正しく動作しない時には"
+
+#: troubleshooting.page:12
+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 ""
+"Tor Browser を起動してすぐに、またもしはじめての使用であれば「接続」ボタンをクリックしてすぐに Tor Browser "
+"を利用してのウェブブラウジングを始められるはずです。"
+
+#: troubleshooting.page:21
+msgid "Quick fixes"
+msgstr "応急措置"
+
+#: troubleshooting.page:22
+msgid ""
+"If Tor Browser doesn’t connect, there may be a simple solution. Try each of "
+"the following:"
+msgstr "Tor Browser がネットワークに接続できない場合、簡単な解決策があるかもしれません。以下をそれぞれお試しください。"
+
+#: troubleshooting.page:29
+msgid ""
+"Your computer’s system clock must be set correctly, or Tor will not be able "
+"to connect."
+msgstr "コンピュータのシステム時刻は正しく設定されていなければなりません。そうでないと Tor はネットワークに接続することはできません。"
+
+#: troubleshooting.page:35
+msgid ""
+"Make sure another Tor Browser is not already running. If you’re not sure if "
+"Tor Browser is running, restart your computer."
+msgstr ""
+"別の Tor Browser が実行中でないことを確認します。Tor Browser "
+"が実行されているかよくわからない場合は、コンピューターを再起動してください。"
+
+#: troubleshooting.page:41
+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 ""
+"インストールしているアンチウイルスプログラムが Tor "
+"の実行を妨げていないことを確認します。どのようにすればよいかわからない場合、アンチウイルスソフトウェアのドキュメンテーションを参照してください。"
+
+#: troubleshooting.page:49
+msgid "Temporarily disable your firewall."
+msgstr "ファイアウォールを一時的に無効化します。"
+
+#: troubleshooting.page:54
+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 を削除して再インストールします。アップデートする場合、以前の Tor Browser "
+"のファイルを上書きするだけではなく、あらかじめファイルをすべて削除してください。"
+
+#: troubleshooting.page:64
+msgid "Is your connection censored?"
+msgstr "接続が検閲されている?"
+
+#: troubleshooting.page:65
+msgid ""
+"If you still can’t connect, your Internet Service Provider might be "
+"censoring connections to the Tor network. Read the <link "
+"xref=\"circumvention\">Circumvention</link> section for possible solutions."
+msgstr ""
+
+#: troubleshooting.page:74
+msgid "Known issues"
+msgstr "既知の問題"
+
+#: troubleshooting.page:75
+msgid ""
+"Tor Browser is under constant development, and some issues are known about "
+"but not yet fixed. Please check the <link xref=\"known-issues\">Known "
+"Issues</link> page to see if the problem you are experiencing is already "
+"listed there."
+msgstr ""
+"Tor Browser "
+"は継続的な開発がなされており、認識されているもののまだ解決されていない問題もあります。あなたが遭遇した問題が既にリストに掲載されていないか、<link "
+"xref=\"known-issues\">既知の問題</link>ページを確認してみてください。"
+
+#: uninstalling.page:6
+msgid "How to remove Tor Browser from your system"
+msgstr "Tor Browser をシステムから取り除くには"
+
+#: uninstalling.page:10
+msgid "Uninstalling"
+msgstr "アンインストール"
+
+#: uninstalling.page:12
+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 はあなたのコンピュータのいかなる既存のソフトウェアおよび設定にも影響を及ぼしません。Tor Browser "
+"のアンインストールもソフトウェアおよび設定に影響を及ぼしません。"
+
+#: uninstalling.page:18
+msgid "Removing Tor Browser from your system is simple:"
+msgstr "Tor Browser のシステムからの削除は簡単です。"
+
+#: uninstalling.page:24
+msgid ""
+"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 ""
+"Tor Browser フォルダーを探します。Windows の場合デフォルトではデスクトップにあり、Mac OS X "
+"の場合は「アプリケーション」フォルダーにあります。Linux の場合デフォルトの場所はありませんが、日本語版 Tor Browser をお使いの場合"
+"「tor-browser_ja」という名前のフォルダーです。"
+
+#: uninstalling.page:32
+msgid "Delete the Tor Browser folder."
+msgstr "Tor Browser フォルダーを削除します。"
+
+#: uninstalling.page:35
+msgid "Empty your Trash"
+msgstr "ごみ箱を空にします。"
+
+#: uninstalling.page:39
+msgid ""
+"Note that your operating system’s standard “Uninstall” utility is not used."
+msgstr "OS 標準の「アンインストール」ユーティリティーは使用しません。"
+
+#: updating.page:6
+msgid "How to update Tor Browser"
+msgstr "Tor Browser をアップデートするには"
+
+#: updating.page:10
+msgid "Updating"
+msgstr "アップデート"
+
+#: updating.page:12
+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 "
+"は常に最新の状態に保たれていなければなりません。もし古いバージョンのソフトウェアを使い続けると、あなたのプライバシーと匿名性を害する深刻なセキュリティ上の欠陥を抱えることになります。"
+
+#: updating.page:18
+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 ""
+"Tor Browser は新しいバージョンのソフトウェアが公開されるとアップデートを促します。Torbutton "
+"アイコンに黄色い三角形が表示され,Tor Browser "
+"の起動時にアップデートインジケーターが表示されます。アップデートは自動または手動で行うことができます。"
+
+#: updating.page:26
+msgid "Updating Tor Browser automatically"
+msgstr "Tor Browser を自動でアップデートする"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: updating.page:30
+msgctxt "_"
+msgid ""
+"external ref='media/updating/update1.png' "
+"md5='9ff01eb653d92124746fc31efde2bf07'"
+msgstr ""
+
+#: updating.page:32
+msgid ""
+"When you are prompted to update Tor Browser, click on the Torbutton icon, "
+"then select “Check for Tor Browser Update”."
+msgstr ""
+"Tor Browser のアップデートを促されたら、Torbutton アイコンをクリックし、「Tor Browser "
+"のアップデートを確認する」を選択します。"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: updating.page:39
+msgctxt "_"
+msgid ""
+"external ref='media/updating/update3.png' "
+"md5='19b1f46d748dbcd9250883044165d218'"
+msgstr ""
+
+#: updating.page:41
+msgid ""
+"When Tor Browser has finished checking for updates, click on the “Update” "
+"button."
+msgstr "Tor Browser がアップデートの確認を完了したら、「アップデート」ボタンをクリックします。"
+
+#. This is a reference to an external file such as an image or video. When
+#. the file changes, the md5 hash will change to let you know you need to
+#. update your localized copy. The msgstr is not used at all. Set it to
+#. whatever you like once you have updated your copy of the file.
+#: updating.page:48
+msgctxt "_"
+msgid ""
+"external ref='media/updating/update4.png' "
+"md5='7e8ead67c03597f00c580c77c3103fbb'"
+msgstr ""
+
+#: updating.page:50
+msgid ""
+"Wait for the update to download and install, then restart Tor Browser. You "
+"will now be running the latest version."
+msgstr ""
+"アップデートのダウンロードおよびインストールが完了するまで待ち、Tor Browser を再起動します。これで最新バージョンに更新されました。"
+
+#: updating.page:58
+msgid "Updating Tor Browser manually"
+msgstr "Tor Browser を手動でアップデートする"
+
+#: updating.page:61
+msgid ""
+"When you are prompted to update Tor Browser, finish the browsing session and"
+" close the program."
+msgstr "Tor Browser のアップデートを促されたら、セッションを終えてプログラムを終了します。"
+
+#: updating.page:67
+msgid ""
+"Remove Tor Browser from your system by deleting the folder that contains it "
+"(see the <link xref=\"uninstalling\">Uninstalling</link> section for more "
+"information)."
+msgstr ""
+"Tor Browser を含むフォルダー(詳しい情報については<link "
+"xref=\"uninstalling\">アンインストール</link>セクションを参照してください)を削除しTor Browser "
+"をシステムから取り除きます。"
+
+#: updating.page:74
+msgid ""
+"Visit <link href=\"https://www.torproject.org/projects/torbrowser.html.en\">"
+" https://www.torproject.org/projects/torbrowser.html.en</link> and download "
+"a copy of the latest Tor Browser release, then install it as before."
+msgstr ""
+"<link href=\"https://www.torproject.org/projects/torbrowser.html.en\"> "
+"https://www.torproject.org/projects/torbrowser.html.en</link>にアクセスして最新版の Tor"
+" Browser をダウンロードし、以前と同様にインストールします。"
1
0