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

04 Oct '18
commit 4c0da461a281667006af87a963496802345bb2ac
Author: Damian Johnson <atagar(a)torproject.org>
Date: Thu Oct 4 10:56:26 2018 -0700
Instructions for testing specific python versions
When release time comes around one of the bigger pita is always getting all the
interpreters to test against. Including the commands I ran this go around.
---
setup.py | 39 ++++++++++++++++++++++++++++++++++++---
1 file changed, 36 insertions(+), 3 deletions(-)
diff --git a/setup.py b/setup.py
index 5f786ded..367c81a2 100644
--- a/setup.py
+++ b/setup.py
@@ -7,9 +7,42 @@
#
# * Recache latest information (cache_manual.py and cache_fallback_directories.py)
#
-# * Run 'run_tests.py --all --target RUN_ALL,ONLINE' with python2.6, python2.7,
-# python3, and pypy.
-# +- or 'tox -- --all --target RUN_ALL,ONLINE'
+# * Test with python2.6, python2.7, python3, and pypy.
+# |- If using tox run...
+# |
+# | % tox -- --all --target RUN_ALL,ONLINE
+# |
+# | Otherwise, for each interpreter run...
+# |
+# | % [python_interpreter] run_tests.py --all --target RUN_ALL,ONLINE
+# |
+# |- Pypy test instructions for ubuntu are...
+# |
+# | % sudo apt-get install pypy
+# | % wget https://bootstrap.pypa.io/get-pip.py
+# | % pypy get-pip.py --user
+# | % ~/.local/bin/pip install mock pycodestyle pyflakes --user
+# | % pypy ./run_tests.py --all
+# |
+# +- Some version of python 3.x should be available in your platform's
+# repositories. To test against a specific version on ubuntu try the
+# following. In this example, Python 3.7...
+#
+# % sudo apt-get install build-essential python-dev python-setuptools python-pip python-smbus
+# % sudo apt-get install libncursesw5-dev libgdbm-dev libc6-dev
+# % sudo apt-get install zlib1g-dev libsqlite3-dev tk-dev
+# % sudo apt-get install libssl-dev openssl libffi-dev
+#
+# % wget https://www.python.org/ftp/python/3.7.0/Python-3.7.0.tgz
+# % tar -xzf Python-3.7.0.tgz
+# % mv Python-3.7.0 ~
+#
+# % cd ~/Python-3.7.0
+# % ./configure
+# % make
+#
+# % cd /path/to/stem
+# % ~/Python-3.7.0/python ./run_tests.py --all
#
# * Tag the release
# |- Bump stem's version (in stem/__init__.py and docs/index.rst).
1
0

04 Oct '18
commit 0e08db7c18d732acb8cea100598d66720cb0d729
Author: Damian Johnson <atagar(a)torproject.org>
Date: Thu Oct 4 10:00:11 2018 -0700
Older ssl versions caused test_not_orport to fail
Our integ tests fail on an older system of mine due to lacking tor's version of ssl...
======================================================================
FAIL: test_not_orport
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/atagar/Desktop/stem/test/integ/client/connection.py", line 34, in test_not_orport
self.assertRaisesWith(stem.SocketError, "Failed to SSL authenticate to 127.0.0.1:1111. Maybe it isn't an ORPort?", Relay.connect, '127.0.0.1', test.runner.CONTROL_PORT)
File "/home/atagar/Desktop/stem/stem/util/test_tools.py", line 288, in assertRaisesWith
return self.assertRaisesRegexp(exc_type, '^%s$' % re.escape(exc_msg), func, *args, **kwargs)
File "/home/atagar/Desktop/stem/stem/util/test_tools.py", line 298, in assertRaisesRegexp
return super(original_type, self).assertRaisesRegexp(exc_type, exc_msg, func, *args, **kwargs)
AssertionError: "^Failed\ to\ SSL\ authenticate\ to\ 127\.0\.0\.1\:1111\.\ Maybe\ it\ isn\'t\ an\ ORPort\?$" does not match "[Errno 1] _ssl.c:504: error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol"
That's fine. This test is supposed to error, just a different message than what
we expected.
---
test/integ/client/connection.py | 16 +++++++++++++++-
1 file changed, 15 insertions(+), 1 deletion(-)
diff --git a/test/integ/client/connection.py b/test/integ/client/connection.py
index a43283b9..ca8853c7 100644
--- a/test/integ/client/connection.py
+++ b/test/integ/client/connection.py
@@ -31,7 +31,21 @@ class TestConnection(unittest.TestCase):
# connect to our ControlPort like it's an ORPort
if test.runner.Torrc.PORT in test.runner.get_runner().get_options():
- self.assertRaisesWith(stem.SocketError, "Failed to SSL authenticate to 127.0.0.1:1111. Maybe it isn't an ORPort?", Relay.connect, '127.0.0.1', test.runner.CONTROL_PORT)
+ try:
+ Relay.connect('127.0.0.1', test.runner.CONTROL_PORT)
+ self.fail('Connecting to a non-ORPort should raise a stem.SocketError')
+ except stem.SocketError as exc:
+ if str(exc) == "Failed to SSL authenticate to 127.0.0.1:1111. Maybe it isn't an ORPort?":
+ pass # good, this is the usual response
+ elif 'SSL23_GET_SERVER_HELLO:unknown protocol' in str(exc):
+ # Less common, but still ok. This arises on older systems that do not
+ # support tor's ssl version. The full response is...
+ #
+ # [Errno 1] _ssl.c:504: error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol
+
+ pass
+ else:
+ self.fail('Unexpected response when connecting to a non-ORPort: %s' % exc)
def test_no_common_link_protocol(self):
"""
1
0

[translation/support-portal] Update translations for support-portal
by translation@torproject.org 04 Oct '18
by translation@torproject.org 04 Oct '18
04 Oct '18
commit bea66776fbedb712b4c609d88c74ab563b63ee16
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Oct 4 16:18:46 2018 +0000
Update translations for support-portal
---
contents+he.po | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/contents+he.po b/contents+he.po
index fc3de5362..5164274f1 100644
--- a/contents+he.po
+++ b/contents+he.po
@@ -1081,6 +1081,9 @@ msgid ""
" onion at the top-left of the screen), then \"Open Network Settings\", then "
"\"Copy Tor Log To Clipboard\"."
msgstr ""
+"אם דפדפן Tor פתוח כבר, לחץ על הצלמית Torbutton (הבצל הירוק הקטן בראש בצידו "
+"השמאלי של המסך), לאחר מכן \"פתח הגדרות רשת\", ואז \"העתק את יומן Tor ללוח "
+"החיתוך\"."
#: http//localhost/tbb/tbb-9/
#: (content/tbb/tbb-9/contents+en.lrquestion.description)
@@ -3324,6 +3327,8 @@ msgid ""
"Tor Browser will warn you that all activity and downloads will be stopped, "
"so take this into account before clicking \"New Identity\"."
msgstr ""
+"דפדפן Tor יזהיר אותך שכל הפעילות וההורדות יופסקו, אז קח זאת בחשבון לפני "
+"לחיצה על \"זהות חדשה\"."
#: http//localhost/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.title)
@@ -3667,6 +3672,8 @@ msgid ""
"Click the button labelled \"Copy Tor Log To Clipboard\" that appears in the "
"dialog window when Tor Browser is first connecting to the network."
msgstr ""
+"לחץ על הכפתור עם הכיתוב \"העתק את יומן Tor ללוח החיתוך\" המופיע בחלון "
+"הדו־שיח כשדפדפן Tor מתחבר לראשונה אל הרשת."
#: http//localhost/tbb/tbb-19/
#: (content/tbb/tbb-19/contents+en.lrquestion.description)
1
0

[translation/support-portal] Update translations for support-portal
by translation@torproject.org 04 Oct '18
by translation@torproject.org 04 Oct '18
04 Oct '18
commit 8a79567a925b692eac34b92800a707171fe5a995
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Oct 4 15:48:47 2018 +0000
Update translations for support-portal
---
contents+he.po | 2 ++
1 file changed, 2 insertions(+)
diff --git a/contents+he.po b/contents+he.po
index 7ec1a7ec0..fc3de5362 100644
--- a/contents+he.po
+++ b/contents+he.po
@@ -3092,6 +3092,8 @@ msgid ""
"The simplest fix is to click on the \"onion menu,\" then click on the "
"security slider."
msgstr ""
+"התיקון הפשוט ביותר הוא ללחוץ על \"תפריט הבצל\", לאחר מכן ללחוץ על מחוון "
+"האבטחה."
#: http//localhost/misc/misc-2/
#: (content/misc/misc-2/contents+en.lrquestion.description)
1
0

[translation/tor-browser-manual] Update translations for tor-browser-manual
by translation@torproject.org 04 Oct '18
by translation@torproject.org 04 Oct '18
04 Oct '18
commit 867448f3442b8160b929d3948f23ee7bb735171a
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Oct 4 15:17:19 2018 +0000
Update translations for tor-browser-manual
---
ru/ru.po | 3 +++
1 file changed, 3 insertions(+)
diff --git a/ru/ru.po b/ru/ru.po
index df35bf19c..8adeec347 100644
--- a/ru/ru.po
+++ b/ru/ru.po
@@ -351,6 +351,9 @@ msgid ""
" should try the different transports: obfs3, obfs4, ScrambleSuit, fte, meek-"
"azure and Snowflake."
msgstr ""
+"Если вы пытаетесь обойти заблокированное соединение в первый раз, вам "
+"следует попробовать различные транспорты: obfs3, obfs4, ScrambleSuit, fte, "
+"meek-azure и Snowflake."
#: circumvention.page:72
msgid ""
1
0

[translation/support-portal] Update translations for support-portal
by translation@torproject.org 04 Oct '18
by translation@torproject.org 04 Oct '18
04 Oct '18
commit d4146dce19dd34dfb52ef5ea7ec53dcdd4eca357
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Oct 4 13:18:47 2018 +0000
Update translations for support-portal
---
contents+is.po | 3884 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 3884 insertions(+)
diff --git a/contents+is.po b/contents+is.po
new file mode 100644
index 000000000..54799b314
--- /dev/null
+++ b/contents+is.po
@@ -0,0 +1,3884 @@
+# Translators:
+# erinm, 2018
+# Sveinn í Felli <sv1(a)fellsnet.is>, 2018
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-09-30 22:02+CET\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Sveinn í Felli <sv1(a)fellsnet.is>, 2018\n"
+"Language-Team: Icelandic (https://www.transifex.com/otf/teams/1519/is/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: is\n"
+"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
+
+#: http//localhost/tbb/tbb-16/
+#: (content/tbb/tbb-16/contents+en.lrquestion.description)
+msgid ""
+"Modifying the way that Tor creates its circuits is strongly discouraged."
+msgstr ""
+
+#: http//localhost/tbb/tbb-17/
+#: (content/tbb/tbb-17/contents+en.lrquestion.description)
+msgid ""
+"However, be aware that your other browser is not keeping your activity "
+"private, and you may forget and accidentally use that non-private browser to"
+" do something that you intended to do in Tor Browser."
+msgstr ""
+
+#: http//localhost/misc/misc-4/
+#: (content/misc/misc-4/contents+en.lrquestion.description)
+msgid "We do not recommend using Tor with BitTorrent."
+msgstr ""
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid "This could mean that you’re on a network that’s censored."
+msgstr ""
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Français (fr)"
+msgstr ""
+
+#: http//localhost/tbb/tbb-7/
+#: (content/tbb/tbb-7/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-2/
+#: (content/censorship/censorship-2/contents+en.lrquestion.description)
+msgid ""
+"In the case of banks, and other sensitive websites, it is also common to see"
+" geography-based blocking (if a bank knows you generally access their "
+"services from one country, and suddenly you are connecting from an exit "
+"relay on the other side of the world, your account may be locked or "
+"suspended)."
+msgstr ""
+
+#: http//localhost/https/https-1/
+#: (content/https/https-1/contents+en.lrquestion.description)
+msgid "Tor prevents eavesdroppers from learning sites that you visit."
+msgstr ""
+
+#: http//localhost/tbb/tbb-41/
+#: (content/tbb/tbb-41/contents+en.lrquestion.description)
+msgid ""
+"Since Disconnect is more of a meta search engine which allows users to "
+"choose between different search providers, it fell back to delivering Bing "
+"search results which were basically unacceptable quality-wise."
+msgstr ""
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "## If you control multiple relays, include then in the family"
+msgstr ""
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "* Edit /usr/local/etc/tor/torrc to look like the following:"
+msgstr "* Breyttu /usr/local/etc/tor/torrc þannig að það líti svona út:"
+
+#: http//localhost/misc/misc-15/
+#: (content/misc/misc-15/contents+en.lrquestion.title)
+msgid "How can I donate to Tor Project?"
+msgstr "Hvernig get ég styrkt Tor-verkefnið?"
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "* Locate your Tor Browser folder or application."
+msgstr ""
+
+#: http//localhost/tbb/tbb-22/
+#: (content/tbb/tbb-22/contents+en.lrquestion.description)
+msgid ""
+"The Tor network has over a million daily users, and just over 6000 relays to"
+" route all of their traffic, and the load on each server can sometimes cause"
+" latency."
+msgstr ""
+
+#: http//localhost/tbb/tbb-34/
+#: (content/tbb/tbb-34/contents+en.lrquestion.description)
+msgid ""
+"The low/default setting allows Javascript, but the medium and high levels "
+"both block Javascript on HTTP sites."
+msgstr ""
+
+#: http//localhost/tbb/tbb-7/
+#: (content/tbb/tbb-7/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-2/
+#: (content/censorship/censorship-2/contents+en.lrquestion.description)
+msgid "Something like this might do the trick:"
+msgstr ""
+
+#: http//localhost/tbb/tbb-14/
+#: (content/tbb/tbb-14/contents+en.lrquestion.seo_slug)
+msgid "installing-add-on-extensions-tor-browser"
+msgstr "installing-add-on-extensions-tor-browser"
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.title)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.title)
+msgid ""
+"I am having trouble connecting to Tor, and I can’t figure out what’s wrong."
+msgstr ""
+
+#: http//localhost/censorship/censorship-7/
+#: (content/censorship/censorship-7/contents+en.lrquestion.description)
+msgid ""
+"A bridge is just a normal relay with a slightly different configuration."
+msgstr ""
+
+#: http//localhost/faq/faq-2/ (content/faq/faq-2/contents+en.lrquestion.title)
+#: http//localhost/tbb/tbb-8/ (content/tbb/tbb-8/contents+en.lrquestion.title)
+#: http//localhost/censorship/censorship-1/
+#: (content/censorship/censorship-1/contents+en.lrquestion.title)
+msgid ""
+"Our website is blocked by a censor. Can Tor Browser help users access our "
+"website?"
+msgstr ""
+
+#: http//localhost/tbb/tbb-42/
+#: (content/tbb/tbb-42/contents+en.lrquestion.description)
+msgid ""
+"Please be sure no other instance of Tor Browser is already running, and that"
+" you have extracted Tor Browser in a location that your user has the correct"
+" permissions for."
+msgstr ""
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "* Delete the Tor Browser folder or application."
+msgstr ""
+
+#: http//localhost/faq/faq-3/
+#: (content/faq/faq-3/contents+en.lrquestion.description)
+#: http//localhost/tbb/tbb-14/
+#: (content/tbb/tbb-14/contents+en.lrquestion.description)
+msgid ""
+"It's strongly discouraged to install new add-ons in Tor Browser, because "
+"they can compromise your privacy and security."
+msgstr ""
+
+#: http//localhost/tbb/tbb-34/
+#: (content/tbb/tbb-34/contents+en.lrquestion.description)
+msgid ""
+"For users who want to have Javascript disabled on all HTTP sites by default,"
+" we recommend changing your Tor Browser's security slider (in the Tor "
+"Browser Onion menu under \"Security Settings\")."
+msgstr ""
+
+#: http//localhost/faq/ (content/faq/contents+en.lrtopic.seo_slug)
+msgid "faq"
+msgstr "faq"
+
+#: http//localhost/onionservices/onionservices-2/
+#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
+msgid ""
+"These services use the special-use tld .onion (instead of "
+".com,.net,.org,etc..) and are only accessible through the Tor network."
+msgstr ""
+
+#: http//localhost/tbb/tbb-7/ (content/tbb/tbb-7/contents+en.lrquestion.title)
+#: http//localhost/censorship/censorship-2/
+#: (content/censorship/censorship-2/contents+en.lrquestion.title)
+msgid "A website I am trying to reach is blocking access over Tor."
+msgstr ""
+
+#: http//localhost/misc/misc-6/
+#: (content/misc/misc-6/contents+en.lrquestion.title)
+msgid "Does Tor keep logs?"
+msgstr "Heldur Tor aðgerðaskrár (annála)?"
+
+#: http//localhost/censorship/censorship-7/
+#: (content/censorship/censorship-7/contents+en.lrquestion.seo_slug)
+msgid "what-is-a-bridge"
+msgstr "what-is-a-bridge"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* tor.exe"
+msgstr "* tor.exe"
+
+#: http//localhost/tormobile/tormobile-4/
+#: (content/tormobile/tormobile-4/contents+en.lrquestion.description)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+
+#: http//localhost/onionservices/onionservices-2/
+#: (content/onionservices/onionservices-2/contents+en.lrquestion.title)
+msgid "What is a .onion or what are onion services?"
+msgstr ""
+
+#: http//localhost/misc/misc-12/
+#: (content/misc/misc-12/contents+en.lrquestion.description)
+msgid ""
+"For sharing files through Tor, <mark><a "
+"href=\"https://onionshare.org/\">OnionShare</a></mark> is a good option."
+msgstr ""
+
+#: http//localhost/operators/operators-7/
+#: (content/operators/operators-7/contents+en.lrquestion.description)
+msgid "No."
+msgstr "Nei."
+
+#: http//localhost/tbb/tbb-25/
+#: (content/tbb/tbb-25/contents+en.lrquestion.seo_slug)
+msgid "problem-noscript"
+msgstr "problem-noscript"
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.description)
+msgid ""
+"$ gpg --keyserver keys.gnupg.net --recv "
+"A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89"
+msgstr ""
+"$ gpg --keyserver keys.gnupg.net --recv "
+"A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89"
+
+#: http//localhost/tbb/tbb-32/
+#: (content/tbb/tbb-32/contents+en.lrquestion.seo_slug)
+msgid "setting-tor-browser-as-default"
+msgstr "setting-tor-browser-as-default"
+
+#: http//localhost/tbb/tbb-15/
+#: (content/tbb/tbb-15/contents+en.lrquestion.description)
+msgid ""
+"Unfortunately, we don't yet have a version of Tor Browser for ChromeOS."
+msgstr ""
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.description)
+msgid "<img class=\"\" src=\"/static/images/image5.png\" alt=\"New release alert\">"
+msgstr ""
+"<img class=\"\" src=\"/static/images/image5.png\" alt=\"Tilkynning um nýja "
+"útgáfu\">"
+
+#: http//localhost/misc/misc-5/
+#: (content/misc/misc-5/contents+en.lrquestion.title)
+msgid ""
+"The files on my computer have been locked, and someone is demanding I "
+"download Tor Browser to pay a ransom for my files!"
+msgstr ""
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.description)
+msgid "$ sudo apt-get install tor deb.torproject.org-keyring"
+msgstr "$ sudo apt-get install tor deb.torproject.org-keyring"
+
+#: http//localhost/misc/misc-12/
+#: (content/misc/misc-12/contents+en.lrquestion.description)
+msgid ""
+"Many exit nodes are configured to block certain types of file sharing "
+"traffic, such as BitTorrent."
+msgstr ""
+
+#: http//localhost/censorship/censorship-4/
+#: (content/censorship/censorship-4/contents+en.lrquestion.seo_slug)
+msgid "cant-connect-to-tor-browser"
+msgstr "cant-connect-to-tor-browser"
+
+#: http//localhost/https/https-1/
+#: (content/https/https-1/contents+en.lrquestion.description)
+msgid "<div class=\"row\">"
+msgstr "<div class=\"row\">"
+
+#: http//localhost/onionservices/onionservices-1/
+#: (content/onionservices/onionservices-1/contents+en.lrquestion.seo_slug)
+msgid "accessing-websites-that-are-only-accessible-over-tor"
+msgstr "accessing-websites-that-are-only-accessible-over-tor"
+
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"Tor requires an accurate clock to work: please check your time, timezone, "
+"and date settings."
+msgstr ""
+
+#: http//localhost/misc/misc-4/
+#: (content/misc/misc-4/contents+en.lrquestion.description)
+msgid ""
+"For further details, please see our <mark><a "
+"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
+" post on the subject</a></mark>."
+msgstr ""
+
+#: http//localhost/tbb/tbb-8/
+#: (content/tbb/tbb-8/contents+en.lrquestion.seo_slug)
+msgid "website-blocked-by-censor-can-tor-browser-help"
+msgstr "website-blocked-by-censor-can-tor-browser-help"
+
+#: http//localhost/misc/misc-3/
+#: (content/misc/misc-3/contents+en.lrquestion.description)
+msgid ""
+"Check out a list of all <mark><a "
+"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
+"sponsors</a></mark> and a series of <mark><a "
+"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
+"posts</a></mark> on our financial reports."
+msgstr ""
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "RunAsDaemon 1"
+msgstr ""
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"If a SOCKS proxy is required for your network setup, then please make sure "
+"you’ve entered your proxy details correctly."
+msgstr ""
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.seo_slug)
+msgid "using-correct-packages"
+msgstr "using-correct-packages"
+
+#: http//localhost/tbb/tbb-17/
+#: (content/tbb/tbb-17/contents+en.lrquestion.description)
+msgid ""
+"If you run Tor Browser and another browser at the same time, it won't affect"
+" Tor's performance or privacy properties."
+msgstr ""
+
+#: http//localhost/faq/faq-2/
+#: (content/faq/faq-2/contents+en.lrquestion.description)
+#: http//localhost/tbb/tbb-8/
+#: (content/tbb/tbb-8/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-1/
+#: (content/censorship/censorship-1/contents+en.lrquestion.description)
+msgid ""
+"Tor Browser can certainly help people access your website in places where it"
+" is blocked."
+msgstr ""
+
+#: http//localhost/tbb/tbb-21/
+#: (content/tbb/tbb-21/contents+en.lrquestion.title)
+msgid "How do I view Tor Browser message log?"
+msgstr ""
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Deutsch (de)"
+msgstr ""
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.seo_slug)
+msgid "how-do-i-run-a-middle-or-guard-on-freebsd"
+msgstr "how-do-i-run-a-middle-or-guard-on-freebsd"
+
+#: http//localhost/misc/misc-15/
+#: (content/misc/misc-15/contents+en.lrquestion.description)
+msgid "Thank you for your support!"
+msgstr "Þakka þér fyrir stuðninginn!"
+
+#: http//localhost/tbb/tbb-19/
+#: (content/tbb/tbb-19/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-4/
+#: (content/censorship/censorship-4/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-6/
+#: (content/censorship/censorship-6/contents+en.lrquestion.description)
+msgid ""
+"If you need other bridges, you can get them at our <mark><a "
+"href=\"https://bridges.torproject.org/\">Bridges website</a></mark>."
+msgstr ""
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Polish (pl)"
+msgstr ""
+
+#: http//localhost/tbb/tbb-31/
+#: (content/tbb/tbb-31/contents+en.lrquestion.description)
+msgid "Tor Browser is currently available on Windows, Linux and OSX."
+msgstr "Tor-vafrinn er núna tiltækur fyrir Windows, Linux og OSX."
+
+#: http//localhost/faq/faq-4/
+#: (content/faq/faq-4/contents+en.lrquestion.description)
+msgid ""
+"For <mark><a "
+"href=\"https://www.torproject.org/docs/android.html.en\">Android</a></mark>,"
+" <mark><a href=\"https://guardianproject.info/\">The Guardian "
+"Project</a></mark> maintains the Tor-powered apps <mark><a "
+"href=\"https://guardianproject.info/apps/orbot/\">Orbot</a></mark> and "
+"<mark><a href=\"https://guardianproject.info/apps/orfox/\">Orfox</a></mark>."
+msgstr ""
+"Fyrir <mark><a "
+"href=\"https://www.torproject.org/docs/android.html.en\">Android</a></mark> "
+"kerfi heldur <mark><a href=\"https://guardianproject.info/\">The Guardian "
+"Project</a></mark> úti forritum sem knúin eru með Tor: <mark><a "
+"href=\"https://guardianproject.info/apps/orbot/\">Orbot</a></mark> og "
+"<mark><a href=\"https://guardianproject.info/apps/orfox/\">Orfox</a></mark>."
+
+#: http//localhost/faq/faq-5/
+#: (content/faq/faq-5/contents+en.lrquestion.seo_slug)
+#: http//localhost/misc/misc-13/
+#: (content/misc/misc-13/contents+en.lrquestion.seo_slug)
+msgid "use-vpn-with-tor"
+msgstr "use-vpn-with-tor"
+
+#: http//localhost/tbb/tbb-38/
+#: (content/tbb/tbb-38/contents+en.lrquestion.description)
+msgid ""
+"However, your service provider or network admins may be able to see that "
+"you're connecting to the Tor network, though they won't know what you're "
+"doing when you get there."
+msgstr ""
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid ""
+"* Make sure tor starts on boot by running \"sysrc tor_enable=YES\" (as root)"
+msgstr ""
+
+#: http//localhost/connecting/connecting-3/
+#: (content/connecting/connecting-3/contents+en.lrquestion.description)
+#: http//localhost/onionservices/onionservices-3/
+#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
+msgid ""
+"There may be a temporary connection issue, or the site operators may have "
+"allowed it to go offline without warning."
+msgstr ""
+
+#: http//localhost/misc/misc-10/
+#: (content/misc/misc-10/contents+en.lrquestion.description)
+msgid "No, the Tor Project does not offer hosting services."
+msgstr "Nei, Tor-verkefnið býður ekki upp á neinar hýsingarþjónustur."
+
+#: http//localhost/tbb/tbb-31/
+#: (content/tbb/tbb-31/contents+en.lrquestion.description)
+msgid ""
+"There is no official version of Tor for iOS yet, though we recommend Onion "
+"Browser."
+msgstr ""
+
+#: http//localhost/tbb/tbb-22/
+#: (content/tbb/tbb-22/contents+en.lrquestion.description)
+msgid ""
+"You can help improve the speed of the network by running your own relay, or "
+"encouraging others to do so."
+msgstr ""
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.description)
+msgid ""
+"You may see a written indication when Tor Browser opens telling you that an "
+"update is available."
+msgstr ""
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.description)
+msgid "You can update Tor Browser as soon as a new version is released."
+msgstr ""
+
+#: http//localhost/onionservices/onionservices-2/
+#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
+msgid ""
+"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
+"with a padlock\">"
+msgstr ""
+"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
+"with a padlock\">"
+
+#: http//localhost/tbb/tbb-18/
+#: (content/tbb/tbb-18/contents+en.lrquestion.description)
+msgid ""
+"Sorry, but there is currently no official support for running Tor Browser on"
+" *BSD."
+msgstr ""
+
+#: http//localhost/https/https-1/
+#: (content/https/https-1/contents+en.lrquestion.description)
+msgid "<div class=\"col-md-6\">"
+msgstr "<div class=\"col-md-6\">"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* For OS X"
+msgstr "* Fyrir OS X"
+
+#: http//localhost/tbb/tbb-21/
+#: (content/tbb/tbb-21/contents+en.lrquestion.description)
+msgid ""
+"Once you have copied the log, you will be able to paste it into a text "
+"editor or email client."
+msgstr ""
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "* Run \"pkg install tor\" (as root)."
+msgstr "* Keyrðu \"pkg install tor\" (sem kerfisstjóri/root)."
+
+#: http//localhost/misc/misc-15/
+#: (content/misc/misc-15/contents+en.lrquestion.seo_slug)
+msgid "donate-tor-project"
+msgstr "donate-tor-project"
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"13-11-17 19:53:49.300 [WARN] Problem bootstrapping. Stuck at 10%: Finishing "
+"handshake with directory server. (DONE; DONE; count 10; recommendation warn;"
+" host [host] at xxx.xxx.xxx.xx:xxx)"
+msgstr ""
+
+#: http//localhost/connecting/connecting-1/
+#: (content/connecting/connecting-1/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-wont-connect"
+msgstr "tor-browser-wont-connect"
+
+#: http//localhost/onionservices/
+#: (content/onionservices/contents+en.lrtopic.seo_slug)
+msgid "onion-services"
+msgstr "onion-þjónustur"
+
+#: http//localhost/onionservices/
+#: (content/onionservices/contents+en.lrtopic.title)
+msgid "Onion Services"
+msgstr "Onion-þjónustur"
+
+#: http//localhost/operators/operators-7/
+#: (content/operators/operators-7/contents+en.lrquestion.description)
+msgid ""
+"If law enforcement becomes interested in traffic from your exit relay, it's "
+"possible that officers will seize your computer."
+msgstr ""
+
+#: http//localhost/censorship/censorship-7/
+#: (content/censorship/censorship-7/contents+en.lrquestion.description)
+msgid ""
+"See our page on <mark><a href=\"https://www.torproject.org/docs/pluggable-"
+"transports.html.en\">pluggable transports</a></mark> for more info."
+msgstr ""
+
+#: http//localhost/tormobile/tormobile-2/
+#: (content/tormobile/tormobile-2/contents+en.lrquestion.title)
+msgid "Who is the Guardian Project?"
+msgstr "Hverjir eru Guardian Project?"
+
+#: http//localhost/connecting/connecting-3/
+#: (content/connecting/connecting-3/contents+en.lrquestion.description)
+#: http//localhost/onionservices/onionservices-3/
+#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
+msgid ""
+"If you are still unable to connect to the onion service, please try again "
+"later."
+msgstr ""
+
+#: http//localhost/tormobile/tormobile-3/
+#: (content/tormobile/tormobile-3/contents+en.lrquestion.description)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+
+#: http//localhost/tbb/tbb-13/
+#: (content/tbb/tbb-13/contents+en.lrquestion.description)
+msgid "They need to be configured separately to use Tor."
+msgstr ""
+
+#: http//localhost/tbb/ (content/tbb/contents+en.lrtopic.seo_slug)
+msgid "tor-browser"
+msgstr "tor-vafrinn"
+
+#: http//localhost/https/ (content/https/contents+en.lrtopic.seo_slug)
+msgid "https"
+msgstr "https"
+
+#: http//localhost/tbb/tbb-41/
+#: (content/tbb/tbb-41/contents+en.lrquestion.seo_slug)
+msgid "why-is-tor-using-duckduckgo"
+msgstr "why-is-tor-using-duckduckgo"
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"You should see one of these common log errors (look for the following lines "
+"in your Tor log):"
+msgstr ""
+
+#: http//localhost/tbb/tbb-3/
+#: (content/tbb/tbb-3/contents+en.lrquestion.seo_slug)
+msgid "tell-which-website-are-visited-while-using-tor-browser"
+msgstr "tell-which-website-are-visited-while-using-tor-browser"
+
+#: http//localhost/faq/faq-2/
+#: (content/faq/faq-2/contents+en.lrquestion.description)
+#: http//localhost/tbb/tbb-8/
+#: (content/tbb/tbb-8/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-1/
+#: (content/censorship/censorship-1/contents+en.lrquestion.description)
+msgid ""
+"Most of the time, simply downloading the <mark><a "
+"href=\"https://www.torproject.org/download/download-easy.html.en\">Tor "
+"Browser</a></mark> and then using it to navigate to the blocked site will "
+"allow access."
+msgstr ""
+
+#: http//localhost/misc/misc-2/
+#: (content/misc/misc-2/contents+en.lrquestion.description)
+msgid ""
+"We hate that there are some people who use Tor to do terrible things, but we"
+" can't do anything to get rid of them without also undermining the human "
+"rights activists, journalists, abuse survivors, and other people who use Tor"
+" for good things."
+msgstr ""
+
+#: http//localhost/operators/ (content/operators/contents+en.lrtopic.seo_slug)
+msgid "operators"
+msgstr ""
+
+#: http//localhost/tbb/tbb-17/
+#: (content/tbb/tbb-17/contents+en.lrquestion.title)
+msgid "Is it safe to run Tor Browser and another browser at the same time?"
+msgstr ""
+
+#: http//localhost/gettor/gettor-1/
+#: (content/gettor/gettor-1/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-3/
+#: (content/censorship/censorship-3/contents+en.lrquestion.description)
+msgid ""
+"If you can't download Tor through our <mark><a "
+"href=\"https://www.torproject.org\">website</a></mark>, you can get a copy "
+"of Tor delivered to you via GetTor."
+msgstr ""
+
+#: http//localhost/tbb/tbb-34/
+#: (content/tbb/tbb-34/contents+en.lrquestion.description)
+msgid ""
+"We configure NoScript to allow JavaScript by default in Tor Browser because "
+"many websites will not work with JavaScript disabled."
+msgstr ""
+
+#: http//localhost/faq/faq-2/
+#: (content/faq/faq-2/contents+en.lrquestion.description)
+#: http//localhost/tbb/tbb-8/
+#: (content/tbb/tbb-8/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-1/
+#: (content/censorship/censorship-1/contents+en.lrquestion.description)
+msgid ""
+"In places where there is heavy censorship we have a number of censorship "
+"circumvention options available, including <mark><a "
+"href=\"https://www.torproject.org/docs/pluggable-"
+"transports.html.en\">pluggable transports</a></mark>."
+msgstr ""
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "* Run \"service tor start\" (as root)"
+msgstr "* Keyrðu \"service tor start\" (sem kerfisstjóri/root)"
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+msgid "* Run \"apt-get install tor\" (as root)."
+msgstr "* Keyrðu \"apt-get install tor\" (sem kerfisstjóri/root)."
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"2017-10-29 09:23:47.900 [NOTICE] Bootstrapped 10%: Finishing handshake with "
+"directory server"
+msgstr ""
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Vietnamese (vi)"
+msgstr ""
+
+#: http//localhost/tbb/tbb-36/
+#: (content/tbb/tbb-36/contents+en.lrquestion.seo_slug)
+msgid "run-multible-instances-of-tor-browser"
+msgstr "run-multible-instances-of-tor-browser"
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.seo_slug)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.seo_slug)
+msgid "having-trouble-connecting-to-tor"
+msgstr "having-trouble-connecting-to-tor"
+
+#: http//localhost/misc/misc-4/
+#: (content/misc/misc-4/contents+en.lrquestion.title)
+msgid "Can I use Tor with BitTorrent?"
+msgstr ""
+
+#: http//localhost/misc/misc-3/
+#: (content/misc/misc-3/contents+en.lrquestion.description)
+msgid ""
+"Tor is funded by a number of different sponsors including US federal "
+"agencies, private foundations, and individual donors."
+msgstr ""
+
+#: http//localhost/tbb/tbb-19/
+#: (content/tbb/tbb-19/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-4/
+#: (content/censorship/censorship-4/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-6/
+#: (content/censorship/censorship-6/contents+en.lrquestion.description)
+msgid ""
+"Some bridges are built in to Tor Browser, and you can use those bridges by "
+"choosing \"configure\" (then following the prompts) in the Tor Launcher "
+"window that pops up when you open Tor Browser for the first time."
+msgstr ""
+
+#: http//localhost/tbb/tbb-24/
+#: (content/tbb/tbb-24/contents+en.lrquestion.description)
+#: http//localhost/tbb/tbb-25/
+#: (content/tbb/tbb-25/contents+en.lrquestion.description)
+#: http//localhost/tbb/tbb-26/
+#: (content/tbb/tbb-26/contents+en.lrquestion.description)
+msgid ""
+"If you believe this is a Tor Browser issue, please report it on our <mark><a"
+" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+msgstr ""
+
+#: http//localhost/tbb/tbb-18/
+#: (content/tbb/tbb-18/contents+en.lrquestion.title)
+msgid "Is there support for *BSD?"
+msgstr "Er einhver stuðningur við *BSD?"
+
+#: http//localhost/tbb/tbb-19/
+#: (content/tbb/tbb-19/contents+en.lrquestion.title)
+#: http//localhost/censorship/censorship-4/
+#: (content/censorship/censorship-4/contents+en.lrquestion.title)
+#: http//localhost/censorship/censorship-6/
+#: (content/censorship/censorship-6/contents+en.lrquestion.title)
+msgid "I can’t connect to Tor Browser, is my network censored?"
+msgstr ""
+
+#: http//localhost/tbb/tbb-32/
+#: (content/tbb/tbb-32/contents+en.lrquestion.description)
+msgid ""
+"There is currently no supported method for setting Tor Browser as your "
+"default browser."
+msgstr ""
+
+#: http//localhost/tbb/tbb-39/
+#: (content/tbb/tbb-39/contents+en.lrquestion.description)
+msgid "Set your security to \"Standard\"."
+msgstr ""
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid ""
+"The default location on Windows is the Desktop; on macOS it is the "
+"Applications folder (on macOS, you have to move it into the Applications "
+"folder when you complete the installation process)."
+msgstr ""
+
+#: http//localhost/tbb/tbb-22/
+#: (content/tbb/tbb-22/contents+en.lrquestion.seo_slug)
+msgid "make-tor-faster"
+msgstr "make-tor-faster"
+
+#: http//localhost/misc/misc-8/
+#: (content/misc/misc-8/contents+en.lrquestion.title)
+msgid "Can I use the Tor logo in my product?"
+msgstr ""
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"If you see lines like this in your Tor log, it means that Tor failed to "
+"complete a TLS handshake with the directory authorities."
+msgstr ""
+
+#: http//localhost/tbb/tbb-19/
+#: (content/tbb/tbb-19/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-4/
+#: (content/censorship/censorship-4/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-6/
+#: (content/censorship/censorship-6/contents+en.lrquestion.description)
+msgid ""
+"For more information about bridges, see the <mark><a href=\"https://tb-"
+"manual.torproject.org/en-US/bridges.html\">Tor Browser manual</a></mark>."
+msgstr ""
+
+#: http//localhost/tbb/tbb-12/
+#: (content/tbb/tbb-12/contents+en.lrquestion.description)
+msgid ""
+"We don’t think Flash is safe to use in any browser — it's a very insecure "
+"piece of software that can easily compromise your privacy or serve you "
+"malware."
+msgstr ""
+
+#: http//localhost/onionservices/onionservices-1/
+#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
+msgid "You can access these websites by using Tor Browser."
+msgstr ""
+
+#: http//localhost/tormobile/tormobile-1/
+#: (content/tormobile/tormobile-1/contents+en.lrquestion.title)
+msgid "Can I run Tor on an Android device?"
+msgstr ""
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "#RelayBandwidthBurst 100 MBytes"
+msgstr ""
+
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+msgid ""
+"Consider if you'd like to switch to the <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/doc/ReducedExitPolicy\">Reduced"
+" exit policy</a></mark>."
+msgstr ""
+
+#: http//localhost/faq/faq-1/
+#: (content/faq/faq-1/contents+en.lrquestion.seo_slug)
+msgid "will-anyone-be-able-to-tell-which-website-i-visit"
+msgstr "will-anyone-be-able-to-tell-which-website-i-visit"
+
+#: http//localhost/tbb/tbb-15/
+#: (content/tbb/tbb-15/contents+en.lrquestion.seo_slug)
+#: http//localhost/tbb/tbb-5/
+#: (content/tbb/tbb-5/contents+en.lrquestion.seo_slug)
+msgid "download-tor-browser-chromeos"
+msgstr "download-tor-browser-chromeos"
+
+#: http//localhost/https/ (content/https/contents+en.lrtopic.title)
+msgid "HTTPS"
+msgstr "HTTPS"
+
+#: http//localhost/tbb/tbb-5/ (content/tbb/tbb-5/contents+en.lrquestion.title)
+msgid ""
+"Can I still use another browser, like Chrome or Firefox, when I am using Tor"
+" Browser?"
+msgstr ""
+
+#: http//localhost/tormobile/ (content/tormobile/contents+en.lrtopic.title)
+msgid "Tor Mobile"
+msgstr "Tor Mobile"
+
+#: http//localhost/misc/misc-12/
+#: (content/misc/misc-12/contents+en.lrquestion.title)
+msgid "How can I share files anonymously through Tor?"
+msgstr ""
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* tor.real"
+msgstr "* tor.real"
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid "##### Common log error #4: Clock skew"
+msgstr ""
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.description)
+msgid ""
+"Both options are located in the Menu, but you can also access the New "
+"Circuit option inside the site information menu, in the URL bar."
+msgstr ""
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid "Using bridges will likely fix this."
+msgstr ""
+
+#: http//localhost/misc/misc-1/
+#: (content/misc/misc-1/contents+en.lrquestion.description)
+msgid "There is nothing the Tor developers can do to trace Tor users."
+msgstr ""
+
+#: http//localhost/misc/misc-8/
+#: (content/misc/misc-8/contents+en.lrquestion.description)
+msgid ""
+"You can read all about that on our <mark><a "
+"href=\"https://www.torproject.org/docs/trademark-faq.html\">Trademark faq "
+"page</a></mark>."
+msgstr ""
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* فارسى (fa)"
+msgstr ""
+
+#: http//localhost/tbb/tbb-13/
+#: (content/tbb/tbb-13/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-protecting-other-apps"
+msgstr "tor-browser-protecting-other-apps"
+
+#: http//localhost/tbb/tbb-22/
+#: (content/tbb/tbb-22/contents+en.lrquestion.description)
+msgid "Using Tor Browser can sometimes be slower than other browsers."
+msgstr ""
+
+#: http//localhost/misc/misc-4/
+#: (content/misc/misc-4/contents+en.lrquestion.seo_slug)
+msgid "tor-bittorrent"
+msgstr "tor-bittorrent"
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+msgid ""
+"* Make sure your clock, date, and timezone are set correctly. Install the "
+"ntp or openntpd (or similar) package to keep it that way."
+msgstr ""
+
+#: http//localhost/faq/faq-4/ (content/faq/faq-4/contents+en.lrquestion.title)
+#: http//localhost/tbb/tbb-31/
+#: (content/tbb/tbb-31/contents+en.lrquestion.title)
+msgid "Which platforms is Tor Browser available for?"
+msgstr "Á hvaða stýrikerfum er Tor-vafrinn tiltækur?"
+
+#: http//localhost/tormobile/tormobile-1/
+#: (content/tormobile/tormobile-1/contents+en.lrquestion.description)
+msgid "Tor on Android is provided by The Guardian Project."
+msgstr ""
+
+#: http//localhost/censorship/censorship-2/
+#: (content/censorship/censorship-2/contents+en.lrquestion.description)
+msgid ""
+"If you are unable to connect to an onion service, please see <a "
+"href=\"/#onionservices-3\">I cannot reach X.onion!</a>"
+msgstr ""
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"19.11.2017 00:04:48.200 [NOTICE] Bootstrapped 10%: Finishing handshake with "
+"directory server"
+msgstr ""
+
+#: http//localhost/censorship/censorship-7/
+#: (content/censorship/censorship-7/contents+en.lrquestion.description)
+msgid ""
+"Several countries, including China and Iran, have found ways to detect and "
+"block connections to Tor bridges."
+msgstr ""
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid "Then paste the Tor log into a text file or other document."
+msgstr ""
+
+#: http//localhost/misc/misc-6/
+#: (content/misc/misc-6/contents+en.lrquestion.description)
+msgid ""
+"We do take some safe measurements of how the network functions, which you "
+"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
+"Metrics</a></mark>."
+msgstr ""
+
+#: http//localhost/tbb/tbb-26/
+#: (content/tbb/tbb-26/contents+en.lrquestion.description)
+msgid ""
+"Please see the <mark><a href=\"https://www.eff.org/https-"
+"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+msgstr ""
+"Skoðaðu <mark><a href=\"https://www.eff.org/https-everywhere/faq\">Algengar "
+"spurningar fyrir HTTPS-allsstaðar</a></mark>."
+
+#: http//localhost/misc/misc-5/
+#: (content/misc/misc-5/contents+en.lrquestion.seo_slug)
+msgid "someone-asks-to-download-tor-browser-to-unlock-my-files"
+msgstr "someone-asks-to-download-tor-browser-to-unlock-my-files"
+
+#: http//localhost/tormobile/tormobile-2/
+#: (content/tormobile/tormobile-2/contents+en.lrquestion.seo_slug)
+msgid "who-is-the-guardian-project"
+msgstr "who-is-the-guardian-project"
+
+#: http//localhost/tbb/tbb-34/
+#: (content/tbb/tbb-34/contents+en.lrquestion.description)
+msgid ""
+"Most users would give up on Tor entirely if we disabled Javascript by "
+"default because it would cause so many problems for them."
+msgstr ""
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"If a SOCKS proxy is not required, or you’re not sure, please try connecting"
+" to the Tor network without a SOCKS proxy."
+msgstr ""
+
+#: http//localhost/tbb/tbb-38/
+#: (content/tbb/tbb-38/contents+en.lrquestion.description)
+msgid "When using Tor Browser, no one can see the websites that you visit."
+msgstr ""
+
+#: http//localhost/tbb/tbb-30/
+#: (content/tbb/tbb-30/contents+en.lrquestion.description)
+msgid ""
+"Tor Browser often makes your connection appear as though it is coming from "
+"an entirely different part of the world."
+msgstr ""
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.description)
+msgid ""
+"This option is useful if the exit relay you are using is unable to connect "
+"to the website you require, or is not loading it properly."
+msgstr ""
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "* Make sure your clock, date, and timezone are set correctly."
+msgstr ""
+"* Gakktu úr skugga um að kerfisklukkan, dagsetning og tímabelti séu rétt "
+"stillt."
+
+#: http//localhost/tormessenger/tormessenger-1/
+#: (content/tormessenger/tormessenger-1/contents+en.lrquestion.title)
+msgid "Does Tor Project make an application for private chat?"
+msgstr ""
+
+#: http//localhost/tormobile/tormobile-1/
+#: (content/tormobile/tormobile-1/contents+en.lrquestion.description)
+msgid ""
+"More information can be found on the <mark><a "
+"href=\"https://guardianproject.info/apps/orbot/\">Orbot</a></mark> and "
+"<mark><a href=\"https://guardianproject.info/apps/orfox/\">Orfox</a></mark> "
+"web pages."
+msgstr ""
+
+#: http//localhost/tbb/tbb-21/
+#: (content/tbb/tbb-21/contents+en.lrquestion.description)
+msgid ""
+"If Tor Browser is already open, click on the Torbutton icon (the small green"
+" onion at the top-left of the screen), then \"Open Network Settings\", then "
+"\"Copy Tor Log To Clipboard\"."
+msgstr ""
+
+#: http//localhost/tbb/tbb-9/
+#: (content/tbb/tbb-9/contents+en.lrquestion.description)
+msgid ""
+"We strongly recommend against using Tor in any browser other than Tor "
+"Browser."
+msgstr ""
+
+#: http//localhost/faq/faq-5/
+#: (content/faq/faq-5/contents+en.lrquestion.description)
+#: http//localhost/misc/misc-13/
+#: (content/misc/misc-13/contents+en.lrquestion.description)
+msgid ""
+"You can find more detailed information about Tor + VPN at <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
+"wiki</a></mark>."
+msgstr ""
+
+#: http//localhost/https/https-1/
+#: (content/https/https-1/contents+en.lrquestion.description)
+msgid ""
+"<h4 class=\"card-title\">This visualization shows what information is "
+"visible to eavesdroppers with and without Tor Browser and HTTPS "
+"encryption.</h4>"
+msgstr ""
+
+#: http//localhost/https/https-1/
+#: (content/https/https-1/contents+en.lrquestion.description)
+msgid "<img class=\"card-img-top\" src=\"/static/images/image6.png\" alt=\"https\">"
+msgstr "<img class=\"card-img-top\" src=\"/static/images/image6.png\" alt=\"https\">"
+
+#: http//localhost/misc/misc-12/
+#: (content/misc/misc-12/contents+en.lrquestion.description)
+msgid ""
+"BitTorrent in specific is <mark><a href=\"https://blog.torproject.org"
+"/bittorrent-over-tor-isnt-good-idea\">not anonymous over Tor</a></mark>."
+msgstr ""
+
+#: http//localhost/tbb/tbb-11/
+#: (content/tbb/tbb-11/contents+en.lrquestion.description)
+msgid ""
+"Choose a directory location that you'll remember easily, and once the "
+"download finishes you should see a Tor Browser folder there."
+msgstr ""
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.title)
+msgid "How do I update Tor Browser?"
+msgstr "Hvernig uppfæri ég Tor-vafrann?"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "This should fix the issues you're experiencing."
+msgstr ""
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+msgid ""
+"Look for a log entry in /var/log/syslog such as \"Self-testing indicates "
+"your ORPort is reachable from the outside. Excellent.\""
+msgstr ""
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.title)
+msgid "How do I run a middle or guard relay on FreeBSD or HardenedBSD?"
+msgstr ""
+
+#: http//localhost/tbb/tbb-25/
+#: (content/tbb/tbb-25/contents+en.lrquestion.title)
+msgid "I'm having a problem with NoScript."
+msgstr "Ég á við vandamál að stríða með NoScript."
+
+#: http//localhost/tbb/tbb-34/
+#: (content/tbb/tbb-34/contents+en.lrquestion.title)
+msgid "Why does Tor Browser ship with Javascript enabled?"
+msgstr ""
+
+#: http//localhost/misc/misc-3/
+#: (content/misc/misc-3/contents+en.lrquestion.seo_slug)
+msgid "tor-funding"
+msgstr "tor-funding"
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.description)
+msgid "Tor browser will install the updates."
+msgstr ""
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.description)
+msgid ""
+"* Do not use the packages in Ubuntu's repositories. They are not reliably "
+"updated. If you use them, you will miss important stability and security "
+"fixes."
+msgstr ""
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Português (pt-BR)"
+msgstr ""
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.description)
+msgid ""
+"Tor Browser has two ways to change your relay circuit — \"New Identity\" and"
+" \"New Tor Circuit for this Site\"."
+msgstr ""
+
+#: http//localhost/tbb/tbb-11/
+#: (content/tbb/tbb-11/contents+en.lrquestion.description)
+msgid ""
+"If you can't find it in either of those folders, download it again and look "
+"for the prompt that asks you to choose a directory to download it in."
+msgstr ""
+
+#: http//localhost/operators/operators-7/
+#: (content/operators/operators-7/contents+en.lrquestion.seo_slug)
+msgid "run-exit-from-home"
+msgstr "run-exit-from-home"
+
+#: http//localhost/operators/operators-7/
+#: (content/operators/operators-7/contents+en.lrquestion.title)
+msgid "Should I run an exit relay from home?"
+msgstr "Ætti ég að keyra útgangsendurvarpa heiman að frá mér?"
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.seo_slug)
+msgid "updating-tor-browser"
+msgstr "updating-tor-browser"
+
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+msgid ""
+"* Review our <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorExitGuidelines\">Exit"
+" relay guidelines</a></mark>"
+msgstr ""
+"* Skoðaðu <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorExitGuidelines\">Leiðbeiningar"
+" fyrir útgangsendurvarpa</a></mark>"
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.description)
+msgid ""
+"$ gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -"
+msgstr ""
+"$ gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -"
+
+#: http//localhost/tbb/tbb-9/
+#: (content/tbb/tbb-9/contents+en.lrquestion.description)
+msgid ""
+"Using Tor in another browser can leave you vulnerable without the privacy "
+"protections of Tor Browser."
+msgstr ""
+
+#: http//localhost/tbb/tbb-17/
+#: (content/tbb/tbb-17/contents+en.lrquestion.seo_slug)
+msgid "run-tor-browser-and-different-browser"
+msgstr "run-tor-browser-and-different-browser"
+
+#: http//localhost/faq/faq-3/
+#: (content/faq/faq-3/contents+en.lrquestion.seo_slug)
+msgid "install-add-on-extension-tor-browser"
+msgstr "install-add-on-extension-tor-browser"
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"2017-10-29 09:23:40.800 [NOTICE] Opening Socks listener on 127.0.0.1:9150"
+msgstr ""
+
+#: http//localhost/censorship/censorship-2/
+#: (content/censorship/censorship-2/contents+en.lrquestion.description)
+msgid ""
+"Please take a strong stance in favor of digital privacy and internet "
+"freedom, and allow Tor users access to xyz.com. Thank you.\""
+msgstr ""
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.seo_slug)
+msgid "how-do-i-run-a-obfs4-bridge-debian"
+msgstr "how-do-i-run-a-obfs4-bridge-debian"
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "* Edit /etc/tor/torrc to look like the following:"
+msgstr "* Breyttu /etc/tor/torrc þannig að það líti svona út:"
+
+#: http//localhost/tbb/tbb-39/
+#: (content/tbb/tbb-39/contents+en.lrquestion.title)
+msgid ""
+"I’m having trouble using features on Facebook, Twitter, or some other "
+"website when I’m using Tor Browser."
+msgstr ""
+
+#: http//localhost/misc/misc-1/
+#: (content/misc/misc-1/contents+en.lrquestion.seo_slug)
+msgid "tracing-tor-user"
+msgstr "tracing-tor-user"
+
+#: http//localhost/tbb/tbb-20/
+#: (content/tbb/tbb-20/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-will-not-connect-no-censorship"
+msgstr "tor-browser-will-not-connect-no-censorship"
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"If you see lines like these in your Tor log, it means you are failing to "
+"connect to a SOCKS proxy."
+msgstr ""
+
+#: http//localhost/tbb/tbb-35/
+#: (content/tbb/tbb-35/contents+en.lrquestion.description)
+msgid ""
+"The best thing to do in these cases is to contact the website owners, and "
+"inform them that their CAPTCHAs are preventing users such as yourself from "
+"using their services."
+msgstr ""
+
+#: http//localhost/tbb/tbb-42/
+#: (content/tbb/tbb-42/contents+en.lrquestion.title)
+msgid "Why does my Tor Browser say something about Firefox not working?"
+msgstr ""
+
+#: http//localhost/tbb/tbb-24/
+#: (content/tbb/tbb-24/contents+en.lrquestion.title)
+msgid "I'm having a problem with DuckDuckGo."
+msgstr "Ég á við vandamál að stríða með DuckDuckGo."
+
+#: http//localhost/tbb/tbb-9/ (content/tbb/tbb-9/contents+en.lrquestion.title)
+msgid "Can I use Tor with a browser besides Tor Browser?"
+msgstr "Get ég notað Tor með öðrum netvafra en Tor-vafranum?"
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "ExitPolicy reject *:*"
+msgstr "ExitPolicy reject *:*"
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "BridgeRelay 1"
+msgstr "BridgeRelay 1"
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid ""
+"* Look for a log entry in /var/log/syslog such as \"Self-testing indicates "
+"your ORPort is reachable from the outside. Excellent.\""
+msgstr ""
+
+#: http//localhost/tbb/tbb-22/
+#: (content/tbb/tbb-22/contents+en.lrquestion.description)
+msgid ""
+"That said, Tor is much faster than it used to be and you may not actually "
+"notice any change in speed from other browsers."
+msgstr ""
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Türkçe (tr)"
+msgstr ""
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"11/1/2017 21:11:44 PM.500 [NOTICE] Bootstrapped 85%: Finishing handshake "
+"with first hop"
+msgstr ""
+
+#: http//localhost/connecting/
+#: (content/connecting/contents+en.lrtopic.seo_slug)
+msgid "connecting-to-tor"
+msgstr "tengjast-tor"
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.description)
+msgid "<img class=\"\" src=\"/static/images/image3.png\" alt=\"New release alert\">"
+msgstr ""
+"<img class=\"\" src=\"/static/images/image3.png\" alt=\"Tilkynning um nýja "
+"útgáfu\">"
+
+#: http//localhost/misc/misc-5/
+#: (content/misc/misc-5/contents+en.lrquestion.description)
+msgid ""
+"But please consider that our software is used every day for a wide variety "
+"of purposes by human rights activists, journalists, domestic violence "
+"survivors, whistleblowers, law enforcement officers, and many others. "
+"Unfortunately, the protection that our software can provide to these groups "
+"of people can also be abused by criminals and malware authors."
+msgstr ""
+
+#: http//localhost/misc/misc-8/
+#: (content/misc/misc-8/contents+en.lrquestion.seo_slug)
+msgid "using-tor-logo"
+msgstr "using-tor-logo"
+
+#: http//localhost/tbb/tbb-35/
+#: (content/tbb/tbb-35/contents+en.lrquestion.seo_slug)
+msgid "get-rid-of-captchas"
+msgstr "get-rid-of-captchas"
+
+#: http//localhost/tbb/tbb-2/
+#: (content/tbb/tbb-2/contents+en.lrquestion.description)
+msgid ""
+"The rest of your circuit changes with every new website you visit, and all "
+"together these relays provide the full privacy protections of Tor."
+msgstr ""
+
+#: http//localhost/tbb/tbb-2/
+#: (content/tbb/tbb-2/contents+en.lrquestion.seo_slug)
+msgid "first-address-relay-circuit"
+msgstr "first-address-relay-circuit"
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.description)
+msgid ""
+"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
+"Circuit for this Site\">"
+msgstr ""
+"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
+"Circuit for this Site\">"
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid ""
+"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 ""
+
+#: http//localhost/misc/ (content/misc/contents+en.lrtopic.seo_slug)
+msgid "misc"
+msgstr "ýmisl."
+
+#: http//localhost/tbb/tbb-42/
+#: (content/tbb/tbb-42/contents+en.lrquestion.description)
+msgid ""
+"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
+"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
+"Firefox may occur."
+msgstr ""
+
+#: http//localhost/tbb/tbb-33/
+#: (content/tbb/tbb-33/contents+en.lrquestion.description)
+msgid ""
+"If you'd like to become a relay, please see our <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
+"Relay Guide</a></mark>."
+msgstr ""
+
+#: http//localhost/https/https-1/
+#: (content/https/https-1/contents+en.lrquestion.seo_slug)
+msgid "can-eavesdroppers-see-information-i-share"
+msgstr "can-eavesdroppers-see-information-i-share"
+
+#: http//localhost/tbb/tbb-32/
+#: (content/tbb/tbb-32/contents+en.lrquestion.title)
+msgid "Can I set Tor Browser as my default browser?"
+msgstr "Get ég stillt Tor-vafrann sem sjálfgefinn netvafra?"
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"Please make sure your clock is set accurately, including the correct "
+"timezone. Then restart Tor."
+msgstr ""
+
+#: http//localhost/faq/faq-2/
+#: (content/faq/faq-2/contents+en.lrquestion.seo_slug)
+msgid "can-tor-help-users-access-website"
+msgstr "can-tor-help-users-access-website"
+
+#: http//localhost/tbb/tbb-1/
+#: (content/tbb/tbb-1/contents+en.lrquestion.description)
+msgid ""
+"If your issue is not listed, please file a <mark><a "
+"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
+" experiencing."
+msgstr ""
+
+#: http//localhost/misc/misc-5/
+#: (content/misc/misc-5/contents+en.lrquestion.description)
+msgid "We are so sorry, but you have been infected with malware."
+msgstr ""
+
+#: http//localhost/tbb/tbb-7/
+#: (content/tbb/tbb-7/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-2/
+#: (content/censorship/censorship-2/contents+en.lrquestion.description)
+msgid ""
+"The best success we've had in getting sites to unblock Tor users is getting "
+"users to contact the site administrators directly."
+msgstr ""
+
+#: http//localhost/tbb/tbb-40/
+#: (content/tbb/tbb-40/contents+en.lrquestion.title)
+msgid "Does Tor Browser use a different circuit for each website?"
+msgstr ""
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid ""
+"Please note that some antivirus clients, like Kaspersky, may also be "
+"blocking Tor at the firewall level."
+msgstr ""
+
+#: http//localhost/gettor/gettor-3/
+#: (content/gettor/gettor-3/contents+en.lrquestion.title)
+msgid "To use GetTor via Twitter."
+msgstr "Að nota GetTor með Twitter."
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "* Run \"service tor reload\" (as root)."
+msgstr "* Keyrðu \"service tor reload\" (sem kerfisstjóri/root)."
+
+#: http//localhost/faq/faq-1/
+#: (content/faq/faq-1/contents+en.lrquestion.description)
+#: http//localhost/tbb/tbb-3/
+#: (content/tbb/tbb-3/contents+en.lrquestion.description)
+msgid "Tor Browser prevents people from knowing the websites you visit."
+msgstr ""
+
+#: http//localhost/tbb/tbb-16/
+#: (content/tbb/tbb-16/contents+en.lrquestion.description)
+msgid ""
+"If the outcome you want is simply to be able to access resources that are "
+"only available in one country, you may want to consider using a VPN instead "
+"of using Tor."
+msgstr ""
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "#RelayBandwidthRate 30 MBytes"
+msgstr "#RelayBandwidthRate 30 MBæti"
+
+#: http//localhost/tbb/tbb-4/
+#: (content/tbb/tbb-4/contents+en.lrquestion.description)
+msgid ""
+"A lot of work has been put into making the Tor Browser, including the use of"
+" extra patches to enhance privacy and security."
+msgstr ""
+
+#: http//localhost/https/https-1/
+#: (content/https/https-1/contents+en.lrquestion.description)
+msgid "<img class=\"card-img-top\" src=\"/static/images/image2.png\" alt=\"https\">"
+msgstr "<img class=\"card-img-top\" src=\"/static/images/image2.png\" alt=\"https\">"
+
+#: http//localhost/tbb/tbb-7/
+#: (content/tbb/tbb-7/contents+en.lrquestion.description)
+msgid ""
+"If you are unable to connect to an onion service, please see <a "
+"href=\"#onionservices-3\">I cannot reach X.onion!</a>"
+msgstr ""
+
+#: http//localhost/tbb/tbb-33/
+#: (content/tbb/tbb-33/contents+en.lrquestion.description)
+msgid ""
+"This means that your computer will not be used to route traffic for others."
+msgstr ""
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid ""
+"* After your relay connects to the network, it will try to determine whether"
+" the ports you configured are reachable from the outside."
+msgstr ""
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* English (en-US)"
+msgstr ""
+
+#: http//localhost/tbb/tbb-1/
+#: (content/tbb/tbb-1/contents+en.lrquestion.seo_slug)
+msgid "most-common-issues-latest-stable-tor-browser"
+msgstr "most-common-issues-latest-stable-tor-browser"
+
+#: http//localhost/misc/misc-3/
+#: (content/misc/misc-3/contents+en.lrquestion.description)
+msgid ""
+"We are always seeking more diversity in our funding sources, especially from"
+" foundations and individuals."
+msgstr ""
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid "###### Common log error #1: Proxy connection failure"
+msgstr ""
+
+#: http//localhost/misc/misc-3/
+#: (content/misc/misc-3/contents+en.lrquestion.description)
+msgid ""
+"We feel that talking openly about our funders and funding model is the best "
+"way to maintain trust with our community."
+msgstr ""
+
+#: http//localhost/tbb/tbb-9/
+#: (content/tbb/tbb-9/contents+en.lrquestion.seo_slug)
+msgid "using-tor-with-a-browser-besides-tor-browser"
+msgstr "using-tor-with-a-browser-besides-tor-browser"
+
+#: http//localhost/tbb/tbb-6/
+#: (content/tbb/tbb-6/contents+en.lrquestion.description)
+msgid ""
+"Unfortunately, there is no supported way to make Tor Browser your default "
+"browser."
+msgstr ""
+
+#: http//localhost/misc/misc-5/
+#: (content/misc/misc-5/contents+en.lrquestion.description)
+msgid ""
+"The Tor Project did not create this malware. The malware authors are asking "
+"you to download Tor Browser presumably to contact them anonymously with the "
+"ransom they're demanding from you."
+msgstr ""
+
+#: http//localhost/faq/faq-1/ (content/faq/faq-1/contents+en.lrquestion.title)
+#: http//localhost/tbb/tbb-3/ (content/tbb/tbb-3/contents+en.lrquestion.title)
+msgid ""
+"When I use Tor Browser, will anyone be able to tell which websites I visit?"
+msgstr ""
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.description)
+msgid ""
+"Selecting it will close all your tabs and windows, clear all private "
+"information such as cookies and browsing history, and use new Tor circuits "
+"for all connections."
+msgstr ""
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.description)
+msgid "##### New Identity"
+msgstr "##### Nýtt auðkenni"
+
+#: http//localhost/tbb/tbb-13/
+#: (content/tbb/tbb-13/contents+en.lrquestion.title)
+msgid "Does using Tor Browser protect other applications on my computer?"
+msgstr ""
+
+#: http//localhost/tbb/tbb-2/
+#: (content/tbb/tbb-2/contents+en.lrquestion.description)
+msgid ""
+"It is a fast and stable relay that remains the first one in your circuit for"
+" 2-3 months in order to protect against a known anonymity-breaking attack."
+msgstr ""
+
+#: http//localhost/tbb/tbb-42/
+#: (content/tbb/tbb-42/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-firefox-not-working-error"
+msgstr "tor-browser-firefox-not-working-error"
+
+#: http//localhost/tbb/tbb-31/
+#: (content/tbb/tbb-31/contents+en.lrquestion.seo_slug)
+msgid "which-platform-tor-browser-available"
+msgstr "which-platform-tor-browser-available"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* TorBrowser"
+msgstr ""
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "#Address noname.example.com"
+msgstr ""
+
+#: http//localhost/tbb/tbb-1/
+#: (content/tbb/tbb-1/contents+en.lrquestion.description)
+msgid ""
+"Whenever we release a new stable version of Tor Browser, we write a blog "
+"post that details its new features and known issues."
+msgstr ""
+
+#: http//localhost/misc/misc-1/
+#: (content/misc/misc-1/contents+en.lrquestion.description)
+msgid ""
+"The same protections that keep bad people from breaking Tor's anonymity also"
+" prevent us from tracking users."
+msgstr ""
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"If you’re having trouble connecting, please select the option to \"copy Tor "
+"log to clipboard.\""
+msgstr ""
+
+#: http//localhost/tbb/tbb-23/
+#: (content/tbb/tbb-23/contents+en.lrquestion.description)
+msgid ""
+"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
+"default search engine in Tor Browser."
+msgstr ""
+"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> er "
+"sjálfgefin leitarvél í Tor-vafranum."
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"2017-10-29 09:23:47.900 [NOTICE] Bootstrapped 5%: Connecting to directory "
+"server"
+msgstr ""
+
+#: http//localhost/onionservices/onionservices-1/
+#: (content/onionservices/onionservices-1/contents+en.lrquestion.title)
+msgid ""
+"I've heard about websites that are only accessible over Tor. What are these "
+"websites, and how can I access them?"
+msgstr ""
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* For Windows"
+msgstr "* Fyrir Windows"
+
+#: http//localhost/tbb/tbb-26/
+#: (content/tbb/tbb-26/contents+en.lrquestion.title)
+msgid "I'm having a problem with HTTPS Everywhere."
+msgstr "Ég á við vandamál að stríða með HTTPS-allsstaðar."
+
+#: http//localhost/tbb/tbb-39/
+#: (content/tbb/tbb-39/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-issues-facebook-twitter-websites"
+msgstr "tor-browser-issues-facebook-twitter-websites"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Korean (ko)"
+msgstr ""
+
+#: http//localhost/tbb/tbb-24/
+#: (content/tbb/tbb-24/contents+en.lrquestion.description)
+msgid ""
+"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
+"portal</a></mark>."
+msgstr ""
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"2017-10-29 09:24:08.900 [WARN] Proxy Client: unable to connect "
+"toxx..xxx..xxx.xx:xxxxx (\"general SOCKS server failure\")"
+msgstr ""
+
+#: http//localhost/misc/misc-10/
+#: (content/misc/misc-10/contents+en.lrquestion.seo_slug)
+msgid "does-tor-project-offer-hosting"
+msgstr "does-tor-project-offer-hosting"
+
+#: http//localhost/tbb/tbb-7/
+#: (content/tbb/tbb-7/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-2/
+#: (content/censorship/censorship-2/contents+en.lrquestion.description)
+msgid ""
+"By blocking Tor users, you are likely blocking people in repressive "
+"countries who want to use a free internet, journalists and researchers who "
+"want to protect themselves from discovery, whistleblowers, activists, and "
+"ordinary people who want to opt out of invasive third party tracking."
+msgstr ""
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.title)
+msgid ""
+"Is there a way to change the IP address that Tor Browser assigns me for a "
+"particular site?"
+msgstr ""
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"13-11-17 19:53:49.300 [WARN] 1 connections died in state connect()ing with "
+"SSL state (No SSL object)"
+msgstr ""
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Italiano (it)"
+msgstr ""
+
+#: http//localhost/misc/misc-11/
+#: (content/misc/misc-11/contents+en.lrquestion.description)
+msgid ""
+"Right now the path length is hard-coded at 3 plus the number of nodes in "
+"your path that are sensitive."
+msgstr ""
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* العربية (ar)"
+msgstr ""
+
+#: http//localhost/misc/misc-6/
+#: (content/misc/misc-6/contents+en.lrquestion.description)
+msgid "Tor doesn't keep any logs that could identify a particular user."
+msgstr ""
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "## Set your own contact info"
+msgstr "## Stilltu þínar eigin upplýsingar um tengiliði"
+
+#: http//localhost/misc/misc-14/
+#: (content/misc/misc-14/contents+en.lrquestion.description)
+msgid ""
+"Please see our <mark><a "
+"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">volunteer "
+"page</a></mark> for how to get involved!"
+msgstr ""
+
+#: http//localhost/https/https-1/
+#: (content/https/https-1/contents+en.lrquestion.title)
+msgid ""
+"When I'm using Tor, can eavesdroppers still see the information I share with"
+" websites, like login information and things I type into forms?"
+msgstr ""
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.description)
+msgid ""
+"Selecting it will cause the currently-active tab or window to be reloaded "
+"over a new Tor circuit."
+msgstr ""
+
+#: http//localhost/tbb/tbb-14/
+#: (content/tbb/tbb-14/contents+en.lrquestion.description)
+msgid ""
+"Tor Browser already comes installed with two add-ons — HTTPS Everywhere and "
+"NoScript — and adding anything else could deanonymize you."
+msgstr ""
+"Tor-vafrinn kemur með tvær viðbætur sem þegar er búið að setja upp — HTTPS-"
+"allstaðar og NoScript — og ef þú bætir við einhverju öðru er alltaf mögulegt"
+" að þú skemmir gagnaleynd þína."
+
+#: http//localhost/tbb/tbb-4/ (content/tbb/tbb-4/contents+en.lrquestion.title)
+msgid "Why is Tor Browser built from Firefox and not some other browser?"
+msgstr ""
+
+#: http//localhost/tbb/tbb-35/
+#: (content/tbb/tbb-35/contents+en.lrquestion.title)
+msgid "Can you get rid of all the captchas?"
+msgstr ""
+
+#: http//localhost/misc/misc-5/
+#: (content/misc/misc-5/contents+en.lrquestion.description)
+msgid ""
+"If this is your first introduction to Tor Browser, we understand that you "
+"might think we're bad people who enable even worse people."
+msgstr ""
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.description)
+msgid "$ deb http://deb.torproject.org/torproject.org <version> main"
+msgstr "$ deb http://deb.torproject.org/torproject.org <version> main"
+
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"19.11.2017 00:04:48.800 [WARN] Received NETINFO cell with skewed time "
+"(OR:xxx.xx.x.xx:xxxx): It seems that our clock is behind by 1 days, 0 hours,"
+" 1 minutes, or that theirs is ahead."
+msgstr ""
+
+#: http//localhost/operators/operators-7/
+#: (content/operators/operators-7/contents+en.lrquestion.description)
+msgid ""
+"Have a separate IP address for your exit relay, and don't route your own "
+"traffic through it."
+msgstr ""
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid "13-11-17 19:53:49.300 [WARN] 10 connections have failed:"
+msgstr ""
+
+#: http//localhost/tormobile/tormobile-5/
+#: (content/tormobile/tormobile-5/contents+en.lrquestion.title)
+msgid "When is Tor Browser for Android being released?"
+msgstr "Hvenær er Tor-vafri fyrir Android gefinn út?"
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.seo_slug)
+msgid "how-do-i-run-a-middle-or-guard-relay"
+msgstr "how-do-i-run-a-middle-or-guard-relay"
+
+#: http//localhost/misc/misc-15/
+#: (content/misc/misc-15/contents+en.lrquestion.description)
+msgid ""
+"You can find more information about donating on our <mark><a "
+"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+msgstr ""
+
+#: http//localhost/tbb/tbb-40/
+#: (content/tbb/tbb-40/contents+en.lrquestion.seo_slug)
+msgid "different-circuit-each-website"
+msgstr "different-circuit-each-website"
+
+#: http//localhost/misc/misc-9/
+#: (content/misc/misc-9/contents+en.lrquestion.description)
+msgid ""
+"A large portion of the features Vidalia offered have now been integrated "
+"into Tor Browser itself."
+msgstr ""
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.seo_slug)
+msgid "antivirus-blocking-tor"
+msgstr "antivirus-blocking-tor"
+
+#: http//localhost/censorship/censorship-7/
+#: (content/censorship/censorship-7/contents+en.lrquestion.description)
+msgid ""
+"See <mark><a href=\"#operators-6\">How do I run a bridge</a></mark> for "
+"instructions."
+msgstr ""
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* firefox.exe"
+msgstr "* firefox.exe"
+
+#: http//localhost/misc/misc-11/
+#: (content/misc/misc-11/contents+en.lrquestion.seo_slug)
+msgid "change-the-number-of-hops-tor-uses"
+msgstr "change-the-number-of-hops-tor-uses"
+
+#: http//localhost/misc/misc-7/
+#: (content/misc/misc-7/contents+en.lrquestion.description)
+msgid "No, we don't provide any online services."
+msgstr ""
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"11/1/2017 21:11:45 PM.300 [WARN] Failed to find node for hop 0 of our path. "
+"Discarding this circuit."
+msgstr ""
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"11/1/2017 21:11:43 PM.500 [NOTICE] Opening Socks listener on 127.0.0.1:9150"
+msgstr ""
+
+#: http//localhost/onionservices/onionservices-2/
+#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
+msgid ""
+"When accessing a website that uses an onion service, Tor Browser will show "
+"at the URL bar an icon of a little green onion displaying the state of your "
+"connection: secure and using an onion service."
+msgstr ""
+
+#: http//localhost/misc/misc-9/
+#: (content/misc/misc-9/contents+en.lrquestion.description)
+msgid "Vidalia is no longer maintained or supported."
+msgstr ""
+
+#: http//localhost/gettor/gettor-1/
+#: (content/gettor/gettor-1/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-3/
+#: (content/censorship/censorship-3/contents+en.lrquestion.description)
+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 that are"
+" less likely to be censored, such as Dropbox, Google Drive, and GitHub."
+msgstr ""
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "Next, exclude the following processes:"
+msgstr ""
+
+#: http//localhost/tbb/tbb-11/
+#: (content/tbb/tbb-11/contents+en.lrquestion.description)
+msgid ""
+"The default setting in the Windows installer also creates a shortcut for you"
+" on your Desktop, though be aware that you may have accidentally unticked "
+"the option to create a shortcut."
+msgstr ""
+
+#: http//localhost/gettor/gettor-2/
+#: (content/gettor/gettor-2/contents+en.lrquestion.title)
+msgid "To use GetTor via email."
+msgstr "Að nota GetTor með tölvupósti."
+
+#: http//localhost/tbb/tbb-1/ (content/tbb/tbb-1/contents+en.lrquestion.title)
+msgid ""
+"What are the most common issues with the latest stable version of Tor "
+"Browser?"
+msgstr ""
+
+#: http//localhost/tormessenger/tormessenger-1/
+#: (content/tormessenger/tormessenger-1/contents+en.lrquestion.description)
+msgid ""
+"No. After eleven beta releases, we discontinued support of <a "
+"href=\"https://blog.torproject.org/sunsetting-tor-messenger\">Tor "
+"Messenger</a>."
+msgstr ""
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"If you see lines like this in your Tor log, it means your system clock is "
+"incorrect."
+msgstr ""
+
+#: http//localhost/tormessenger/tormessenger-1/
+#: (content/tormessenger/tormessenger-1/contents+en.lrquestion.description)
+msgid ""
+"We still believe in Tor's ability to be used in a messaging app, but we "
+"don't have the resources to make it happen right now."
+msgstr ""
+
+#: http//localhost/gettor/gettor-2/
+#: (content/gettor/gettor-2/contents+en.lrquestion.seo_slug)
+msgid "to-use-gettor-via-email"
+msgstr "to-use-gettor-via-email"
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "* Run \"apt-get install tor obfs4proxy\" (as root)."
+msgstr "* Keyrðu \"apt-get tor obfs4proxy\" (sem kerfisstjóri/root)."
+
+#: http//localhost/censorship/censorship-6/
+#: (content/censorship/censorship-6/contents+en.lrquestion.seo_slug)
+msgid "is-my-network-censored"
+msgstr "is-my-network-censored"
+
+#: http//localhost/tormobile/tormobile-3/
+#: (content/tormobile/tormobile-3/contents+en.lrquestion.description)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+
+#: http//localhost/tbb/tbb-15/
+#: (content/tbb/tbb-15/contents+en.lrquestion.title)
+msgid "Can I download Tor Browser for ChromeOS?"
+msgstr ""
+
+#: http//localhost/tbb/tbb-2/
+#: (content/tbb/tbb-2/contents+en.lrquestion.description)
+msgid "That is normal Tor behavior."
+msgstr "Þetta er eðlileg hegðun Tor-vafrans."
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "Removing Tor Browser from your system is simple:"
+msgstr "Að fjarlægja Tor-vafrann úr tölvunni þinni er einfalt:"
+
+#: http//localhost/tormobile/tormobile-5/
+#: (content/tormobile/tormobile-5/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-for-android"
+msgstr "tor-browser-for-android"
+
+#: http//localhost/tbb/tbb-11/
+#: (content/tbb/tbb-11/contents+en.lrquestion.seo_slug)
+msgid "cannot-find-tor-on-windows"
+msgstr "cannot-find-tor-on-windows"
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.description)
+msgid ""
+"Tor Browser will prompt you to update the software once a new version has "
+"been released."
+msgstr ""
+
+#: http//localhost/faq/faq-3/
+#: (content/faq/faq-3/contents+en.lrquestion.description)
+msgid ""
+"Tor Browser already comes installed with two add-ons — <mark><a "
+"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
+"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
+" anything else could deanonymize you."
+msgstr ""
+"Tor-vafrinn kemur með tvær viðbætur sem þegar er búið að setja upp — "
+"<mark><a href=\"https://www.eff.org/https-everywhere\">HTTPS-"
+"allstaðar</a></mark> og <mark><a "
+"href=\"https://noscript.net/\">NoScript</a></mark> — og ef þú bætir við "
+"einhverju öðru er alltaf mögulegt að þú skemmir gagnaleynd þína."
+
+#: http//localhost/gettor/ (content/gettor/contents+en.lrtopic.title)
+#: (content/gettor/contents+en.lrtopic.seo_slug)
+msgid "GetTor"
+msgstr "GetTor"
+
+#: http//localhost/tbb/tbb-32/
+#: (content/tbb/tbb-32/contents+en.lrquestion.description)
+msgid ""
+"The Tor Browser works hard to isolate itself from the rest of your system, "
+"and the steps for making it the default browser are unreliable."
+msgstr ""
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid ""
+"Look for a log entry in /var/log/tor/notices.log such as \"Self-testing "
+"indicates your ORPort is reachable from the outside. Excellent.\""
+msgstr ""
+
+#: http//localhost/https/https-1/
+#: (content/https/https-1/contents+en.lrquestion.description)
+msgid ""
+"However, information sent unencrypted over the internet using plain HTTP can"
+" still be intercepted by exit relay operators or anyone observing the "
+"traffic between your exit relay and your destination website."
+msgstr ""
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"11/1/2017 21:11:44 PM.300 [NOTICE] Bootstrapped 80%: Connecting to the Tor "
+"network"
+msgstr ""
+
+#: http//localhost/onionservices/onionservices-2/
+#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
+msgid ""
+"Onion services are also relied on for metadata-free chat and file sharing, "
+"safer interaction between journalists and their sources like with <mark><a "
+"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
+"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
+"updates, and more secure ways to reach popular websites like <mark><a "
+"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
+"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+msgstr ""
+
+#: http//localhost/onionservices/onionservices-1/
+#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
+msgid ""
+"For example, the DuckDuckGo onion is <a "
+"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+msgstr ""
+
+#: http//localhost/tormobile/tormobile-1/
+#: (content/tormobile/tormobile-1/contents+en.lrquestion.seo_slug)
+msgid "run-tor-on-android"
+msgstr "run-tor-on-android"
+
+#: http//localhost/faq/faq-5/
+#: (content/faq/faq-5/contents+en.lrquestion.description)
+#: http//localhost/misc/misc-13/
+#: (content/misc/misc-13/contents+en.lrquestion.description)
+msgid ""
+"Generally speaking, we don't recommend using a VPN with Tor unless you're an"
+" advanced user who knows how to configure both in a way that doesn't "
+"compromise your privacy."
+msgstr ""
+
+#: http//localhost/onionservices/onionservices-1/
+#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
+msgid ""
+"Websites that are only accessible over Tor are called \"onions\" and end in "
+"the TLD .onion."
+msgstr ""
+
+#: http//localhost/misc/misc-11/
+#: (content/misc/misc-11/contents+en.lrquestion.description)
+msgid ""
+"Also, using paths longer than 3 could harm anonymity, first because it "
+"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
+"of security</a></mark> attacks easier, and second because it could act as an"
+" identifier if only a small number of users have the same path length as "
+"you."
+msgstr ""
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.title)
+msgid "How do I run a obfs4 bridge on Debian?"
+msgstr "Hvernig get ég keyrt obfs4-brú á Debian?"
+
+#: http//localhost/tbb/tbb-30/
+#: (content/tbb/tbb-30/contents+en.lrquestion.seo_slug)
+msgid "website-locks-torbrowser-out"
+msgstr "website-locks-torbrowser-out"
+
+#: http//localhost/gettor/gettor-3/
+#: (content/gettor/gettor-3/contents+en.lrquestion.description)
+#: http//localhost/gettor/gettor-4/
+#: (content/gettor/gettor-4/contents+en.lrquestion.description)
+msgid "* Linux"
+msgstr "* Linux"
+
+#: http//localhost/tbb/tbb-11/
+#: (content/tbb/tbb-11/contents+en.lrquestion.description)
+msgid ""
+"If you don't remember what this destination was, it's most likely your "
+"Downloads or Desktop folder."
+msgstr ""
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"13-11-17 19:53:49.300 [WARN] 9 connections died in state handshaking (TLS) "
+"with SSL state SSLv2/v3 read server hello A in HANDSHAKE"
+msgstr ""
+
+#: http//localhost/tbb/tbb-7/
+#: (content/tbb/tbb-7/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-2/
+#: (content/censorship/censorship-2/contents+en.lrquestion.description)
+msgid ""
+"Sometimes websites will block Tor users because they can't tell the "
+"difference between the average Tor user and automated traffic."
+msgstr ""
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.description)
+msgid "$ lsb_release -c"
+msgstr "$ lsb_release -c"
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.seo_slug)
+msgid "uninstall-tor-browser"
+msgstr "uninstall-tor-browser"
+
+#: http//localhost/tbb/tbb-4/
+#: (content/tbb/tbb-4/contents+en.lrquestion.description)
+msgid ""
+"Tor Browser is a modified version of Firefox specifically designed for use "
+"with Tor."
+msgstr ""
+
+#: http//localhost/gettor/gettor-2/
+#: (content/gettor/gettor-2/contents+en.lrquestion.description)
+msgid ""
+"Write your operating system (such as windows, MacOS (OS X), or linux) in the"
+" body of the message and send."
+msgstr ""
+
+#: http//localhost/tbb/tbb-6/ (content/tbb/tbb-6/contents+en.lrquestion.title)
+msgid "Can I make Tor Browser my default browser?"
+msgstr "Get ég gert Tor-vafrann að sjálfgefnum netvafra?"
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid ""
+"For the most in-depth resource on running a relay, see the <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
+"Relay Guide</a></mark>."
+msgstr ""
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid "##### Common log error #2: Can’t reach guard relays"
+msgstr ""
+
+#: http//localhost/censorship/censorship-7/
+#: (content/censorship/censorship-7/contents+en.lrquestion.description)
+msgid ""
+"Setting up an obfsproxy bridge requires an additional software package and "
+"additional configurations."
+msgstr ""
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.description)
+msgid ""
+"* As root, add the following lines to /etc/apt/sources.list. Use the version"
+" you found in the previous step for <version>."
+msgstr ""
+
+#: http//localhost/onionservices/onionservices-2/
+#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
+msgid ""
+"And if you're accessing a website with https and onion service, it will show"
+" an icon of a green onion and a padlock."
+msgstr ""
+
+#: http//localhost/https/https-1/
+#: (content/https/https-1/contents+en.lrquestion.description)
+msgid ""
+"<h4 class=\"card-title\">If you are using HTTPS, your website URL will begin"
+" with \"https://\".</h4>"
+msgstr ""
+
+#: http//localhost/tormobile/tormobile-3/
+#: (content/tormobile/tormobile-3/contents+en.lrquestion.description)
+msgid ""
+"<mark><a href=\"https://blog.torproject.org/tor-heart-onion-browser-and-"
+"more-ios-tor\">Learn more about Onion Browser</a></mark>."
+msgstr ""
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "Nickname ididnteditheconfig"
+msgstr ""
+
+#: http//localhost/misc/misc-6/
+#: (content/misc/misc-6/contents+en.lrquestion.seo_slug)
+msgid "does-tor-keep-logs"
+msgstr "does-tor-keep-logs"
+
+#: http//localhost/tbb/tbb-7/
+#: (content/tbb/tbb-7/contents+en.lrquestion.description)
+msgid "Thank you.\""
+msgstr "Takk fyrir.\""
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* 日本語 (ja)"
+msgstr ""
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.description)
+msgid "##### New Tor Circuit for this Site"
+msgstr "##### Ný Tor-rás fyrir þetta vefsvæði"
+
+#: http//localhost/tbb/tbb-23/
+#: (content/tbb/tbb-23/contents+en.lrquestion.title)
+msgid ""
+"What search engine comes with Tor Browser and how does it protect my "
+"privacy?"
+msgstr ""
+
+#: http//localhost/tbb/tbb-20/
+#: (content/tbb/tbb-20/contents+en.lrquestion.description)
+#: http//localhost/connecting/connecting-1/
+#: (content/connecting/connecting-1/contents+en.lrquestion.description)
+msgid "Please make sure your system clock and timezone are set accurately."
+msgstr ""
+
+#: http//localhost/tbb/tbb-5/
+#: (content/tbb/tbb-5/contents+en.lrquestion.description)
+msgid ""
+"You can certainly use another browser while you are also using Tor Browser."
+msgstr ""
+
+#: http//localhost/onionservices/onionservices-3/
+#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
+msgid ""
+"If you cannot reach the onion service you desire, make sure that you have "
+"entered the 16-character or, the newest format, 56-character onion address "
+"correctly: even a small mistake will stop Tor Browser from being able to "
+"reach the site."
+msgstr ""
+
+#: http//localhost/censorship/
+#: (content/censorship/contents+en.lrtopic.seo_slug)
+msgid "censorship"
+msgstr "ritskoðun"
+
+#: http//localhost/misc/misc-2/
+#: (content/misc/misc-2/contents+en.lrquestion.title)
+msgid "Why don't you prevent bad people from doing bad things when using Tor?"
+msgstr ""
+
+#: http//localhost/misc/misc-5/
+#: (content/misc/misc-5/contents+en.lrquestion.description)
+msgid ""
+"The Tor Project does not support or condone the use of our software for "
+"malicious purposes."
+msgstr ""
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.description)
+msgid "* Determine your Ubuntu version by running the following command:"
+msgstr ""
+
+#: http//localhost/faq/faq-4/
+#: (content/faq/faq-4/contents+en.lrquestion.description)
+msgid ""
+"Tor Browser is currently available on <mark><a "
+"href=\"https://www.torproject.org/download/download-"
+"easy.html.en#windows\">Windows</a></mark>, <mark><a "
+"href=\"https://www.torproject.org/download/download-"
+"easy.html.en#linux\">Linux</a></mark> and <mark><a "
+"href=\"https://www.torproject.org/download/download-easy.html.en#mac\">macOS"
+" (OS X)</a></mark>."
+msgstr ""
+
+#: http//localhost/censorship/censorship-1/
+#: (content/censorship/censorship-1/contents+en.lrquestion.seo_slug)
+msgid "our-website-is-blocked-by-a-censor"
+msgstr "our-website-is-blocked-by-a-censor"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "Finally, restart Tor Browser."
+msgstr "Að lokum skaltu endurræsa Tor-vafrann."
+
+#: http//localhost/connecting/ (content/connecting/contents+en.lrtopic.title)
+msgid "Connecting To Tor"
+msgstr "Tengjast við Tor-netið"
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid ""
+"* Note that your operating system’s standard \"Uninstall\" utility is not "
+"used."
+msgstr ""
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+msgid ""
+"When it confirms that it's reachable, it will upload a \"server descriptor\""
+" to the directory authorities to let clients know what address, ports, keys,"
+" etc your relay is using."
+msgstr ""
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "ContactInfo 0xFFFFFFFF Random Person <nobody AT example dot com>"
+msgstr ""
+
+#: http//localhost/misc/misc-9/
+#: (content/misc/misc-9/contents+en.lrquestion.title)
+msgid "I'm having a problem updating or using Vidalia."
+msgstr "Ég á við vandamál að stríða með að uppfæra eða nota Vidalia."
+
+#: http//localhost/tbb/tbb-20/
+#: (content/tbb/tbb-20/contents+en.lrquestion.description)
+#: http//localhost/connecting/connecting-1/
+#: (content/connecting/connecting-1/contents+en.lrquestion.description)
+msgid ""
+"One of the most common issues that causes connection errors in Tor Browser "
+"is an incorrect system clock."
+msgstr ""
+
+#: http//localhost/tbb/tbb-2/ (content/tbb/tbb-2/contents+en.lrquestion.title)
+msgid "Why is the first IP address in my relay circuit always the same?"
+msgstr ""
+
+#: http//localhost/tbb/tbb-31/
+#: (content/tbb/tbb-31/contents+en.lrquestion.description)
+msgid ""
+"For Android, The Guardian Project maintains the Tor-powered apps Orbot and "
+"Orfox."
+msgstr ""
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"19.11.2017 00:04:48.000 [NOTICE] Bootstrapped 5%: Connecting to directory "
+"server"
+msgstr ""
+
+#: http//localhost/tbb/tbb-30/
+#: (content/tbb/tbb-30/contents+en.lrquestion.description)
+msgid ""
+"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 ""
+
+#: http//localhost/connecting/connecting-1/
+#: (content/connecting/connecting-1/contents+en.lrquestion.description)
+msgid ""
+"If this doesn't fix the problem, see the Troubleshooting page on the "
+"<mark><a href=\"https://tb-manual.torproject.org/en-"
+"US/troubleshooting.html\">Tor Browser manual</a></mark>."
+msgstr ""
+
+#: http//localhost/tbb/tbb-30/
+#: (content/tbb/tbb-30/contents+en.lrquestion.description)
+msgid ""
+"You may be able to avoid this scenario if your provider offers 2-factor "
+"authentication, which is a much better security option than IP-based "
+"reputations."
+msgstr ""
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.title)
+msgid ""
+"My antivirus or malware protection is blocking me from accessing Tor "
+"Browser."
+msgstr ""
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid ""
+"If you don't see this message, it means that your relay is not reachable "
+"from the outside."
+msgstr ""
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "DirPort 9030"
+msgstr "DirPort 9030"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* obfs4proxy (if you use bridges)"
+msgstr "* obfs4proxy (ef þú notar brýr)"
+
+#: http//localhost/tbb/tbb-5/
+#: (content/tbb/tbb-5/contents+en.lrquestion.description)
+msgid ""
+"Be careful when switching back and forth between Tor and a less safe "
+"browser, because you may accidentally use the other browser for something "
+"you intended to do using Tor."
+msgstr ""
+
+#: http//localhost/https/https-1/
+#: (content/https/https-1/contents+en.lrquestion.description)
+msgid "<div class=\"card-body\">"
+msgstr "<div class=\"card-body\">"
+
+#: http//localhost/connecting/connecting-3/
+#: (content/connecting/connecting-3/contents+en.lrquestion.seo_slug)
+msgid "cannot-reach-x-onion"
+msgstr "cannot-reach-x-onion"
+
+#: http//localhost/misc/misc-3/
+#: (content/misc/misc-3/contents+en.lrquestion.title)
+msgid "Who funds Tor?"
+msgstr "Hver fjármagnar Tor?"
+
+#: http//localhost/tbb/tbb-24/
+#: (content/tbb/tbb-24/contents+en.lrquestion.seo_slug)
+msgid "problem-with-duckduckgo"
+msgstr "problem-with-duckduckgo"
+
+#: http//localhost/tbb/tbb-23/
+#: (content/tbb/tbb-23/contents+en.lrquestion.seo_slug)
+msgid "search-engine-tor-browser"
+msgstr "search-engine-tor-browser"
+
+#: http//localhost/tbb/tbb-36/
+#: (content/tbb/tbb-36/contents+en.lrquestion.title)
+msgid "Can I run multiple instances of Tor Browser?"
+msgstr "Get ég keyrt mörg tilvik af Tor-vafranum?"
+
+#: http//localhost/tbb/tbb-25/
+#: (content/tbb/tbb-25/contents+en.lrquestion.description)
+msgid ""
+"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
+"FAQ</a></mark>."
+msgstr ""
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid ""
+"You should re-check your firewalls, check that the IP and ports you "
+"specified in your torrc are correct, etc."
+msgstr ""
+
+#: http//localhost/onionservices/onionservices-2/
+#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
+msgid ""
+"Onion services allow people to browse but also to publish anonymously, "
+"including publishing anonymous websites."
+msgstr ""
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.seo_slug)
+msgid "need-tor-browser-language-not-english"
+msgstr "need-tor-browser-language-not-english"
+
+#: http//localhost/tormobile/tormobile-5/
+#: (content/tormobile/tormobile-5/contents+en.lrquestion.description)
+msgid ""
+"We are currently working on Tor Browser for Android, and you may see alpha "
+"releases appear over the coming months."
+msgstr ""
+
+#: http//localhost/gettor/gettor-3/
+#: (content/gettor/gettor-3/contents+en.lrquestion.seo_slug)
+msgid "to-use-gettor-via-twitter"
+msgstr "to-use-gettor-via-twitter"
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.description)
+msgid ""
+"* Add the gpg key used to sign the packages by running the following "
+"commands:"
+msgstr ""
+
+#: http//localhost/gettor/gettor-3/
+#: (content/gettor/gettor-3/contents+en.lrquestion.description)
+#: http//localhost/gettor/gettor-4/
+#: (content/gettor/gettor-4/contents+en.lrquestion.description)
+msgid "* MacOS (OS X)"
+msgstr "* MacOS (OS X)"
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"If you see lines like these in your Tor log, it means your Tor failed to "
+"connect to the first node in the Tor circuit."
+msgstr ""
+
+#: http//localhost/tormessenger/tormessenger-1/
+#: (content/tormessenger/tormessenger-1/contents+en.lrquestion.description)
+msgid ""
+"Do you? <mark><a "
+"href=\"https://www.torproject.org/about/contact.html.en\">Contact "
+"us</a></mark>."
+msgstr ""
+
+#: http//localhost/gettor/gettor-1/
+#: (content/gettor/gettor-1/contents+en.lrquestion.seo_slug)
+msgid "how-to-download-tor-if-torproject-org-is-blocked"
+msgstr "how-to-download-tor-if-torproject-org-is-blocked"
+
+#: http//localhost/tbb/tbb-1/
+#: (content/tbb/tbb-1/contents+en.lrquestion.description)
+msgid ""
+"If you started having issues with your Tor Browser after an update, check "
+"out <mark><a "
+"href=\"https://blog.torproject.org\">blog.torproject.org</a></mark> for the "
+"most recent stable Tor Browser post to see if your issue is listed."
+msgstr ""
+
+#: http//localhost/misc/ (content/misc/contents+en.lrtopic.title)
+msgid "Misc"
+msgstr "Ýmislegt"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* obfs4proxy.exe (if you use bridges)"
+msgstr "* obfs4proxy.exe (ef þú notar brýr)"
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid ""
+"After a few hours (to give it enough time to propagate), you can query "
+"<mark><a "
+"href=\"https://metrics.torproject.org/rs.html#search\">Metrics</a></mark> to"
+" see whether your relay has successfully registered in the network."
+msgstr ""
+
+#: http//localhost/gettor/gettor-2/
+#: (content/gettor/gettor-2/contents+en.lrquestion.description)
+msgid ""
+"GetTor will respond with an email containing links from which you can "
+"download Tor Browser, the cryptographic signature (needed for <mark><a "
+"href=\"https://www.torproject.org/docs/verifying-"
+"signatures.html.en\">verifying the download</a></mark>), the fingerprint of "
+"the key used to make the signature, and the package’s checksum."
+msgstr ""
+
+#: http//localhost/https/https-1/
+#: (content/https/https-1/contents+en.lrquestion.description)
+msgid "<div class=\"card\">"
+msgstr "<div class=\"card\">"
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.title)
+msgid "How do I make sure that I'm using the correct packages on Ubuntu?"
+msgstr ""
+
+#: http//localhost/tormobile/tormobile-2/
+#: (content/tormobile/tormobile-2/contents+en.lrquestion.description)
+msgid ""
+"The Guardian Project maintains Tor (and other privacy applications) on "
+"Android. More info can be found on the <mark><a "
+"href=\"https://guardianproject.info/\">Guardian Project's "
+"website</a></mark>."
+msgstr ""
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.description)
+msgid ""
+"Other open tabs and windows from the same website will use the new circuit "
+"as well once they are reloaded."
+msgstr ""
+
+#: http//localhost/https/https-1/
+#: (content/https/https-1/contents+en.lrquestion.description)
+msgid "</div>"
+msgstr "</div>"
+
+#: http//localhost/tormessenger/tormessenger-1/
+#: (content/tormessenger/tormessenger-1/contents+en.lrquestion.seo_slug)
+msgid "tor-project-app-for-private-chat"
+msgstr "tor-project-app-for-private-chat"
+
+#: http//localhost/operators/operators-7/
+#: (content/operators/operators-7/contents+en.lrquestion.description)
+msgid ""
+"Instead, consider running your exit relay in a commercial facility that is "
+"supportive of Tor."
+msgstr ""
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid "Please try connecting with bridges, and that should fix the problem."
+msgstr ""
+
+#: http//localhost/tormobile/tormobile-1/
+#: (content/tormobile/tormobile-1/contents+en.lrquestion.description)
+msgid ""
+"Orfox is for web browsing, and Orbot can route other apps on your Android "
+"phone over the Tor network."
+msgstr ""
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "If it hasn't, re-check firewalls, IP and ports again."
+msgstr ""
+
+#: http//localhost/tbb/tbb-12/
+#: (content/tbb/tbb-12/contents+en.lrquestion.description)
+msgid ""
+"Flash is disabled in Tor Browser, and we recommend you do not enable it."
+msgstr ""
+
+#: http//localhost/connecting/connecting-3/
+#: (content/connecting/connecting-3/contents+en.lrquestion.description)
+msgid ""
+"If you cannot reach the onion service you desire, 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 ""
+
+#: http//localhost/tbb/tbb-18/
+#: (content/tbb/tbb-18/contents+en.lrquestion.description)
+msgid ""
+"There is something called the <mark><a "
+"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
+"Browser is not officially supported."
+msgstr ""
+
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.seo_slug)
+msgid "how-do-i-run-an-exit"
+msgstr "how-do-i-run-an-exit"
+
+#: http//localhost/ (content/contents+en.lrshowcase.title)
+msgid "How can we help?"
+msgstr "Hvernig getum við aðstoðað?"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Nederlands (nl)"
+msgstr ""
+
+#: http//localhost/tbb/tbb-4/
+#: (content/tbb/tbb-4/contents+en.lrquestion.description)
+msgid ""
+"<mark><a "
+"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
+"about the design of Tor Browser</a></mark>."
+msgstr ""
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid ""
+"We currently offer <mark><a "
+"href=\"https://www.torproject.org/projects/torbrowser.html.en\">Tor "
+"Browser</a></mark> in the following languages:"
+msgstr ""
+"Í dag bjóðum við <mark><a "
+"href=\"https://www.torproject.org/projects/torbrowser.html.en\">Tor-"
+"vafrann</a></mark> á eftirfarandi tungumálum:"
+
+#: http//localhost/tormessenger/
+#: (content/tormessenger/contents+en.lrtopic.title)
+msgid "Tor Messenger"
+msgstr "Tor Messenger"
+
+#: http//localhost/tbb/tbb-33/
+#: (content/tbb/tbb-33/contents+en.lrquestion.seo_slug)
+msgid "running-tor-browser-make-me-relay"
+msgstr "running-tor-browser-make-me-relay"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Español (es-ES)"
+msgstr ""
+
+#: http//localhost/tbb/tbb-19/
+#: (content/tbb/tbb-19/contents+en.lrquestion.seo_slug)
+msgid "cannot-connect-to-tor-browser-network-censored"
+msgstr "cannot-connect-to-tor-browser-network-censored"
+
+#: http//localhost/tbb/tbb-30/
+#: (content/tbb/tbb-30/contents+en.lrquestion.description)
+msgid "Contact your provider and ask them if they provide 2FA."
+msgstr ""
+
+#: http//localhost/misc/misc-2/
+#: (content/misc/misc-2/contents+en.lrquestion.seo_slug)
+msgid "prevent-bad-people-doing-bad-things-with-tor"
+msgstr "prevent-bad-people-doing-bad-things-with-tor"
+
+#: http//localhost/faq/ (content/faq/contents+en.lrtopic.title)
+msgid "Most Frequently Asked Questions"
+msgstr "Algengustu spurningar - FAQ"
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.title)
+msgid "How do I uninstall Tor Browser?"
+msgstr "Hvernig fjarlægir maður Tor-vafrann?"
+
+#: http//localhost/tbb/tbb-11/
+#: (content/tbb/tbb-11/contents+en.lrquestion.title)
+msgid ""
+"I downloaded and installed Tor Browser for Windows, but now I can't find it."
+msgstr ""
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "* Empty your Trash."
+msgstr "* Tæmdu ruslið"
+
+#: http//localhost/tormobile/tormobile-3/
+#: (content/tormobile/tormobile-3/contents+en.lrquestion.title)
+msgid "Can I run Tor on an iOS device?"
+msgstr "Get ég keyrt Tor á iOS-tæki?"
+
+#: http//localhost/gettor/gettor-3/
+#: (content/gettor/gettor-3/contents+en.lrquestion.description)
+#: http//localhost/gettor/gettor-4/
+#: (content/gettor/gettor-4/contents+en.lrquestion.description)
+msgid "* Windows"
+msgstr "* Windows"
+
+#: http//localhost/tormobile/tormobile-4/
+#: (content/tormobile/tormobile-4/contents+en.lrquestion.title)
+msgid "How do I run Tor on Windows Phone?"
+msgstr "Hvernig keyri ég Tor á Windows Phone?"
+
+#: http//localhost/tbb/tbb-30/
+#: (content/tbb/tbb-30/contents+en.lrquestion.title)
+msgid ""
+"A website (bank, email provider, etc..) locks me out whenever I use Tor, "
+"what can I do?"
+msgstr ""
+
+#: http//localhost/misc/misc-14/
+#: (content/misc/misc-14/contents+en.lrquestion.title)
+msgid "How do I volunteer with Tor Project?"
+msgstr ""
+
+#: http//localhost/tbb/tbb-5/
+#: (content/tbb/tbb-5/contents+en.lrquestion.description)
+msgid ""
+"However, you should know that the privacy properties of Tor Browser will not"
+" be present in the other browser."
+msgstr ""
+
+#: http//localhost/faq/faq-4/
+#: (content/faq/faq-4/contents+en.lrquestion.description)
+msgid ""
+"There is no official version of Tor for iOS yet, though we recommend "
+"<mark><a href=\"https://onionbrowser.com/\">Onion Browser</a></mark>."
+msgstr ""
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "Enabling ntpd is suggested."
+msgstr ""
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.seo_slug)
+msgid "change-ip-address"
+msgstr "change-ip-address"
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.description)
+msgid "* Run the following commands to install tor and check its signatures:"
+msgstr ""
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"2017-10-29 09:24:08.900 [WARN] Proxy Client: unable to connect to "
+"xx..xxx..xxx.xx:xxxxx (\"general SOCKS server failure\")"
+msgstr ""
+
+#: http//localhost/gettor/gettor-2/
+#: (content/gettor/gettor-2/contents+en.lrquestion.description)
+msgid ""
+"You may be offered a choice of \"32-bit\" or \"64-bit\" software: this "
+"depends on the model of the computer you are using; consult documentation "
+"about your computer to find out more."
+msgstr ""
+
+#: http//localhost/tbb/tbb-2/
+#: (content/tbb/tbb-2/contents+en.lrquestion.description)
+msgid ""
+"For more information on how guard relays work, see this <mark><a "
+"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
+"guards."
+msgstr ""
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.title)
+msgid "How do I run a middle or guard relay on Debian?"
+msgstr ""
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid ""
+"Most antivirus or malware protection allows the user to \"whitelist\" "
+"certain processes that would otherwise be blocked."
+msgstr ""
+
+#: http//localhost/tbb/tbb-6/
+#: (content/tbb/tbb-6/contents+en.lrquestion.seo_slug)
+msgid "make-tor-browser-default-browser"
+msgstr "make-tor-browser-default-browser"
+
+#: http//localhost/tbb/tbb-42/
+#: (content/tbb/tbb-42/contents+en.lrquestion.description)
+msgid ""
+"If you are running an anti-virus, please see <mark><a "
+"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
+"protection is blocking me from accessing Tor Browser</a></mark>, it is "
+"common for anti-virus / anti-malware software to cause this type of issue."
+msgstr ""
+
+#: http//localhost/tbb/tbb-26/
+#: (content/tbb/tbb-26/contents+en.lrquestion.seo_slug)
+msgid "problem-with-https-everywhere"
+msgstr "problem-with-https-everywhere"
+
+#: http//localhost/censorship/ (content/censorship/contents+en.lrtopic.title)
+msgid "Censorship"
+msgstr "Ritskoðun"
+
+#: http//localhost/tbb/tbb-7/
+#: (content/tbb/tbb-7/contents+en.lrquestion.description)
+msgid ""
+"Please take a strong stance in favor of digital privacy and internet "
+"freedom, and allow Tor users access to xyz.com."
+msgstr ""
+
+#: http//localhost/tbb/tbb-20/
+#: (content/tbb/tbb-20/contents+en.lrquestion.title)
+#: http//localhost/connecting/connecting-1/
+#: (content/connecting/connecting-1/contents+en.lrquestion.title)
+msgid ""
+"Tor Browser won't connect, but it doesn’t seem to be an issue with "
+"censorship."
+msgstr ""
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.description)
+msgid ""
+"<img class=\"\" src=\"/static/images/update-tb.png\" alt=\"Check for Tor "
+"Browser Update\">"
+msgstr ""
+"<img class=\"\" src=\"/static/images/update-tb.png\" alt=\"Check for Tor "
+"Browser Update\">"
+
+#: http//localhost/onionservices/onionservices-1/
+#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
+msgid ""
+"The addresses must be shared with you by the website host, as onions are not"
+" indexed in search engines in the typical way that vanilla websites are."
+msgstr ""
+
+#: http//localhost/https/https-1/
+#: (content/https/https-1/contents+en.lrquestion.description)
+msgid ""
+"If the site you are visiting uses HTTPS, then the traffic leaving your exit "
+"relay will be encrypted, and won't be visible to eavesdroppers."
+msgstr ""
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.description)
+msgid ""
+"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
+"Browser Menu\">"
+msgstr ""
+"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
+"Browser Menu\">"
+
+#: http//localhost/operators/operators-7/
+#: (content/operators/operators-7/contents+en.lrquestion.description)
+msgid ""
+"For that reason, it's best not to run your exit relay in your home or using "
+"your home internet connection."
+msgstr ""
+
+#: http//localhost/censorship/censorship-7/
+#: (content/censorship/censorship-7/contents+en.lrquestion.title)
+msgid "What is a bridge?"
+msgstr "Hvað er brú?"
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "ORPort 9001"
+msgstr "ORPort 9001"
+
+#: http//localhost/tbb/tbb-13/
+#: (content/tbb/tbb-13/contents+en.lrquestion.description)
+msgid ""
+"Any other application on your system (including other browsers) will not "
+"have their connections routed over the Tor network, and will not be "
+"protected."
+msgstr ""
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid ""
+"* You should also see the message \"Registered server transport 'obfs4'\" "
+"indicating that obfs4proxy is functional."
+msgstr ""
+
+#: http//localhost/tbb/tbb-39/
+#: (content/tbb/tbb-39/contents+en.lrquestion.description)
+msgid ""
+"The simplest fix is to click on the \"onion menu,\" then click on the "
+"security slider."
+msgstr ""
+
+#: http//localhost/misc/misc-2/
+#: (content/misc/misc-2/contents+en.lrquestion.description)
+msgid ""
+"Tor is designed to defend human rights and privacy by preventing anyone from"
+" censoring things, even us."
+msgstr ""
+
+#: http//localhost/operators/operators-7/
+#: (content/operators/operators-7/contents+en.lrquestion.description)
+msgid ""
+"Of course, you should avoid keeping any sensitive or personal information on"
+" the computer hosting your exit relay."
+msgstr ""
+
+#: http//localhost/censorship/censorship-7/
+#: (content/censorship/censorship-7/contents+en.lrquestion.description)
+msgid ""
+"<mark><a "
+"href=\"https://github.com/Yawning/obfs4/blob/master/doc/obfs4-spec.txt\">Obfsproxy</a></mark>"
+" bridges address this by adding another layer of obfuscation."
+msgstr ""
+
+#: http//localhost/tbb/tbb-11/
+#: (content/tbb/tbb-11/contents+en.lrquestion.description)
+msgid "The file you download and run prompts you for a destination."
+msgstr ""
+
+#: http//localhost/faq/faq-1/
+#: (content/faq/faq-1/contents+en.lrquestion.description)
+#: http//localhost/tbb/tbb-3/
+#: (content/tbb/tbb-3/contents+en.lrquestion.description)
+msgid ""
+"Some entities, such as your Internet Service Provider (ISP), may be able to "
+"see that you're using Tor, but they won't know where you're going when you "
+"do."
+msgstr ""
+
+#: http//localhost/tbb/tbb-39/
+#: (content/tbb/tbb-39/contents+en.lrquestion.description)
+msgid ""
+"Sometimes Javascript-heavy websites can have functional issues over Tor "
+"Browser."
+msgstr ""
+
+#: http//localhost/gettor/gettor-2/
+#: (content/gettor/gettor-2/contents+en.lrquestion.description)
+msgid "Send an email to gettor(a)torproject.org."
+msgstr "Sendu tölvupóst til gettor(a)torproject.org."
+
+#: http//localhost/tbb/tbb-13/
+#: (content/tbb/tbb-13/contents+en.lrquestion.description)
+msgid "Only Tor Browser's traffic will be routed over the Tor network."
+msgstr ""
+
+#: http//localhost/misc/misc-11/
+#: (content/misc/misc-11/contents+en.lrquestion.description)
+msgid ""
+"That is, in normal cases it's 3, but for example if you're accessing an "
+"onion service or a \".exit\" address it could be more."
+msgstr ""
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+msgid "* Run \"service tor reload\" (as root)"
+msgstr "* Keyrðu \"service tor reload\" (sem kerfisstjóri/root)"
+
+#: http//localhost/misc/misc-7/
+#: (content/misc/misc-7/contents+en.lrquestion.description)
+msgid ""
+"A list of all of our software projects can be found on our <mark><a "
+"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
+"page</a></mark>."
+msgstr ""
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.description)
+msgid ""
+"This option is useful if you want to prevent your subsequent browser "
+"activity from being linkable to what you were doing before."
+msgstr ""
+
+#: http//localhost/misc/misc-10/
+#: (content/misc/misc-10/contents+en.lrquestion.title)
+msgid "Does the Tor Project offer hosting?"
+msgstr "Býður Tor-verkefnið upp á vefhýsingu?"
+
+#: http//localhost/faq/faq-5/ (content/faq/faq-5/contents+en.lrquestion.title)
+#: http//localhost/misc/misc-13/
+#: (content/misc/misc-13/contents+en.lrquestion.title)
+msgid "Can I use a VPN with Tor?"
+msgstr "Get ég notað VPN með Tor?"
+
+#: http//localhost/censorship/censorship-7/
+#: (content/censorship/censorship-7/contents+en.lrquestion.description)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+
+#: http//localhost/connecting/connecting-3/
+#: (content/connecting/connecting-3/contents+en.lrquestion.description)
+msgid ""
+"You can also ensure that you're able to access other onion services by "
+"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo</a>'s "
+"Onion Service."
+msgstr ""
+
+#: http//localhost/gettor/gettor-4/
+#: (content/gettor/gettor-4/contents+en.lrquestion.description)
+msgid ""
+"To get links for downloading Tor Browser, send a message to "
+"gettor(a)torproject.org with one of the following codes in it:"
+msgstr ""
+
+#: http//localhost/tbb/tbb-7/
+#: (content/tbb/tbb-7/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-2/
+#: (content/censorship/censorship-2/contents+en.lrquestion.description)
+msgid ""
+"\"Hi! I tried to access your site xyz.com while using Tor Browser and "
+"discovered that you don't allow Tor users to access your site."
+msgstr ""
+
+#: http//localhost/gettor/gettor-3/
+#: (content/gettor/gettor-3/contents+en.lrquestion.description)
+msgid ""
+"To get links for downloading Tor Browser, send a direct message to <mark><a "
+"href=\"https://twitter.com/get_tor\">@get_tor</a></mark> with one of the "
+"following codes in it (you don't need to follow the account):"
+msgstr ""
+
+#: http//localhost/tbb/tbb-32/
+#: (content/tbb/tbb-32/contents+en.lrquestion.description)
+msgid ""
+"This means sometimes a website would load in the Tor Browser, and sometimes "
+"it would load in another browser, this type of behavior can be dangerous and"
+" anonymity-breaking."
+msgstr ""
+
+#: http//localhost/tbb/tbb-34/
+#: (content/tbb/tbb-34/contents+en.lrquestion.description)
+msgid ""
+"Ultimately, we want to make Tor Browser as secure as possible while also "
+"making it usable for the majority of people, so for now, that means leaving "
+"Javascript enabled by default."
+msgstr ""
+
+#: http//localhost/tbb/tbb-12/
+#: (content/tbb/tbb-12/contents+en.lrquestion.description)
+msgid ""
+"Fortunately, most websites, devices, and other browsers are moving away from"
+" the use of Flash."
+msgstr ""
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "#MyFamily $keyid,$keyid,..."
+msgstr ""
+
+#: http//localhost/censorship/censorship-2/
+#: (content/censorship/censorship-2/contents+en.lrquestion.seo_slug)
+msgid "website-is-blocking-access-over-tor"
+msgstr "website-is-blocking-access-over-tor"
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid ""
+"## The IP address or hostname for incoming connections (leave commented and "
+"Tor will guess)"
+msgstr ""
+
+#: http//localhost/censorship/censorship-3/
+#: (content/censorship/censorship-3/contents+en.lrquestion.seo_slug)
+msgid "how-do-i-download-tor-if-torproject-org-is-blocked"
+msgstr "how-do-i-download-tor-if-torproject-org-is-blocked"
+
+#: http//localhost/tbb/tbb-23/
+#: (content/tbb/tbb-23/contents+en.lrquestion.description)
+msgid ""
+"DuckDuckGo does not track its users nor does it store any data about user "
+"searches. Learn more about <mark><a "
+"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
+"policy</a></mark>."
+msgstr ""
+
+#: http//localhost/tbb/tbb-21/
+#: (content/tbb/tbb-21/contents+en.lrquestion.seo_slug)
+msgid "view-tor-browser-message-log"
+msgstr "view-tor-browser-message-log"
+
+#: http//localhost/tbb/tbb-38/
+#: (content/tbb/tbb-38/contents+en.lrquestion.seo_slug)
+msgid "network-admin-know-i-am-using-tor"
+msgstr "network-admin-know-i-am-using-tor"
+
+#: http//localhost/misc/misc-7/
+#: (content/misc/misc-7/contents+en.lrquestion.seo_slug)
+msgid "does-tor-project-offer-email-or-privacy-protecting-web-services"
+msgstr "does-tor-project-offer-email-or-privacy-protecting-web-services"
+
+#: http//localhost/onionservices/onionservices-3/
+#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
+msgid ""
+"You can also ensure that you're able to access other onion services by "
+"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
+"service</a>."
+msgstr ""
+
+#: http//localhost/misc/misc-14/
+#: (content/misc/misc-14/contents+en.lrquestion.seo_slug)
+msgid "volunteer-with-tor-project"
+msgstr "volunteer-with-tor-project"
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.description)
+msgid ""
+"Tor Browser will warn you that all activity and downloads will be stopped, "
+"so take this into account before clicking \"New Identity\"."
+msgstr ""
+
+#: http//localhost/tbb/tbb-33/
+#: (content/tbb/tbb-33/contents+en.lrquestion.title)
+msgid "Does running Tor Browser make me a relay?"
+msgstr "Er ég að keyra endurvarpa ef ég nota Tor-vafrann?"
+
+#: http//localhost/tbb/tbb-38/
+#: (content/tbb/tbb-38/contents+en.lrquestion.title)
+msgid "Will my network admin be able to tell I'm using Tor Browser?"
+msgstr ""
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"11/1/2017 21:11:44 PM.300 [WARN] Failed to find node for hop 0 of our path. "
+"Discarding this circuit."
+msgstr ""
+
+#: http//localhost/tbb/tbb-16/
+#: (content/tbb/tbb-16/contents+en.lrquestion.description)
+msgid ""
+"You get the best security that Tor can provide when you leave the route "
+"selection to Tor; overriding the entry / exit nodes can compromise your "
+"anonymity."
+msgstr ""
+
+#: http//localhost/tormobile/tormobile-5/
+#: (content/tormobile/tormobile-5/contents+en.lrquestion.description)
+msgid ""
+"Please watch our <mark><a "
+"href=\"https://blog.torproject.org\">blog</a></mark> for future "
+"announcements and details regarding this project."
+msgstr ""
+
+#: http//localhost/gettor/gettor-1/
+#: (content/gettor/gettor-1/contents+en.lrquestion.title)
+#: http//localhost/censorship/censorship-3/
+#: (content/censorship/censorship-3/contents+en.lrquestion.title)
+msgid "How do I download Tor if the torproject.org is blocked?"
+msgstr ""
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"19.11.2017 00:04:47.400 [NOTICE] Opening Socks listener on 127.0.0.1:9150"
+msgstr ""
+
+#: http//localhost/tormobile/tormobile-4/
+#: (content/tormobile/tormobile-4/contents+en.lrquestion.seo_slug)
+msgid "run-tor-on-windows-phone"
+msgstr "run-tor-on-windows-phone"
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "Log notice file /var/log/tor/notices.log"
+msgstr ""
+
+#: http//localhost/misc/misc-11/
+#: (content/misc/misc-11/contents+en.lrquestion.title)
+msgid "Can I change the number of hops Tor uses?"
+msgstr ""
+
+#: http//localhost/tbb/tbb-2/
+#: (content/tbb/tbb-2/contents+en.lrquestion.description)
+msgid "The first relay in your circuit is called an \"entry guard\" or \"guard\"."
+msgstr ""
+
+#: http//localhost/tbb/tbb-16/
+#: (content/tbb/tbb-16/contents+en.lrquestion.title)
+msgid "Can I pick which country I'm exiting from?"
+msgstr "Get ég valið í hvaða landi ég tengist út?"
+
+#: http//localhost/misc/misc-12/
+#: (content/misc/misc-12/contents+en.lrquestion.seo_slug)
+msgid "share-files-anonymously-through-tor"
+msgstr "share-files-anonymously-through-tor"
+
+#: http//localhost/tbb/tbb-40/
+#: (content/tbb/tbb-40/contents+en.lrquestion.description)
+msgid "In Tor Browser, every new domain gets its own circuit."
+msgstr ""
+
+#: http//localhost/tormessenger/
+#: (content/tormessenger/contents+en.lrtopic.seo_slug)
+msgid "tor-messenger"
+msgstr "tor-messenger"
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "## Set the nickname of this relay"
+msgstr ""
+
+#: http//localhost/tbb/tbb-22/
+#: (content/tbb/tbb-22/contents+en.lrquestion.title)
+msgid ""
+"How can I make Tor run faster? Is Tor Browser slower than other browsers?"
+msgstr ""
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.description)
+msgid ""
+"This option does not clear any private information or unlink your activity, "
+"nor does it affect your current connections to other websites."
+msgstr ""
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "Install the ntp or openntpd (or similar) package to keep it that way."
+msgstr ""
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.description)
+msgid ""
+"The Torbutton icon (the little onion in the top left corner of the browser) "
+"will display a yellow triangle."
+msgstr ""
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "ServerTransportPlugin obfs4 exec /usr/bin/obfs4proxy"
+msgstr ""
+
+#: http//localhost/operators/ (content/operators/contents+en.lrtopic.title)
+msgid "Operators"
+msgstr ""
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Русский (ru)"
+msgstr ""
+
+#: http//localhost/tormobile/ (content/tormobile/contents+en.lrtopic.seo_slug)
+msgid "tor-mobile"
+msgstr "tor-mobile"
+
+#: http//localhost/tbb/tbb-18/
+#: (content/tbb/tbb-18/contents+en.lrquestion.seo_slug)
+msgid "is-there-support-for-bsd"
+msgstr "is-there-support-for-bsd"
+
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+msgid ""
+"Look for a log entry in your /var/log/syslog such as \"Self-testing "
+"indicates your ORPort is reachable from the outside. Excellent.\""
+msgstr ""
+
+#: http//localhost/onionservices/onionservices-3/
+#: (content/onionservices/onionservices-3/contents+en.lrquestion.seo_slug)
+msgid "i-cannot-reach-x-dot-onion"
+msgstr "i-cannot-reach-x-dot-onion"
+
+#: http//localhost/tbb/tbb-41/
+#: (content/tbb/tbb-41/contents+en.lrquestion.title)
+msgid "Why did my search engine switch to DuckDuckGo?"
+msgstr "Af hverju skipti leitarvélin mín yfir á DuckDuckGo?"
+
+#: http//localhost/censorship/censorship-7/
+#: (content/censorship/censorship-7/contents+en.lrquestion.description)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+
+#: http//localhost/faq/faq-2/
+#: (content/faq/faq-2/contents+en.lrquestion.description)
+#: http//localhost/tbb/tbb-8/
+#: (content/tbb/tbb-8/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-1/
+#: (content/censorship/censorship-1/contents+en.lrquestion.description)
+msgid ""
+"For more information, please see the <mark><a href=\"https://tb-"
+"manual.torproject.org/en-US/\">Tor Browser User Manual</a></mark> section on"
+" <mark><a href=\"https://tb-manual.torproject.org/en-"
+"US/circumvention.html\">censorship</a></mark>."
+msgstr ""
+
+#: http//localhost/tbb/tbb-20/
+#: (content/tbb/tbb-20/contents+en.lrquestion.description)
+msgid ""
+"If this doesn't fix the problem, see the Troubleshooting page on the "
+"<mark><a href=\"https://tb-manual.torproject.org/en-US/bridges.html\">Tor "
+"Browser manual</a></mark>."
+msgstr ""
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* 简体字 (zh-CN)"
+msgstr ""
+
+#: http//localhost/onionservices/onionservices-2/
+#: (content/onionservices/onionservices-2/contents+en.lrquestion.seo_slug)
+msgid "what-is-a-dot-onion"
+msgstr "what-is-a-dot-onion"
+
+#: http//localhost/misc/misc-7/
+#: (content/misc/misc-7/contents+en.lrquestion.title)
+msgid ""
+"Does Tor Project offer email service or other privacy protecting web "
+"services?"
+msgstr ""
+
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid ""
+"* When it confirms that it's reachable, it will upload a \"server "
+"descriptor\" to the directory authorities to let clients know what address, "
+"ports, keys, etc your relay is using."
+msgstr ""
+
+#: http//localhost/tbb/tbb-13/
+#: (content/tbb/tbb-13/contents+en.lrquestion.description)
+msgid ""
+"If you need to be sure that all traffic will go through the Tor network, "
+"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
+"operating system</a></mark> which you can start on almost any computer from "
+"a USB stick or a DVD."
+msgstr ""
+
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.title)
+msgid "How do I run an exit relay on Debian?"
+msgstr "Hvernig get ég keyrt útgangsendurvarpa á Debian?"
+
+#: http//localhost/tbb/ (content/tbb/contents+en.lrtopic.title)
+msgid "Tor Browser"
+msgstr "Tor-vafrinn"
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid "##### Common log error #3: Failed to complete TLS handshake"
+msgstr ""
+
+#: http//localhost/tbb/tbb-7/
+#: (content/tbb/tbb-7/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-2/
+#: (content/censorship/censorship-2/contents+en.lrquestion.description)
+msgid ""
+"I urge you to reconsider this decision; Tor is used by people all over the "
+"world to protect their privacy and fight censorship."
+msgstr ""
+
+#: http//localhost/tbb/tbb-12/
+#: (content/tbb/tbb-12/contents+en.lrquestion.seo_slug)
+msgid "using-flash-tor-browser"
+msgstr "using-flash-tor-browser"
+
+#: http//localhost/misc/misc-1/
+#: (content/misc/misc-1/contents+en.lrquestion.title)
+msgid "I have a compelling reason to trace a Tor user. Can you help?"
+msgstr ""
+
+#: http//localhost/onionservices/onionservices-2/
+#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
+msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgstr "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-5/
+#: (content/censorship/censorship-5/contents+en.lrquestion.description)
+msgid ""
+"13-11-17 19:52:24.300 [NOTICE] Bootstrapped 10%: Finishing handshake with "
+"directory server"
+msgstr ""
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid ""
+"Please open your antivirus or malware protection software and look in the "
+"settings for a \"whitelist\" or something similar."
+msgstr ""
+
+#: http//localhost/gettor/gettor-4/
+#: (content/gettor/gettor-4/contents+en.lrquestion.seo_slug)
+msgid "to-use-gettor-via-xmpp"
+msgstr "to-use-gettor-via-xmpp"
+
+#: http//localhost/tbb/tbb-35/
+#: (content/tbb/tbb-35/contents+en.lrquestion.description)
+msgid ""
+"Unfortunately, some websites deliver CAPTCHAs to Tor users, and we are not "
+"able to remove CAPTCHAs from websites."
+msgstr ""
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.description)
+msgid "$ sudo apt-get update"
+msgstr "$ sudo apt-get update"
+
+#: http//localhost/tbb/tbb-4/
+#: (content/tbb/tbb-4/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-is-built-from-firefox-why"
+msgstr "tor-browser-is-built-from-firefox-why"
+
+#: http//localhost/tbb/tbb-12/
+#: (content/tbb/tbb-12/contents+en.lrquestion.title)
+msgid "Can I use Flash in Tor Browser?"
+msgstr "Get ég notað Flash í Tor-vafranum?"
+
+#: http//localhost/tbb/tbb-40/
+#: (content/tbb/tbb-40/contents+en.lrquestion.description)
+msgid ""
+"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
+"/#identifier-linkability\">The Design and Implementation of Tor "
+"Browser</a></mark> document further explains the thinking behind this "
+"design."
+msgstr ""
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "This step is usually fast, but it may take a few minutes."
+msgstr ""
+
+#: http//localhost/tbb/tbb-21/
+#: (content/tbb/tbb-21/contents+en.lrquestion.description)
+msgid ""
+"Click the button labelled \"Copy Tor Log To Clipboard\" that appears in the "
+"dialog window when Tor Browser is first connecting to the network."
+msgstr ""
+
+#: http//localhost/tbb/tbb-19/
+#: (content/tbb/tbb-19/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-4/
+#: (content/censorship/censorship-4/contents+en.lrquestion.description)
+#: http//localhost/censorship/censorship-6/
+#: (content/censorship/censorship-6/contents+en.lrquestion.description)
+msgid ""
+"You might be on a censored network, and so you should try using bridges."
+msgstr ""
+
+#: http//localhost/misc/misc-11/
+#: (content/misc/misc-11/contents+en.lrquestion.description)
+msgid ""
+"We don't want to encourage people to use paths longer than this as it "
+"increases load on the network without (as far as we can tell) providing any "
+"more security."
+msgstr ""
+
+#: http//localhost/tormobile/tormobile-3/
+#: (content/tormobile/tormobile-3/contents+en.lrquestion.seo_slug)
+msgid "run-tor-on-ios"
+msgstr "run-tor-on-ios"
+
+#: http//localhost/connecting/connecting-3/
+#: (content/connecting/connecting-3/contents+en.lrquestion.title)
+#: http//localhost/onionservices/onionservices-3/
+#: (content/onionservices/onionservices-3/contents+en.lrquestion.title)
+msgid "I cannot reach X.onion!"
+msgstr "Ég næ ekki að tengjast X.onion!"
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "ExtORPort auto"
+msgstr ""
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.title)
+msgid "I need Tor Browser in a language that's not English."
+msgstr ""
+
+#: http//localhost/tbb/tbb-34/
+#: (content/tbb/tbb-34/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-js-enabled-default"
+msgstr "tor-browser-js-enabled-default"
+
+#: http//localhost/misc/misc-9/
+#: (content/misc/misc-9/contents+en.lrquestion.seo_slug)
+msgid "having-a-problem-updating-vidalia"
+msgstr "having-a-problem-updating-vidalia"
+
+#: http//localhost/tbb/tbb-16/
+#: (content/tbb/tbb-16/contents+en.lrquestion.seo_slug)
+msgid "pick-which-country-i-am-exiting"
+msgstr "pick-which-country-i-am-exiting"
+
+#: http//localhost/operators/operators-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid ""
+"## Set your bandwidth rate (leave commented and Tor will run without "
+"bandwidth caps)"
+msgstr ""
+
+#: http//localhost/tbb/tbb-41/
+#: (content/tbb/tbb-41/contents+en.lrquestion.description)
+msgid ""
+"With the release of Tor Browser 6.0.6, we switched to DuckDuckGo as the "
+"primary search engine."
+msgstr ""
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.description)
+msgid "$ deb-src http://deb.torproject.org/torproject.org <version> main"
+msgstr "$ deb-src http://deb.torproject.org/torproject.org <version> main"
+
+#: http//localhost/tbb/tbb-36/
+#: (content/tbb/tbb-36/contents+en.lrquestion.description)
+msgid ""
+"We do not recommend running multiple instances of Tor Browser, and may not "
+"work as anticipated on many platforms."
+msgstr ""
+
+#: http//localhost/censorship/censorship-7/
+#: (content/censorship/censorship-7/contents+en.lrquestion.description)
+msgid ""
+"That means that ISPs or governments trying to block access to the Tor "
+"network can't simply block all bridges."
+msgstr ""
+
+#: http//localhost/faq/faq-3/ (content/faq/faq-3/contents+en.lrquestion.title)
+#: http//localhost/tbb/tbb-14/
+#: (content/tbb/tbb-14/contents+en.lrquestion.title)
+msgid ""
+"Should I install a new add-on or extension in Tor Browser, like AdBlock Plus"
+" or uBlock Origin?"
+msgstr ""
+
+#: http//localhost/tbb/tbb-16/
+#: (content/tbb/tbb-16/contents+en.lrquestion.description)
+msgid ""
+"Please note that VPNs do not have the same privacy properties as Tor, but "
+"they will help solve some geolocation restriction issues."
+msgstr ""
+
+#: http//localhost/tbb/tbb-33/
+#: (content/tbb/tbb-33/contents+en.lrquestion.description)
+msgid "Running Tor Browser does not make you act as a relay in the network."
+msgstr ""
+
+#: http//localhost/tbb/tbb-41/
+#: (content/tbb/tbb-41/contents+en.lrquestion.description)
+msgid ""
+"For a while now, Disconnect has had no access to Google search results which"
+" we used in Tor Browser."
+msgstr ""
+
+#: http//localhost/gettor/gettor-4/
+#: (content/gettor/gettor-4/contents+en.lrquestion.title)
+msgid "To use GetTor via XMPP (Jitsi, CoyIM)."
+msgstr "Að nota GetTor með XMPP (Jitsi, CoyIM)."
+
+#: http//localhost/tbb/tbb-4/
+#: (content/tbb/tbb-4/contents+en.lrquestion.description)
+msgid ""
+"While it is technically possible to use Tor with other browsers, you may "
+"open yourself up to potential attacks or information leakage, so we strongly"
+" discourage it."
+msgstr ""
+
+#: http//localhost/tbb/tbb-30/
+#: (content/tbb/tbb-30/contents+en.lrquestion.description)
+msgid ""
+"Some websites, such as banks or email providers, might interpret this as a "
+"sign that your account has been compromised, and lock you out."
+msgstr ""
+
+#: http//localhost/connecting/connecting-2/
+#: (content/connecting/connecting-2/contents+en.lrquestion.description)
+msgid ""
+"19.11.2017 00:04:48.800 [WARN] Received NETINFO cell with skewed time "
+"(OR:xxx.xx.x.xx:xxxx): It seems that our clock is behind by 1 days, 0 hours,"
+" 1 minutes, or that theirs is ahead. Tor requires an accurate clock to work:"
+" please check your time, timezone, and date settings."
+msgstr ""
+
+#: http//localhost/tbb/tbb-7/
+#: (content/tbb/tbb-7/contents+en.lrquestion.seo_slug)
+msgid "website-blocking-access-over-tor"
+msgstr "website-blocking-access-over-tor"
+
+#: http//localhost/misc/misc-2/
+#: (content/misc/misc-2/contents+en.lrquestion.description)
+msgid ""
+"If we wanted to block certain people from using Tor, we'd basically be "
+"adding a backdoor to the software, which would open up our vulnerable users "
+"to attacks from bad regimes and other adversaries."
+msgstr ""
+
+#: templates/footer.html:5
+msgid "Our mission:"
+msgstr "Markmið okkar:"
+
+#: templates/footer.html:5
+msgid ""
+"to advance human rights and freedoms by creating and deploying free and open"
+" source anonymity and privacy technologies, supporting their unrestricted "
+"availability and use, and furthering their scientific and popular "
+"understanding."
+msgstr ""
+
+#: templates/footer.html:24
+msgid "Subscribe to our Newsletter"
+msgstr "Gerstu áskrifandi að fréttabréfinu okkar"
+
+#: templates/footer.html:25
+msgid "Get monthly updates and opportunities from the Tor Project"
+msgstr ""
+"Fáðu mánaðarlegar tilkynningar um uppfærslur og ýmsa möguleika frá Tor-"
+"verkefninu"
+
+#: templates/footer.html:32
+msgid ""
+"Trademark, copyright notices, and rules for use by third parties can be "
+"found in our "
+msgstr ""
+
+#: templates/layout.html:7
+msgid "Tor Project | Support"
+msgstr "Tor-verkefnið | Aðstoð"
+
+#: templates/navbar.html:4
+msgid "Tor Logo"
+msgstr "Tor-táknmerkið"
+
+#: templates/navbar.html:40
+msgid "Download Tor Browser"
+msgstr "Sækja Tor-vafrann"
+
+#: templates/search.html:5
+msgid "Search"
+msgstr "Leita"
+
+#: templates/macros/question.html:11
+msgid "Permalink"
+msgstr "Fastur tengill"
1
0

[translation/tor-browser-manual] Update translations for tor-browser-manual
by translation@torproject.org 04 Oct '18
by translation@torproject.org 04 Oct '18
04 Oct '18
commit 68aa571a7250fbdda628206f68e16e5467ca8de6
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Oct 4 12:17:17 2018 +0000
Update translations for tor-browser-manual
---
is/is.po | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/is/is.po b/is/is.po
index b0e1315a5..582ce174f 100644
--- a/is/is.po
+++ b/is/is.po
@@ -182,6 +182,8 @@ 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 ""
@@ -223,6 +225,8 @@ msgid ""
"external ref='media/circumvention/configure.png' "
"md5='1107595d21fe90f2aab1263d7fb0abd3'"
msgstr ""
+"external ref='media/circumvention/configure.png' "
+"md5='1107595d21fe90f2aab1263d7fb0abd3'"
#: circumvention.page:28
msgid ""
@@ -255,6 +259,8 @@ msgid ""
"external ref='media/circumvention/bridges.png' "
"md5='f5acc05bd9bacf6c69a31163d25a8778'"
msgstr ""
+"external ref='media/circumvention/bridges.png' "
+"md5='f5acc05bd9bacf6c69a31163d25a8778'"
#: circumvention.page:51
msgid ""
@@ -767,7 +773,7 @@ msgstr ""
#: onionsites.page:6
msgid "Services that are only accessible using Tor"
-msgstr "Þjónustur sem einungis eru aðgengilegar í gegnum Tor"
+msgstr "Þjónustur sem enungis eru aðgengilegar í gegnum Tor"
#: onionsites.page:10
msgid "Onion Services"
@@ -808,7 +814,7 @@ msgstr ""
#: onionsites.page:46
msgid "How to access an onion service"
-msgstr ""
+msgstr "Hvernig er hægt að tengjast onion-þjónustu"
#. 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
@@ -1072,6 +1078,8 @@ msgstr ""
msgid ""
"The Security Slider is located in Torbutton’s “Security Settings” menu."
msgstr ""
+"Öryggisstillingasleðinn er í valmyndinni \"Öryggisstillingar\" í Torbutton-"
+"hnappnum."
#: security-slider.page:32
msgid "Security Levels"
1
0

[translation/torbutton-browseronboardingproperties_completed] Update translations for torbutton-browseronboardingproperties_completed
by translation@torproject.org 04 Oct '18
by translation@torproject.org 04 Oct '18
04 Oct '18
commit 73620402fe858d1fecd47aaf841793eee346887e
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Oct 4 11:48:14 2018 +0000
Update translations for torbutton-browseronboardingproperties_completed
---
is/browserOnboarding.properties | 54 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+)
diff --git a/is/browserOnboarding.properties b/is/browserOnboarding.properties
new file mode 100644
index 000000000..893ce908e
--- /dev/null
+++ b/is/browserOnboarding.properties
@@ -0,0 +1,54 @@
+# Copyright (c) 2018, The Tor Project, Inc.
+# See LICENSE for licensing information.
+# vim: set sw=2 sts=2 ts=8 et:
+
+onboarding.tour-tor-welcome=Velkomin
+onboarding.tour-tor-welcome.title=Þú ert tilbúin(n).
+onboarding.tour-tor-welcome.description=Tor-vafrinn stenst mestu kröfur varðandi öryggi og nafnleynd þegar vafrað er á netinu. Þú ert núna varin(n) fyrir eftirliti, skráningu og ritskoðun. Þessi flýtikynning mun sýna þér hvernig þetta fer fram.
+onboarding.tour-tor-welcome.button=Byrja núna
+
+onboarding.tour-tor-privacy=Friðhelgi
+onboarding.tour-tor-privacy.title=Feldu þig fyrir snuðrurum og eftirliti
+onboarding.tour-tor-privacy.description=Tor-vafrinn einangrar vefkökur og hreinsar vafurferil þinn eftir setuna þína. Þessar aðgerðir tryggja verndun gagnaleyndar og almennt öryggi í vafranum. Smelltu á ‘Tor-netið’ til að sjá hvernig við verjum þig einnig gagnvart netkerfinu sjálfu.
+onboarding.tour-tor-privacy.button=Fara á Tor-netið
+
+onboarding.tour-tor-network=Tor-netið
+onboarding.tour-tor-network.title=Farðu um ómiðstýrt netkerfi.
+onboarding.tour-tor-network.description=Tor-vafrinn tengir þig við Tor-netið sem rekið er af þúsundum sjálfboðaliða um víða veröld. Ólíkt VPN, þá er enginn einn punktur sem getur brugðist eða miðlægt firirbæri sem þú þarft að treysta til að geta notað netið án afskipta annarra.
+onboarding.tour-tor-network.button=Farðu í birtingu rása
+
+onboarding.tour-tor-circuit-display=Birting rása
+onboarding.tour-tor-circuit-display.title=Skoðaðu slóðina þína
+onboarding.tour-tor-circuit-display.description=Fyrir hvert lén sem þú heimsækir, er umferðinni þinni endurbeint dulritaðri um brautir (rásir) milli þriggja Tor-endurvarpa víðsvegar um heiminn. Ekkert vefsvæði getur séð hvaðan þú tengist. Þú getur beðið um nýja rás með því að smella á ‘Ný rás fyrir þetta vefsvæði’ í glugganum þar sem rásirnar eru birtar.
+onboarding.tour-tor-circuit-display.button=Skoða slóðina mína
+
+onboarding.tour-tor-security=Öryggi
+onboarding.tour-tor-security.title=Veldu hvernig þú vilt upplifa þetta.
+onboarding.tour-tor-security.description=Við höfum einnig útbúið viðbótarstillingar þar sem þú getur breytt öryggisstigi vafrans. Öryggisstillingarnar gera kleift að loka á atriði sem hægt væri að nota til árása á tölvuna þína. Smelltu hér fyrir neðan til að skoða hvernig hinir mismunandi valkostir virka.
+onboarding.tour-tor-security.button=Yfirfara stillingar
+
+onboarding.tour-tor-expect-differences=Ábendingar fyrir upplifunina
+onboarding.tour-tor-expect-differences.title=Gerður ráð fyrir að eitthvað verði öðruvísi.
+onboarding.tour-tor-expect-differences.description=Vegna allra öryggis- og gagnaverndareiginleika Tor, þá gæti upplifun þín af vafri á internetinu orðið eilítið öðruvísi en annars. Hlutirnir gerast kannski aðeins hægar og það fer eftir öryggisstillingunum þínum hvort sum atriði virki eða birtist yfirhöfuð. Þú gætir líka lent í því að vera reglulega spurð(ur) hvort þú sért mannvera eða vélmenni.
+onboarding.tour-tor-expect-differences.button=Skoðaðu algengar spurningar - FAQ
+
+onboarding.tour-tor-onion-services=Onion-þjónustur
+onboarding.tour-tor-onion-services.title=Fáðu viðbótaröryggi.
+onboarding.tour-tor-onion-services.description=Onion-þjónustur eru vefsvæði sem enda á .onion viðskeyti, vefsvæði sem gefa útgefendum efnis og þeim sem skoða það aukna vernd gagnvart ritskoðun. Onion-þjónustur gera öllum kleift að birta efni eða eigin þjónustu nafnlaust. Smelltu hr fyrir neðan til að skoða onion-vefsvæði DuckDuckGo.
+onboarding.tour-tor-onion-services.button=Heimsækja Onion-vef
+
+# Circuit Display onboarding.
+onboarding.tor-circuit-display.next=Næsta
+onboarding.tor-circuit-display.done=Lokið
+onboarding.tor-circuit-display.one-of-three=1 af 3
+onboarding.tor-circuit-display.two-of-three=2 af 3
+onboarding.tor-circuit-display.three-of-three=3 af 3
+
+onboarding.tor-circuit-display.intro.title=Hvernig virka rásir?
+onboarding.tor-circuit-display.intro.msg=Rásir eru samsettar úr handahófsvöldum endurbeinum, sem eru tölvur úti um víða veröld sem sjá um að áframsenda umferð fyrir Tor. Rásir gera þér kleift að vafra í leyni og að tengjast við onion-þjónustur.
+
+onboarding.tor-circuit-display.diagram.title=Birting rása
+onboarding.tor-circuit-display.diagram.msg=Þessi skýringamynd sýnir endurvarpana sem saman mynda rásina fyrir þetta vefsvæði. Til að koma í veg fyrir að hægt sé að tengja saman virkni á mismunandi vefsvæðum, þá fær hvert vefsvæði sína sérstöku rás.
+
+onboarding.tor-circuit-display.new-circuit.title=Þarftu nýja rás?
+onboarding.tor-circuit-display.new-circuit.msg=Ef þú átt í vandræðum með að tengjast vefsvæði sem þú ætlar að skoða eða að það hleðst ekki rétt inn, þá geturðu notað þennan hnapp til að endurhlaða in vefsíðunni með nýrri rás.
1
0

[translation/torbutton-browseronboardingproperties] Update translations for torbutton-browseronboardingproperties
by translation@torproject.org 04 Oct '18
by translation@torproject.org 04 Oct '18
04 Oct '18
commit b19f96e46dad656ab9efea4250177d5696ccedb6
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Oct 4 11:48:08 2018 +0000
Update translations for torbutton-browseronboardingproperties
---
is/browserOnboarding.properties | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/is/browserOnboarding.properties b/is/browserOnboarding.properties
index 755c78fab..893ce908e 100644
--- a/is/browserOnboarding.properties
+++ b/is/browserOnboarding.properties
@@ -24,12 +24,12 @@ onboarding.tour-tor-circuit-display.button=Skoða slóðina mína
onboarding.tour-tor-security=Öryggi
onboarding.tour-tor-security.title=Veldu hvernig þú vilt upplifa þetta.
-onboarding.tour-tor-security.description=We also provide you with additional settings for bumping up your browser security. Our Security Settings allow you to block elements that could be used to attack your computer. Click below to see what the different options do.
+onboarding.tour-tor-security.description=Við höfum einnig útbúið viðbótarstillingar þar sem þú getur breytt öryggisstigi vafrans. Öryggisstillingarnar gera kleift að loka á atriði sem hægt væri að nota til árása á tölvuna þína. Smelltu hér fyrir neðan til að skoða hvernig hinir mismunandi valkostir virka.
onboarding.tour-tor-security.button=Yfirfara stillingar
onboarding.tour-tor-expect-differences=Ábendingar fyrir upplifunina
onboarding.tour-tor-expect-differences.title=Gerður ráð fyrir að eitthvað verði öðruvísi.
-onboarding.tour-tor-expect-differences.description=With all the security and privacy features provided by Tor, your experience while browsing the internet may be a little different. Things may be a bit slower, and depending on your security level, some elements may not work or load. You may also be asked to prove you are a human and not a robot.
+onboarding.tour-tor-expect-differences.description=Vegna allra öryggis- og gagnaverndareiginleika Tor, þá gæti upplifun þín af vafri á internetinu orðið eilítið öðruvísi en annars. Hlutirnir gerast kannski aðeins hægar og það fer eftir öryggisstillingunum þínum hvort sum atriði virki eða birtist yfirhöfuð. Þú gætir líka lent í því að vera reglulega spurð(ur) hvort þú sért mannvera eða vélmenni.
onboarding.tour-tor-expect-differences.button=Skoðaðu algengar spurningar - FAQ
onboarding.tour-tor-onion-services=Onion-þjónustur
@@ -38,7 +38,7 @@ onboarding.tour-tor-onion-services.description=Onion-þjónustur eru vefsvæði
onboarding.tour-tor-onion-services.button=Heimsækja Onion-vef
# Circuit Display onboarding.
-onboarding.tor-circuit-display.next=Næsti
+onboarding.tor-circuit-display.next=Næsta
onboarding.tor-circuit-display.done=Lokið
onboarding.tor-circuit-display.one-of-three=1 af 3
onboarding.tor-circuit-display.two-of-three=2 af 3
@@ -48,7 +48,7 @@ onboarding.tor-circuit-display.intro.title=Hvernig virka rásir?
onboarding.tor-circuit-display.intro.msg=Rásir eru samsettar úr handahófsvöldum endurbeinum, sem eru tölvur úti um víða veröld sem sjá um að áframsenda umferð fyrir Tor. Rásir gera þér kleift að vafra í leyni og að tengjast við onion-þjónustur.
onboarding.tor-circuit-display.diagram.title=Birting rása
-onboarding.tor-circuit-display.diagram.msg=This diagram shows the relays that make up the circuit for this website. To prevent linking of activity across different sites, each website gets a different circuit.
+onboarding.tor-circuit-display.diagram.msg=Þessi skýringamynd sýnir endurvarpana sem saman mynda rásina fyrir þetta vefsvæði. Til að koma í veg fyrir að hægt sé að tengja saman virkni á mismunandi vefsvæðum, þá fær hvert vefsvæði sína sérstöku rás.
onboarding.tor-circuit-display.new-circuit.title=Þarftu nýja rás?
-onboarding.tor-circuit-display.new-circuit.msg=If you are not able to connect to the website you’re trying to visit or it is not loading properly, then you can use this button to reload the site with a new circuit.
+onboarding.tor-circuit-display.new-circuit.msg=Ef þú átt í vandræðum með að tengjast vefsvæði sem þú ætlar að skoða eða að það hleðst ekki rétt inn, þá geturðu notað þennan hnapp til að endurhlaða in vefsíðunni með nýrri rás.
1
0

[translation/torbutton-browseronboardingproperties] Update translations for torbutton-browseronboardingproperties
by translation@torproject.org 04 Oct '18
by translation@torproject.org 04 Oct '18
04 Oct '18
commit 6c70695b1f7d492b4a2044f3fa9f5f891b4ade20
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Oct 4 10:18:09 2018 +0000
Update translations for torbutton-browseronboardingproperties
---
is/browserOnboarding.properties | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/is/browserOnboarding.properties b/is/browserOnboarding.properties
index 0d1b8d301..755c78fab 100644
--- a/is/browserOnboarding.properties
+++ b/is/browserOnboarding.properties
@@ -4,37 +4,37 @@
onboarding.tour-tor-welcome=Velkomin
onboarding.tour-tor-welcome.title=Þú ert tilbúin(n).
-onboarding.tour-tor-welcome.description=Tor Browser offers the highest standard of privacy and security while browsing the web. You’re now protected against tracking, surveillance, and censorship. This quick onboarding will show you how.
+onboarding.tour-tor-welcome.description=Tor-vafrinn stenst mestu kröfur varðandi öryggi og nafnleynd þegar vafrað er á netinu. Þú ert núna varin(n) fyrir eftirliti, skráningu og ritskoðun. Þessi flýtikynning mun sýna þér hvernig þetta fer fram.
onboarding.tour-tor-welcome.button=Byrja núna
onboarding.tour-tor-privacy=Friðhelgi
onboarding.tour-tor-privacy.title=Feldu þig fyrir snuðrurum og eftirliti
-onboarding.tour-tor-privacy.description=Tor Browser isolates cookies and deletes your browser history after your session. These modifications ensure your privacy and security are protected in the browser. Click ‘Tor Network’ to learn how we protect you on the network level.
+onboarding.tour-tor-privacy.description=Tor-vafrinn einangrar vefkökur og hreinsar vafurferil þinn eftir setuna þína. Þessar aðgerðir tryggja verndun gagnaleyndar og almennt öryggi í vafranum. Smelltu á ‘Tor-netið’ til að sjá hvernig við verjum þig einnig gagnvart netkerfinu sjálfu.
onboarding.tour-tor-privacy.button=Fara á Tor-netið
onboarding.tour-tor-network=Tor-netið
onboarding.tour-tor-network.title=Farðu um ómiðstýrt netkerfi.
-onboarding.tour-tor-network.description=Tor Browser connects you to the Tor network run by thousands of volunteers around the world. Unlike a VPN, there’s no one point of failure or centralized entity you need to trust in order to enjoy the internet privately.
+onboarding.tour-tor-network.description=Tor-vafrinn tengir þig við Tor-netið sem rekið er af þúsundum sjálfboðaliða um víða veröld. Ólíkt VPN, þá er enginn einn punktur sem getur brugðist eða miðlægt firirbæri sem þú þarft að treysta til að geta notað netið án afskipta annarra.
onboarding.tour-tor-network.button=Farðu í birtingu rása
onboarding.tour-tor-circuit-display=Birting rása
onboarding.tour-tor-circuit-display.title=Skoðaðu slóðina þína
-onboarding.tour-tor-circuit-display.description=For each domain you visit, your traffic is relayed and encrypted in a circuit across three Tor relays around the world. No website knows where you are connecting from. You can request a new circuit by clicking ‘New Circuit for this Site’ on our Circuit Display.
+onboarding.tour-tor-circuit-display.description=Fyrir hvert lén sem þú heimsækir, er umferðinni þinni endurbeint dulritaðri um brautir (rásir) milli þriggja Tor-endurvarpa víðsvegar um heiminn. Ekkert vefsvæði getur séð hvaðan þú tengist. Þú getur beðið um nýja rás með því að smella á ‘Ný rás fyrir þetta vefsvæði’ í glugganum þar sem rásirnar eru birtar.
onboarding.tour-tor-circuit-display.button=Skoða slóðina mína
onboarding.tour-tor-security=Öryggi
-onboarding.tour-tor-security.title=Choose your experience.
+onboarding.tour-tor-security.title=Veldu hvernig þú vilt upplifa þetta.
onboarding.tour-tor-security.description=We also provide you with additional settings for bumping up your browser security. Our Security Settings allow you to block elements that could be used to attack your computer. Click below to see what the different options do.
onboarding.tour-tor-security.button=Yfirfara stillingar
-onboarding.tour-tor-expect-differences=Experience Tips
-onboarding.tour-tor-expect-differences.title=Expect some differences.
+onboarding.tour-tor-expect-differences=Ábendingar fyrir upplifunina
+onboarding.tour-tor-expect-differences.title=Gerður ráð fyrir að eitthvað verði öðruvísi.
onboarding.tour-tor-expect-differences.description=With all the security and privacy features provided by Tor, your experience while browsing the internet may be a little different. Things may be a bit slower, and depending on your security level, some elements may not work or load. You may also be asked to prove you are a human and not a robot.
onboarding.tour-tor-expect-differences.button=Skoðaðu algengar spurningar - FAQ
onboarding.tour-tor-onion-services=Onion-þjónustur
-onboarding.tour-tor-onion-services.title=Be extra protected.
-onboarding.tour-tor-onion-services.description=Onion services are sites that end with a .onion that provide extra protections to publishers and visitors, including added safeguards against censorship. Onion services allow anyone to provide content and services anonymously. Click below to visit the DuckDuckGo onion site.
+onboarding.tour-tor-onion-services.title=Fáðu viðbótaröryggi.
+onboarding.tour-tor-onion-services.description=Onion-þjónustur eru vefsvæði sem enda á .onion viðskeyti, vefsvæði sem gefa útgefendum efnis og þeim sem skoða það aukna vernd gagnvart ritskoðun. Onion-þjónustur gera öllum kleift að birta efni eða eigin þjónustu nafnlaust. Smelltu hr fyrir neðan til að skoða onion-vefsvæði DuckDuckGo.
onboarding.tour-tor-onion-services.button=Heimsækja Onion-vef
# Circuit Display onboarding.
@@ -45,7 +45,7 @@ onboarding.tor-circuit-display.two-of-three=2 af 3
onboarding.tor-circuit-display.three-of-three=3 af 3
onboarding.tor-circuit-display.intro.title=Hvernig virka rásir?
-onboarding.tor-circuit-display.intro.msg=Circuits are made up of randomly assigned relays, which are computers around the world configured to forward Tor traffic. Circuits allow you to browse privately and to connect to onion services.
+onboarding.tor-circuit-display.intro.msg=Rásir eru samsettar úr handahófsvöldum endurbeinum, sem eru tölvur úti um víða veröld sem sjá um að áframsenda umferð fyrir Tor. Rásir gera þér kleift að vafra í leyni og að tengjast við onion-þjónustur.
onboarding.tor-circuit-display.diagram.title=Birting rása
onboarding.tor-circuit-display.diagram.msg=This diagram shows the relays that make up the circuit for this website. To prevent linking of activity across different sites, each website gets a different circuit.
1
0