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

10 Nov '18
commit a011c93ff3b86dfcf09ffc00f0eb8343f1cb030b
Author: juga0 <juga(a)riseup.net>
Date: Thu Nov 8 09:46:20 2018 +0000
Include headers about progress in all the bw files
Include the headers about eligible relays in all the bandwidth
files, not only in the ones that does not have enough eligible
relays (#28365).
---
CHANGELOG.md | 2 ++
sbws/lib/v3bwfile.py | 5 ++---
tests/unit/lib/test_v3bwfile.py | 11 +++++++++--
3 files changed, 13 insertions(+), 5 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d2d651e..8ecfa7f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Changed
- Change default directories when sbws is run from a system service (#28268).
+- Include the headers about eligible relays in all the bandwidth files,
+ not only in the ones that does not have enough eligible relays (#28365).
## [1.0.0] - 2018-10-29
diff --git a/sbws/lib/v3bwfile.py b/sbws/lib/v3bwfile.py
index 3665ae4..875d40a 100644
--- a/sbws/lib/v3bwfile.py
+++ b/sbws/lib/v3bwfile.py
@@ -896,10 +896,9 @@ class V3BWFile(object):
if number_consensus_relays is not None:
statsd, success = self.measured_progress_stats(
bw_lines, number_consensus_relays, min_perc_reached_before)
- # add statistics about progress only when there are not enough
- # measured relays. Should some stats be added always?
+ # add statistics about progress always
+ header.add_stats(**statsd)
if not success:
- header.add_stats(**statsd)
bw_lines = []
state['min_perc_reached'] = None
else:
diff --git a/tests/unit/lib/test_v3bwfile.py b/tests/unit/lib/test_v3bwfile.py
index 8e450ca..30c92a3 100644
--- a/tests/unit/lib/test_v3bwfile.py
+++ b/tests/unit/lib/test_v3bwfile.py
@@ -4,7 +4,8 @@ import json
import os.path
from sbws import __version__ as version
-from sbws.globals import SPEC_VERSION, SBWS_SCALING, TORFLOW_SCALING
+from sbws.globals import (SPEC_VERSION, SBWS_SCALING, TORFLOW_SCALING,
+ MIN_REPORT)
from sbws.lib.resultdump import Result, load_result_file, ResultSuccess
from sbws.lib.v3bwfile import (V3BWHeader, V3BWLine, TERMINATOR, LINE_SEP,
KEYVALUE_SEP_V110, num_results_of_type,
@@ -234,9 +235,15 @@ def test_update_progress(datadir, tmpdir):
state)
assert header.percent_eligible_relays == '50'
assert state.get('min_perc_reached') is None
+ # Test that the headers are also included when there are enough eligible
+ # relays
number_consensus_relays = 3
header = V3BWHeader(str(now_unixts()))
bwfile.update_progress(bw_lines_raw, header, number_consensus_relays,
state)
assert state.get('min_perc_reached') == now_isodt_str()
- assert not hasattr(header, 'percent_eligible_relays')
+ assert header.minimum_number_eligible_relays == '2'
+ assert header.minimum_percent_eligible_relays == str(MIN_REPORT)
+ assert header.number_consensus_relays == '3'
+ assert header.number_eligible_relays == '3'
+ assert header.percent_eligible_relays == '100'
1
0

10 Nov '18
commit a9df1f8848c1fd4a166f404f24325c82823450e3
Author: juga0 <juga(a)riseup.net>
Date: Thu Nov 8 08:52:01 2018 +0000
Use 5 "=" characters as terminator in the bw files
---
CHANGELOG.md | 4 ++++
sbws/lib/v3bwfile.py | 2 +-
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d2d651e..2295ab7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [1.0.1] - 2018-11-01
+### Fixed
+
+- Use 5 "=" characters as terminator in the bandwidth files (#28379).
+
### Changed
- Change default directories when sbws is run from a system service (#28268).
diff --git a/sbws/lib/v3bwfile.py b/sbws/lib/v3bwfile.py
index 3665ae4..4268fb7 100644
--- a/sbws/lib/v3bwfile.py
+++ b/sbws/lib/v3bwfile.py
@@ -37,7 +37,7 @@ UNORDERED_KEYVALUES = EXTRA_ARG_KEYVALUES + STATS_KEYVALUES + \
['latest_bandwidth']
# List of all the KeyValues currently being used to generate the file
ALL_KEYVALUES = ['version'] + UNORDERED_KEYVALUES
-TERMINATOR = '===='
+TERMINATOR = '====='
# Num header lines in v1.1.0 using all the KeyValues
NUM_LINES_HEADER_V110 = len(ALL_KEYVALUES) + 2
LINE_TERMINATOR = TERMINATOR + LINE_SEP
1
0
commit a62801fd04c1006f73fb68201e072240bfb4cf88
Merge: 17398ab a9df1f8
Author: juga0 <juga(a)riseup.net>
Date: Sat Nov 10 13:29:07 2018 +0000
Merge branch 'ticket28379'
CHANGELOG.md | 1 +
sbws/lib/v3bwfile.py | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --cc CHANGELOG.md
index b77b53d,2295ab7..bb67d7b
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@@ -11,7 -11,7 +11,8 @@@ and this project adheres to [Semantic V
### Fixed
-- Use 5 "=" characters as terminator in the bandwidth files (#28379).
+- Update bandwidth file specification version in the `generator` (#28366).
++- Use 5 "=" characters as terminator in the bandwidth files (#28379)
### Changed
diff --cc sbws/lib/v3bwfile.py
index 2cc83e5,4268fb7..4930969
--- a/sbws/lib/v3bwfile.py
+++ b/sbws/lib/v3bwfile.py
@@@ -37,9 -37,9 +37,9 @@@ UNORDERED_KEYVALUES = EXTRA_ARG_KEYVALU
['latest_bandwidth']
# List of all the KeyValues currently being used to generate the file
ALL_KEYVALUES = ['version'] + UNORDERED_KEYVALUES
- TERMINATOR = '===='
+ TERMINATOR = '====='
-# Num header lines in v1.1.0 using all the KeyValues
-NUM_LINES_HEADER_V110 = len(ALL_KEYVALUES) + 2
+# Num header lines in v1.X.X using all the KeyValues
+NUM_LINES_HEADER_V1 = len(ALL_KEYVALUES) + 2
LINE_TERMINATOR = TERMINATOR + LINE_SEP
# KeyValue separator in Bandwidth Lines
1
0

10 Nov '18
commit 3f32e4e42a35ac63d25177470b35f7d76883ea4d
Author: juga0 <juga(a)riseup.net>
Date: Thu Nov 8 08:33:09 2018 +0000
Compare the mayor number in version specification
Instead of comparing all the version.
---
sbws/lib/v3bwfile.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sbws/lib/v3bwfile.py b/sbws/lib/v3bwfile.py
index 3665ae4..5fa1846 100644
--- a/sbws/lib/v3bwfile.py
+++ b/sbws/lib/v3bwfile.py
@@ -106,7 +106,7 @@ class V3BWHeader(object):
if k in EXTRA_ARG_KEYVALUES]
def __str__(self):
- if self.version == '1.1.0':
+ if self.version.startswith('1.'):
return self.strv110
return self.strv200
1
0
commit 951f6f1824691510233fe19028479da306c9b3f3
Author: juga0 <juga(a)riseup.net>
Date: Thu Nov 8 08:23:43 2018 +0000
Update specification version
---
sbws/globals.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sbws/globals.py b/sbws/globals.py
index cadd473..5fe0442 100644
--- a/sbws/globals.py
+++ b/sbws/globals.py
@@ -6,7 +6,7 @@ log = logging.getLogger(__name__)
RESULT_VERSION = 4
WIRE_VERSION = 1
-SPEC_VERSION = '1.1.0'
+SPEC_VERSION = '1.2.0'
# This is a dictionary of torrc options we always want to set when launching
# Tor and that do not depend on any runtime configuration
1
0

10 Nov '18
commit 17398abb438e5711d3f29289b77a7aaecb65b83d
Author: juga0 <juga(a)riseup.net>
Date: Thu Nov 8 08:47:41 2018 +0000
Add entry about the specification version
---
CHANGELOG.md | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d2d651e..b77b53d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [1.0.1] - 2018-11-01
+### Fixed
+
+- Update bandwidth file specification version in the `generator` (#28366).
+
### Changed
- Change default directories when sbws is run from a system service (#28268).
1
0

10 Nov '18
commit fe95bf972e29a9894b4f74175ca567add1a66c20
Author: juga0 <juga(a)riseup.net>
Date: Thu Nov 8 08:45:50 2018 +0000
Rename specification version number in variables
Since they depende only on the mayor number
---
sbws/lib/v3bwfile.py | 86 ++++++++++++++++++++---------------------
tests/unit/lib/test_v3bwfile.py | 26 ++++++-------
2 files changed, 56 insertions(+), 56 deletions(-)
diff --git a/sbws/lib/v3bwfile.py b/sbws/lib/v3bwfile.py
index 5fa1846..2cc83e5 100644
--- a/sbws/lib/v3bwfile.py
+++ b/sbws/lib/v3bwfile.py
@@ -23,8 +23,8 @@ from sbws.util.state import State
log = logging.getLogger(__name__)
LINE_SEP = '\n'
-KEYVALUE_SEP_V110 = '='
-KEYVALUE_SEP_V200 = ' '
+KEYVALUE_SEP_V1 = '='
+KEYVALUE_SEP_V2 = ' '
# List of the extra KeyValues accepted by the class
EXTRA_ARG_KEYVALUES = ['software', 'software_version', 'file_created',
'earliest_bandwidth', 'generator_started']
@@ -38,12 +38,12 @@ UNORDERED_KEYVALUES = EXTRA_ARG_KEYVALUES + STATS_KEYVALUES + \
# List of all the KeyValues currently being used to generate the file
ALL_KEYVALUES = ['version'] + UNORDERED_KEYVALUES
TERMINATOR = '===='
-# Num header lines in v1.1.0 using all the KeyValues
-NUM_LINES_HEADER_V110 = len(ALL_KEYVALUES) + 2
+# Num header lines in v1.X.X using all the KeyValues
+NUM_LINES_HEADER_V1 = len(ALL_KEYVALUES) + 2
LINE_TERMINATOR = TERMINATOR + LINE_SEP
# KeyValue separator in Bandwidth Lines
-BW_KEYVALUE_SEP_V110 = ' '
+BW_KEYVALUE_SEP_V1 = ' '
# not inclding in the files the extra bws for now
BW_KEYVALUES_BASIC = ['node_id', 'bw']
BW_KEYVALUES_FILE = BW_KEYVALUES_BASIC + \
@@ -75,7 +75,7 @@ def result_type_to_key(type_str):
class V3BWHeader(object):
"""
Create a bandwidth measurements (V3bw) header
- following bandwidth measurements document spec version 1.1.0.
+ following bandwidth measurements document spec version 1.X.X.
:param str timestamp: timestamp in Unix Epoch seconds of the most recent
generator result.
@@ -107,8 +107,8 @@ class V3BWHeader(object):
def __str__(self):
if self.version.startswith('1.'):
- return self.strv110
- return self.strv200
+ return self.strv1
+ return self.strv2
@classmethod
def from_results(cls, results, state_fpath=''):
@@ -125,7 +125,7 @@ class V3BWHeader(object):
return h
@classmethod
- def from_lines_v110(cls, lines):
+ def from_lines_v1(cls, lines):
"""
:param list lines: list of lines to parse
:returns: tuple of V3BWHeader object and non-header lines
@@ -138,21 +138,21 @@ class V3BWHeader(object):
log.warn('Terminator is not in lines')
return None
ts = lines[0]
- kwargs = dict([l.split(KEYVALUE_SEP_V110)
+ kwargs = dict([l.split(KEYVALUE_SEP_V1)
for l in lines[:index_terminator]
- if l.split(KEYVALUE_SEP_V110)[0] in ALL_KEYVALUES])
+ if l.split(KEYVALUE_SEP_V1)[0] in ALL_KEYVALUES])
h = cls(ts, **kwargs)
# last line is new line
return h, lines[index_terminator + 1:-1]
@classmethod
- def from_text_v110(self, text):
+ def from_text_v1(self, text):
"""
:param str text: text to parse
:returns: tuple of V3BWHeader object and non-header lines
"""
assert isinstance(text, str)
- return self.from_lines_v110(text.split(LINE_SEP))
+ return self.from_lines_v1(text.split(LINE_SEP))
@classmethod
def from_lines_v100(cls, lines):
@@ -199,30 +199,30 @@ class V3BWHeader(object):
return [('version', self.version)] + self.keyvalue_unordered_tuple_ls
@property
- def keyvalue_v110str_ls(self):
- """Return KeyValue list of strings following spec v1.1.0."""
- keyvalues = [self.timestamp] + [KEYVALUE_SEP_V110.join([k, v])
+ def keyvalue_v1str_ls(self):
+ """Return KeyValue list of strings following spec v1.X.X."""
+ keyvalues = [self.timestamp] + [KEYVALUE_SEP_V1.join([k, v])
for k, v in self.keyvalue_tuple_ls]
return keyvalues
@property
- def strv110(self):
- """Return header string following spec v1.1.0."""
- header_str = LINE_SEP.join(self.keyvalue_v110str_ls) + LINE_SEP + \
+ def strv1(self):
+ """Return header string following spec v1.X.X."""
+ header_str = LINE_SEP.join(self.keyvalue_v1str_ls) + LINE_SEP + \
LINE_TERMINATOR
return header_str
@property
- def keyvalue_v200_ls(self):
- """Return KeyValue list of strings following spec v2.0.0."""
- keyvalue = [self.timestamp] + [KEYVALUE_SEP_V200.join([k, v])
+ def keyvalue_v2_ls(self):
+ """Return KeyValue list of strings following spec v2.X.X."""
+ keyvalue = [self.timestamp] + [KEYVALUE_SEP_V2.join([k, v])
for k, v in self.keyvalue_tuple_ls]
return keyvalue
@property
- def strv200(self):
- """Return header string following spec v2.0.0."""
- header_str = LINE_SEP.join(self.keyvalue_v200_ls) + LINE_SEP + \
+ def strv2(self):
+ """Return header string following spec v2.X.X."""
+ header_str = LINE_SEP.join(self.keyvalue_v2_ls) + LINE_SEP + \
LINE_TERMINATOR
return header_str
@@ -238,7 +238,7 @@ class V3BWHeader(object):
class V3BWLine(object):
"""
- Create a Bandwidth List line following the spec version 1.1.0.
+ Create a Bandwidth List line following the spec version 1.X.X.
:param str node_id:
:param int bw:
@@ -263,7 +263,7 @@ class V3BWLine(object):
if k in BW_KEYVALUES_EXTRA]
def __str__(self):
- return self.bw_strv110
+ return self.bw_strv1
@classmethod
def from_results(cls, results, secs_recent=None, secs_away=None,
@@ -323,11 +323,11 @@ class V3BWLine(object):
return cls.from_results(data[fingerprint])
@classmethod
- def from_bw_line_v110(cls, line):
+ def from_bw_line_v1(cls, line):
assert isinstance(line, str)
- kwargs = dict([kv.split(KEYVALUE_SEP_V110)
- for kv in line.split(BW_KEYVALUE_SEP_V110)
- if kv.split(KEYVALUE_SEP_V110)[0] in BW_KEYVALUES])
+ kwargs = dict([kv.split(KEYVALUE_SEP_V1)
+ for kv in line.split(BW_KEYVALUE_SEP_V1)
+ if kv.split(KEYVALUE_SEP_V1)[0] in BW_KEYVALUES])
for k, v in kwargs.items():
if k in BW_KEYVALUES_INT:
kwargs[k] = int(v)
@@ -419,19 +419,19 @@ class V3BWLine(object):
return keyvalue_tuple_ls
@property
- def bw_keyvalue_v110str_ls(self):
+ def bw_keyvalue_v1str_ls(self):
"""Return list of KeyValue Bandwidth Line strings following
- spec v1.1.0.
+ spec v1.X.X.
"""
- bw_keyvalue_str = [KEYVALUE_SEP_V110 .join([k, str(v)])
+ bw_keyvalue_str = [KEYVALUE_SEP_V1 .join([k, str(v)])
for k, v in self.bw_keyvalue_tuple_ls]
return bw_keyvalue_str
@property
- def bw_strv110(self):
- """Return Bandwidth Line string following spec v1.1.0."""
- bw_line_str = BW_KEYVALUE_SEP_V110.join(
- self.bw_keyvalue_v110str_ls) + LINE_SEP
+ def bw_strv1(self):
+ """Return Bandwidth Line string following spec v1.X.X."""
+ bw_line_str = BW_KEYVALUE_SEP_V1.join(
+ self.bw_keyvalue_v1str_ls) + LINE_SEP
if len(bw_line_str) > BW_LINE_SIZE:
# if this is the case, probably there are too many KeyValues,
# or the limit needs to be changed in Tor
@@ -442,7 +442,7 @@ class V3BWLine(object):
class V3BWFile(object):
"""
- Create a Bandwidth List file following spec version 1.1.0
+ Create a Bandwidth List file following spec version 1.X.X
:param V3BWHeader v3bwheader: header
:param list v3bwlines: V3BWLines
@@ -520,13 +520,13 @@ class V3BWFile(object):
return f
@classmethod
- def from_v110_fpath(cls, fpath):
+ def from_v1_fpath(cls, fpath):
log.info('Parsing bandwidth file %s', fpath)
with open(fpath) as fd:
text = fd.read()
all_lines = text.split(LINE_SEP)
- header, lines = V3BWHeader.from_lines_v110(all_lines)
- bw_lines = [V3BWLine.from_bw_line_v110(line) for line in lines]
+ header, lines = V3BWHeader.from_lines_v1(all_lines)
+ bw_lines = [V3BWLine.from_bw_line_v1(line) for line in lines]
return cls(header, bw_lines)
@classmethod
@@ -536,7 +536,7 @@ class V3BWFile(object):
text = fd.read()
all_lines = text.split(LINE_SEP)
header, lines = V3BWHeader.from_lines_v100(all_lines)
- bw_lines = sorted([V3BWLine.from_bw_line_v110(l) for l in lines],
+ bw_lines = sorted([V3BWLine.from_bw_line_v1(l) for l in lines],
key=lambda l: l.bw)
return cls(header, bw_lines)
diff --git a/tests/unit/lib/test_v3bwfile.py b/tests/unit/lib/test_v3bwfile.py
index 8e450ca..fc544e5 100644
--- a/tests/unit/lib/test_v3bwfile.py
+++ b/tests/unit/lib/test_v3bwfile.py
@@ -7,29 +7,29 @@ from sbws import __version__ as version
from sbws.globals import SPEC_VERSION, SBWS_SCALING, TORFLOW_SCALING
from sbws.lib.resultdump import Result, load_result_file, ResultSuccess
from sbws.lib.v3bwfile import (V3BWHeader, V3BWLine, TERMINATOR, LINE_SEP,
- KEYVALUE_SEP_V110, num_results_of_type,
+ KEYVALUE_SEP_V1, num_results_of_type,
V3BWFile)
from sbws.util.timestamp import now_fname, now_isodt_str, now_unixts
timestamp = 1523974147
timestamp_l = str(timestamp)
-version_l = KEYVALUE_SEP_V110.join(['version', SPEC_VERSION])
-software_l = KEYVALUE_SEP_V110.join(['software', 'sbws'])
-software_version_l = KEYVALUE_SEP_V110.join(['software_version', version])
+version_l = KEYVALUE_SEP_V1.join(['version', SPEC_VERSION])
+software_l = KEYVALUE_SEP_V1.join(['software', 'sbws'])
+software_version_l = KEYVALUE_SEP_V1.join(['software_version', version])
file_created = '2018-04-25T13:10:57'
-file_created_l = KEYVALUE_SEP_V110.join(['file_created', file_created])
+file_created_l = KEYVALUE_SEP_V1.join(['file_created', file_created])
latest_bandwidth = '2018-04-17T14:09:07'
-latest_bandwidth_l = KEYVALUE_SEP_V110.join(['latest_bandwidth',
- latest_bandwidth])
+latest_bandwidth_l = KEYVALUE_SEP_V1.join(['latest_bandwidth',
+ latest_bandwidth])
header_ls = [timestamp_l, version_l, file_created_l, latest_bandwidth_l,
software_l, software_version_l, TERMINATOR]
header_str = LINE_SEP.join(header_ls) + LINE_SEP
earliest_bandwidth = '2018-04-16T14:09:07'
-earliest_bandwidth_l = KEYVALUE_SEP_V110.join(['earliest_bandwidth',
- earliest_bandwidth])
+earliest_bandwidth_l = KEYVALUE_SEP_V1.join(['earliest_bandwidth',
+ earliest_bandwidth])
generator_started = '2018-04-16T14:09:05'
-generator_started_l = KEYVALUE_SEP_V110.join(['generator_started',
- generator_started])
+generator_started_l = KEYVALUE_SEP_V1.join(['generator_started',
+ generator_started])
header_extra_ls = [timestamp_l, version_l,
earliest_bandwidth_l, file_created_l, generator_started_l,
latest_bandwidth_l,
@@ -68,7 +68,7 @@ def test_v3bwheader_from_lines():
file_created=file_created,
generator_started=generator_started,
earliest_bandwidth=earliest_bandwidth)
- header, _ = V3BWHeader.from_lines_v110(header_extra_ls)
+ header, _ = V3BWHeader.from_lines_v1(header_extra_ls)
assert str(header_obj) == str(header)
@@ -78,7 +78,7 @@ def test_v3bwheader_from_text():
file_created=file_created,
generator_started=generator_started,
earliest_bandwidth=earliest_bandwidth)
- header, _ = V3BWHeader.from_text_v110(header_extra_str)
+ header, _ = V3BWHeader.from_text_v1(header_extra_str)
assert str(header_obj) == str(header)
1
0

[translation/tor-browser-manual] Update translations for tor-browser-manual
by translation@torproject.org 10 Nov '18
by translation@torproject.org 10 Nov '18
10 Nov '18
commit fbb9e1ae5edb43d41a50e80d170d22e5739991ae
Author: Translation commit bot <translation(a)torproject.org>
Date: Sat Nov 10 13:17:36 2018 +0000
Update translations for tor-browser-manual
---
da/da.po | 38 ++++++++++++++++++++++++++++++++++----
1 file changed, 34 insertions(+), 4 deletions(-)
diff --git a/da/da.po b/da/da.po
index a451f821c..b6a9c7aab 100644
--- a/da/da.po
+++ b/da/da.po
@@ -208,6 +208,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,7 +225,7 @@ msgstr "Hvad man kan gøre hvis Tor-netværket er blokeret"
#: circumvention.page:10
msgid "Circumvention"
-msgstr ""
+msgstr "Omgåelse"
#: circumvention.page:12
msgid ""
@@ -249,6 +251,8 @@ msgid ""
"external ref='media/circumvention/configure.png' "
"md5='1107595d21fe90f2aab1263d7fb0abd3'"
msgstr ""
+"external ref='media/circumvention/configure.png' "
+"md5='1107595d21fe90f2aab1263d7fb0abd3'"
#: circumvention.page:28
msgid ""
@@ -281,6 +285,8 @@ msgid ""
"external ref='media/circumvention/bridges.png' "
"md5='f5acc05bd9bacf6c69a31163d25a8778'"
msgstr ""
+"external ref='media/circumvention/bridges.png' "
+"md5='f5acc05bd9bacf6c69a31163d25a8778'"
#: circumvention.page:51
msgid ""
@@ -351,7 +357,7 @@ msgstr ""
#: downloading.page:33
msgid "To use GetTor via email:"
-msgstr "Brug GetTor via e-mail:"
+msgstr "Brug af GetTor via e-mail:"
#: downloading.page:38
msgid ""
@@ -372,7 +378,7 @@ msgstr ""
#: downloading.page:56
msgid "To use GetTor via Twitter:"
-msgstr "Brug GetTor via Twitter:"
+msgstr "Brug af GetTor via Twitter:"
#: downloading.page:61
msgid ""
@@ -383,7 +389,7 @@ msgstr ""
#: downloading.page:69
msgid "To use GetTor via Jabber/XMPP (Jitsi, CoyIM, etc.):"
-msgstr ""
+msgstr "Brug af GetTor via Jabber/XMPP (Jitsi, CoyIM osv.):"
#: downloading.page:74
msgid ""
@@ -472,6 +478,8 @@ msgid ""
"external ref='media/first-time/connect.png' "
"md5='f6de80de01c8fa2a8f80857eb8213768'"
msgstr ""
+"external ref='media/first-time/connect.png' "
+"md5='f6de80de01c8fa2a8f80857eb8213768'"
#: first-time.page:23
msgid ""
@@ -524,6 +532,8 @@ msgid ""
"external ref='media/first-time/proxy_question.png' "
"md5='f72753a963e3449129718e3d824a8ac8'"
msgstr ""
+"external ref='media/first-time/proxy_question.png' "
+"md5='f72753a963e3449129718e3d824a8ac8'"
#. This is a reference to an external file such as an image or video. When
#. the file changes, the md5 hash will change to let you know you need to
@@ -535,6 +545,8 @@ msgid ""
"external ref='media/first-time/proxy.png' "
"md5='9a5cf5c044b1dfc5f006a9d1ff77507b'"
msgstr ""
+"external ref='media/first-time/proxy.png' "
+"md5='9a5cf5c044b1dfc5f006a9d1ff77507b'"
#: index.page:8
msgid "Tor Browser User Manual"
@@ -1096,6 +1108,8 @@ msgid ""
"external ref='media/security-slider/slider.png' "
"md5='026da7c021ba5b85caf04bbf45530667'"
msgstr ""
+"external ref='media/security-slider/slider.png' "
+"md5='026da7c021ba5b85caf04bbf45530667'"
#: security-slider.page:25
msgid ""
@@ -1116,6 +1130,8 @@ msgid ""
"external ref='media/security-slider/slider_window.png' "
"md5='d5faf391c99f88aff8541a68bdc6a776'"
msgstr ""
+"external ref='media/security-slider/slider_window.png' "
+"md5='d5faf391c99f88aff8541a68bdc6a776'"
#: security-slider.page:36
msgid ""
@@ -1204,6 +1220,8 @@ msgid ""
"external ref='media/translate/tr1.png' "
"md5='a94cfd90c9982916a987e2807ae5e4f6'"
msgstr ""
+"external ref='media/translate/tr1.png' "
+"md5='a94cfd90c9982916a987e2807ae5e4f6'"
#: translate.page:38
msgid ""
@@ -1221,6 +1239,8 @@ msgid ""
"external ref='media/translate/tr2.png' "
"md5='06debc9e9dbc7ac198103a89a6961774'"
msgstr ""
+"external ref='media/translate/tr2.png' "
+"md5='06debc9e9dbc7ac198103a89a6961774'"
#: translate.page:47
msgid "On the next page, select 'Join an existing project' and continue."
@@ -1253,6 +1273,8 @@ msgid ""
"external ref='media/translate/tr3.png' "
"md5='7da6c9968cabbe9c1ecc7cdf645407e8'"
msgstr ""
+"external ref='media/translate/tr3.png' "
+"md5='7da6c9968cabbe9c1ecc7cdf645407e8'"
#: translate.page:72
msgid ""
@@ -1269,6 +1291,8 @@ msgid ""
"external ref='media/translate/tr4.png' "
"md5='835a266a5d4c368a2777cf171980f0b4'"
msgstr ""
+"external ref='media/translate/tr4.png' "
+"md5='835a266a5d4c368a2777cf171980f0b4'"
#: translate.page:80
msgid "A notification will now show up on the top of the page like so:"
@@ -1284,6 +1308,8 @@ msgid ""
"external ref='media/translate/tr5.png' "
"md5='935417a5d3b4a89e5d00508ea671a1fc'"
msgstr ""
+"external ref='media/translate/tr5.png' "
+"md5='935417a5d3b4a89e5d00508ea671a1fc'"
#: translate.page:88
msgid ""
@@ -1554,6 +1580,8 @@ msgid ""
"external ref='media/updating/update3.png' "
"md5='19b1f46d748dbcd9250883044165d218'"
msgstr ""
+"external ref='media/updating/update3.png' "
+"md5='19b1f46d748dbcd9250883044165d218'"
#: updating.page:41
msgid ""
@@ -1573,6 +1601,8 @@ msgid ""
"external ref='media/updating/update4.png' "
"md5='7e8ead67c03597f00c580c77c3103fbb'"
msgstr ""
+"external ref='media/updating/update4.png' "
+"md5='7e8ead67c03597f00c580c77c3103fbb'"
#: updating.page:50
msgid ""
1
0

[translation/support-portal_completed] Update translations for support-portal_completed
by translation@torproject.org 10 Nov '18
by translation@torproject.org 10 Nov '18
10 Nov '18
commit eb44e4fc2694a85f4d2cbfe720b9b4f6b5928f7d
Author: Translation commit bot <translation(a)torproject.org>
Date: Sat Nov 10 12:49:36 2018 +0000
Update translations for support-portal_completed
---
contents+es-AR.po | 4596 +++++++++++++++++++++++++++++++++++++++++++++++++++++
contents+pt-BR.po | 4571 ++++++++++++++++++++++++++++++++++++++++++++++++++++
contents+zh-CN.po | 4069 +++++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 13236 insertions(+)
diff --git a/contents+es-AR.po b/contents+es-AR.po
new file mode 100644
index 000000000..ebde15569
--- /dev/null
+++ b/contents+es-AR.po
@@ -0,0 +1,4596 @@
+# Translators:
+# erinm, 2018
+# Zuhualime Akoochimoya, 2018
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-10-27 19:20+CET\n"
+"PO-Revision-Date: 2018-10-02 22:41+0000\n"
+"Last-Translator: Zuhualime Akoochimoya, 2018\n"
+"Language-Team: Spanish (Argentina) (https://www.transifex.com/otf/teams/1519/es_AR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: es_AR\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\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 ""
+"Nos oponemos enfáticamente a la modificación de la manera en que Tor crea "
+"sus cicuitos."
+
+#: 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 ""
+"Sin embargo, advertí que tu otro navegador no está manteniendo tu actividad "
+"privada, y podés olvidarte y accidentalmente usar ese navegador no privado "
+"para hacer algo que intentabas hacer con el navegador Tor."
+
+#: http//localhost/misc/misc-4/
+#: (content/misc/misc-4/contents+en.lrquestion.description)
+msgid "We do not recommend using Tor with BitTorrent."
+msgstr "No recomendamos usar Tor con bittorrent."
+
+#: 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 "Esto puede significar que estás en una red que está censurada."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Français (fr)"
+msgstr "* Francés (fr)"
+
+#: 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 ""
+"En el caso de bancos, y otros sitios web sensitivos, es común también ver "
+"bloqueos basados en geografía (si un banco sabe que generalmente accedés sus"
+" servicios desde un país, y de repente estás conectando desde un relevo de "
+"salida en el otro lado del mundo, tu cuenta puede ser bloqueada o "
+"suspendida)."
+
+#: http//localhost/https/https-1/
+#: (content/https/https-1/contents+en.lrquestion.description)
+msgid "Tor prevents eavesdroppers from learning sites that you visit."
+msgstr ""
+"Tor le impide saber a observadores hostiles qué sitios estás visitando."
+
+#: 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 ""
+"Desde que Disconnect es más bien un meta motor de búsqueda que permite a los"
+" usuarios escoger entre diferentes proveedores de búsqueda, por defecto "
+"estaba entregando resultados de búsqueda de Bing, los cuales eran "
+"básicamente inaceptables desde el punto de vista de la calidad."
+
+#: 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 "* Editá /usr/local/etc/tor/torrc para que aparezca como lo siguiente:"
+
+#: http//localhost/misc/misc-15/
+#: (content/misc/misc-15/contents+en.lrquestion.title)
+msgid "How can I donate to Tor Project?"
+msgstr "¿Cómo puedo donar al proyecto Tor?"
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "* Locate your Tor Browser folder or application."
+msgstr "* Localizá tu carpeta del navegador Tor o la aplicación."
+
+#: 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 ""
+"La red de Tor tiene por encima de un millón de usuarios diarios, y sólo por "
+"encima de 6000 relevos para rutear todo su tráfico, y la carga en cada "
+"servidor puede a veces causar latencia."
+
+#: 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 ""
+"El ajuste más bajo/por defecto permite Javascript, pero ambos niveles medio "
+"y alto bloquean Javascript en sitios HTTP."
+
+#: 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 "Algo cómo ésto podría lograrlo:"
+
+#: http//localhost/tbb/tbb-14/
+#: (content/tbb/tbb-14/contents+en.lrquestion.seo_slug)
+msgid "installing-add-on-extensions-tor-browser"
+msgstr "instalando-extensiones-complementarias-en-navegador-tor"
+
+#: 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 ""
+"Estoy teniendo problemas conectándome a Tor, y no puedo darme cuenta dónde "
+"estoy equivocado."
+
+#: 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 ""
+"Un puente es solo un relevo normal con una configuración ligeramente "
+"diferente."
+
+#: 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 ""
+"Nuestro sitio web está bloqueado por un censor. ¿El Navegador Tor puede "
+"ayudar a los usuarios a acceder al mismo?"
+
+#: 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 ""
+"Por favor asegurate que ninguna otra instancia del navegador Tor esté ya "
+"corriendo, y que hayas extraído el navegador Tor en una ubicación en que tu "
+"usuario tiene los permisos correctos."
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "* Delete the Tor Browser folder or application."
+msgstr "* Borrá la carpeta del navegador Tor o la aplicación."
+
+#: 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 ""
+"Está enfáticamente recomendado no instalar nuevos complementos en el "
+"navegador Tor, porque los mismos pueden comprometer tu privacidad y "
+"seguridad."
+
+#: 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 ""
+"Para usuarios que quieren tener Javascript deshabilitado por defecto en "
+"todos los sitios HTTP, recomendamos cambiar la regla deslizante de seguridad"
+" en tu navegador Tor (en el menú Onion del navegador Tor, bajo \"Ajustes de "
+"Seguridad\")."
+
+#: http//localhost/faq/ (content/faq/contents+en.lrtopic.seo_slug)
+msgid "faq"
+msgstr "pmf"
+
+#: 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 ""
+"Estos servicios usan especialmente el dominio de nivel tope .onion (en vez "
+"de .com, .net, .org, etc.) y solamente son accesibles a través de la red de "
+"Tor."
+
+#: 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 ""
+"Un sitio web al que estoy intentando entrar está bloqueando el acceso "
+"mediante Tor."
+
+#: http//localhost/misc/misc-6/
+#: (content/misc/misc-6/contents+en.lrquestion.title)
+msgid "Does Tor keep logs?"
+msgstr "¿Tor mantiene bitácoras?"
+
+#: http//localhost/censorship/censorship-7/
+#: (content/censorship/censorship-7/contents+en.lrquestion.seo_slug)
+msgid "what-is-a-bridge"
+msgstr "qué-es-un-puente"
+
+#: 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 ""
+"No hay al momento ningún método soportado para correr Tor en Windows Phone."
+
+#: http//localhost/onionservices/onionservices-2/
+#: (content/onionservices/onionservices-2/contents+en.lrquestion.title)
+msgid "What is a .onion or what are onion services?"
+msgstr "¿Qué es un .onion o qué son servicios onion?"
+
+#: 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 ""
+"Para compartir archivos a través de Tor, <mark><a "
+"href=\"https://onionshare.org/\">OnionShare</a></mark> es una buena opción."
+
+#: http//localhost/operators/operators-7/
+#: (content/operators/operators-7/contents+en.lrquestion.description)
+msgid "No."
+msgstr "No."
+
+#: http//localhost/tbb/tbb-25/
+#: (content/tbb/tbb-25/contents+en.lrquestion.seo_slug)
+msgid "problem-noscript"
+msgstr "problema-de-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 "ajustando-navegador-tor-por-defecto"
+
+#: 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 ""
+"Desafortunadamente, aún no tenemos una versión del navegador Tor para "
+"ChromeOS."
+
+#: 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=\"New release alert\">"
+
+#: 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 ""
+"¡Los archivos en mi computadora han sido bloqueados, y alguien está "
+"demandando que descargue el navegador Tor para pagar un rescate por mis "
+"archivos!"
+
+#: 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 ""
+"Muchos nodos de salida están configurados para bloquear ciertos tipos de "
+"tráfico de compartición de archivos, tales como bittorrent. "
+
+#: http//localhost/censorship/censorship-4/
+#: (content/censorship/censorship-4/contents+en.lrquestion.seo_slug)
+msgid "cant-connect-to-tor-browser"
+msgstr "no-puedo-conectar-al-navegador-tor"
+
+#: 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 "accediendo-sitios-web-que-solamente-son-accesibles-sobre-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 ""
+"Tor requiere un reloj preciso para trabajar: por favor revisá tus ajustes de"
+" tiempo, huso horario y fecha."
+
+#: 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 ""
+"Para mayores detalles, por favor mirá nuestra <mark><a "
+"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-"
+"idea\">entrada blog sobre el tema</a></mark>."
+
+#: http//localhost/tbb/tbb-8/
+#: (content/tbb/tbb-8/contents+en.lrquestion.seo_slug)
+msgid "website-blocked-by-censor-can-tor-browser-help"
+msgstr "sitio-web-bloqueado-por-censor-puede-ayudar-navegador-tor"
+
+#: 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 ""
+"Mirá una lista de todos <mark><a "
+"href=\"https://www.torproject.org/about/sponsors.html.en\">nuestros "
+"patrocinantes</a></mark> y unas series de <mark><a "
+"href=\"https://blog.torproject.org/category/tags/form-990\">entradas de "
+"blog</a></mark> sobre nuestros reportes financieros."
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "RunAsDaemon 1"
+msgstr "RunAsDaemon 1"
+
+#: 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 ""
+"Si es requerido un proxy SOCKS para tu configuración de red, por favor "
+"asegurate que hayas entrado los detalles del mismo correctamente."
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.seo_slug)
+msgid "using-correct-packages"
+msgstr "usando-los-paquetes-correctos"
+
+#: 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 ""
+"Si corrés el navegador Tor y otro navegador al mismo tiempo, no se afectarán"
+" ni el rendimiento de Tor ni las propiedades de privacidad."
+
+#: 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 ""
+"El navegador Tor sin dudas puede ayudar a la gente a acceder a tu sitio web "
+"desde lugares donde esté bloqueado."
+
+#: http//localhost/tbb/tbb-21/
+#: (content/tbb/tbb-21/contents+en.lrquestion.title)
+msgid "How do I view Tor Browser message log?"
+msgstr "¿Cómo veo la bitácora de mensajes del navegador Tor?"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Deutsch (de)"
+msgstr "* Alemán (de)"
+
+#: 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 "como-corro-un-intermedio-o-guarda-en-freebsd"
+
+#: http//localhost/misc/misc-15/
+#: (content/misc/misc-15/contents+en.lrquestion.description)
+msgid "Thank you for your support!"
+msgstr "¡Gracias por tu soporte!"
+
+#: 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 ""
+"Si necesitás otros puentes, podés obtenerlos en nuestro <mark><a "
+"href=\"https://bridges.torproject.org/\">sitio web de puentes</a></mark>."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Polish (pl)"
+msgstr "* Polaco (pl)"
+
+#: 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 ""
+"El navegador Tor está disponible corrientemente en Windows, Linux y 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 ""
+"Para <mark><a "
+"href=\"https://www.torproject.org/docs/android.html.en\">Android</a></mark>,"
+" <mark><a href=\"https://guardianproject.info/\">El proyecto "
+"Guardián</a></mark> mantiene las aplicaciones basadas en Tor <mark><a "
+"href=\"https://guardianproject.info/apps/orbot/\">Orbot</a></mark> y "
+"<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 "usar-rpv-con-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 ""
+"Sin embargo, tus proveedores de servicio o administradores de red pueden ser"
+" capaces de ver que te estás conectando a la red de Tor, aunque no sabrán "
+"qué estás haciendo cuando estés ahí."
+
+#: 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 ""
+"* Asegurate que tor arranque en la inicialización del sistema corriendo "
+"\"sysrc tor_enable=YES\" (como superusuario)."
+
+#: 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 ""
+"Puede haber una dificultad temporaria de conexión, o los operadores del "
+"sitio pueden haberlo sacado de línea sin ninguna advertencia."
+
+#: http//localhost/misc/misc-10/
+#: (content/misc/misc-10/contents+en.lrquestion.description)
+msgid "No, the Tor Project does not offer hosting services."
+msgstr "No, el proyecto Tor no ofrece servicios de alojamiento de sitios."
+
+#: 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 ""
+"19.11.2017 00:04:48.200 [NOTICE] Bootstrapped 10%: Finishing handshake with "
+"directory server"
+
+#: 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 ""
+"Podés ayudar a mejorar la velocidad de la red corriendo tu propio relevo, o "
+"animando a otros a hacerlo."
+
+#: 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 ""
+"Podrías ver una indicación escrita cuando el navegador Tor se abre, "
+"diciéndote que está disponible para actualizar."
+
+#: 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 ""
+"Podés actualizar el navegador Tor tan pronto como una nueva versión sea "
+"lanzada."
+
+#: 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 ""
+"Lo lamentamos, pero no hay al momento soporte oficial para correr el "
+"navegador Tor en *BSD."
+
+#: 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 "* Para 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 ""
+"Una vez que hayas copiado la bitácora, estarás habilitado para pegarla en un"
+" editor de texto o cliente de correo electrónico."
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "* Run \"pkg install tor\" (as root)."
+msgstr "* Corré \"pkg install tor\" (como superusuario)."
+
+#: http//localhost/misc/misc-15/
+#: (content/misc/misc-15/contents+en.lrquestion.seo_slug)
+msgid "donate-tor-project"
+msgstr "donar-proyecto-tor"
+
+#: 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 ""
+"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)"
+
+#: http//localhost/connecting/connecting-1/
+#: (content/connecting/connecting-1/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-wont-connect"
+msgstr "navegador-tor-no-se-conecta"
+
+#: http//localhost/onionservices/
+#: (content/onionservices/contents+en.lrtopic.seo_slug)
+msgid "onion-services"
+msgstr "onion-services"
+
+#: http//localhost/onionservices/
+#: (content/onionservices/contents+en.lrtopic.title)
+msgid "Onion Services"
+msgstr "Servicios Onion"
+
+#: 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 ""
+"Si las fuerzas policiales se mostraran interesadas en el tráfico desde tu "
+"relevo de salida, es posible que los oficiales encauten tu computadora."
+
+#: 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 ""
+"Mirá nuestra página en <mark><a href=\"https://www.torproject.org/docs"
+"/pluggable-transports.html.en\">transportes insertables</a></mark> para más "
+"información."
+
+#: http//localhost/tormobile/tormobile-2/
+#: (content/tormobile/tormobile-2/contents+en.lrquestion.title)
+msgid "Who is the Guardian Project?"
+msgstr "¿Quién es el proyecto Guardián?"
+
+#: 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 ""
+"Si aún no sos capaz de conectar al servicio onion, por favor intentá de "
+"nuevo más tarde."
+
+#: 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 ""
+"Sin embargo, Apple requiere que los navegadores en iOS usen algo llamado "
+"Webkit, lo cual evita que el navegador Onion tenga las mismas protecciones "
+"de privacidad que el navegador Tor."
+
+#: http//localhost/tbb/tbb-13/
+#: (content/tbb/tbb-13/contents+en.lrquestion.description)
+msgid "They need to be configured separately to use Tor."
+msgstr "Necesitan ser configurados separadamente para usar Tor."
+
+#: http//localhost/tbb/ (content/tbb/contents+en.lrtopic.seo_slug)
+msgid "tor-browser"
+msgstr "tor-browser"
+
+#: 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 "por-qué-tor-está-usando-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 ""
+"Debieras ver uno de éstos errores comunes (prestá atención a las siguientes "
+"líneas en la bitácora de Tor):"
+
+#: 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 "decir-que-sitio-web-es-visitado-mientras-use-navegador-tor"
+
+#: 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 ""
+"La mayoría de las veces, simplemente descargando el <mark><a "
+"href=\"https://www.torproject.org/download/download-easy.html.en\">navegador"
+" Tor</a></mark> y usándolo para navegar hacia el sitio bloqueado permitirá "
+"el acceso."
+
+#: 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 ""
+"Detestamos que haya algunas personas que usen Tor para hacer cosas "
+"terribles, pero no podemos hacer nada para librarnos de ellos sin también "
+"socavar a los activistas de derechos humanos, periodistas, sobrevivientes de"
+" abuso, y otras personas que usan Tor para buenas cosas."
+
+#: http//localhost/operators/ (content/operators/contents+en.lrtopic.seo_slug)
+msgid "operators"
+msgstr "operadores"
+
+#: 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 "¿Es seguro correr el navegador Tor y otro navegador al mismo tiempo?"
+
+#: 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 ""
+"Si no podés descargar Tor a través de nuestro <mark><a "
+"href=\"https://www.torproject.org\">sitio web</a></mark>, podés obtener una "
+"copia de Tor que te será entregada via GetTor."
+
+#: 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 ""
+"Configuramos a NoScript para permitir por defecto Javascript en el navegador"
+" Tor porque muchos sitios web no funcionarán con Javascript deshabilitado."
+
+#: 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 ""
+"En lugares donde la censura es omnipresente, tenemos un número de opciones "
+"disponibles para evadirla, incluyendo <mark><a "
+"href=\"https://www.torproject.org/docs/pluggable-"
+"transports.html.en\">transportes insertables</a></mark>."
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "* Run \"service tor start\" (as root)"
+msgstr "* Corré \"service tor start\" (como superusuario)"
+
+#: 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 "* Corré \"apt-get install tor\" (como superusuario)."
+
+#: 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 ""
+"2017-10-29 09:23:47.900 [NOTICE] Bootstrapped 10%: Finishing handshake with "
+"directory server"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Vietnamese (vi)"
+msgstr "* Vietnamita (vi)"
+
+#: http//localhost/tbb/tbb-36/
+#: (content/tbb/tbb-36/contents+en.lrquestion.seo_slug)
+msgid "run-multible-instances-of-tor-browser"
+msgstr "correr-múltiples-instancias-del-navegador-tor"
+
+#: 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 "teniendo-problemas-conectándose-a-tor"
+
+#: http//localhost/misc/misc-4/
+#: (content/misc/misc-4/contents+en.lrquestion.title)
+msgid "Can I use Tor with BitTorrent?"
+msgstr "¿Puedo usar Tor con bittorrent?"
+
+#: 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 ""
+"Tor es financiado por un número de diferentes patrocinantes, incluyendo "
+"agencias federales de EUA. fundaciones privadas, y donantes individuales."
+
+#: 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 ""
+"Algunos puentes están incorporados en el navegador Tor, y podés usarlos "
+"eligiendo \"configurar\" (y luego siguiendo las consignas) en la ventana del"
+" lanzador Tor que aparece cuando abrís el navegador Tor por primera vez."
+
+#: 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 ""
+"Si creés que ésta es una dificultad del navegador Tor, por favor reportala "
+"en nuestro <mark><a href=\"https://trac.torproject.org/\">rastreador de "
+"errores</a></mark>."
+
+#: http//localhost/tbb/tbb-18/
+#: (content/tbb/tbb-18/contents+en.lrquestion.title)
+msgid "Is there support for *BSD?"
+msgstr "¿Hay soporte para *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 "No puedo conectar al navegador Tor, ¿mi red está censurada?"
+
+#: 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 ""
+"No hay al momento ningún método soportado para hacer que el navegador Tor "
+"sea tu navegador por defecto."
+
+#: http//localhost/tbb/tbb-39/
+#: (content/tbb/tbb-39/contents+en.lrquestion.description)
+msgid "Set your security to \"Standard\"."
+msgstr "Ajustá tu seguridad a \"Estándar\"."
+
+#: 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 ""
+"La localización por defecto en Windows es el Escritorio; en macOS es la "
+"carpeta Aplicaciones (en macOS, tenés que moverla dentro de la carpeta "
+"Aplicaciones cuando completás el proceso de instalación)."
+
+#: http//localhost/tbb/tbb-22/
+#: (content/tbb/tbb-22/contents+en.lrquestion.seo_slug)
+msgid "make-tor-faster"
+msgstr "hacer-tor-más-rápido"
+
+#: http//localhost/misc/misc-8/
+#: (content/misc/misc-8/contents+en.lrquestion.title)
+msgid "Can I use the Tor logo in my product?"
+msgstr "¿Puedo usar el logo de Tor en mi producto?"
+
+#: 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 ""
+"Si ves líneas cómo éstas en tu bitácora Tor, significa que Tor falló al "
+"completar un intercambio para sincronización TLS con las autoridades de "
+"directorio."
+
+#: 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 ""
+"Para más información acerca de puentes, mirá el <mark><a href=\"https://tb-"
+"manual.torproject.org/en-US/bridges.html\">manual del navegador "
+"Tor</a></mark>."
+
+#: 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 ""
+"No pensamos que Flash sea seguro para usar en cualquier navegador - es una "
+"pieza de programa muy insegura que puede fácilmente comprometer tu "
+"privacidad o instalar programas maliciosos."
+
+#: http//localhost/onionservices/onionservices-1/
+#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
+msgid "You can access these websites by using Tor Browser."
+msgstr "Podés acceder a éstos sitios web usando el navegador Tor."
+
+#: http//localhost/tormobile/tormobile-1/
+#: (content/tormobile/tormobile-1/contents+en.lrquestion.title)
+msgid "Can I run Tor on an Android device?"
+msgstr "¿Puedo correr Tor en un dispositivo Android?"
+
+#: 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 "#RelayBandwidthBurst 100 MBytes"
+
+#: 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 ""
+"Considerá si te gustaría cambiar a la <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/doc/ReducedExitPolicy\">política"
+" de salida reducida</a></mark>."
+
+#: 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 "cualquiera-será-capaz-de-decir-qué-sitio-web-visito"
+
+#: 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 "descargar-navegador-tor-para-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 ""
+"¿Puedo aún usar otro navegador, como Chrome o Firefox, cuando estoy usando "
+"el navegador Tor?"
+
+#: 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 "¿Cómo puedo compartir archivos anónimamente a través de Tor?"
+
+#: 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 "##### Error común de bitácora #4: Distorsión de reloj"
+
+#: 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 ""
+"Ambas opciones está localizadas en el menú, pero podés acceder a la opción "
+"Nuevo Circuito dentro del menú de información del sitio, en la barra URL."
+
+#: 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 "Usando puentes probablemente arregle ésto."
+
+#: 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 them in the family"
+msgstr "## Si controlás múltiples relevos, incluilos en la familia"
+
+#: 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 ""
+"Podés leer todo acerca de eso en nuestra <mark><a "
+"href=\"https://www.torproject.org/docs/trademark-faq.html\">página de "
+"preguntas más frecuentes sobre marcas registradas</a></mark>."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* فارسى (fa)"
+msgstr "* Farsi (fa)"
+
+#: http//localhost/tbb/tbb-13/
+#: (content/tbb/tbb-13/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-protecting-other-apps"
+msgstr "protegiendo-otras-aplicaciones-con-navegador-tor"
+
+#: 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 ""
+"Usar el navegador Tor puede a veces ser más lento que otros navegadores."
+
+#: 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 ""
+"* Asegurate que tu reloj, fecha, y huso horario estén ajustados "
+"correctamente. Instalá el paquete ntp u openntpd (o similar) para mantenerlo"
+" de ésa manera."
+
+#: 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 "¿Para cuales plataformas está disponible el navegador Tor?"
+
+#: http//localhost/tormobile/tormobile-1/
+#: (content/tormobile/tormobile-1/contents+en.lrquestion.description)
+msgid "Tor on Android is provided by The Guardian Project."
+msgstr "Tor en Android está provisto por el Proyecto Guardián."
+
+#: 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 ""
+"Si no sos capaz de conectar a un servicio onion, por favor mirá <a "
+"href=\"/#onionservices-3\">¡No puedo alcanzar X.onion!</a>"
+
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.title)
+msgid "How do I run an exit relay on Debian?"
+msgstr "¿Cómo corro un relevo de salida en Debian?"
+
+#: 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 ""
+"Varios países, incluyendo China e Irán, han encontrado maneras de detectar y"
+" bloquear conexiones a puentes Tor."
+
+#: 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 ""
+"Luego pegá la bitácora de Tor dentro de un archivo de texto u otro "
+"documento."
+
+#: 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 ""
+"Tomamos algunas mediciones seguras de cómo funciona la red, las cuales podés"
+" revisar en <mark><a href=\"https://metrics.torproject.org/\">Tor "
+"Metrics</a></mark>."
+
+#: 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 ""
+"Por favor mirá <mark><a href=\"https://www.eff.org/https-"
+"everywhere/faq\">PMF HTTPS Everywhere</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 ""
+"alguien-solicita-descargar-navegador-tor-para-desbloquear-mis-archivos"
+
+#: http//localhost/tormobile/tormobile-2/
+#: (content/tormobile/tormobile-2/contents+en.lrquestion.seo_slug)
+msgid "who-is-the-guardian-project"
+msgstr "quién-es-el-proyecto-guardián"
+
+#: 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 ""
+"La mayoría de los usuarios abandonarían Tor por completo si deshabilitamos "
+"Javascript por defecto, porque causaría demasiados problemas para ellos."
+
+#: 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 ""
+"Si un proxy SOCKS no es requerido, o no estás seguro, por favor tratá "
+"conectando a la red de Tor sin un proxy SOCKS."
+
+#: 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 ""
+"Cuando estés usando el navegador Tor, nadie puede ver los sitios web que "
+"visitás."
+
+#: 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 ""
+"El navegador Tor frecuentemente hace que tu conexión aparezca como si "
+"estuviera viniendo desde una parte del mundo enteramente diferente."
+
+#: 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 ""
+"Esta opción es útil si el relevo de salida que estás usando es incapaz de "
+"conectar al sitio web que requerís, o no está cargándolo apropiadamente."
+
+#: 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 ""
+"* Asegurate que tu reloj, fecha, y huso horario estén ajustados "
+"correctamente."
+
+#: http//localhost/tormessenger/tormessenger-1/
+#: (content/tormessenger/tormessenger-1/contents+en.lrquestion.title)
+msgid "Does Tor Project make an application for private chat?"
+msgstr "¿El proyecto Tor hace alguna aplicación para charla privada?"
+
+#: 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 ""
+"Más información puede ser encontrada en las páginas web <mark><a "
+"href=\"https://guardianproject.info/apps/orbot/\">Orbot</a></mark> y "
+"<mark><a href=\"https://guardianproject.info/apps/orfox/\">Orfox</a></mark>."
+
+#: 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 ""
+"Si el navegador Tor ya está abierto, cliqueá en el icono \"botón de Tor\" "
+"(la pequeña cebolla verde en la esquina superior izquierda de la pantalla), "
+"luego \"Abrir ajustes de red\", luego \"Copiar bitácora de Tor al "
+"portapapeles\"."
+
+#: 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 ""
+"Recomendamos enfáticamente en contra de usar Tor en cualquier navegador que "
+"no sea el navegador Tor."
+
+#: 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 ""
+"Podés encontrar información más detallada acerca de Tor + RPV en <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">nuestra"
+" wiki</a></mark>."
+
+#: 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 ""
+"<h4 class=\"card-title\">Esta visualización muestra que información es "
+"visible a observadores hostiles con y sin el navegador Tor y encriptación "
+"HTTPS.</h4>"
+
+#: 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 ""
+"Específicamente, bittorrent <mark><a href=\"https://blog.torproject.org"
+"/bittorrent-over-tor-isnt-good-idea\">no es anónimo sobre Tor</a></mark>."
+
+#: 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 ""
+"Elegí una ubicación de directorio que vayas a recordar fácilmente, y una vez"
+" que la descarga termine, deberías ver allí una carpeta con el navegador "
+"Tor,"
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.title)
+msgid "How do I update Tor Browser?"
+msgstr "¿Cómo hago para actualizar el navegador Tor?"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "This should fix the issues you're experiencing."
+msgstr "Esto debiera solucionar las dificultades que estás experimentando."
+
+#: 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 ""
+"Prestá atención a una línea de bitácora en /var/log/syslog tal como \"Self-"
+"testing indicates your ORPort is reachable from the outside. Excellent.\""
+
+#: 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 "¿Cómo corro un relevo intermedio o guarda en FreeBSD o HardenedBSD?"
+
+#: http//localhost/tbb/tbb-25/
+#: (content/tbb/tbb-25/contents+en.lrquestion.title)
+msgid "I'm having a problem with NoScript."
+msgstr "Estoy teniendo un problema con NoScript."
+
+#: http//localhost/tbb/tbb-34/
+#: (content/tbb/tbb-34/contents+en.lrquestion.title)
+msgid "Why does Tor Browser ship with Javascript enabled?"
+msgstr "¿Por qué el navegador Tor viene con Javascript habilitado?"
+
+#: http//localhost/misc/misc-3/
+#: (content/misc/misc-3/contents+en.lrquestion.seo_slug)
+msgid "tor-funding"
+msgstr "financiación-tor"
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.description)
+msgid "Tor browser will install the updates."
+msgstr "El navegador Tor instalará las actualizaciones."
+
+#: 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 ""
+"* No usés los paquetes en los repositorios de Ubuntu. No son actualizados "
+"confiablemente. Si los usás, vas a perder parches importantes de estabilidad"
+" y seguridad."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Português (pt-BR)"
+msgstr "* Portugués (pt-BR)"
+
+#: 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 ""
+"El navegador Tor tiene dos maneras de cambiar tu circuito de relevos - "
+"\"Nueva identidad\" y \"Nuevo circuito Tor para éste sitio\"."
+
+#: 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 ""
+"Si no podés encontrarlo en cualquiera de esas carpetas, descargalo de nuevo "
+"y fijate en la solicitud que te pregunta por elegir un directorio para "
+"descargarlo."
+
+#: http//localhost/operators/operators-7/
+#: (content/operators/operators-7/contents+en.lrquestion.seo_slug)
+msgid "run-exit-from-home"
+msgstr "correr-salida-desde-el-hogar"
+
+#: http//localhost/operators/operators-7/
+#: (content/operators/operators-7/contents+en.lrquestion.title)
+msgid "Should I run an exit relay from home?"
+msgstr "¿Debería correr un relevo de salida desde mi hogar?"
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.seo_slug)
+msgid "updating-tor-browser"
+msgstr "actualizando-navegador-tor"
+
+#: 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 ""
+"* Revisá nuestros <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorExitGuidelines\">lineamientos"
+" de relevo de salida</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 ""
+"Usando Tor en cualquier otro navegador puede dejarte vulnerable sin las "
+"protecciones de privacidad del navegador Tor."
+
+#: http//localhost/tbb/tbb-17/
+#: (content/tbb/tbb-17/contents+en.lrquestion.seo_slug)
+msgid "run-tor-browser-and-different-browser"
+msgstr "correr-navegador-tor-y-otro-diferente"
+
+#: http//localhost/faq/faq-3/
+#: (content/faq/faq-3/contents+en.lrquestion.seo_slug)
+msgid "install-add-on-extension-tor-browser"
+msgstr "instalar-extensión-complementaria-navegador-tor"
+
+#: 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 ""
+"2017-10-29 09:23:40.800 [NOTICE] Opening Socks listener on 127.0.0.1:9150"
+
+#: 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 ""
+"\"Por favor, plantate firme en favor de la privacidad digital y la libertad "
+"de Internet, y permití a los usuarios de Tor acceder a xyz.com. Gracias.\""
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.seo_slug)
+msgid "how-do-i-run-a-obfs4-bridge-debian"
+msgstr "como-corro-un-puente-obfs4-en-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 "* Editá /etc/tor/torrc para que aparezca como lo siguiente:"
+
+#: 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 ""
+"Estoy teniendo problemas usando características de Facebook, Twitter, o "
+"algún otro sitio web cuando estoy usando el navegador Tor."
+
+#: http//localhost/misc/misc-1/
+#: (content/misc/misc-1/contents+en.lrquestion.seo_slug)
+msgid "tracing-tor-user"
+msgstr "rastreando-usuario-tor"
+
+#: http//localhost/tbb/tbb-20/
+#: (content/tbb/tbb-20/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-will-not-connect-no-censorship"
+msgstr "navegador-tor-no-conecta-sin-censura"
+
+#: 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 ""
+"Si ves líneas cómo éstas en tu bitácora Tor, significa que estás fallando en"
+" conectarte a un proxy SOCKS."
+
+#: 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 ""
+"Lo mejor para hacer en estos casos es contactar a los propietarios del sitio"
+" web, e informarles que sus CAPTCHAS están previniendo que usuarios tales "
+"como vos estén usando sus servicios."
+
+#: 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 ""
+"¿Por qué mi navegador Tor dice algo acerca de que Firefox no está "
+"funcionando?"
+
+#: http//localhost/tbb/tbb-24/
+#: (content/tbb/tbb-24/contents+en.lrquestion.title)
+msgid "I'm having a problem with DuckDuckGo."
+msgstr "Estoy teniendo un problema con 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 "¿Puedo usar Tor con un navegador aparte del navegador Tor?"
+
+#: 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 ""
+"* Prestá atención a una línea de bitácora en /var/log/syslog tal como "
+"\"Self-testing indicates your ORPort is reachable from the outside. "
+"Excellent.\""
+
+#: 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 ""
+"Dicho sea de paso, Tor es mucho más rápido de lo que solía ser, y puede que "
+"realmente no notes ningún cambio en velocidad con respecto a otros "
+"navegadores."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Türkçe (tr)"
+msgstr "* Turco (tr)"
+
+#: 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 ""
+"11/1/2017 21:11:44 PM.500 [NOTICE] Bootstrapped 85%: Finishing handshake "
+"with first hop"
+
+#: http//localhost/connecting/
+#: (content/connecting/contents+en.lrtopic.seo_slug)
+msgid "connecting-to-tor"
+msgstr "connecting-to-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=\"New release alert\">"
+
+#: 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 ""
+"Pero por favor considerá que nuestro programa es usado cada día para una "
+"amplia variedad de propósitos por activistas de derechos humanos, "
+"periodistas, sobrevivientes de violencia doméstica, informantes, oficiales "
+"de policía, y muchos otros. Desafortunadamente, la protección que nuestro "
+"programa puede proveer a estos grupos de personas puede también ser abusada "
+"por criminales y autores de programas maliciosos."
+
+#: http//localhost/misc/misc-8/
+#: (content/misc/misc-8/contents+en.lrquestion.seo_slug)
+msgid "using-tor-logo"
+msgstr "usar-logo-tor"
+
+#: http//localhost/tbb/tbb-35/
+#: (content/tbb/tbb-35/contents+en.lrquestion.seo_slug)
+msgid "get-rid-of-captchas"
+msgstr "eliminar-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 ""
+"El resto de tu circuito cambia con cada nuevo sitio web que visitás, y entre"
+" todos, éstos relevos proveen las protecciones de privacidad completas de "
+"Tor."
+
+#: http//localhost/tbb/tbb-2/
+#: (content/tbb/tbb-2/contents+en.lrquestion.seo_slug)
+msgid "first-address-relay-circuit"
+msgstr "primera-dirección-cicuito-relevo"
+
+#: 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 ""
+"En Linux, no hay una ubicación por defecto, de cualquier manera, la carpeta "
+"se llamará \"tor-browser_en-US\" si estás corriendo el navegador Tor en "
+"inglés."
+
+#: http//localhost/misc/ (content/misc/contents+en.lrtopic.seo_slug)
+msgid "misc"
+msgstr "misc"
+
+#: 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 ""
+"El navegador Tor se construye usando <mark><a href=\"https://www.mozilla.org"
+"/en-US/firefox/organizations/\">Firefox ESR</a></mark>, por lo que pueden "
+"ocurrir errores concernientes a Firefox."
+
+#: 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 ""
+"Si quisieras correr un relevo, por favor mirá nuestra <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">guía de"
+" relevo Tor</a></mark>."
+
+#: http//localhost/https/https-1/
+#: (content/https/https-1/contents+en.lrquestion.seo_slug)
+msgid "can-eavesdroppers-see-information-i-share"
+msgstr "pueden-observadores-hostiles-ver-información-que-comparto"
+
+#: http//localhost/tbb/tbb-32/
+#: (content/tbb/tbb-32/contents+en.lrquestion.title)
+msgid "Can I set Tor Browser as my default browser?"
+msgstr "¿Puedo ajustar al navegador Tor como mi navegador por defecto?"
+
+#: 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 ""
+"Por favor asegurate que tu reloj esté ajustado precisamente, incluyendo el "
+"huso horario correcto. Luego reiniciá Tor."
+
+#: http//localhost/faq/faq-2/
+#: (content/faq/faq-2/contents+en.lrquestion.seo_slug)
+msgid "can-tor-help-users-access-website"
+msgstr "puede-tor-ayudar-a-usuarios-acceder-sitio-web"
+
+#: 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 ""
+"Si tu dificultad no está listada, por favor envía un <mark><a "
+"href=\"https://trac.torproject.org\">reporte de error</a></mark>acerca de lo"
+" que estás experimentando."
+
+#: 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 ""
+"Lo lamentamos mucho, pero has sido infectado con un programa malicioso."
+
+#: 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 ""
+"El éxito más rotundo que hemos tenido al hacer que los sitios desbloqueen "
+"usuarios de Tor es involucrar a los usuarios para contactar directamente a "
+"los administradores del sitio."
+
+#: 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 "¿El navegador Tor usa un circuito diferente para cada sitio web?"
+
+#: 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 ""
+"Por favor notá que algunos clientes antivirus, como Kaspersky, puede también"
+" estar bloqueando Tor a nivel del cortafuegos."
+
+#: http//localhost/gettor/gettor-3/
+#: (content/gettor/gettor-3/contents+en.lrquestion.title)
+msgid "To use GetTor via Twitter."
+msgstr "Usar GetTor vía Twitter."
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "* Run \"service tor reload\" (as root)."
+msgstr "* Corré \"service tor reload\" (como superusuario)"
+
+#: 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 "El navegador Tor previene que otros sepan que sitios web visitás."
+
+#: 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 ""
+"Si lo que querés es simplemente ser capaz de acceder a algún recurso que "
+"está disponible solamente en un país, podrías querer considerar usar una RPV"
+" en vez de usar 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-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 MBytes"
+
+#: 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 ""
+"Un montón de trabajo ha sido puesto en hacer el navegador Tor, incluyendo el"
+" uso de parches extra para ampliar privacidad y seguridad."
+
+#: 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 ""
+"Si no sos capaz de conectar a un servicio onion, por favor mirá <a "
+"href=\"#onionservices-3\">¡No puedo alcanzar X.onion!</a>"
+
+#: 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 ""
+"Esto significa que tu computadora no será utilizada para rutear tráfico para"
+" otros."
+
+#: 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 ""
+"* Luego que tu relevo se conecte a la red, intentará determinar si los "
+"puertos que configuraste son alcanzables desde el exterior."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* English (en-US)"
+msgstr "* Inglés (en-US)"
+
+#: http//localhost/tbb/tbb-1/
+#: (content/tbb/tbb-1/contents+en.lrquestion.seo_slug)
+msgid "most-common-issues-latest-stable-tor-browser"
+msgstr "dificultades-más-comunes-último-navegador-tor-estable"
+
+#: 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 ""
+"Estamos siempre buscando más diversidad en nuestras fuentes de financiación,"
+" especialmente desde fundaciones e individuos."
+
+#: 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 "###### Error común de bitácora #1: Fallo de conexión en proxy"
+
+#: 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 ""
+"Sentimos que hablando abiertamente acerca de quienes nos financian y nuestro"
+" modelo de financiación es la mejor manera de mantener la confianza con "
+"nuestra comunidad."
+
+#: http//localhost/tbb/tbb-9/
+#: (content/tbb/tbb-9/contents+en.lrquestion.seo_slug)
+msgid "using-tor-with-a-browser-besides-tor-browser"
+msgstr "usando-tor-con-navegador-aparte-del-navegador-tor"
+
+#: 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 ""
+"Desafortunadamente, no hay ninguna manera soportada para hacer al navegador "
+"Tor tu navegador por defecto."
+
+#: 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 ""
+"El proyecto Tor no creó este programa malicioso. Los autores del mismo están"
+" solicitándote que descargues el navegador Tor presumiblemente para "
+"contactarlos anónimamente con el rescate que están demandando de vos."
+
+#: 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 ""
+"Cuando use Tor, ¿cualquiera será capaz de saber que sitios web visito?"
+
+#: 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 ""
+"Seleccionándola cerrará todas tus pestañas y ventanas, limpiará toda "
+"información privada tal como \"cookies\" e historial de navegación, y usará "
+"nuevos circuitos Tor para todas las conexiones."
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.description)
+msgid "##### New Identity"
+msgstr "##### Nueva Identidad"
+
+#: 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 ""
+"¿Usando el navegador Tor se protejen otras aplicaciones en mi computadora?"
+
+#: 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 ""
+"Es un relevo rápido y estable que permanece como el primero en tu circuito "
+"por 2-3 meses en orden a proteger contra un ataque conocido de ruptura de "
+"anonimato."
+
+#: http//localhost/tbb/tbb-42/
+#: (content/tbb/tbb-42/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-firefox-not-working-error"
+msgstr "error-firefox-no-funcionando-de-navegador-tor"
+
+#: http//localhost/tbb/tbb-31/
+#: (content/tbb/tbb-31/contents+en.lrquestion.seo_slug)
+msgid "which-platform-tor-browser-available"
+msgstr "cual-plataforma-disponible-navegador-tor"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* TorBrowser"
+msgstr "* TorBrowser"
+
+#: 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 "#Address noname.example.com"
+
+#: 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 ""
+"Cada vez que lanzamos una nueva versión estable del navegador Tor, "
+"escribimos una entrada en el blog que detalla sus nuevas características y "
+"dificultades conocidas."
+
+#: 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 ""
+"Las mismas protecciones que evitan que malas personas vulneren el anonimato "
+"provisto por Tor, también previenen que nosotros rastreemos usuarios."
+
+#: 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 ""
+"Si estás teniendo problemas conectándote, por favor seleccioná la opción "
+"\"Copiar la bitácora de Tor al portapapeles\"."
+
+#: 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> es el motor "
+"de búsqueda por defecto en el navegador Tor."
+
+#: 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 ""
+"2017-10-29 09:23:47.900 [NOTICE] Bootstrapped 5%: Connecting to directory "
+"server"
+
+#: 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 ""
+"He escuchado acerca de sitios web que solamente son accesibles a través de "
+"Tor. ¿Qué son éstos sitios web, y cómo puedo accederlos?"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* For Windows"
+msgstr "* Para Windows"
+
+#: http//localhost/tbb/tbb-26/
+#: (content/tbb/tbb-26/contents+en.lrquestion.title)
+msgid "I'm having a problem with HTTPS Everywhere."
+msgstr "Estoy teniendo un problema con HTTPS Everywhere."
+
+#: http//localhost/tbb/tbb-39/
+#: (content/tbb/tbb-39/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-issues-facebook-twitter-websites"
+msgstr "dificultades-con-facebook-twitter-del-navegador-tor"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Korean (ko)"
+msgstr "* Coreano (ko)"
+
+#: 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 ""
+"Por favor mirá el <mark><a href=\"https://duck.co/help\">portal de soporte "
+"de DuckDuckGo</a></mark>."
+
+#: 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 ""
+"2017-10-29 09:24:08.900 [WARN] Proxy Client: unable to connect "
+"toxx..xxx..xxx.xx:xxxxx (\"general SOCKS server failure\")"
+
+#: http//localhost/misc/misc-10/
+#: (content/misc/misc-10/contents+en.lrquestion.seo_slug)
+msgid "does-tor-project-offer-hosting"
+msgstr "proyecto-tor-ofrece-alojamiento"
+
+#: 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 ""
+"Al bloquear usuarios de Tor, probablemente estés bloqueando gente en países "
+"represivos que quieren usar una Internet libre, periodistas e investigadores"
+" que quieren protegerse a sí mismos de ser descubiertos, informantes, "
+"activistas, y personas ordinarias que quieren optar en contra de rastreo "
+"invasivo por parte de terceros."
+
+#: 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 ""
+"¿Hay alguna manera de cambiar la dirección IP que el navegador Tor me asigna"
+" para un sitio en particular?"
+
+#: 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 ""
+"13-11-17 19:53:49.300 [WARN] 1 connections died in state connect()ing with "
+"SSL state (No SSL object)"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Italiano (it)"
+msgstr "* Italiano (it)"
+
+#: 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 ""
+"Al momento, la longitud de ruta es parte del código ejecutable no "
+"configurable, y está establecida en 3, más el número de nodos que son "
+"sensitivos en tu camino."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* العربية (ar)"
+msgstr "* Arabe (ar)"
+
+#: 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 ""
+"Tor no mantiene ninguna bitácora que pudiera identificar a un usuario "
+"particular."
+
+#: 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 "## Ajustá tu propia información de contacto"
+
+#: 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 ""
+"¡Por favor mirá nuestra <mark><a "
+"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">página de "
+"voluntarios</a></mark> para saber cómo hacer para involucrarse!"
+
+#: 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 ""
+"Cuando estoy usando Tor, ¿puede algún observador hostil ver la información "
+"que comparto con sitios web, tal como información de ingreso y cosas que "
+"tipeo en formularios?"
+
+#: 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 ""
+"Seleccionándola causará que la pestaña activa en este momento sea recargada "
+"sobre un nuevo circuito Tor."
+
+#: 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 ""
+"No hay nada que los desarrolladores de Tor puedan hacer para tracear "
+"usuarios de Tor."
+
+#: 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 ""
+"¿Por qué el navegador Tor está construido a partir de Firefox y no algún "
+"otro navegador?"
+
+#: http//localhost/tbb/tbb-35/
+#: (content/tbb/tbb-35/contents+en.lrquestion.title)
+msgid "Can you get rid of all the captchas?"
+msgstr "¿Podés deshacerte de todos los \"captchas\"?"
+
+#: 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 ""
+"Si ésta es tu primera introducción al navegador Tor, entendemos que puedas "
+"pensar que somos malas personas que habilitan a otras personas aún peores."
+
+#: 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 ""
+"19.11.2017 00:04:48.800 [ADVERTENCIA] Se recibió una llamada NETINFO con "
+"tiempo dispar (OR:xxx.xx.x.xx:xxxx): Parece que nuestro reloj está atrasado "
+"en 1 día, 0 horas, 1 minuto, o que el de ellos está adelantado."
+
+#: 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 ""
+"Disponé de una dirección IP separada para tu relevo de salida, y no rutees "
+"tu propio tráfico a través de la misma."
+
+#: 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 "13-11-17 19:53:49.300 [ADVERTENCIA] 10 conexiones han fallado:"
+
+#: http//localhost/tormobile/tormobile-5/
+#: (content/tormobile/tormobile-5/contents+en.lrquestion.title)
+msgid "When is Tor Browser for Android being released?"
+msgstr "¿Cuándo estaría siendo lanzado el navegador Tor para Android?"
+
+#: 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 "como-corro-un-relevo-intermedio-o-guarda"
+
+#: 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 ""
+"Podés encontrar más información acerca de donaciones en nuestras <mark><a "
+"href=\"https://donate.torproject.org/donor-faq\">preguntas más frecuentes de"
+" donantes</a></mark>."
+
+#: http//localhost/tbb/tbb-40/
+#: (content/tbb/tbb-40/contents+en.lrquestion.seo_slug)
+msgid "different-circuit-each-website"
+msgstr "circuito-diferente-para-cada-sitio-web"
+
+#: 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 ""
+"Una gran porción de las características que Vidalia ofrecía han sido ahora "
+"integradas dentro del propio navegador Tor."
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.seo_slug)
+msgid "antivirus-blocking-tor"
+msgstr "antivirus-bloqueando-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 ""
+"Mirá <mark><a href=\"#operators-6\">Como corro un puente</a></mark> para más"
+" instrucciones."
+
+#: 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 "cambiar-el-número-de-saltos-que-usa-tor"
+
+#: http//localhost/misc/misc-7/
+#: (content/misc/misc-7/contents+en.lrquestion.description)
+msgid "No, we don't provide any online services."
+msgstr "No, no proveemos ningún servicio en línea."
+
+#: 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 ""
+"11/1/2017 21:11:45 PM.300 [ADVERTENCIA] Fallo en encontrar nodo para salto 0"
+" de nuestro camino. Descartando éste circuito."
+
+#: 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 ""
+"11/1/2017 21:11:43 PM.500 [NOTICE] Opening Socks listener on 127.0.0.1:9150"
+
+#: 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 ""
+"Cuando accedas a un sitio web que use un servicio onion, el navegador Tor "
+"mostrará en la barra URL un icono de una cebollita verde visualizando el "
+"estado de tu conexión: segura y usando un servicio onion."
+
+#: http//localhost/misc/misc-9/
+#: (content/misc/misc-9/contents+en.lrquestion.description)
+msgid "Vidalia is no longer maintained or supported."
+msgstr "Vidalia no es mantenido o soportado más."
+
+#: 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 ""
+"GetTor es un servicio que automáticamente responde a mensajes con vínculos a"
+" la última versión del navegador Tor, ubicados en una variedad de locaciones"
+" que son menos probable de ser censuradas, tales como Dropbox, Google Drive "
+"y GitHub."
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "Next, exclude the following processes:"
+msgstr "Luego, excluí los siguientes procesos:"
+
+#: 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 ""
+"El ajuste por defecto en el instalador para Windows también crea un atajo "
+"para vos en tu Escritorio, aunque tené en cuenta que accidentalmente podrías"
+" haber descliqueado la opción para crear el atajo."
+
+#: http//localhost/gettor/gettor-2/
+#: (content/gettor/gettor-2/contents+en.lrquestion.title)
+msgid "To use GetTor via email."
+msgstr "Usar GetTor vía correo electrónico."
+
+#: 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 ""
+"¿Cuáles son las dificultades más comunes con la última versión estable del "
+"navegador Tor?"
+
+#: 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 ""
+"No. Luego de once lanzamientos beta, discontinuamos el soporte de <a "
+"href=\"https://blog.torproject.org/sunsetting-tor-messenger\">mensajero de "
+"Tor</a>."
+
+#: 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 ""
+"Si ves líneas cómo éstas en tu bitácora de Tor, significa que tu reloj de "
+"sistema es incorrecto."
+
+#: 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 ""
+"Aún creemos en la habilidad de Tor para ser usado en una aplicación de "
+"mensajería, pero no tenemos los recursos para hacerlo en éste momento."
+
+#: http//localhost/gettor/gettor-2/
+#: (content/gettor/gettor-2/contents+en.lrquestion.seo_slug)
+msgid "to-use-gettor-via-email"
+msgstr "usar-gettor-vía-correo-electrónico"
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "* Run \"apt-get install tor obfs4proxy\" (as root)."
+msgstr "* Corré \"apt-get install tor obfs4proxy\" (como superusuario)."
+
+#: http//localhost/censorship/censorship-6/
+#: (content/censorship/censorship-6/contents+en.lrquestion.seo_slug)
+msgid "is-my-network-censored"
+msgstr "está-mi-red-censurada"
+
+#: 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 ""
+"Recomendamos una aplicación iOS llamada navegador Onion, la cual es de "
+"fuente abierta, usa ruteo Tor, y está desarrollada por alguien que trabaja "
+"cercanamente con el proyecto Tor."
+
+#: http//localhost/tbb/tbb-15/
+#: (content/tbb/tbb-15/contents+en.lrquestion.title)
+msgid "Can I download Tor Browser for ChromeOS?"
+msgstr "¿Puedo descargar el navegador Tor para ChromeOS?"
+
+#: http//localhost/tbb/tbb-2/
+#: (content/tbb/tbb-2/contents+en.lrquestion.description)
+msgid "That is normal Tor behavior."
+msgstr "Ese comportamiento es normal en Tor."
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "Removing Tor Browser from your system is simple:"
+msgstr "Remover el navegador Tor de tu sistema es simple:"
+
+#: http//localhost/tormobile/tormobile-5/
+#: (content/tormobile/tormobile-5/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-for-android"
+msgstr "navegador-tor-para-android"
+
+#: http//localhost/tbb/tbb-11/
+#: (content/tbb/tbb-11/contents+en.lrquestion.seo_slug)
+msgid "cannot-find-tor-on-windows"
+msgstr "no-puedo-encontrar-tor-en-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 ""
+"El navegador Tor te solicitará actualizar el programa una vez que una nueva "
+"versión haya sido lanzada."
+
+#: 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 ""
+"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 ""
+"El navegador Tor ya tiene instalados dos complementos - <mark><a "
+"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere y <mark><a "
+"href=\"https://noscript.net/\">NoScript</a></mark> - y añadir cualquier cosa"
+" más puede dejar tu anonimato sin efecto."
+
+#: 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 ""
+"El navegador Tor trabaja intensamente para aislarse a sí mismo del resto de "
+"tu sistema, y los pasos para hacerlo el navegador por defecto no son "
+"confiables."
+
+#: 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 ""
+"Prestá atención a una línea de bitácora en /var/log/tor/notices.log tal como"
+" \"Self-testing indicates your ORPort is reachable from the outside. "
+"Excellent.\""
+
+#: 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 ""
+"Sin embargo, información enviada sin encriptación a través de Internet "
+"usando HTTP común puede aún ser interceptada por operadores del relevo de "
+"salida o cualquiera observando el tráfico entre tu relevo de salida y tu "
+"sitio web de destino."
+
+#: 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 ""
+"11/1/2017 21:11:44 PM.300 [NOTICE] Bootstrapped 80%: Connecting to the Tor "
+"network"
+
+#: 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 ""
+"A los servicios onion se les confía también para charlar y compartir "
+"archivos libres de metadatos, interacción más segura entre periodistas y sus"
+" fuentes, como por ejemplo con <mark><a "
+"href=\"https://securedrop.org/\">SecureDrop</a></mark> u <mark><a "
+"href=\"https://onionshare.org/\">OnionShare</a></mark>, actualizaciones de "
+"programas más seguras, y maneras más seguras de alcanzar sitios web "
+"populares como <mark><a href=\"https://www.facebook.com/notes/protect-the-"
+"graph/making-connections-to-facebook-more-"
+"secure/1526085754298237/\">Facebook</a></mark>."
+
+#: 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 ""
+"Por ejemplo, el onion de DuckDuckGo es <a "
+"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+
+#: http//localhost/tormobile/tormobile-1/
+#: (content/tormobile/tormobile-1/contents+en.lrquestion.seo_slug)
+msgid "run-tor-on-android"
+msgstr "correr-tor-en-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 ""
+"Hablando en términos generales, no recomendamos usar una RPV con Tor excepto"
+" que seas un usuario avanzado que conoce como configurar ambos en una manera"
+" que no comprometa tu privacidad."
+
+#: 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 ""
+"Sitios web que sólo son accesibles a través de Tor son llamados \"onions\" y"
+" terminan en el Dominio de Nivel Tope .onion."
+
+#: 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 ""
+"También, usando rutas más largas que 3 se podría dañar el anonimato, primero"
+" porque hace a los ataques de <mark><a "
+"href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denegación de "
+"seguridad</a></mark> más fáciles, y segundo porque podría actuar como un "
+"identificador si solamente un pequeño número de usuarios tiene la misma "
+"longitud de ruta que vos."
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.title)
+msgid "How do I run a obfs4 bridge on Debian?"
+msgstr "¿Cómo corro un puente obfs4 en Debian?"
+
+#: http//localhost/tbb/tbb-30/
+#: (content/tbb/tbb-30/contents+en.lrquestion.seo_slug)
+msgid "website-locks-torbrowser-out"
+msgstr "sitio-web-bloquea-navegador-tor"
+
+#: 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 ""
+"Si no recordás cuál fue este destino, lo más probable es que sea tu carpeta "
+"Descargas o Escritorio."
+
+#: 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 ""
+"13-11-17 19:53:49.300 [ADVERTENCIA] 9 conexiones fallaron en estado de "
+"intercambio para sincronización (TLS) con estado SSL SSLv2/v3 \"read server "
+"hello A in HANDSHAKE\""
+
+#: 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 ""
+"A veces, los sitios web bloquearán usuarios de Tor porque no pueden "
+"establecer la diferencia entre el usuario promedio de Tor y tráfico generado"
+" automáticamente."
+
+#: 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 "desinstalar-navegador-tor"
+
+#: 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 ""
+"El navegador Tor es una versión modificada de Firefox específicamente "
+"diseñada para uso con Tor."
+
+#: 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 ""
+"Escribí tu sistema operativo (tal como Windows, MacOS (OS X), o Linux) en el"
+" cuerpo del mensaje y envialo."
+
+#: http//localhost/tbb/tbb-6/ (content/tbb/tbb-6/contents+en.lrquestion.title)
+msgid "Can I make Tor Browser my default browser?"
+msgstr "¿Puedo hacer al navegador Tor mi navegador por defecto?"
+
+#: 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 ""
+"Por el más profundo recurso en correr un relevo, mirá la <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Guía de"
+" relevo Tor</a></mark>."
+
+#: 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 ""
+"###### Error común de bitácora #2: No se pueden alcanzar relevos de guardia"
+
+#: 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 ""
+"Dar de alta un puente obfsproxy requiere un paquete adicional de programas y"
+" configuraciones adicionales."
+
+#: 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 ""
+"* Como superusuario, añadí las siguientes líneas a /etc/apt/sources.list. "
+"Usá la versión que encontraste en el paso previo para <version>."
+
+#: 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 ""
+"Y si estás accediendo un sitio web con https y servicio onion, mostrará un "
+"icono de una cebolla verde y un candado."
+
+#: 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 ""
+"<h4 class=\"card-title\">Si estás usando HTTPS, el URL de tu sitio web "
+"comenzará con \"https://\"</h4>"
+
+#: 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 ""
+"<mark><a href=\"https://blog.torproject.org/tor-heart-onion-browser-and-"
+"more-ios-tor\">Aprendé más acerca del navegador Onion</a></mark>."
+
+#: 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 "Nickname ididnteditheconfig"
+
+#: http//localhost/misc/misc-6/
+#: (content/misc/misc-6/contents+en.lrquestion.seo_slug)
+msgid "does-tor-keep-logs"
+msgstr "tor-mantiene-bitácoras"
+
+#: http//localhost/tbb/tbb-7/
+#: (content/tbb/tbb-7/contents+en.lrquestion.description)
+msgid "Thank you.\""
+msgstr "Gracias.\""
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* 日本語 (ja)"
+msgstr "* Japonés (ja)"
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.description)
+msgid "##### New Tor Circuit for this Site"
+msgstr "##### Nuevo circuito Tor para este sitio."
+
+#: 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 ""
+"¿Qué motor de búsqueda viene con el navegador Tor y cómo hace para proteger "
+"mi privacidad?"
+
+#: 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 ""
+"Por favor asegurate que tu reloj de sistema y huso horario estén ajustados "
+"precisamente."
+
+#: 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 ""
+"Ciertamente podés usar otro navegador mientras estás también usando el "
+"navegador Tor."
+
+#: 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 ""
+"Si no podés alcanzar el servicio onion que deseás, asegurate que hayas "
+"entrado la dirección onion de 16 caracteres, o el formato nuevo de 56 "
+"caracteres, correctamente: aún un pequeño error evitará que el navegador Tor"
+" sea capaz de alcanzar el sitio."
+
+#: http//localhost/censorship/
+#: (content/censorship/contents+en.lrtopic.seo_slug)
+msgid "censorship"
+msgstr "censura"
+
+#: 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 ""
+"¿Por qué no previenen que malas personas hagan cosas malas cuando usan Tor?"
+
+#: 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 ""
+"El proyecto Tor no soporta o condona el uso de nuestro programa para "
+"propósitos maliciosos."
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.description)
+msgid "* Determine your Ubuntu version by running the following command:"
+msgstr "* Determiná tu versión de Ubuntu corriendo el siguiente comando:"
+
+#: 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 ""
+"El navegador Tor está actualmente disponible en <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> y <mark><a "
+"href=\"https://www.torproject.org/download/download-easy.html.en#mac\">macOS"
+" (OS X)</a></mark>."
+
+#: http//localhost/censorship/censorship-1/
+#: (content/censorship/censorship-1/contents+en.lrquestion.seo_slug)
+msgid "our-website-is-blocked-by-a-censor"
+msgstr "nuestro-sitio-web-está-bloqueado-por-un-censor"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "Finally, restart Tor Browser."
+msgstr "Finalmente, reiniciá el navegador Tor."
+
+#: http//localhost/connecting/ (content/connecting/contents+en.lrtopic.title)
+msgid "Connecting To Tor"
+msgstr "Conectándose a Tor"
+
+#: 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 ""
+"* Notá que la utilidad estándar \"Desinstalar\" de tu sistema operativo no "
+"es usada."
+
+#: 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 ""
+"Cuando confirme que es alcanzable, cargará un \"descriptor de servidor\" a "
+"las autoridades de directorio para hacerles saber a los clientes qué "
+"dirección, puertos, claves, etc. está usando tu relevo."
+
+#: 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 "ContactInfo 0xFFFFFFFF Random Person <nobody AT example dot com>"
+
+#: http//localhost/misc/misc-9/
+#: (content/misc/misc-9/contents+en.lrquestion.title)
+msgid "I'm having a problem updating or using Vidalia."
+msgstr "Estoy teniendo un problema actualizando o usando 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 ""
+"Una de las dificultades más comunes que causa errores de conexión en el "
+"navegador Tor es un reloj de sistema incorrecto."
+
+#: 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 ""
+"¿Por qué es la primera dirección IP en mi circuito de relevos siempre la "
+"misma?"
+
+#: 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 ""
+"Para Android, el proyecto Guardián mantiene las aplicaciones, basadas en "
+"Tor, Orbot y Orfox."
+
+#: 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 ""
+"19.11.2017 00:04:48.000 [NOTICE] Bootstrapped 5%: Connecting to directory "
+"server"
+
+#: 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 ""
+"La única manera de resolver esto es siguiendo el procedimiento recomendado "
+"por el sitio para recuperación de la cuenta, o contactando a los operadores "
+"y explicando la situación."
+
+#: 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 ""
+"Si ésto no soluciona el problema, mirá la página de Solución de Problemas en"
+" el <mark><a href=\"https://tb-manual.torproject.org/en-"
+"US/troubleshooting.html\">manual del navegador Tor</a></mark>."
+
+#: 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 ""
+"Podrías ser capaz de evitar este escenario si tu proveedor ofrece "
+"autenticación de 2 factores, lo cual es una opción de seguridad mucho mejor "
+"que reputaciones basadas en IP."
+
+#: 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 ""
+"Mi protección contra virus o programas maliciosos está bloqueándome de "
+"acceder al navegador 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-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 ""
+"Si no ves éste mensaje, significa que tu relevo no es alcanzable desde el "
+"exterior."
+
+#: 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.exe (si usás puentes)"
+
+#: 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 ""
+"Sé cuidadoso cuando cambiés alternadamente entre Tor y un navegador menos "
+"seguro, porque podés usar accidentalmente el otro navegador para algo que "
+"intentabas hacer usando Tor."
+
+#: 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 "no-puedo-alcanzar-x-onion"
+
+#: http//localhost/misc/misc-3/
+#: (content/misc/misc-3/contents+en.lrquestion.title)
+msgid "Who funds Tor?"
+msgstr "¿Quién financia Tor?"
+
+#: http//localhost/tbb/tbb-24/
+#: (content/tbb/tbb-24/contents+en.lrquestion.seo_slug)
+msgid "problem-with-duckduckgo"
+msgstr "problema-con-duckduckgo"
+
+#: http//localhost/tbb/tbb-23/
+#: (content/tbb/tbb-23/contents+en.lrquestion.seo_slug)
+msgid "search-engine-tor-browser"
+msgstr "motor-búsqueda-navegador-tor"
+
+#: http//localhost/tbb/tbb-36/
+#: (content/tbb/tbb-36/contents+en.lrquestion.title)
+msgid "Can I run multiple instances of Tor Browser?"
+msgstr "¿Puedo correr múltiples instancias del navegador Tor?"
+
+#: 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 ""
+"Por favor mirá las <mark><a href=\"https://noscript.net/faq\">PMF de "
+"NoScript</a></mark>."
+
+#: 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 ""
+"Debieras revisar tus cortafuegos, que los IP y puertos que especificaste en "
+"tu torrc estén correctos, etc."
+
+#: 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 ""
+"Los servicios onion permiten a la gente navegar pero también publicar "
+"anónimamente, incluyendo la publicación de sitios web anónimos."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.seo_slug)
+msgid "need-tor-browser-language-not-english"
+msgstr "necesito-navegador-tor-no-en-inglés"
+
+#: 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 ""
+"En éste momento estamos trabajando en el navegador Tor para Android, y "
+"podrías llegar a ver lanzamientos alfa aparecer en meses venideros."
+
+#: http//localhost/gettor/gettor-3/
+#: (content/gettor/gettor-3/contents+en.lrquestion.seo_slug)
+msgid "to-use-gettor-via-twitter"
+msgstr "usar-gettor-vía-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 ""
+"* Añadí la clave gpg usada para firmar los paquetes corriendo los siguientes"
+" comandos:"
+
+#: 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 ""
+"Si ves líneas cómo éstas en tu bitácora Tor, significa que tu Tor falló en "
+"conectar al primer nodo en el cicuito Tor."
+
+#: 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 ""
+"¿Los tenés vos? <mark><a "
+"href=\"https://www.torproject.org/about/contact.html.en\">Contactanos</a></mark>."
+
+#: 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 "cómo-descargar-tor-si-torproject-org-es-bloqueado"
+
+#: 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 ""
+"Si empezaste a tener dificultades con tu navegador Tor luego de actualizar, "
+"revisá <mark><a "
+"href=\"https://blog.torproject.org\">blog.torproject.org</a></mark> por la "
+"entrada más reciente acerca del navegador estable Tor, para ver si tu "
+"dificultad está listada."
+
+#: http//localhost/misc/ (content/misc/contents+en.lrtopic.title)
+msgid "Misc"
+msgstr "Misc"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* obfs4proxy.exe (if you use bridges)"
+msgstr "* obfs4proxy.exe (si usás puentes)"
+
+#: 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 ""
+"Luego de unas pocas horas (para darle suficiente tiempo para propagar), "
+"podés consultar <mark><a "
+"href=\"https://metrics.torproject.org/rs.html#search\">Metrics</a></mark> "
+"para ver si tu relevo ha sido exitosamente registrado en la red."
+
+#: 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 ""
+"GetTor responderá con un correo electrónico conteniendo vínculos desde los "
+"cuales podés descargar el navegador Tor, la firma criptográfica (necesaria "
+"para la <mark><a href=\"https://www.torproject.org/docs/verifying-"
+"signatures.html.en\">verificación de la descarga</a></mark>), la huella "
+"digital de la clave usada para hacer la firma, y suma de verificación del "
+"paquete."
+
+#: 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 "¿Cómo me aseguro que estoy usando los paquetes correctos en Ubuntu?"
+
+#: 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 ""
+"El proyecto Guardián mantiene Tor (y otras aplicaciones de privacidad) en "
+"Android. Más información puede ser encontrada en el sitio web <mark><a "
+"href=\"https://guardianproject.info/\">proyecto Guardián</a></mark>."
+
+#: 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 ""
+"Otras pestañas y ventanas abiertas del mismo sitio web, empezarán a usar el "
+"nuevo circuito una vez que sean recargadas."
+
+#: 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 "aplicación-proyecto-tor-para-charla-privada"
+
+#: 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 ""
+"En vez de eso, considerá correr tu relevo de salida en una instalación "
+"comercial que simpatice con la causa de Tor."
+
+#: 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 ""
+"Por favor, tratá conectando con puentes, y eso debiera arreglar el problema."
+
+#: 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 ""
+"Orfox es para navegación en web, y Orbot puede rutear otras aplicaciones en "
+"tu teléfono Android sobre la red de 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-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "If it hasn't, re-check firewalls, IP and ports again."
+msgstr "Si no lo ha logrado, revisá de nuevo los cortafuegos, IP y puertos."
+
+#: 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 ""
+"Flash está deshabilitado en el navegador Tor, y te recomendamos que no lo "
+"habilites."
+
+#: 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 ""
+"Si no podés alcanzar el servicio onion que deseás, asegurate que hayas "
+"entrado la dirección onion de 16 caracteres correctamente: aún un pequeño "
+"error evitará que el navegador Tor sea capaz de alcanzar el sitio."
+
+#: 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 ""
+"Hay algo llamado <mark><a href=\"https://www.torbsd.org/\">el proyecto "
+"TorBSD</a></mark>, pero su navegador Tor no está soportado oficialmente."
+
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.seo_slug)
+msgid "how-do-i-run-an-exit"
+msgstr "como-corro-una-salida"
+
+#: http//localhost/ (content/contents+en.lrshowcase.title)
+msgid "How can we help?"
+msgstr "¿Cómo podemos ayudarte?"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Nederlands (nl)"
+msgstr "* Holandés (nl)"
+
+#: 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 ""
+"<mark><a "
+"href=\"https://www.torproject.org/projects/torbrowser/design/\">Aprendé más "
+"acerca del diseño del navegador Tor</a></mark>."
+
+#: 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 ""
+"Actualmente ofrecemos el <mark>Navegador Tor<a "
+"href=\"https://www.torproject.org/projects/torbrowser.html.en\"></a> en los "
+"siguientes lenguajes:"
+
+#: 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 "correr-navegador-tor-me-convierte-en-relevo"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Español (es-ES)"
+msgstr "* Español (es-ES)"
+
+#: http//localhost/tbb/tbb-19/
+#: (content/tbb/tbb-19/contents+en.lrquestion.seo_slug)
+msgid "cannot-connect-to-tor-browser-network-censored"
+msgstr "no-puedo-conectar-al-navegador-tor-red-censurada"
+
+#: 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 "Contactá tu proveedor y preguntale si provee A2F."
+
+#: http//localhost/misc/misc-2/
+#: (content/misc/misc-2/contents+en.lrquestion.seo_slug)
+msgid "prevent-bad-people-doing-bad-things-with-tor"
+msgstr "prevenir-a-malas-personas-de-hacer-cosas-malas-con-tor"
+
+#: http//localhost/faq/ (content/faq/contents+en.lrtopic.title)
+msgid "Most Frequently Asked Questions"
+msgstr "Preguntas más frecuentes"
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.title)
+msgid "How do I uninstall Tor Browser?"
+msgstr "¿Cómo desinstalo el navegador Tor?"
+
+#: 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 ""
+"Descargué e instalé el navegador Tor para Windows, pero ahora no puedo "
+"encontrarlo."
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "* Empty your Trash."
+msgstr "* Vaciá la basura."
+
+#: http//localhost/tormobile/tormobile-3/
+#: (content/tormobile/tormobile-3/contents+en.lrquestion.title)
+msgid "Can I run Tor on an iOS device?"
+msgstr "¿Puedo correr Tor en un dispositivo iOS?"
+
+#: 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 "¿Cómo corro Tor en 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 ""
+"Un sitio web (banco, proveedor de correo electrónico, etc.) me bloquea cada "
+"vez que uso Tor. ¿Qué puedo hacer?"
+
+#: http//localhost/misc/misc-14/
+#: (content/misc/misc-14/contents+en.lrquestion.title)
+msgid "How do I volunteer with Tor Project?"
+msgstr "¿Cómo hago para ser voluntario en el proyecto Tor?"
+
+#: 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 ""
+"Sin embargo, debieras saber que las propiedades de privacidad del navegador "
+"Tor no estarán presentes en el otro navegador."
+
+#: http//localhost/faq/faq-4/
+#: (content/faq/faq-4/contents+en.lrquestion.description)
+#: 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 "
+"<mark><a href=\"https://onionbrowser.com/\">Onion Browser</a></mark>."
+msgstr ""
+"No hay aún una versión oficial de Tor para iOS, aunque recomendamos <mark><a"
+" href=\"https://onionbrowser.com/\">el navegador Onion</a></mark>."
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "Enabling ntpd is suggested."
+msgstr "Es sugerido habilitar ntpd."
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.seo_slug)
+msgid "change-ip-address"
+msgstr "cambiar-dirección-ip"
+
+#: 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 ""
+"* Corré los siguientes comandos para instalar tor y verificar sus firmas:"
+
+#: 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 ""
+"2017-10-29 09:24:08.900 [WARN] Proxy Client: unable to connect to "
+"xx..xxx..xxx.xx:xxxxx (\"general SOCKS server failure\")"
+
+#: 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 ""
+"Puede que te sea ofrecida una opción del programa para 32 ó 64 bits, esto "
+"depende del modelo de la computadora que estás usando; consultá la "
+"documentación acerca de tu computadora para saber más."
+
+#: 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 ""
+"Para más información sobre como trabajan los relevos de guardia, mirá esta "
+"<mark><a href=\"https://blog.torproject.org/improving-tors-anonymity-"
+"changing-guard-parameters\">entrada de blog</a></mark> y <mark><a "
+"href=\"https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf\">artículo</a></mark> sobre "
+"guardias de entrada."
+
+#: 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 "¿Cómo corro un relevo intermedio o guarda en Debian?"
+
+#: 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 ""
+"La mayoría de las protecciones contra virus o programas maliciosos permiten "
+"al usuario incluir en una \"lista blanca\" ciertos procesos que de otra "
+"manera serían bloqueados."
+
+#: http//localhost/tbb/tbb-6/
+#: (content/tbb/tbb-6/contents+en.lrquestion.seo_slug)
+msgid "make-tor-browser-default-browser"
+msgstr "hacer-navegador-tor-navegador-por-defecto"
+
+#: 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 ""
+"Si estás corriendo un antivirus, por favor mirá <mark><a "
+"href=\"http://support.torproject.org/#tbb-10\">Mi protección contra virus y "
+"programas maliciosos está bloqueándome de acceder al navegador "
+"Tor</a></mark>, es común que programas antivirus/protectores contra "
+"programas maliciosos causen éste tipo de dificultad."
+
+#: http//localhost/tbb/tbb-26/
+#: (content/tbb/tbb-26/contents+en.lrquestion.seo_slug)
+msgid "problem-with-https-everywhere"
+msgstr "problema-con-https-everywhere"
+
+#: http//localhost/censorship/ (content/censorship/contents+en.lrtopic.title)
+msgid "Censorship"
+msgstr "Censura"
+
+#: 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 ""
+"Por favor, plantate firme en favor de la privacidad digital y la libertad de"
+" Internet, y permití a los usuarios de Tor acceder a xyz.com."
+
+#: 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 ""
+"El navegador Tor no se conecta, pero no pareciera ser una dificultad que "
+"involucre censura."
+
+#: 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 ""
+"Las direcciones deben ser compartidas con vos por quien aloja el sitio web, "
+"ya que los onions no están indexados en los motores de búsqueda en la manera"
+" típica en que lo están los sitios web convencionales."
+
+#: 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 ""
+"Si el sitio que estás visitando usa HTTPS, luego el tráfico egresando de tu "
+"relevo de salida estará encriptado, y no será visible a observadores "
+"hostiles."
+
+#: 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 ""
+"Por esa razón, es mejor no correr tu relevo de salida en tu hogar o usando "
+"la conexión de internet del mismo."
+
+#: http//localhost/censorship/censorship-7/
+#: (content/censorship/censorship-7/contents+en.lrquestion.title)
+msgid "What is a bridge?"
+msgstr "¿Qué es un puente?"
+
+#: 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 ""
+"Cualquier otra aplicación en tu sistema (incluyendo otros navegadores) no "
+"tendrán sus conexiones ruteadas sobre la red de Tor, y no serán protegidas."
+
+#: 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 ""
+"* Debieras ver también el mensaje \"Transporte 'obfs4' registrado en "
+"servidor\" indicando que obfs4proxy está funcionando."
+
+#: 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 ""
+"La solución más sencilla es cliquear en el \"menú onion\", y luego en la "
+"regla deslizante de seguridad."
+
+#: 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 ""
+"Tor está diseñado para defender los derechos humanos y la privacidad, "
+"previniendo que cualquiera censure, aún nosotros."
+
+#: 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 ""
+"Por supuesto, debieras evitar mantener cualquier información sensitiva o "
+"personal en la computadora que está albergando tu relevo de salida."
+
+#: 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 ""
+"Los puentes <mark><a "
+"href=\"https://github.com/Yawning/obfs4/blob/master/doc/obfs4-spec.txt\">obfsproxy</a></mark>"
+" solucionan ésto añadiendo otra capa de ofuscación."
+
+#: 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 "El archivo que descargaste y corriste te pregunta por un destino."
+
+#: 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 ""
+"Algunas entidades, como tu Proveedor de Servicios de Internet (ISP), pueden "
+"ser capaces de ver que estás usando Tor, pero no podrán saber a dónde vas "
+"cuando lo hagas."
+
+#: 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 ""
+"Algunas veces, sitios web que usan profusamente Javascript pueden tener "
+"dificultades funcionales sobre el navegador Tor."
+
+#: http//localhost/gettor/gettor-2/
+#: (content/gettor/gettor-2/contents+en.lrquestion.description)
+msgid "Send an email to gettor(a)torproject.org."
+msgstr "Enviar un correo electrónico a 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 "Sólo el tráfico del navegador Tor será ruteado sobre la red de Tor."
+
+#: 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 ""
+"Eso es, en casos normales es 3, pero por ejemplo si estás accediendo un "
+"servicio onion o una dirección \".exit\" puede ser más."
+
+#: 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 "* Corré \"service tor reload\" (como superusuario)"
+
+#: 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 ""
+"Una lista de todos nuestros proyectos de programas puede ser encontrada en "
+"nuestra <mark><a "
+"href=\"https://www.torproject.org/projects/projects.html.en\">página de "
+"proyectos</a></mark>."
+
+#: 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 ""
+"Esta opción es útil si querés prevenir que tu subsecuente actividad en el "
+"navegador sea vinculable con lo que estuviste haciendo anteriormente."
+
+#: http//localhost/misc/misc-10/
+#: (content/misc/misc-10/contents+en.lrquestion.title)
+msgid "Does the Tor Project offer hosting?"
+msgstr "¿El proyecto Tor ofrece alojamiento de sitios?"
+
+#: 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 "¿Puedo usar una RPV con 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 ""
+"Relevos puente son relevos Tor que no están listados en el directorio "
+"público de Tor."
+
+#: 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 ""
+"Podés también asegurarte que seas capaz de acceder otros servicios onion "
+"conectando al servicio onion de <a "
+"href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo</a>,"
+
+#: 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 ""
+"Para obtener vínculos para descargar el navegador Tor, enviá un mensaje a "
+"gettor(a)torproject.org con uno de los siguientes códigos en él:"
+
+#: 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 ""
+"\"¡Hola! Traté de acceder al sitio xyz.com mientras estaba usando el "
+"navegador Tor y descubrí que no permitís a usuarios de Tor acceder a tu "
+"sitio."
+
+#: 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 ""
+"Para obtener vínculos para descargar el navegador Tor, enviá un mensaje "
+"directo a <mark><a href=\"https://twitter.com/get_tor\">@get_tor</a></mark> "
+"con uno de los siguientes códigos en él (no necesitás seguir la cuenta):"
+
+#: 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 ""
+"Esto significa que a veces un sitio web se cargaría en el navegador Tor, y a"
+" veces se cargaría en otro navegador. Este tipo de comportamiento puede ser "
+"peligroso y causar la ruptura del anonimato."
+
+#: 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 ""
+"Ultimamente, queremos hacer al navegador Tor tan seguro como sea posible, "
+"haciéndolo mientras tanto utilizable para la mayoría de la gente, por lo que"
+" por ahora, eso significa dejar Javascript habilitado por defecto."
+
+#: 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 ""
+"Afortunadamente, la mayoría de los sitios web, dispositivos, y otros "
+"navegadores se están alejando del uso de Flash."
+
+#: 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 "#MyFamily $keyid,$keyid,..."
+
+#: http//localhost/censorship/censorship-2/
+#: (content/censorship/censorship-2/contents+en.lrquestion.seo_slug)
+msgid "website-is-blocking-access-over-tor"
+msgstr "sitio-web-está-bloqueando-acceso-sobre-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 ""
+"## La dirección IP o nombre de la computadora para conexiones entrantes "
+"(dejalo comentado y Tor adivinará)"
+
+#: 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 "cómo-descargar-tor-si-torproject-org-es-bloqueado"
+
+#: 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 ""
+"DuckDuckGo no rastrea sus usuarios ni almacena ningún dato acerca de "
+"búsquedas de usuario. Aprendé más acerca de la <mark><a "
+"href=\"https://duckduckgo.com/privacy\">política de privacidad de "
+"DuckDuckGo</a></mark>."
+
+#: http//localhost/tbb/tbb-21/
+#: (content/tbb/tbb-21/contents+en.lrquestion.seo_slug)
+msgid "view-tor-browser-message-log"
+msgstr "ver-bitácora-mensajes-navegador-tor"
+
+#: http//localhost/tbb/tbb-38/
+#: (content/tbb/tbb-38/contents+en.lrquestion.seo_slug)
+msgid "network-admin-know-i-am-using-tor"
+msgstr "administrador-de-red-sabe-que-estoy-usando-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 ""
+"ofrece-proyecto-tor-servicios-correo-electrónico-o-protección-de-privacidad"
+
+#: 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 ""
+"Podés también asegurarte que seas capaz de acceder otros servicios onion "
+"conectándote al <a href=\"http://3g2upl4pq6kufc4m.onion\">servicio onion de "
+"DuckDuckGo</a>."
+
+#: http//localhost/misc/misc-14/
+#: (content/misc/misc-14/contents+en.lrquestion.seo_slug)
+msgid "volunteer-with-tor-project"
+msgstr "voluntarios-con-proyecto-tor"
+
+#: 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 ""
+"El navegador Tor te advertirá que toda actividad y descargas serán "
+"detenidas, por lo cual tené en cuenta esto antes de cliquear \"Nueva "
+"Identidad\"."
+
+#: http//localhost/tbb/tbb-33/
+#: (content/tbb/tbb-33/contents+en.lrquestion.title)
+msgid "Does running Tor Browser make me a relay?"
+msgstr "¿El navegador Tor me hace actuar como relevo?"
+
+#: 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 ""
+"¿Mi administrador de red será capaz de decir que estoy usando el navegador "
+"Tor?"
+
+#: 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 ""
+"11/1/2017 21:11:44 PM.300 [WARN] Failed to find node for hop 0 of our path. "
+"Discarding this circuit."
+
+#: 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 ""
+"Obtenés la mejor seguridad que Tor puede proveer cuando dejás la selección "
+"de la ruta a Tor; forzando los nodos de entrada/salida puede comprometer tu "
+"anonimato."
+
+#: 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 ""
+"Por favor mirá nuestro <mark><a "
+"href=\"https://blog.torproject.org\">blog</a></mark> por futuros anuncios y "
+"detalles acerca de éste proyecto."
+
+#: 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 "¿Como descargo Tor si torproject.org está bloqueado?"
+
+#: 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 ""
+"19.11.2017 00:04:47.400 [NOTICE] Opening Socks listener on 127.0.0.1:9150"
+
+#: http//localhost/tormobile/tormobile-4/
+#: (content/tormobile/tormobile-4/contents+en.lrquestion.seo_slug)
+msgid "run-tor-on-windows-phone"
+msgstr "correr-tor-en-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 "Log notice file /var/log/tor/notices.log"
+
+#: http//localhost/misc/misc-11/
+#: (content/misc/misc-11/contents+en.lrquestion.title)
+msgid "Can I change the number of hops Tor uses?"
+msgstr "¿Puedo cambiar el número de saltos que usa Tor?"
+
+#: 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 ""
+"El primer relevo en tu circuito es llamado una \"guardia de entrada\" o "
+"\"guardia\"."
+
+#: http//localhost/tbb/tbb-16/
+#: (content/tbb/tbb-16/contents+en.lrquestion.title)
+msgid "Can I pick which country I'm exiting from?"
+msgstr "¿Puedo elegir desde cuál país estoy saliendo?"
+
+#: http//localhost/misc/misc-12/
+#: (content/misc/misc-12/contents+en.lrquestion.seo_slug)
+msgid "share-files-anonymously-through-tor"
+msgstr "compartir-archivos-anónimamente-a-través-de-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 "En el navegador Tor, cada nuevo dominio obtiene su propio circuito."
+
+#: 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 "## Establecé el apodo de éste relevo"
+
+#: 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 ""
+"¿Cómo puedo hacer correr a Tor más rápido? ¿El navegador Tor es más lento "
+"que otros navegadores?"
+
+#: 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 ""
+"Esta opción no limpia ninguna información privada o desvincula tu actividad,"
+" ni tampoco afecta tus conexiones actuales a otros sitios web."
+
+#: 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 ""
+"Instalá el paquete ntp u openntpd (o similar) para mantenerlo de esa manera."
+
+#: 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 ""
+"El icono del botón Tor (la cebollita verde en la esquina superior izquierda "
+"del navegador) mostrará un triángulo amarillo."
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "ServerTransportPlugin obfs4 exec /usr/bin/obfs4proxy"
+msgstr "ServerTransportPlugin obfs4 exec /usr/bin/obfs4proxy"
+
+#: http//localhost/operators/ (content/operators/contents+en.lrtopic.title)
+msgid "Operators"
+msgstr "Operadores"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Русский (ru)"
+msgstr "* Ruso (ru)"
+
+#: http//localhost/tormobile/ (content/tormobile/contents+en.lrtopic.seo_slug)
+msgid "tor-mobile"
+msgstr "tor-móvil"
+
+#: http//localhost/tbb/tbb-18/
+#: (content/tbb/tbb-18/contents+en.lrquestion.seo_slug)
+msgid "is-there-support-for-bsd"
+msgstr "hay-soporte-para-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 ""
+"Prestá atención a una línea de bitácora en tu /var/log/syslog tal como "
+"\"Self-testing indicates your ORPort is reachable from the outside. "
+"Excellent.\""
+
+#: http//localhost/onionservices/onionservices-3/
+#: (content/onionservices/onionservices-3/contents+en.lrquestion.seo_slug)
+msgid "i-cannot-reach-x-dot-onion"
+msgstr "no-puedo-alcanzar-x-punto-onion"
+
+#: http//localhost/tbb/tbb-41/
+#: (content/tbb/tbb-41/contents+en.lrquestion.title)
+msgid "Why did my search engine switch to DuckDuckGo?"
+msgstr "¿Por qué mi motor de búsqueda se cambió a 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 ""
+"Los puentes son útiles para usuarios de Tor bajo regímenes represivos, y "
+"para las personas que quieren una capa extra de seguridad porque están "
+"preocupadas que alguien reconocerá que están contactando una dirección IP de"
+" un relevo Tor público."
+
+#: 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 ""
+"Para más información, por favor mirá la sección <mark><a href=\"https://tb-"
+"manual.torproject.org/en-US/\">Manual de Usuario del navegador "
+"Tor</a></mark> sobre la <mark><a href=\"https://tb-manual.torproject.org/en-"
+"US/circumvention.html\">censura</a></mark>."
+
+#: 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 ""
+"Si ésto no soluciona el problema, mirá la página de Solución de Problemas en"
+" el <mark><a href=\"https://tb-manual.torproject.org/en-"
+"US/bridges.html\">manual del navegador Tor</a></mark>."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* 简体字 (zh-CN)"
+msgstr "* Chino (zh-CN)"
+
+#: http//localhost/onionservices/onionservices-2/
+#: (content/onionservices/onionservices-2/contents+en.lrquestion.seo_slug)
+msgid "what-is-a-dot-onion"
+msgstr "qué-es-un-punto-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 ""
+"¿El proyecto Tor ofrece servicio de correo electrónico u otros servicios web"
+" de protección de privacidad?"
+
+#: 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 ""
+"Cuando confirme que es alcanzable, cargará un \"descriptor de servidor\" a "
+"las autoridades de directorio para hacer saber a los clientes qué dirección,"
+" puertos, claves, etc. está usando tu relevo."
+
+#: 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 ""
+"Si necesitás estar seguro que todo el tráfico irá a través de la red de Tor,"
+" hechale una mirada al <mark><a href=\"https://tails.boum.org/\">sistema "
+"operativo Tails</a></mark>, el cual podés iniciar en casi cualquier "
+"computadora desde un pendrive o un DVD."
+
+#: http//localhost/tbb/ (content/tbb/contents+en.lrtopic.title)
+msgid "Tor Browser"
+msgstr "Navegador Tor"
+
+#: 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 ""
+"###### Error común de bitácora #3: Fallo al completar intercambio para "
+"sincronización TLS"
+
+#: 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 ""
+"Te urjo a que reconsideres ésta decisión; Tor es utilizado por gente "
+"alrededor del mundo para proteger su privacidad y combatir la censura."
+
+#: http//localhost/tbb/tbb-12/
+#: (content/tbb/tbb-12/contents+en.lrquestion.seo_slug)
+msgid "using-flash-tor-browser"
+msgstr "usando-flash-en-navegador-tor"
+
+#: 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 ""
+"Tengo una muy buena razón para rastrear a un usuario de Tor. ¿Pueden ayudar?"
+
+#: 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 ""
+"13-11-17 19:52:24.300 [NOTICE] Bootstrapped 10%: Finishing handshake with "
+"directory server"
+
+#: 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 ""
+"Por favor abrí tu programa de protección contra virus o programas "
+"maliciosos, y mirá en los ajustes por una \"lista blanca\" o algo similar."
+
+#: http//localhost/gettor/gettor-4/
+#: (content/gettor/gettor-4/contents+en.lrquestion.seo_slug)
+msgid "to-use-gettor-via-xmpp"
+msgstr "usar-gettor-vía-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 ""
+"Desafortunadamente, algunos sitios web entregan CAPTCHAS a usuarios Tor, y "
+"no somos capaces de remover CAPTCHAS de sitios web."
+
+#: 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 "por-que-navegador-tor-está-hecho-a-partir-de-firefox"
+
+#: http//localhost/tbb/tbb-12/
+#: (content/tbb/tbb-12/contents+en.lrquestion.title)
+msgid "Can I use Flash in Tor Browser?"
+msgstr "¿Puedo usar Flash en el navegador Tor?"
+
+#: 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 ""
+"El documento <mark><a "
+"href=\"https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability\">el diseño e implementación del navegador Tor</a></mark> "
+"explica con más amplitud el pensamiento detrás de éste diseño."
+
+#: 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 "Este paso es usualmente rápido, pero puede tomar unos pocos minutos."
+
+#: 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 ""
+"Cliqueá el botón titulado \"Copiar bitácora de Tor al portapapeles\" que "
+"aparece en la ventana de diálogo cuando el navegador Tor se está conectando "
+"a la red al inicio."
+
+#: 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 ""
+"Podrías estar en una red censurada, por lo cual debieras tratar usando "
+"puentes."
+
+#: 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 ""
+"No queremos alentar a la gente para que use rutas más largas que ésta, ya "
+"que incrementan la carga sobre la red sin (tan lejos como podemos decir) "
+"proveer ninguna seguridad más."
+
+#: http//localhost/tormobile/tormobile-3/
+#: (content/tormobile/tormobile-3/contents+en.lrquestion.seo_slug)
+msgid "run-tor-on-ios"
+msgstr "correr-tor-en-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 "¡No puedo alcanzar a X.onion!"
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "ExtORPort auto"
+msgstr "ExtORPort auto"
+
+#: 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 "Necesito al navegador Tor en un lenguaje que no es Inglés."
+
+#: http//localhost/tbb/tbb-34/
+#: (content/tbb/tbb-34/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-js-enabled-default"
+msgstr "js-habilitado-por-defecto-en-navegador-tor"
+
+#: http//localhost/misc/misc-9/
+#: (content/misc/misc-9/contents+en.lrquestion.seo_slug)
+msgid "having-a-problem-updating-vidalia"
+msgstr "teniendo-un-problema-actualizando-vidalia"
+
+#: http//localhost/tbb/tbb-16/
+#: (content/tbb/tbb-16/contents+en.lrquestion.seo_slug)
+msgid "pick-which-country-i-am-exiting"
+msgstr "elegir-por-cual-país-estoy-saliendo"
+
+#: 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 ""
+"## Ajustá tu tasa de ancho de banda (dejalo comentado y Tor correrá sin "
+"límites de ancho de banda)"
+
+#: 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 ""
+"Con el lanzamiento del navegador Tor 6.0.6, cambiamos a DuckDuckGo como "
+"motor de búsqueda primario."
+
+#: 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 ""
+"No recomendamos correr múltiples instancias del navegador Tor, y puede no "
+"trabajar de forma anticipada en muchas plataformas."
+
+#: 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 ""
+"Eso significa que los Proveedores de Servicio de Internet o gobiernos "
+"intentando bloquear el acceso a la red de Tor simplemente no pueden bloquear"
+" todos los puentes."
+
+#: 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 ""
+"¿Debería instalar un complemento o extensión nueva, comoo AdBlock Plus o "
+"uBlock Origin en el navegador Tor? "
+
+#: 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 ""
+"Por favor notá que las RPVs no tienen las mismas propiedades de privacidad "
+"que Tor, pero ayudarán a solucionar algunas dificultades de restricción por "
+"geolocalización."
+
+#: 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 "Correr el navegador Tor no te hace actuar como relevo en la red."
+
+#: 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 ""
+"Ya desde hace rato, Disconnect no ha tenido acceso a resultados de búsqueda "
+"de Google, los cuales usábamos en el navegador Tor."
+
+#: http//localhost/gettor/gettor-4/
+#: (content/gettor/gettor-4/contents+en.lrquestion.title)
+msgid "To use GetTor via XMPP (Jitsi, CoyIM)."
+msgstr "Usar GetTor vía 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 ""
+"Mientras que es técnicamente posible usar Tor con otros navegadores, podés "
+"estar abriéndote a potenciales ataques o filtrado de información, por lo que"
+" lo desanimamos enfáticamente."
+
+#: 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 ""
+"Algunos sitios web, tales como bancos o proveedores de correo electrónico, "
+"pueden interpretar ésto como un signo de que tu cuenta haya sido "
+"comprometida, y te bloquean."
+
+#: 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 ""
+"19.11.2017 00:04:48.800 [ADVERTENCIA] Se recibió una llamada NETINFO con "
+"tiempo dispar (OR:xxx.xx.x.xx:xxxx): Parece que nuestro reloj está atrasado "
+"en 1 día, 0 horas, 1 minuto, o que el de ellos está adelantado. Tor requiere"
+" un reloj preciso para funcionar: por favor revisá tus ajustes de tiempo, "
+"huso horario y fecha."
+
+#: http//localhost/tbb/tbb-7/
+#: (content/tbb/tbb-7/contents+en.lrquestion.seo_slug)
+msgid "website-blocking-access-over-tor"
+msgstr "sitio-web-bloqueando-acceso-sobre-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 ""
+"Si quisiéramos bloquear a ciertas personas de usar Tor, básicamente "
+"estaríamos añadiendo una puerta trasera al programa, la cual expondría a "
+"nuestros usuarios más vulnerables a ataques por parte de malos regímenes y "
+"otros adversarios."
+
+#: templates/footer.html:5
+msgid "Our mission:"
+msgstr "Nuestra misión:"
+
+#: 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 ""
+"avanzar los derechos y libertades humanas creando y desplegando tecnologías "
+"de anonimato y privacidad de fuente abierta, soportando su disponibilidad y "
+"uso irrestricto, y ampliando su entendimiento científico y popular."
+
+#: templates/footer.html:24
+msgid "Subscribe to our Newsletter"
+msgstr "Suscribite a nuestro boletín informativo"
+
+#: templates/footer.html:25
+msgid "Get monthly updates and opportunities from the Tor Project"
+msgstr "Obtené actualizaciones y oportunidades mensuales del proyecto Tor"
+
+#: templates/footer.html:32
+msgid ""
+"Trademark, copyright notices, and rules for use by third parties can be "
+"found in our "
+msgstr ""
+"Las marcas registradas, notas de derechos de autor, y reglas de uso por "
+"terceros pueden ser encontradas en nuestro"
+
+#: templates/layout.html:7
+msgid "Tor Project | Support"
+msgstr "Proyecto Tor | Soporte"
+
+#: templates/navbar.html:4
+msgid "Tor Logo"
+msgstr "Logo Tor"
+
+#: templates/navbar.html:40
+msgid "Download Tor Browser"
+msgstr "Descargar navegador Tor"
+
+#: templates/search.html:5
+msgid "Search"
+msgstr "Búsqueda"
+
+#: templates/macros/question.html:11
+msgid "Permalink"
+msgstr "Permalink"
diff --git a/contents+pt-BR.po b/contents+pt-BR.po
new file mode 100644
index 000000000..ff9bdf7b2
--- /dev/null
+++ b/contents+pt-BR.po
@@ -0,0 +1,4571 @@
+# Translators:
+# Eduardo Bonsi, 2018
+# erinm, 2018
+# Emma Peel, 2018
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-10-27 19:20+CET\n"
+"PO-Revision-Date: 2018-10-02 22:41+0000\n"
+"Last-Translator: Emma Peel, 2018\n"
+"Language-Team: Portuguese (Brazil) (https://www.transifex.com/otf/teams/1519/pt_BR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: pt_BR\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\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 "Modificar o modo como o Tor cria os seus circuitos não é recomendado."
+
+#: 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 ""
+"Contudo, esteja ciente de que o seu outro navegador poderá não estar "
+"transmitindo as suas atividades privadas, e que você pode se esquecer disso "
+"e acidentalmente usar esse navegador não-anônimo para fazer algo que você "
+"pretendia fazer no Tor."
+
+#: http//localhost/misc/misc-4/
+#: (content/misc/misc-4/contents+en.lrquestion.description)
+msgid "We do not recommend using Tor with BitTorrent."
+msgstr "Nós não recomendamos utilizar o Tor com o BitTorrent."
+
+#: 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 "Isto poderia significar que você está em uma rede censurada."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Français (fr)"
+msgstr "* Francês (fr)"
+
+#: 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 ""
+"No caso de bancos, e outros websites sensíveis, é também comum ver bloqueios"
+" baseado na localização geográfica (se um banco sabe que você geralmente "
+"acessa seus serviços de um país; e de repente você está se conectando com um"
+" retransmissor de saída em outro lado do mundo, a sua conta pode ser "
+"bloqueada ou suspendida)."
+
+#: http//localhost/https/https-1/
+#: (content/https/https-1/contents+en.lrquestion.description)
+msgid "Tor prevents eavesdroppers from learning sites that you visit."
+msgstr ""
+"O Tor te protege de bisbilhoteiros que tentam aprender os sites que você "
+"visita."
+
+#: 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 ""
+"Como o Disconnect é mais um mecanismo de meta busca que permite que os "
+"usuários escolham entre diferentes provedores de pesquisa, ele recorre à "
+"entrega de resultados de pesquisa do Bing que são basicamente inaceitáveis "
+"em termos de qualidade."
+
+#: 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 "* Edite /usr/local/etc/tor/torrc para se assemelhar ao seguinte:"
+
+#: http//localhost/misc/misc-15/
+#: (content/misc/misc-15/contents+en.lrquestion.title)
+msgid "How can I donate to Tor Project?"
+msgstr "Como posso doar ao Projeto Tor?"
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "* Locate your Tor Browser folder or application."
+msgstr "* Localize a pasta ou aplicação do navegador Tor."
+
+#: 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 ""
+"A rede Tor tem mais de um milhão de usuários diariamente, e acima de mais de"
+" 6000 retransmissores, e para encaminhar todo esse tráfego, a carga em cada "
+"servidor às vezes pode provocar latência. "
+
+#: 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 ""
+"A configuração baixa/padrão permite o Javascript, mas os níveis médio e "
+"alto, ambos bloqueiam o Javascript em sites HTTP."
+
+#: 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 "Algo deste tipo poderá até resolver:"
+
+#: http//localhost/tbb/tbb-14/
+#: (content/tbb/tbb-14/contents+en.lrquestion.seo_slug)
+msgid "installing-add-on-extensions-tor-browser"
+msgstr "instalando-add-on-extensões-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 ""
+"Estou tendo problemas para conectar com o Tor e não consigo descobrir o que "
+"está errado."
+
+#: 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 ""
+"Uma ponte é apenas um retransmissor normal com uma configuração levemente "
+"diferente."
+
+#: 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 ""
+"Nosso website foi bloqueado por um censor. Será que o Navegador Tor pode "
+"ajudar as pessoas acessarem nosso website?"
+
+#: 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 ""
+"Por favor, tenha certeza que nenhuma outra instância do Navegador Tor esteja"
+" executando, e que você tenha extraído o Navegador Tor em uma localização "
+"onde o seu usuário tenha as permissões corretas."
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "* Delete the Tor Browser folder or application."
+msgstr "* Delete a pasta ou aplicação do Navegador Tor. "
+
+#: 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 ""
+"É fortemente desencorajado instalar novos add-ons no navegador Tor, pois "
+"eles podem comprometer a sua privacidade e segurança."
+
+#: 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 ""
+"Para usuários que querem ter o Javascript desabilitado por padrão em todos "
+"sites HTTP, nós recomendamos mudar o controle deslizante de segurança do "
+"Navegador Tor (no menu da Cebola do Navegador Tor sob \"Configurações de "
+"Segurança\")."
+
+#: 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 ""
+"Estes serviços fazem uso do domínio de nível superior de uso especial .onion"
+" (em vez de .com, .net, .org, etc) e são acessíveis somente através da rede "
+"Tor."
+
+#: 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 ""
+"Um site que eu estou tentando acessar está bloqueando o acesso via Tor."
+
+#: http//localhost/misc/misc-6/
+#: (content/misc/misc-6/contents+en.lrquestion.title)
+msgid "Does Tor keep logs?"
+msgstr "O Tor mantém registros?"
+
+#: http//localhost/censorship/censorship-7/
+#: (content/censorship/censorship-7/contents+en.lrquestion.seo_slug)
+msgid "what-is-a-bridge"
+msgstr "o que-é-uma-ponte"
+
+#: 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 "Atualmente não existe suporte para execução do Tor no Windows Phone."
+
+#: http//localhost/onionservices/onionservices-2/
+#: (content/onionservices/onionservices-2/contents+en.lrquestion.title)
+msgid "What is a .onion or what are onion services?"
+msgstr "O que é .onion ou serviços onion?"
+
+#: 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 ""
+"Para compartilhar arquivos via Tor, <mark><a "
+"href=\"https://onionshare.org/\">OnionShare</a></mark> é uma boa opção."
+
+#: http//localhost/operators/operators-7/
+#: (content/operators/operators-7/contents+en.lrquestion.description)
+msgid "No."
+msgstr "Não."
+
+#: http//localhost/tbb/tbb-25/
+#: (content/tbb/tbb-25/contents+en.lrquestion.seo_slug)
+msgid "problem-noscript"
+msgstr "problema-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 "configurando-navegador-tor-como-padrão"
+
+#: 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 ""
+"Infelizmente, nós ainda não temos uma versão do Navegador Tor para ChromeOS."
+
+#: 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=\"New release alert\">"
+
+#: 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 ""
+"Os arquivos do meu computador foram bloqueados, e alguém está exigindo que "
+"eu baixe o Navegador Tor para pagar um resgate pelos meus arquivos!"
+
+#: 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 ""
+"Muitos nodos de saída são configurados para bloquear certos tipos de tráfego"
+" de compartilhamento, tal como o do BitTorrent."
+
+#: http//localhost/censorship/censorship-4/
+#: (content/censorship/censorship-4/contents+en.lrquestion.seo_slug)
+msgid "cant-connect-to-tor-browser"
+msgstr "não-pode-conectar-se-ao-navegador-tor "
+
+#: 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 "acessando-sites-somente-disponiveis-atraves-da-rede-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 ""
+"Tor requer uma hora precisa para funcionar: por favor verifique sua hora, "
+"zona de tempo e configurações de data."
+
+#: 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 ""
+"Para maiores detalhes, por favor veja o <mark><a "
+"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-"
+"idea\">artigo em nosso blog sobre esse tema</a></mark>."
+
+#: 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-bloqueado-pela-censura-tor-browser-pode-me-ajudar"
+
+#: 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 ""
+"Confira a lista de todos os <mark><a "
+"href=\"https://www.torproject.org/about/sponsors.html.en\">nossos "
+"patrocinadores</a></mark> e uma série de <mark><a "
+"href=\"https://blog.torproject.org/category/tags/form-990\">artigos em nosso"
+" blog</a></mark> sobre nossos relatórios financeiros."
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "RunAsDaemon 1"
+msgstr "RunAsDaemon 1"
+
+#: 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 ""
+"Se um SOCKS proxy é necessário para a configuração de sua rede, então por "
+"favor tenha certeza se você forneceu seus detalhes de proxy corretamente."
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.seo_slug)
+msgid "using-correct-packages"
+msgstr "utilizando-pacotes-corretos"
+
+#: 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 ""
+"Se você rodar o Navegador Tor e outro navegador ao mesmo tempo, isso não "
+"afetará a performance ou propriedades de privacidade do Tor."
+
+#: 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 ""
+"O Navegador Tor pode, com certeza, ajudar pessoas a acessarem seu site em "
+"lugares onde ele é bloqueado."
+
+#: http//localhost/tbb/tbb-21/
+#: (content/tbb/tbb-21/contents+en.lrquestion.title)
+msgid "How do I view Tor Browser message log?"
+msgstr "Como eu faço para consultar as mensagens de log do Navegador Tor?"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Deutsch (de)"
+msgstr "* Alemão (de)"
+
+#: 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 "como-rodar-um-intermediario-ou-guarda-no-freebsd"
+
+#: http//localhost/misc/misc-15/
+#: (content/misc/misc-15/contents+en.lrquestion.description)
+msgid "Thank you for your support!"
+msgstr "Obrigado por seu apoio!"
+
+#: 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 ""
+"Se você necessita usar outras pontes pode acessá-las em nosso <mark><a "
+"href=\"https://bridges.torproject.org/\">site de Pontes</a></mark>"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Polish (pl)"
+msgstr "* Polonês (pl)"
+
+#: 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 "O Navegador Tor está disponível atualmente para Windows, Linux e 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 ""
+"Para <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>mantém os Tor-powered apps <mark><a "
+"href=\"https://guardianproject.info/apps/orbot/\">Orbot</a></mark>e<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-com-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 ""
+"De qualquer maneira, seu provedor de serviços ou administradores da rede "
+"estão aptos para ver que você está conectando a uma rede Tor, apesar que "
+"eles não sabem o que você está fazendo quando você conecta lá."
+
+#: 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 ""
+"* Tenha certeza que o tor iniciara durante o boot executando o comando "
+"\"sysrc tor_enable=\"YES\" (como root)"
+
+#: 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 ""
+"Pode haver um problema de conexão temporário ou os operadores do site podem "
+"ter permitido que ele ficasse offline sem aviso."
+
+#: http//localhost/misc/misc-10/
+#: (content/misc/misc-10/contents+en.lrquestion.description)
+msgid "No, the Tor Project does not offer hosting services."
+msgstr "Não, o projeto Tor não oferece serviços de hospedagem."
+
+#: 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 ""
+"19.11.2017 00:04:48.200 [NOTICE] Bootstrapped 10%: Finishing handshake with "
+"directory server"
+
+#: 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 ""
+"Você pode ajudar a melhorar a velocidade da rede rodando seu próprio relay "
+"ou encorajando outros a rodarem os seus. "
+
+#: 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 ""
+"Você pode ver uma indicação por escrito quando o Navegador Tor se abre "
+"informando que uma atualização está disponível."
+
+#: 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 ""
+"Você pode atualizar o Navegador Tor assim que uma nova versão for lançada."
+
+#: 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 ""
+"Desculpe, mas atualmente não há nenhum suporte oficial para rodar o Tor no "
+"*BSD."
+
+#: 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 "* Para 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 ""
+"Uma vez copiado o log, você poderá colá-lo em um editor de texto ou cliente "
+"de email."
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "* Run \"pkg install tor\" (as root)."
+msgstr "* Execute \"pkg install tor\" (como root)."
+
+#: http//localhost/misc/misc-15/
+#: (content/misc/misc-15/contents+en.lrquestion.seo_slug)
+msgid "donate-tor-project"
+msgstr "doar-ao-projeto-tor"
+
+#: 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 ""
+"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)"
+
+#: http//localhost/connecting/connecting-1/
+#: (content/connecting/connecting-1/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-wont-connect"
+msgstr "tor-browser-nao-conecta"
+
+#: http//localhost/onionservices/
+#: (content/onionservices/contents+en.lrtopic.seo_slug)
+msgid "onion-services"
+msgstr "serviços-onion"
+
+#: http//localhost/onionservices/
+#: (content/onionservices/contents+en.lrtopic.title)
+msgid "Onion Services"
+msgstr "Serviços Onion"
+
+#: 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 ""
+"Se as forças de segurança ficar interessada no tráfego do seu retransmissor "
+"de saída, é possível que policiais apreendam seu computador."
+
+#: 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 ""
+"Veja nossa página em <mark><a href=\"https://www.torproject.org/docs"
+"/pluggable-transports.html.en\">pluggable transports</a></mark> para mais "
+"informações."
+
+#: http//localhost/tormobile/tormobile-2/
+#: (content/tormobile/tormobile-2/contents+en.lrquestion.title)
+msgid "Who is the Guardian Project?"
+msgstr "O que é o 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 ""
+"Se você ainda está inabilitado de se conectar ao serviço onion, por favor "
+"tente de novamente mais tarde. "
+
+#: 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 ""
+"No entanto, a Apple exige que os navegadores para iOS utilizem algo chamado "
+"Webkit, o que inviabiliza os navegadores onion de possuir as mesmas "
+"proteções de privacidade que o navegador Tor."
+
+#: http//localhost/tbb/tbb-13/
+#: (content/tbb/tbb-13/contents+en.lrquestion.description)
+msgid "They need to be configured separately to use Tor."
+msgstr "Eles precisam ser configurados separadamente para utilizar o Tor."
+
+#: http//localhost/tbb/ (content/tbb/contents+en.lrtopic.seo_slug)
+msgid "tor-browser"
+msgstr "tor-browser"
+
+#: 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 "por que-tor-está-utilizando-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 ""
+"Você deve ver um desses comuns logs de erros (veja as seguintes linhas no "
+"seu log do Tor):"
+
+#: 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 "diz-qual-website-é-visitado-enquanto-está-usando-navegador-tor"
+
+#: 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 ""
+"Na maioria das vezes, apenas fazendo o download do<mark><a "
+"href=\"https://www.torproject.org/download/download-easy.html.en\">Navegador"
+" Tor</a></mark> e em seguida usando-o para se conectar ao site bloqueado "
+"tornará o acesso possível. "
+
+#: 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 ""
+"Nós achamos detestável o fato de que algumas pessoas usam o Tor para fazer "
+"coisas horríveis, mas nada podemos fazer para livrar-nos deles sem também "
+"minar a segurança de ativistas de direitos, jornalistas, sobreviventes de "
+"abusos, entre outras pessoas que usam o Tor para fazer coisas boas."
+
+#: http//localhost/operators/ (content/operators/contents+en.lrtopic.seo_slug)
+msgid "operators"
+msgstr "operadores"
+
+#: 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 "É seguro rodar o Navegador Tor e outro navegador ao mesmo tempo?"
+
+#: 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 ""
+"Se você não consegue baixar o Tor através do nosso <mark><a "
+"href=\"https://www.torproject.org\">site</a></mark>, você pode obter uma "
+"cópia do Tor através do seu GetTor."
+
+#: 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 ""
+"Nós configuramos NoScript para permitir JavaScript por padrão no Navegador "
+"Tor porque muitos websites não vão funcionar com o JavaScript desabilitado."
+
+#: 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 ""
+"Em lugares onde há censura forte, temos várias opções disponíveis para "
+"contorná-la, incluindo <mark><a href=\"https://www.torproject.org/docs"
+"/pluggable-transports.html.en\">transportes plugáveis</a></mark>"
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "* Run \"service tor start\" (as root)"
+msgstr "* Execute \"service tor start\" (como 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 "* Execute \"apt-get install tor\" (como 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 ""
+"2017-10-29 09:23:47.900 [NOTICE] Bootstrapped 10%: Finishing handshake with "
+"directory server"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Vietnamese (vi)"
+msgstr "* Vietnamita (vi)"
+
+#: http//localhost/tbb/tbb-36/
+#: (content/tbb/tbb-36/contents+en.lrquestion.seo_slug)
+msgid "run-multible-instances-of-tor-browser"
+msgstr "executar-múltiplas-instâncias-do-navegador-tor"
+
+#: 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 "tendo-problemas-conectando-ao-tor"
+
+#: http//localhost/misc/misc-4/
+#: (content/misc/misc-4/contents+en.lrquestion.title)
+msgid "Can I use Tor with BitTorrent?"
+msgstr "Eu posso Tor e BitTorrent juntos?"
+
+#: 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 ""
+"Tor é financiado por diversos patrocinadores diferentes, incluindo agências "
+"federais dos Estados Unidos da América, fundações privadas e doadores "
+"individuais."
+
+#: 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 ""
+"Algumas pontes são padrão no Navegador Tor e você pode usá-las escolhendo "
+"\"configure\" (e seguindo os passos) na janela do Tor Launcher que se abre "
+"quando você inicia o Navegador Tor pela primeira vez. "
+
+#: 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 ""
+"Se você acredita que esse é um problema do Navegador Tor, por favor relate o"
+" erro em nosso <mark><a href=\"https://trac.torproject.org/\">bug "
+"tracker</a></mark>."
+
+#: http//localhost/tbb/tbb-18/
+#: (content/tbb/tbb-18/contents+en.lrquestion.title)
+msgid "Is there support for *BSD?"
+msgstr "Há suporte para *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 ""
+"Eu não consigo me conectar ao Navegador Tor, minha rede está censurada?"
+
+#: 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 ""
+"Atualmente não existe método de suporte para configurar o navegador TOR como"
+" seu navegador padrão."
+
+#: http//localhost/tbb/tbb-39/
+#: (content/tbb/tbb-39/contents+en.lrquestion.description)
+msgid "Set your security to \"Standard\"."
+msgstr "Definir sua segurança como \"Padrão\"."
+
+#: 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 ""
+"O local padrão no Windows é o Desktop; no macOS é a pasta Aplicativos (no "
+"macOS, você deve movê-lo para a pasta Aplicativos quando concluir o processo"
+" de instalação)."
+
+#: http//localhost/tbb/tbb-22/
+#: (content/tbb/tbb-22/contents+en.lrquestion.seo_slug)
+msgid "make-tor-faster"
+msgstr "Faça-o-tor-mais-rápido"
+
+#: http//localhost/misc/misc-8/
+#: (content/misc/misc-8/contents+en.lrquestion.title)
+msgid "Can I use the Tor logo in my product?"
+msgstr "Posso usar a logo do Tor em meu produto?"
+
+#: 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 ""
+"Se você vê linhas como essa em seu log do Tor, isso significa que o Tor "
+"falhou em completar o TLS handshake com o directory authorities."
+
+#: 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 ""
+"Para mais informações sobre pontes veja o <mark><a href=\"https://tb-"
+"manual.torproject.org/en-US/bridges.html\">manual do Navegador "
+"Tor</a></mark>"
+
+#: 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 ""
+"Nós não consideramos o Flash um software seguro para uso em qualquer "
+"navegador — é um programa muito inseguro que pode facilmente comprometer sua"
+" privacidade ou infectá-lo com malware."
+
+#: http//localhost/onionservices/onionservices-1/
+#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
+msgid "You can access these websites by using Tor Browser."
+msgstr "Você pode acessar esses sites usando o Tor."
+
+#: http//localhost/tormobile/tormobile-1/
+#: (content/tormobile/tormobile-1/contents+en.lrquestion.title)
+msgid "Can I run Tor on an Android device?"
+msgstr "Eu posso executar Tor em um aparelho Android?"
+
+#: 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 "#RelayBandwidthBurst 100 MBytes"
+
+#: 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 ""
+"Considere se você não gostaria de mudar para a <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/doc/ReducedExitPolicy\">Política"
+" reduzida de saída</a></mark>."
+
+#: 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 "baixar-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 ""
+"Eu posso ainda usar outro navegador, como Chrome ou Firefox, quando estou "
+"usando Navegador Tor?"
+
+#: 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 "Como eu posso compartilhar arquivos de maneira anônima usando Tor?"
+
+#: 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 "##### Log de erro comum: #4 Clock skew"
+
+#: 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 ""
+"Ambas opções estão localizadas no menu, porém você também pode acessar a "
+"opção \"Novo Circuito\" em cima do menu de informações do site, na barra da "
+"URL."
+
+#: 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 "Utilizar pontes provavelmente irá corrigir isso."
+
+#: 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 them in the family"
+msgstr ""
+"## Se você controla múltiplos retransmissores, incluam eles na família."
+
+#: 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 ""
+"Você pode ler sobre esse tema em nossa <mark><a "
+"href=\"https://www.torproject.org/docs/trademark-faq.html\">Página de FAQ "
+"sobre o registro da marca</a></mark>."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* فارسى (fa)"
+msgstr "* Farsi (fa)"
+
+#: http//localhost/tbb/tbb-13/
+#: (content/tbb/tbb-13/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-protecting-other-apps"
+msgstr "tor-browser-protegendo-outros-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 ""
+"Usar o Navegador Tor às vezes pode ser mais lento do que outros navegadores."
+
+#: 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 ""
+"* Certifique-se que seu relógio, data e fuso horário estão configurados "
+"corretamente. Instale o pacote ntp ou openntpd (ou similar) para sejam "
+"mantidos corretos."
+
+#: 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 "Em quais plataformas o Navegador Tor é disponível?"
+
+#: http//localhost/tormobile/tormobile-1/
+#: (content/tormobile/tormobile-1/contents+en.lrquestion.description)
+msgid "Tor on Android is provided by The Guardian Project."
+msgstr "Tor em Android é fornecido pelo projeto O Guardião."
+
+#: 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 ""
+"Se você está inabilitado de se conectar a um serviço onion, por favor veja "
+"<a href=\"/#onionservices-3\"> Eu não consigo acessar X.onion </a> "
+
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.title)
+msgid "How do I run an exit relay on Debian?"
+msgstr "Como eu executo um relay de saída no Debian ?"
+
+#: 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 ""
+"Vários países, incluindo China e Irã, encontraram meios de detectar e "
+"bloquear conexões para pontes Tor."
+
+#: 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 ""
+"Então cole o log do Tor dentro de um arquivo de texto ou outro documento."
+
+#: 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 ""
+"Nós, de fato, efetuamos algumas mensurações seguras sobre o funcionamento da"
+" rede, que você pode conferir na página de <mark><a "
+"href=\"https://metrics.torproject.org/\">Métricas do Tor</a></mark>."
+
+#: 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 ""
+"Por favor veja <mark><a href=\"https://www.eff.org/https-"
+"everywhere/faq\">HTTPS Everywhere</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 "alguem-pede-para-baixar-tor-browser-para-desbloquear-meus-arquivos"
+
+#: http//localhost/tormobile/tormobile-2/
+#: (content/tormobile/tormobile-2/contents+en.lrquestion.seo_slug)
+msgid "who-is-the-guardian-project"
+msgstr "o-que-é-o-projeto-guardião"
+
+#: 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 ""
+"A maioria dos usuários desistiriam totalmente do Tor se nós desabilitássemos"
+" o Javascript por padrão porque isso causaria muitos problemas para eles."
+
+#: 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 ""
+"Se um SOCKS proxy não é necessário, ou você não tem certeza, por favor tente"
+" conectar a rede Tor sem um SOCKS proxy."
+
+#: 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 "Quando você usa Tor, ninguém pode ver os sites que você visita."
+
+#: 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 ""
+"Navegador Tor frequentemente faz sua conexão parecer que está vindo de "
+"diferentes partes do mundo."
+
+#: 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 ""
+"Essa opção é útil se o retransmissor de saída que você está usando está "
+"impossibilitado para conectar ao website que você necessita, ou não está "
+"carregando ele corretamente."
+
+#: 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 ""
+"Certifique-se que seu relógio, data e fuso horário estão configurados "
+"corretamente."
+
+#: http//localhost/tormessenger/tormessenger-1/
+#: (content/tormessenger/tormessenger-1/contents+en.lrquestion.title)
+msgid "Does Tor Project make an application for private chat?"
+msgstr "O Projeto Tor oferece um aplicativo privado para chat?"
+
+#: 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 ""
+"Mais informações podem ser encontradas nas páginas <mark><a "
+"href=\"https://guardianproject.info/apps/orbot/\">Orbot</a></mark> e "
+"<mark><a href=\"https://guardianproject.info/apps/orfox/\">Orfox</a></mark>."
+
+#: 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 ""
+"Se o Navegador Tor já está aberto, clique no ícone do Torbutton (a pequena "
+"cebola verde no canto superior esquerdo da tela), então clique em \"Open "
+"Network Settings\", e então em \"Copy Tor Log To Clipboard\". "
+
+#: 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 ""
+"Nós recomendamos fortemente contra a utilização do Tor em qualquer navegador"
+" que não seja o navegador Tor."
+
+#: 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 ""
+"Você pode encontrar informações mais detalhadas sobre Tor + VPN na <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">nossa "
+"wiki</a></mark>."
+
+#: 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 ""
+"<h4 class=\"card-title\">Esta visualização mostra que informações são "
+"visíveis para bisbilhoteiros com e sem a utilização do navegador Tor e "
+"criptografia HTTPS.</h4>"
+
+#: 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 ""
+"BitTorrent, especificamente, <mark><a href=\"https://blog.torproject.org"
+"/bittorrent-over-tor-isnt-good-idea\">não é anônimo quando quando conecta-se"
+" via Tor</a></mark>."
+
+#: 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 ""
+"Selecione um diretório de que você consiga lembrar-se facilmente e, quando o"
+" download estiver finalizado, você verá uma pasta chamada \"Tor Browser\" "
+"nesse local."
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.title)
+msgid "How do I update Tor Browser?"
+msgstr "Como eu atualizo o Navegador Tor?"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "This should fix the issues you're experiencing."
+msgstr "Isto deve resolver os problemas que você está encontrando."
+
+#: 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 ""
+"Veja sua entrada de log em /var/log/syslog algo como \"Self-testing "
+"indicates your ORPort is reachable from the outside. Excellent.\""
+
+#: 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 ""
+"Como eu executo um retransmissor do meio ou guarda no FreeBSD ou "
+"HardenedBSD?"
+
+#: http//localhost/tbb/tbb-25/
+#: (content/tbb/tbb-25/contents+en.lrquestion.title)
+msgid "I'm having a problem with NoScript."
+msgstr "Eu estou tendo um problema com o NoScript."
+
+#: http//localhost/tbb/tbb-34/
+#: (content/tbb/tbb-34/contents+en.lrquestion.title)
+msgid "Why does Tor Browser ship with Javascript enabled?"
+msgstr "Por que o Navegador Tor vem com o Javascript habilitado?"
+
+#: http//localhost/misc/misc-3/
+#: (content/misc/misc-3/contents+en.lrquestion.seo_slug)
+msgid "tor-funding"
+msgstr "financiamento-tor"
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.description)
+msgid "Tor browser will install the updates."
+msgstr "O navegador TOR irá instalar as atualizações."
+
+#: 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 ""
+"* Não use os pacotes dos repositórios do Ubuntu. Eles não são atualizados de"
+" maneira confiável. Se você usar eles, você perderá importante estabilidade "
+"e atualizações na segurança."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Português (pt-BR)"
+msgstr "* Português (pt-BR)"
+
+#: 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 ""
+"Navegador Tor tem duas maneiras de mudar seu circuito de transmissão - "
+"\"Nova Identidade\" e \"Novo Circuito Tor para esse Site\"."
+
+#: 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 ""
+"Caso você não consiga encontrá-lo em uma dessas pastas, baixe-o novamente e "
+"preste atenção à caixa de diálogo que pede a seleção de um diretório para "
+"download."
+
+#: http//localhost/operators/operators-7/
+#: (content/operators/operators-7/contents+en.lrquestion.seo_slug)
+msgid "run-exit-from-home"
+msgstr "operar-saida-de-casa"
+
+#: http//localhost/operators/operators-7/
+#: (content/operators/operators-7/contents+en.lrquestion.title)
+msgid "Should I run an exit relay from home?"
+msgstr "Eu deveria rodar um retransmissor de saída a partir de casa?"
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.seo_slug)
+msgid "updating-tor-browser"
+msgstr "atualizando-navegador-tor"
+
+#: 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 ""
+"* Revise nossos <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorExitGuidelines\">"
+" Diretrizes de relays de saída</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 ""
+"Usando Tor com outro navegador pode deixar você vulnerável sem as proteções "
+"de privacidade do Navegador Tor."
+
+#: http//localhost/tbb/tbb-17/
+#: (content/tbb/tbb-17/contents+en.lrquestion.seo_slug)
+msgid "run-tor-browser-and-different-browser"
+msgstr "execute-navegador-tor-e-navegador-diferente"
+
+#: 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 ""
+"2017-10-29 09:23:40.800 [NOTICE] Opening Socks listener on 127.0.0.1:9150"
+
+#: 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 ""
+"Por favor tenha uma posição forte em favor da privacidade digital e "
+"liberdade na internet, e permita aos usuários do Tor acessarem xyz.com. "
+"Obrigado.\""
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.seo_slug)
+msgid "how-do-i-run-a-obfs4-bridge-debian"
+msgstr "como-rodar-o-obfs4-ponte-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 "* Edite /etc/tor/torrc para se assemelhar a:"
+
+#: 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 ""
+"Estou tendo problemas para usar as features no Facebook, Twitter e alguns "
+"outros websites quando estou usando o Tor Browser."
+
+#: http//localhost/misc/misc-1/
+#: (content/misc/misc-1/contents+en.lrquestion.seo_slug)
+msgid "tracing-tor-user"
+msgstr "rastreamento-de-usuarios-tor"
+
+#: 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-nao-conecta-sem-censura"
+
+#: 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 ""
+"Se você vê linhas como essas no seu registro Tor, isso significa que você "
+"está falhando ao conectar a um SOCKS proxy."
+
+#: 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 ""
+"A melhor coisa a fazer nesses casos é contactar os donos do website, e "
+"informar eles que seus CAPTCHAs estão impedindo usuários como você de usar "
+"seus serviços."
+
+#: 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 ""
+"Por que meu Navegador Tor diz algo sobre o Firefox não estar funcionando?"
+
+#: http//localhost/tbb/tbb-24/
+#: (content/tbb/tbb-24/contents+en.lrquestion.title)
+msgid "I'm having a problem with DuckDuckGo."
+msgstr "Eu estou tendo um problema com o 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 "Posso utilizar o Tor com um browser que não seja o Tor Browser?"
+
+#: 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 ""
+"* Veja o log de entrada em /var/log/syslog tal como \"Self-testing "
+"indicates your ORPort is reachable from the outside. Excellent.\""
+
+#: 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 ""
+"Dito isto, o Tor é muito mais rápido do que costumava ser e talvez você não "
+"note nenhuma diferença na velocidade em comparação a outros browsers."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Türkçe (tr)"
+msgstr "* Turco (tr)"
+
+#: 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 ""
+"11/1/2017 21:11:44 PM.500 [NOTICE] Bootstrapped 85%: Finishing handshake "
+"with first hop"
+
+#: http//localhost/connecting/
+#: (content/connecting/contents+en.lrtopic.seo_slug)
+msgid "connecting-to-tor"
+msgstr "conectando-ao-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=\"New release alert\">"
+
+#: 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 ""
+"Mas, por favor, entenda que nosso software é usado todos os dias com uma "
+"ampla variedade de objetivos por ativistas de direitos humanos, jornalistas,"
+" sobreviventes de violência doméstica, denunciantes, oficiais da lei, e "
+"muitos outros. Infelizmente, a proteção oferecida pelo nosso software a "
+"essas pessoas também pode ser objeto de abusos por criminosos e "
+"desenvolvedores de malware."
+
+#: http//localhost/misc/misc-8/
+#: (content/misc/misc-8/contents+en.lrquestion.seo_slug)
+msgid "using-tor-logo"
+msgstr "uso-do-logotipo-tor"
+
+#: http//localhost/tbb/tbb-35/
+#: (content/tbb/tbb-35/contents+en.lrquestion.seo_slug)
+msgid "get-rid-of-captchas"
+msgstr "como-se-livrar-dos-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 ""
+"O resto de seu circuito muda a cada novo site que você visita, e em conjunto"
+" esses relays proporcionam todas as proteções de privacidade do Tor. "
+
+#: http//localhost/tbb/tbb-2/
+#: (content/tbb/tbb-2/contents+en.lrquestion.seo_slug)
+msgid "first-address-relay-circuit"
+msgstr "primeiro-endereço-circuito-transmissão"
+
+#: 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 ""
+"No Linux, não existe uma localização padrão, de qualquer modo o diretório "
+"será nomeado \"tor-browser_en-US\" se você está rodando o Navegador do Tor "
+"em Inglês."
+
+#: http//localhost/misc/ (content/misc/contents+en.lrtopic.seo_slug)
+msgid "misc"
+msgstr "misc"
+
+#: 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 ""
+"O navegador Tor é feito utilizando-se o <mark><a "
+"href=\"https://www.mozilla.org/en-US/firefox/organizations/\">Firefox ESR "
+"</a></mark>, então erros relacionados ao Firefox podem ocorrer."
+
+#: 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 ""
+"Se você gostaria de ser tornar um relay, por favor veja nosso <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Guia "
+"Tor Relay </a></mark>"
+
+#: http//localhost/https/https-1/
+#: (content/https/https-1/contents+en.lrquestion.seo_slug)
+msgid "can-eavesdroppers-see-information-i-share"
+msgstr "bisbilhoteiros-podem-ver-informações-que-eu-compartilho"
+
+#: http//localhost/tbb/tbb-32/
+#: (content/tbb/tbb-32/contents+en.lrquestion.title)
+msgid "Can I set Tor Browser as my default browser?"
+msgstr "Eu posso definir o Navegador Tor como meu navegador padrão?"
+
+#: 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 ""
+"Por favor tenha certeza que seu relógio está configurado precisamente, "
+"incluindo a zona de tempo correta. Então reinicie o Tor."
+
+#: 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 ""
+"Se seu problema não estiver listado, por favor escreva um <mark><a "
+"href=\"https://trac.torproject.org\">bug report</a></mark> sobre o que você "
+"está experienciando."
+
+#: 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 "Sentimos muito, mas você foi infectado com malware."
+
+#: 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 ""
+"O meio com maior sucesso em fazer com que websites desbloqueie usuários Tor,"
+" é os usuários entrando em contato direto com os administradores do site."
+
+#: 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 "O Navegador Tor utiliza um circuito diferente para cada site?"
+
+#: 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 ""
+"Observe que alguns clientes de antivírus, como o Kaspersky, também podem "
+"estar bloqueando o Tor no nível do firewall."
+
+#: http//localhost/gettor/gettor-3/
+#: (content/gettor/gettor-3/contents+en.lrquestion.title)
+msgid "To use GetTor via Twitter."
+msgstr "Usar GetTor via Twitter."
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "* Run \"service tor reload\" (as root)."
+msgstr "* Execute \"service tor reload\" (como 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 ""
+"O Navegador Tor impede que outras pessoas saibam quais sites você visita."
+
+#: 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 ""
+"Caso o resultado desejado seja apenas a possibilidade de acesso a recursos "
+"somente disponíveis em um determinado país, você deve avaliar a "
+"possibilidade de usar uma VPN em vez do 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-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 MBytes"
+
+#: 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 ""
+"Muito trabalho está sendo feito para fazer o Navegador Tor, incluindo o uso "
+"de correções extras para aumentar a privacidade e segurança."
+
+#: 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 ""
+"Se você está inabilitado de se conectar a um serviço onion, por favor veja "
+"<a href=\"#onionservices-3\"> Eu não consigo acessar X.onion </a> "
+
+#: 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 ""
+"Isso significa que seu computador não vai ser usado para rotear trafégo para"
+" outros."
+
+#: 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 ""
+"* Depois que seu retransmissor conecta na rede, ele vai tentar determinar se"
+" as portas que você configurou são alcançáveis do lado de fora."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* English (en-US)"
+msgstr "* Inglês (en-US)"
+
+#: http//localhost/tbb/tbb-1/
+#: (content/tbb/tbb-1/contents+en.lrquestion.seo_slug)
+msgid "most-common-issues-latest-stable-tor-browser"
+msgstr "problemas-mais-comuns-ultima-versao-estavel-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 ""
+"Estamos sempre em busca de maior diversidade em nossas fontes de "
+"financiamento, especialmente por parte de fundações e indivíduos;"
+
+#: 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 "###### Common log error #1: Proxy connection failure"
+
+#: 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 ""
+"Nós sentimos que uma conversa franca sobre nossos financiadores e nosso "
+"modelo de financiamento é a melhor forma de manter a confiança de nossa "
+"comunidade."
+
+#: http//localhost/tbb/tbb-9/
+#: (content/tbb/tbb-9/contents+en.lrquestion.seo_slug)
+msgid "using-tor-with-a-browser-besides-tor-browser"
+msgstr "sando-tor-com-uma-navegador-alem-do-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 ""
+"Infelizmente, não existe suporte para tornar o navegador Tor seu navegador "
+"padrão."
+
+#: 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 ""
+"O Projeto Tor não criou esse malware. Os desenvolvedores de malware pedem "
+"que você baixe o Tor Browser, supostamente para contactá-los e possibilitar "
+"o pagamento anônimo do resgate que exigem de você."
+
+#: 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 ""
+"Quando eu uso o Navegador Tor, é possível que alguém saiba quais sites eu "
+"visito?"
+
+#: 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 ""
+"Selecionado isso todas as abas e janelas vão fechar, toda informação privada"
+" como cookies e histórico de navegação vão ser apagadas, e vai ser usado "
+"novos circuitos Tor para todas conexões."
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.description)
+msgid "##### New Identity"
+msgstr "##### Nova Identidade"
+
+#: 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 "O uso do Navegador Tor protege outros programas no meu computador?"
+
+#: 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 ""
+"É um relay rápido e confiável que se mantém como o primeiro em seu circuito "
+"por 2-3 meses de forma a proteger contra um ataque conhecido de quebra de "
+"anonimato."
+
+#: http//localhost/tbb/tbb-42/
+#: (content/tbb/tbb-42/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-firefox-not-working-error"
+msgstr "navegador-tor-firefox-nao-funciona-erro"
+
+#: http//localhost/tbb/tbb-31/
+#: (content/tbb/tbb-31/contents+en.lrquestion.seo_slug)
+msgid "which-platform-tor-browser-available"
+msgstr "que-plataforma-o-navegador-tor-está-disponível"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* TorBrowser"
+msgstr "* Tor Browser"
+
+#: 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 "#Endereço noname.example.com"
+
+#: 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 ""
+"Sempre que lançamos uma nova versão estável do Tor Browser, escrevemos uma "
+"postagem no blog que detalha seus novos recursos e problemas conhecidos."
+
+#: 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 ""
+"As mesmas proteções que impedem as pessoas más de quebrar o anonimato do Tor"
+" também impedem que nós rastreemos usuários."
+
+#: 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 ""
+"Se você está tendo problemas para conectar, por favor selecione a opção "
+"\"copiar registro do Tor para área de transferência\"."
+
+#: 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> é o buscador"
+" padrão no navegador Tor."
+
+#: 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 ""
+"2017-10-29 09:23:47.900 [NOTICE] Bootstrapped 5%: Connecting to directory "
+"server"
+
+#: 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 ""
+"Eu sei que certos websites são acessíveis somente usando Tor. O que são "
+"esses site e como eu posso acessá-los?"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* For Windows"
+msgstr "* Para Windows"
+
+#: http//localhost/tbb/tbb-26/
+#: (content/tbb/tbb-26/contents+en.lrquestion.title)
+msgid "I'm having a problem with HTTPS Everywhere."
+msgstr "Eu estou tendo um problema com o HTTPS Everywhere."
+
+#: http//localhost/tbb/tbb-39/
+#: (content/tbb/tbb-39/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-issues-facebook-twitter-websites"
+msgstr "navegador-tor-problemas-facebook-twitter-websites"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Korean (ko)"
+msgstr "* Coreano (ko)"
+
+#: 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 ""
+"Por favor veja o <mark><a href=\"https://duck.co/help\">portal de suporte do"
+" DuckDuckGo</a></mark>."
+
+#: 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 ""
+"2017-10-29 09:24:08.900 [WARN] Proxy Client: unable to connect "
+"toxx..xxx..xxx.xx:xxxxx (\"general SOCKS server failure\")"
+
+#: http//localhost/misc/misc-10/
+#: (content/misc/misc-10/contents+en.lrquestion.seo_slug)
+msgid "does-tor-project-offer-hosting"
+msgstr "o-projeto-tor-oferece-hospedagem"
+
+#: 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 ""
+"Bloqueando usuários do Tor, você está provavelmente bloqueando pessoas em "
+"países repressivos que querem usar uma internet livre, jornalistas e "
+"pesquisadores que querem proteger eles mesmos das descobertas, delatores, "
+"ativistas, e qualquer pessoa que opte por sair da vigilância invasiva de "
+"terceiros."
+
+#: 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 ""
+"Existe uma maneira de alterar o endereço IP que o Navegador Tor atribui a "
+"mim em um site específico?"
+
+#: 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 ""
+"13-11-17 19:53:49.300 [WARN] 1 connections died in state connect()ing with "
+"SSL state (No SSL object)"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Italiano (it)"
+msgstr "* Italiano (it)"
+
+#: 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 ""
+"Neste momento, o comprimento do caminho é codificado em 3 mais o número de "
+"nodos em seu caminho que sejam sensíveis."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* العربية (ar)"
+msgstr "* Árabe (ar)"
+
+#: 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 ""
+"Tor não mantém qualquer tipo de registro que permita a identificação de um "
+"usuário específico."
+
+#: 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 "## Defina suas informações de contato"
+
+#: 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 ""
+"Por favor, confira nossa <mark><a "
+"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">página de "
+"voluntariado</a></mark> e descubra como participar!"
+
+#: 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 ""
+"Quando eu uso Tor, alguém que me espie pode ver as informações que eu "
+"compartilho com websites, como aquelas de logins ou de formulários que eu "
+"preencho?"
+
+#: 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 ""
+"Selecionando isso a aba atualmente-ativa ou janela vai ser recarregada sobre"
+" o novo circuito Tor."
+
+#: 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 ""
+"Não há nada que os desenvolvedores do Tor possam fazer para rastrear "
+"usuários da rede Tor."
+
+#: 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 ""
+"Por que o navegador TOR é projetado a partir do Firefox e não de outro "
+"navegador ?"
+
+#: http//localhost/tbb/tbb-35/
+#: (content/tbb/tbb-35/contents+en.lrquestion.title)
+msgid "Can you get rid of all the captchas?"
+msgstr "É possível se livrar de todos os captchas?"
+
+#: 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 ""
+"Se este é o seu primeiro contato com o Tor Browser, nós compreendemos que "
+"você possa pensar que somos pessoas más que alimentam o poder de pessoas "
+"ainda piores."
+
+#: 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 ""
+"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."
+
+#: 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 ""
+"Tenha um endereço de IP separado de seu retransmissor de saída, e não "
+"roteie seu próprio tráfego através dele."
+
+#: 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 "13-11-17 19:53:49.300 [WARN] 10 conexões falharam:"
+
+#: http//localhost/tormobile/tormobile-5/
+#: (content/tormobile/tormobile-5/contents+en.lrquestion.title)
+msgid "When is Tor Browser for Android being released?"
+msgstr "Quando o Tor Browser para Android será lançado?"
+
+#: 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 "como-operar-um-relay-intermediario-ou-guarda"
+
+#: 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 ""
+"Você encontrará maiores informações sobre doações em nossa <mark><a "
+"href=\"https://donate.torproject.org/donor-faq\">FAQ para os "
+"doadores</a></mark>."
+
+#: http//localhost/tbb/tbb-40/
+#: (content/tbb/tbb-40/contents+en.lrquestion.seo_slug)
+msgid "different-circuit-each-website"
+msgstr "diferentes-circuitos-para-cada-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 ""
+"Uma grande parte dos recursos oferecidos anteriormente pelo Vidalia foram "
+"agora integrados ao próprio Tor Browser."
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.seo_slug)
+msgid "antivirus-blocking-tor"
+msgstr "antivirus-bloqueia-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 ""
+"Veja <mark><a href=\"#operators-6\">Como operar uma ponte</a></mark>para "
+"mais instruções."
+
+#: 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 "mudar-o-numero-de-saltos-usados-pelo-Tor"
+
+#: http//localhost/misc/misc-7/
+#: (content/misc/misc-7/contents+en.lrquestion.description)
+msgid "No, we don't provide any online services."
+msgstr "Não, nós não provemos quaisquer serviços online."
+
+#: 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 ""
+"11/1/2017 21:11:45 PM.300 [WARN] Failed to find node for hop 0 of our path. "
+"Discarding this circuit."
+
+#: 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 ""
+"11/1/2017 21:11:43 PM.500 [NOTICE] Opening Socks listener on 127.0.0.1:9150"
+
+#: 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 ""
+"Ao acessar um site que usa um serviço .onion, o Navegador Tor mostrará na "
+"barra de URL um ícone de uma pequena cebola verde exibindo o estado de sua "
+"conexão: seguro e usando um serviço .onion."
+
+#: http//localhost/misc/misc-9/
+#: (content/misc/misc-9/contents+en.lrquestion.description)
+msgid "Vidalia is no longer maintained or supported."
+msgstr "O Vidalia não está mais recebendo manutenção ou suporte."
+
+#: 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 ""
+"GetTor é um serviço que automaticamente responde mensagens com endereços "
+"para a última versão do Navegador Tor, hospedado em diversas localizações "
+"que são menos propensas de serem censuradas, como Dropbox, Google Drive, e "
+"GitHub."
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "Next, exclude the following processes:"
+msgstr "Em seguida, exclua os seguintes processos:"
+
+#: 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 ""
+"A configuração padrão no instalador do Windows também cria um atalho para "
+"você no seu Desktop, mas esteja ciente de que você pode acidentalmente ter "
+"desativado a opção para criar um atalho."
+
+#: http//localhost/gettor/gettor-2/
+#: (content/gettor/gettor-2/contents+en.lrquestion.title)
+msgid "To use GetTor via email."
+msgstr "Usar GetTor via e-mail."
+
+#: 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 ""
+"Quais são os problemas mais comuns na última versão estável do Navegador "
+"Tor?"
+
+#: 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 ""
+"Não. Depois de onze lançamentos beta, nós descontinuaremos o suporte ao <a "
+"href=\"https://blog.torproject.org/sunsetting-tor-messenger\">Tor "
+"Messenger</a>."
+
+#: 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 ""
+"Se você ver linhas como essas em seu log Tor, isto significa que o horário "
+"do seu sistema está incorreto."
+
+#: 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 ""
+"Nós ainda acreditamos na utilidade do Tor para se utilizando como aplicativo"
+" de mensagens, mas não temos recursos para fazer isso agora."
+
+#: http//localhost/gettor/gettor-2/
+#: (content/gettor/gettor-2/contents+en.lrquestion.seo_slug)
+msgid "to-use-gettor-via-email"
+msgstr "para-usar-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 "* Execute \"apt-get install tor obfs4proxy\" (como root)."
+
+#: http//localhost/censorship/censorship-6/
+#: (content/censorship/censorship-6/contents+en.lrquestion.seo_slug)
+msgid "is-my-network-censored"
+msgstr "minha-rede-esta-censurada"
+
+#: 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 ""
+"Nós recomendamos para iOS o aplicativo Onion Browser, que é open source, usa"
+" roteamento Tor, e é desenvolvido por alguém que participa de perto com o "
+"Tor Project"
+
+#: http//localhost/tbb/tbb-15/
+#: (content/tbb/tbb-15/contents+en.lrquestion.title)
+msgid "Can I download Tor Browser for ChromeOS?"
+msgstr "Eu posso fazer download do Navegador Tor para o ChromeOS?"
+
+#: http//localhost/tbb/tbb-2/
+#: (content/tbb/tbb-2/contents+en.lrquestion.description)
+msgid "That is normal Tor behavior."
+msgstr "Isso é o comportamento normal do Tor."
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "Removing Tor Browser from your system is simple:"
+msgstr "Remover o Navegador Tor do seu sistema é simples:"
+
+#: http//localhost/tormobile/tormobile-5/
+#: (content/tormobile/tormobile-5/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-for-android"
+msgstr "navegador-tor-para-android"
+
+#: http//localhost/tbb/tbb-11/
+#: (content/tbb/tbb-11/contents+en.lrquestion.seo_slug)
+msgid "cannot-find-tor-on-windows"
+msgstr "nao-consigo-achar-tor-no-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 ""
+"O Navegador Tor vai pedir que você atualize o software uma vez que uma nova "
+"versão esteja disponível. "
+
+#: 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 ""
+"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 ""
+"O Navegador Tor já vem instalado com dois add-ons — <mark><a "
+"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> e "
+"<mark><a href=\"https://noscript.net/\">NoScript</a></mark> — e adicionar "
+"qualquer outra coisa poderia comprometer seu anonimato."
+
+#: 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 ""
+"O Navegador Tor trabalha dura para isolar ele mesmo do restante do sistema, "
+"e os passos para fazer ele o navegador padrão são incertos."
+
+#: 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 ""
+"Veja sua entrada de log em /var/log/syslog algo como \"Self-testing "
+"indicates your ORPort is reachable from the outside. Excellent.\""
+
+#: 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 ""
+"Contudo, o envio de informações não criptografadas pela internet utilizando "
+"HTTP ainda pode ser interceptada por operadores de relay de saída ou alguém "
+"observando o tráfego entre o seu relay de saída e o seu site de destino."
+
+#: 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 ""
+"11/1/2017 21:11:44 PM.300 [NOTICE] Bootstrapped 80%: Connecting to the Tor "
+"network"
+
+#: 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 ""
+"Os serviços onion também oferecem confiabilidade para chats e "
+"compartilhamento de arquivos livres de metadados, interações mais segura "
+"para jornalistas e suas fontes usando recursos como o <mark><a "
+"href=\"https://securedrop.org/\">SecureDrop</a></mark> ou o <mark><a "
+"href=\"https://onionshare.org/\">OnionShare</a></mark>, atualizações de "
+"software mais seguras e meios de acesso mais seguro a websites populares "
+"tais como o <mark><a href=\"https://www.facebook.com/notes/protect-the-graph"
+"/making-connections-to-facebook-more-"
+"secure/1526085754298237/\">Facebook</a></mark>."
+
+#: 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 ""
+"Por exemplo, o serviço onion DuckDuckGO é <a "
+"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+
+#: http//localhost/tormobile/tormobile-1/
+#: (content/tormobile/tormobile-1/contents+en.lrquestion.seo_slug)
+msgid "run-tor-on-android"
+msgstr "execute-tor-no-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 ""
+"No geral, não recomendamos usar VPN com Tor a não ser que você seja um "
+"usuário avançado que saiba configurar ambos de maneira que não comprometa "
+"sua privacidade."
+
+#: 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 ""
+"Os sites que só podem ser acessados por meio do Tor são chamados de "
+"\"onions\" (cebolas) e terminam com .onion."
+
+#: 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 ""
+"Além disso, o uso de caminhos mais longos do que 3 poderá prejudicar seu "
+"anonimato; em primeiro lugar, porque torna mais fáceis os ataques de "
+"<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">negação de "
+"segurança</a></mark> e, em segundo lugar, porque funcionará como um "
+"identificador, já que somente um pequeno número de usuários seguirá um "
+"caminho com idêntico comprimento."
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.title)
+msgid "How do I run a obfs4 bridge on Debian?"
+msgstr "Como eu rodo um obfs4 no Debian?"
+
+#: http//localhost/tbb/tbb-30/
+#: (content/tbb/tbb-30/contents+en.lrquestion.seo_slug)
+msgid "website-locks-torbrowser-out"
+msgstr "website-bloqueia-acesso-torbrowser"
+
+#: 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 ""
+"Se você não lembra qual era este destino, provavelmente está na sua pasta de"
+" Downloads ou no Desktop."
+
+#: 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 ""
+"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"
+
+#: 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 ""
+"Algumas vezes websites bloquearão usuários do Tor porque eles não podem "
+"dizer a diferença entre a média de usuários Tor e tráfego automatizado."
+
+#: 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 "desinstale-navegador-tor"
+
+#: 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 ""
+"O navegador TOR é uma versão modificada do Firefox, especialmente projetado "
+"para utilização com o TOR."
+
+#: 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 ""
+"Escreva seu sistema operacional (como windows, MacOS (OS X), or linux) no "
+"corpo da mensagem e envie."
+
+#: http//localhost/tbb/tbb-6/ (content/tbb/tbb-6/contents+en.lrquestion.title)
+msgid "Can I make Tor Browser my default browser?"
+msgstr "Posso fazer do Tor Browser meu navegador padrão?"
+
+#: 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 ""
+"Para ver recursos mais detalhados sobre a operação de um relay, veja "
+"<mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Guia "
+"Tor Relay</a></mark>."
+
+#: 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 ""
+"##### Erro de log comum #2: Não é possível acessar os retransmissores "
+"guardiães."
+
+#: 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 ""
+"A configuração de uma ponte obfsproxy requer a instalação de pacotes de "
+"software e configurações adicionais."
+
+#: 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 ""
+"* Como root, adicione as seguintes linhas em /etc/apt/sources.list. Use a "
+"versão que você encontrou no passo anterior para <version>."
+
+#: 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 ""
+"Caso você esteja acessando um website via HTTPS e um serviço onion, serão "
+"exibidos os ícones de uma cebola e de um cadeado."
+
+#: 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 ""
+"<h4 class=\"card-title\">Se você está usando HTTPS, a URL do seu website "
+"começará com \"https://\".</h4>"
+
+#: 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 ""
+"<mark><a href=\"https://blog.torproject.org/tor-heart-onion-browser-and-"
+"more-ios-tor\">Aprenda mais sobre o navegador Onion</a></mark>"
+
+#: 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 "Nickname ididnteditheconfig"
+
+#: http//localhost/misc/misc-6/
+#: (content/misc/misc-6/contents+en.lrquestion.seo_slug)
+msgid "does-tor-keep-logs"
+msgstr "tor-mantem-registros"
+
+#: http//localhost/tbb/tbb-7/
+#: (content/tbb/tbb-7/contents+en.lrquestion.description)
+msgid "Thank you.\""
+msgstr "Obrigado.\""
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* 日本語 (ja)"
+msgstr "* Japonês (ja)"
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.description)
+msgid "##### New Tor Circuit for this Site"
+msgstr "##### Novo Circuito Tor para esse Site"
+
+#: 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 ""
+"Qual sistema de pesquisa vem com o Navegador Tor e como ele protege a minha "
+"privacidade?"
+
+#: 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 ""
+"Por favor certifique-se que o relógio e fuso horário do seu sistema estão "
+"configurados corretamente."
+
+#: 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 ""
+"Certamente você pode utilizar outro navegador enquanto utiliza o navegador "
+"TOR."
+
+#: 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 ""
+"Caso você não consiga acessar o serviço onion desejado, certifique-se de ter"
+" digitado corretamente os 16 caracteres, ou 56 caracteres no novo formato, "
+"do endereço onion: até mesmo um pequeno erro impedirá o Tor Browser de "
+"acessar o site."
+
+#: http//localhost/censorship/
+#: (content/censorship/contents+en.lrtopic.seo_slug)
+msgid "censorship"
+msgstr "censura"
+
+#: 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 ""
+"Por que vocês não impedem que pessoas ruins façam coisas ruins enquanto "
+"usando o Tor?"
+
+#: 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 ""
+"O Projeto Tor não apoia nem faz vista grossa para o uso de nosso software "
+"com propósitos maliciosos."
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.description)
+msgid "* Determine your Ubuntu version by running the following command:"
+msgstr ""
+"* Determine a sua versão Ubuntu utilizada executando o seguinte comando:"
+
+#: 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 ""
+"O Tor Browser está atualmente disponível em versões para <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> e <mark><a "
+"href=\"https://www.torproject.org/download/download-easy.html.en#mac\">macOS"
+" (OS X)</a></mark>."
+
+#: http//localhost/censorship/censorship-1/
+#: (content/censorship/censorship-1/contents+en.lrquestion.seo_slug)
+msgid "our-website-is-blocked-by-a-censor"
+msgstr "nosso-website-esta-bloqueado-por-um-censor"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "Finally, restart Tor Browser."
+msgstr "Finalmente, reinicie o navegador TOR."
+
+#: http//localhost/connecting/ (content/connecting/contents+en.lrtopic.title)
+msgid "Connecting To Tor"
+msgstr "Conectando-se ao Tor"
+
+#: 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 ""
+"* Note que em seu sistema operacional a utilidade padrão \"Desinstalar\" não"
+" é utilizada."
+
+#: 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 ""
+"Quando ele confirma que está acessível, ele vai enviar um \"descritor do "
+"servidor\" para o diretório de autoridades para deixar os clientes saberem "
+"qual endereço, porta, chaves, etc seu retransmissor está usando."
+
+#: 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 "ContactInfo 0xFFFFFFFF Random Person <nobody AT example dot com>"
+
+#: http//localhost/misc/misc-9/
+#: (content/misc/misc-9/contents+en.lrquestion.title)
+msgid "I'm having a problem updating or using Vidalia."
+msgstr "Estou tendo problema em atualizar ou usar o 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 ""
+"Um dos problemas mais comuns que causam erros de conexão no Navegador Tor é "
+"o relógio do sistema incorreto."
+
+#: 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 "Por que o primeiro IP address no meu relay circuit é sempre o mesmo?"
+
+#: 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 ""
+"Para o Android, The Guardian Project mantém os aplicativos baseados em Tor "
+"Orbot e Orfox"
+
+#: 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 ""
+"19.11.2017 00:04:48.000 [NOTICE] Bootstrapped 5%: Connecting to directory "
+"server"
+
+#: 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 ""
+"A melhor maneira de resolver isso é seguir os procedimentos recomendados no "
+"site para recuperação de contas, ou contactar os operadores e explicar a "
+"situação."
+
+#: 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 ""
+"Se isso não solucionar o problema, veja a página de Solução de Problemas no "
+"<mark><a href=\"https://tb-manual.torproject.org/en-"
+"US/troubleshooting.html\">manual do Navegador Tor</a></mark>"
+
+#: 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 ""
+"Você pode estár apto a evitar esse cenário se seu provedor oferecer "
+"autenticação 2 fatores, que é uma opção mais segura que reputação baseada em"
+" IP."
+
+#: 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 ""
+"O meu antivírus ou proteção contra malware está bloqueando o meu acesso ao "
+"Tor Browser."
+
+#: 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 ""
+"Se você não consegue visualizar esta mensagem, isto significa que o seu "
+"relay não é acessível por fora."
+
+#: 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 (caso você use conexões de ponte)"
+
+#: 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 ""
+"Cuidado ao trocar o Tor por um navegador menos seguro, porque você pode "
+"acidentalmente utilizar este último navegador para algo que você pretendia "
+"fazer utilizando o Tor."
+
+#: 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 "nao-consigo-acessar-x-onion"
+
+#: http//localhost/misc/misc-3/
+#: (content/misc/misc-3/contents+en.lrquestion.title)
+msgid "Who funds Tor?"
+msgstr "Quem financia o Tor?"
+
+#: http//localhost/tbb/tbb-24/
+#: (content/tbb/tbb-24/contents+en.lrquestion.seo_slug)
+msgid "problem-with-duckduckgo"
+msgstr "problema-com-duckduckgo"
+
+#: http//localhost/tbb/tbb-23/
+#: (content/tbb/tbb-23/contents+en.lrquestion.seo_slug)
+msgid "search-engine-tor-browser"
+msgstr "motor-pesquisa-navegador-tor"
+
+#: http//localhost/tbb/tbb-36/
+#: (content/tbb/tbb-36/contents+en.lrquestion.title)
+msgid "Can I run multiple instances of Tor Browser?"
+msgstr "Posso executar várias instâncias do Navegador Tor?"
+
+#: 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 ""
+"Por favor veja o <mark><a href=\"https://noscript.net/faq\">FAQ do "
+"NoScript</a></mark>."
+
+#: 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 ""
+"Você deve checar novamente seu firewall, verificando qual IP e portas que "
+"você especificou no seu torrc estão corretos, etc."
+
+#: 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 ""
+"Os serviços onion permitem que as pessoas não só naveguem, mas também "
+"publiquem anonimamente, inclusive através da edição de websites anônimos."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.seo_slug)
+msgid "need-tor-browser-language-not-english"
+msgstr "preciso-tor-browser-idioma-nao-ingles"
+
+#: 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 ""
+"Atualmente estamos trabalhando em um navegador Tor para Android e você "
+"poderá ver lançamentos de versões alfa nos próximos meses."
+
+#: http//localhost/gettor/gettor-3/
+#: (content/gettor/gettor-3/contents+en.lrquestion.seo_slug)
+msgid "to-use-gettor-via-twitter"
+msgstr "para-usar-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 ""
+"* Adicione a chave gpd usada para assinar os pacotes executando os seguintes"
+" comandos"
+
+#: 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 ""
+"Se você vê linhas como essas em seu registro do Tor, isso significa que seu "
+"Tor falhou na conexão com o primeiro nó no circuito Tor."
+
+#: 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 ""
+"É este o seu caso? <mark><a "
+"href=\"https://www.torproject.org/about/contact.html.en\">Entre em "
+"contato</a></mark>."
+
+#: 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 "como-fazer-download-do-tor-se-torproject-org-está-bloqueado"
+
+#: 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 ""
+"Se você começar a encontrar problemas com seu Tor depois de uma atualização,"
+" acesse <mark><a "
+"href=\"https://blog.torproject.org>blog.torproject.org</a></mark> para "
+"checar o post da versão estável mais recente do navegador Tor e ver se seu "
+"problema está listado."
+
+#: http//localhost/misc/ (content/misc/contents+en.lrtopic.title)
+msgid "Misc"
+msgstr "Misc"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* obfs4proxy.exe (if you use bridges)"
+msgstr "* obfs4proxy.exe (caso você use conexões de ponte)"
+
+#: 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 ""
+"Depois de poucas horas (para ter tempo o bastante para propagar), você pode "
+"consultar o <mark><a "
+"href=\"https://metrics.torproject.org/rs.html#search\">Metrics</a></mark> "
+"para ver se seu retransmissor foi registrado com sucesso na rede."
+
+#: 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 ""
+"GetTor vai responder com um email contendo endereços do qual você pode "
+"baixar o Navegador Tor, a assinatura criptográfica(necessária para <mark><a "
+"href=\"https://www.torproject.org/docs/verifying-"
+"signatures.html.en\">verificar o download</a></mark>), a impressão digital "
+"da chave usada para fazer a assinatura, e o checksum do pacote."
+
+#: 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 ""
+"Como eu me certifico de que estou usando os pacotes corretos para o Ubuntu ?"
+
+#: 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 ""
+"O Guardian Project mantém o Tor (e outras aplicações de privacidade) no "
+"Android. Mais informações podem ser encontradas no site do <mark><a "
+"href=\"https://guardianproject.info/\">Guardian Project's</a></mark>"
+
+#: 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 ""
+"Outras abas e janelas abertas do mesmo website usarão o novo circuito assim "
+"que eles forem recarregados."
+
+#: 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 "app-para-chat-privado-do-projeto-tor"
+
+#: 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 ""
+"Em vez disso, considere executar seu retransmissor de saída em uma "
+"instalação comercial que é solidária com Tor."
+
+#: 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 "Por favor tente conectar com pontes, e isso deve resolver o problema."
+
+#: 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 ""
+"Orfox é um navegador de internet, e Orbot pode rotear outras apps em seu "
+"telefone Android sob a rede 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-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "If it hasn't, re-check firewalls, IP and ports again."
+msgstr "Se não for esse o caso, confira novamente os firewalls, IP e portas."
+
+#: 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 ""
+"O Flash está desabilitado no navegador TOR, e recomendamos que você não o "
+"habilite. "
+
+#: 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 ""
+"Se você não consegue acessar o serviço onion desejado, certifique-se que "
+"você digitou o endereço onion de 16 caracteres corretamente: até um pequeno "
+"erro fará com que o navegador TOR seja incapaz de acessar o site."
+
+#: 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 ""
+"Existe o projeto <mark><a "
+"href=\"https://www.torbsd.org/\">TorBSD</a></mark>, mas o navegador Tor "
+"deles não é oficialmente suportado."
+
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.seo_slug)
+msgid "how-do-i-run-an-exit"
+msgstr "como-rodar-um-nodo-de-saida"
+
+#: http//localhost/ (content/contents+en.lrshowcase.title)
+msgid "How can we help?"
+msgstr "Como nós podemos ajudar?"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Nederlands (nl)"
+msgstr "* Holandês (nl)"
+
+#: 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 ""
+"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design/\"> "
+"Aprenda mais sobre o design do navegador Tor </a></mark>."
+
+#: 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 ""
+"Atualmente nós oferecemos o <mark><a "
+"href=\"https://www.torproject.org/projects/torbrowser.html.en\">Navegador "
+"Tor</a></mark> nos seguintes idiomas:"
+
+#: 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 "rodar-navegador-tor-me-faz-um-retransmissor"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Español (es-ES)"
+msgstr "* Espanhol (es-ES)"
+
+#: http//localhost/tbb/tbb-19/
+#: (content/tbb/tbb-19/contents+en.lrquestion.seo_slug)
+msgid "cannot-connect-to-tor-browser-network-censored"
+msgstr "não-foi-possível-conectar-ao-navegador-tor-rede-censurada"
+
+#: 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 "Contate seu provedor e pergunte a eles se eles provem 2FA."
+
+#: http//localhost/misc/misc-2/
+#: (content/misc/misc-2/contents+en.lrquestion.seo_slug)
+msgid "prevent-bad-people-doing-bad-things-with-tor"
+msgstr "evitar-que-pessoas-mas-facam-coisas-mas-com-tor"
+
+#: http//localhost/faq/ (content/faq/contents+en.lrtopic.title)
+msgid "Most Frequently Asked Questions"
+msgstr "Perguntas Frequentes"
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.title)
+msgid "How do I uninstall Tor Browser?"
+msgstr "Como eu desinstalo o Navegador Tor?"
+
+#: 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 ""
+"Eu fiz o download e instalei o Tor Browser para Windows, mas agora não "
+"consigo encontrá-lo."
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "* Empty your Trash."
+msgstr "* Esvazie a sua Lixeira."
+
+#: http//localhost/tormobile/tormobile-3/
+#: (content/tormobile/tormobile-3/contents+en.lrquestion.title)
+msgid "Can I run Tor on an iOS device?"
+msgstr "Posso utilizar o Tor em um dispositivo iOS?"
+
+#: 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 "Como eu utilizo o Tor no 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 ""
+"Um site (banco, provedor de e-mail, etc...) bloqueia-me sempre que uso Tor. "
+"O que eu posso fazer?"
+
+#: http//localhost/misc/misc-14/
+#: (content/misc/misc-14/contents+en.lrquestion.title)
+msgid "How do I volunteer with Tor Project?"
+msgstr "Como eu posso ser voluntária/o no Projeto Tor?"
+
+#: 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 ""
+"De qualquer maneira, você deveria saber que as propriedades de privacidade "
+"do Navegador Tor não estarão presentes em outros navegadores."
+
+#: http//localhost/faq/faq-4/
+#: (content/faq/faq-4/contents+en.lrquestion.description)
+#: 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 "
+"<mark><a href=\"https://onionbrowser.com/\">Onion Browser</a></mark>."
+msgstr ""
+"Ainda não há versão oficial do Tor para iOS. Assim, nós recomendamos o "
+"<mark><a href=\"https://onionbrowser.com/\">Onion Browser</a></mark>."
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "Enabling ntpd is suggested."
+msgstr "Sugere-se habilitar o ntpd."
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.seo_slug)
+msgid "change-ip-address"
+msgstr "mude-endereço-ip"
+
+#: 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 ""
+"Rode os seguintes comandos pra instalar o tor e checar suas assinaturas:"
+
+#: 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 ""
+"2017-10-29 09:24:08.900 [WARN] Proxy Client: unable to connect to "
+"xx..xxx..xxx.xx:xxxxx (\"general SOCKS server failure\")"
+
+#: 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 ""
+"Pode ser oferecido a escolha de programas de \"32-bit\" ou \"64-bit\": isso "
+"depende de qual modelo de computador você está usando; consulte a "
+"documentação sobre seu computador para encontrar mais."
+
+#: 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 ""
+"Para mais informações sobre como relays guarda funcionam, veja essa <mark><a"
+" href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters\">postagem em nosso blog</a></mark>e essa <mark><a href=\"https"
+"://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf\">publicação</a></mark>sobre "
+"guardas de entrada."
+
+#: 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 "Como eu executo um retransmissor guarda ou do meio no Debian?"
+
+#: 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 ""
+"A maioria dos antivírus ou proteção contra malwares permitem que o usuário "
+"dê autorização a processos que normalmente seriam bloqueados."
+
+#: http//localhost/tbb/tbb-6/
+#: (content/tbb/tbb-6/contents+en.lrquestion.seo_slug)
+msgid "make-tor-browser-default-browser"
+msgstr "tornar-tor-navegador-padrão"
+
+#: 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 ""
+"Se você estiver executando um anti-virus, por favor veja <mark><a "
+"href=\"http://support.torproject.org/#tbb-10\">Minha proteção "
+"antivirus/malware está me impedindo de acessar o Tor Browser</a></mark>, é "
+"comum que softwares anti-virus / anti-malware causem esse tipo de problema."
+
+#: http//localhost/tbb/tbb-26/
+#: (content/tbb/tbb-26/contents+en.lrquestion.seo_slug)
+msgid "problem-with-https-everywhere"
+msgstr "problema-com-https-everywhere"
+
+#: http//localhost/censorship/ (content/censorship/contents+en.lrtopic.title)
+msgid "Censorship"
+msgstr "Censura"
+
+#: 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 ""
+"Por favor tenha uma posição forte em favor da privacidade digital e "
+"liberdade na internet, e permita aos usuários do Tor acessarem xyz.com."
+
+#: 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 ""
+"O Tor Browser não está funcionando, mas não parece ser algo relacionado a "
+"censura."
+
+#: 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 ""
+"Os endereços devem ser compartilhados com você por quem hospeda seu website,"
+" como onions não são indexados nos mecanismos de pesquisa na maneira típica "
+"que os websites normais são."
+
+#: 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 ""
+"Se o site que você está visitando utiliza HTTPS, então o tráfego deixando o "
+"seu relay de saída será criptografado, e não será visível para "
+"bisbilhoteiros."
+
+#: 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 ""
+"Por essa razão, é melhor não rodar seu retransmissor de saída em sua casa ou"
+" usando a conexão de internet da sua residência."
+
+#: http//localhost/censorship/censorship-7/
+#: (content/censorship/censorship-7/contents+en.lrquestion.title)
+msgid "What is a bridge?"
+msgstr "O que é uma ponte?"
+
+#: 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 ""
+"Quaisquer outros aplicativos em seu sistema (incluindo outros navegadores) "
+"não serão roteados através da rede Tor e, portanto, não estarão protegidos."
+
+#: 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 ""
+"* Você deveria olhar também a mensagem \"Servidor de transporte registrado "
+"'obfs4'\" indicando que obfs4proxy é funcional."
+
+#: 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 ""
+"A maneira mais simples de resolver é clicar no \"menu da cebola\", então "
+"clicar no controle deslizante de segurança."
+
+#: 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 ""
+"O Tor foi concebido para defender os direitos humanos e a privacidade ao "
+"impedir qualquer pessoa de exercer a censura, inclusive nós mesmos."
+
+#: 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 ""
+"Naturalmente, você deveria evitar manter qualquer informação sensível ou "
+"pessoal em computadores que hospedam seu retransmissor de saída."
+
+#: 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 ""
+"Conexões de ponte <mark><a "
+"href=\"https://github.com/Yawning/obfs4/blob/master/doc/obfs4-spec.txt\">Obfsproxy</a></mark>"
+" lidam com isto adicionando outra camada de obscuridade."
+
+#: 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 "O arquivo que você baixou e rodou está solicitando um destino."
+
+#: 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 ""
+"Algumas entidades, como o seu provedor de serviços de Internet (ISP), podem "
+"ver que você está usando o Tor, mas elas não sabem para onde você está indo "
+"quando você o faz."
+
+#: 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 ""
+"Algumas vezes websites que tem muito código em Javascript pode ter problemas"
+" funcionais sobre o Navegador Tor."
+
+#: http//localhost/gettor/gettor-2/
+#: (content/gettor/gettor-2/contents+en.lrquestion.description)
+msgid "Send an email to gettor(a)torproject.org."
+msgstr "Envie um e-mail para 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 "Apenas o tráfego do Tor Browser será redirecionado para a rede Tor."
+
+#: 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 ""
+"Isto é, em situações normais, esse número é 3 mas, por exemplo, caso você "
+"esteja acessando um serviço onion ou um endereço de \"saída\", ele poderá "
+"ser maior."
+
+#: 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 "* Execute \"service tor reload\" (como 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 ""
+"Uma lista de todos os nossos projetos de software está disponível em nossa "
+"<mark><a "
+"href=\"https://www.torproject.org/projects/projects.html.en\">página de "
+"projetos</a></mark>."
+
+#: 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 ""
+"Essa opção é útil se você quer prevenir que atividades posteriores do seu "
+"navegador sejam ligadas ao que você estava fazendo antes."
+
+#: http//localhost/misc/misc-10/
+#: (content/misc/misc-10/contents+en.lrquestion.title)
+msgid "Does the Tor Project offer hosting?"
+msgstr "O Projeto Tor oferece serviços de hospedagem?"
+
+#: 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 "Eu posso utilizar VPN com o 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 ""
+"Retransmissores pontes são retransmissores do Tor que não estão listados no "
+"diretório público do Tor."
+
+#: 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 ""
+"Você também podem se certificar de que está apto a acessar outros serviços "
+"onion conectando-se ao serviço onion <a "
+"href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGO</a>."
+
+#: 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 ""
+"Para receber os links para baixar o Navegador Tor, envie uma mensagem para "
+"gettor(a)torproject.org com um dos seguintes códigos:"
+
+#: 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 ""
+"\"Oi! Eu tentei acessar seu site xyz.com enquanto estava usando o Navegador "
+"Tor e percebi que você não permite usuários Tor acessarem seu site."
+
+#: 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 ""
+"Para receber os links para baixar o Navegador Tor, envie uma mensagem direta"
+" para <mark><a href=\"https://twitter.com/get_tor\">@get_tor</a></mark> com "
+"um dos seguintes códigos (você não precisa seguir a conta):"
+
+#: 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 ""
+"Isso significa que algumas vezes um website carregaria no Navegador Tor, e "
+"algumas vezes ele carregaria em outro navegador, esse tipo de comportamento "
+"pode ser perigoso e quebrar a anonimidade."
+
+#: 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 ""
+"Ultimamente, nós queremos fazer o Navegador Tor tão seguro quanto possível "
+"enquanto também fazemos ele usável para a maioria das pessoas, então por "
+"agora, isso significa deixar o Javascript habilitado por padrão."
+
+#: 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 ""
+"Felizmente, a maioria dos websites, aparelhos e outros browsers estão "
+"abandonando o uso do Flash."
+
+#: 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 "#MyFamily $keyid,$keyid,..."
+
+#: http//localhost/censorship/censorship-2/
+#: (content/censorship/censorship-2/contents+en.lrquestion.seo_slug)
+msgid "website-is-blocking-access-over-tor"
+msgstr "webiste-está-bloqueando-acesso-através-do-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 ""
+"##O endereço IP ou hostname para conexões de entrada (deixe comentado e o "
+"Tor irá saber)"
+
+#: 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 "como-eu-baixo-o-tor-se-torproject-org-está-bloqueado"
+
+#: 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 ""
+"DuckDuckGo não rastreia seus usuário nem armazena dados sobre pesquisas "
+"feitas por eles. Veja mais sobre <mark><a "
+"href=\"https://duckduckgo.com/privacy\">a política de privacidade "
+"DuckDuckGo</a></mark>."
+
+#: http//localhost/tbb/tbb-21/
+#: (content/tbb/tbb-21/contents+en.lrquestion.seo_slug)
+msgid "view-tor-browser-message-log"
+msgstr "mostrar-log-de-mensagens-do-navegador-tor"
+
+#: http//localhost/tbb/tbb-38/
+#: (content/tbb/tbb-38/contents+en.lrquestion.seo_slug)
+msgid "network-admin-know-i-am-using-tor"
+msgstr "administrador-rede-sabe-que-estou-usando-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 "projeto-tor-oferece-email-ou-servicos-web-protecao-privacidade"
+
+#: 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 ""
+"Você também pode certificar-se de que é possível acessar outros serviços "
+"onion conectando-se ao <a href=\"http://3g2upl4pq6kufc4m.onion\">serviço "
+"onion do DuckDuckGo</a>."
+
+#: http//localhost/misc/misc-14/
+#: (content/misc/misc-14/contents+en.lrquestion.seo_slug)
+msgid "volunteer-with-tor-project"
+msgstr "seja-um-voluntario-do-projeto-tor"
+
+#: 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 ""
+"Navegador Tor vai alertar você que toda atividade e downloads vão ser "
+"parados, então leve isso em conta antes de clicar em \"Nova Identidade\"."
+
+#: http//localhost/tbb/tbb-33/
+#: (content/tbb/tbb-33/contents+en.lrquestion.title)
+msgid "Does running Tor Browser make me a relay?"
+msgstr "Ao executar o Navegador Tor eu me torno um retransmissor?"
+
+#: 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 "Meu administrador de rede conseguirá saber se eu uso o Navegador Tor?"
+
+#: 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 ""
+"11/1/2017 21:11:44 PM.300 [WARN]Falha para encontrar um nó para o hop 0 do "
+"nosso caminho. Descartando esse circuito."
+
+#: 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 ""
+"Você consegue a melhor segurança que o Tor pode provar quando você deixa a "
+"seleção de rota para ele; passar por cima dos nós de entrada / saída pode "
+"comprometer seu anonimato."
+
+#: 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 ""
+"Por favor acompanhe nosso <mark><a "
+"href=\"https://blog.torproject.org\">blog</a></mark> para anúncios futuros e"
+" detalhes relacionados a este projeto."
+
+#: 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 "Como eu baixo Tor caso torproject.org esteja bloqueado?"
+
+#: 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 ""
+"19.11.2017 00:04:47.400 [NOTICE] Opening Socks listener on 127.0.0.1:9150"
+
+#: http//localhost/tormobile/tormobile-4/
+#: (content/tormobile/tormobile-4/contents+en.lrquestion.seo_slug)
+msgid "run-tor-on-windows-phone"
+msgstr "Executar-tor-no-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 "Log notice file /var/log/tor/notices.log"
+
+#: http//localhost/misc/misc-11/
+#: (content/misc/misc-11/contents+en.lrquestion.title)
+msgid "Can I change the number of hops Tor uses?"
+msgstr "Posso alterar o número de saltos que o TOR usa?"
+
+#: 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 ""
+"O primeiro relay em seu circuito é chamado de \"guarda\" ou \"guarda de "
+"entrada\"."
+
+#: http//localhost/tbb/tbb-16/
+#: (content/tbb/tbb-16/contents+en.lrquestion.title)
+msgid "Can I pick which country I'm exiting from?"
+msgstr "Eu posso escolher de qual país eu estou saindo?"
+
+#: http//localhost/misc/misc-12/
+#: (content/misc/misc-12/contents+en.lrquestion.seo_slug)
+msgid "share-files-anonymously-through-tor"
+msgstr "compartilhar-arquivos-anonimamente-atraves-do-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 "No Navegador Tor, cada novo domínio tem um circuito próprio."
+
+#: 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 "## Defina o nickname deste relay"
+
+#: 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 ""
+"O que eu posso fazer para que Tor rode mais rápido? O Navegador Tor é mais "
+"lento do que outros navegadores?"
+
+#: 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 ""
+"Essa opção não apaga qualquer informação privada ou desvincula sua "
+"atividade, nem afeta suas conexões atuais para outros websites."
+
+#: 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 "Instale o pacote ntp ou openntp (ou similar) pra manter dessa forma."
+
+#: 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 ""
+"O ícone Torbutton (a pequena cebola verde no canto superior esquerdo do "
+"navegador) exibirá um triângulo amarelo."
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "ServerTransportPlugin obfs4 exec /usr/bin/obfs4proxy"
+msgstr "ServerTransportPlugin obfs4 exec /usr/bin/obfs4proxy"
+
+#: http//localhost/operators/ (content/operators/contents+en.lrtopic.title)
+msgid "Operators"
+msgstr "Operadores"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Русский (ru)"
+msgstr "* Russo (ru)"
+
+#: 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 "existe-suporte-para-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 ""
+"Veja sua entrada de log em /var/log/syslog algo como \"Self-testing "
+"indicates your ORPort is reachable from the outside. Excellent.\""
+
+#: http//localhost/onionservices/onionservices-3/
+#: (content/onionservices/onionservices-3/contents+en.lrquestion.seo_slug)
+msgid "i-cannot-reach-x-dot-onion"
+msgstr "nao-consigo-acessar-x-ponto-onion"
+
+#: http//localhost/tbb/tbb-41/
+#: (content/tbb/tbb-41/contents+en.lrquestion.title)
+msgid "Why did my search engine switch to DuckDuckGo?"
+msgstr "Por que meu sistema de pesquisa mudou para o 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 ""
+"Pontes são úteis para usuários do Tor que estão sob regimes ditatoriais, e "
+"para pessoas que queiram uma camada extra de segurança porque elas estão "
+"preocupados se alguém reconhecerá que elas estão contactando de um endereço "
+"de IP público de um retransmissor Tor."
+
+#: 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 ""
+"Para mais informações, por favor acesse o <mark>Manual de Uso do Tor</mark> "
+"na seção <mark><a href=\"https://tb-manual.torproject.org/en-"
+"US/circumvention.html\">censura</a></mark>."
+
+#: 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 ""
+"Se isso não solucionar o problema, veja a página de Solução de Problemas no "
+"<mark><a href=\"https://tb-manual.torproject.org/en-US/bridges.html\">manual"
+" do Navegador Tor</a></mark>"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* 简体字 (zh-CN)"
+msgstr "* Chinês (zh-CN)"
+
+#: http//localhost/onionservices/onionservices-2/
+#: (content/onionservices/onionservices-2/contents+en.lrquestion.seo_slug)
+msgid "what-is-a-dot-onion"
+msgstr "o-que-e-um-ponto-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 ""
+"O Projeto Tor oferece serviços de correio eletrônico ou outros serviços web "
+"de proteção de privacidade?"
+
+#: 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 ""
+"* Quando ele confirma que está acessível, ele vai enviar um \"descritor do "
+"servidor\" para o diretório de autoridades para deixar os clientes saberem "
+"qual endereço, porta, chaves, etc seu retransmissor está usando."
+
+#: 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 ""
+"Caso você necessite garantir que todo o tráfego passará pela rede Tor, "
+"confira o <mark><a href=\"https://tails.boum.org/\">Sistema operacional "
+"\"live\" Tails</a></mark> com o qual você pode inicializar praticamente "
+"qualquer computador a partir de um drive USB ou de um DVD."
+
+#: http//localhost/tbb/ (content/tbb/contents+en.lrtopic.title)
+msgid "Tor Browser"
+msgstr "Navegador Tor"
+
+#: 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 "##### Erro de log comum #3: Falha ao concluir TLS handshake"
+
+#: 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 ""
+"Eu insisto para você reconsiderar essa decisão; Tor é usado por pessoas de "
+"todo o mundo para proteger sua privacidade e lutar contra a censura."
+
+#: http//localhost/tbb/tbb-12/
+#: (content/tbb/tbb-12/contents+en.lrquestion.seo_slug)
+msgid "using-flash-tor-browser"
+msgstr "usando-flash-no-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 ""
+"Eu tenho uma razão válida para rastrear um usuário do Tor. Vocês podem me "
+"ajudar? "
+
+#: 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 ""
+"13-11-17 19:52:24.300 [NOTICE] Bootstrapped 10%: Finishing handshake with "
+"directory server"
+
+#: 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 ""
+"Por favor, abra seu software antivírus ou antimalware e procure nas "
+"configurações por uma \"lista branca\" ou algo semelhante."
+
+#: http//localhost/gettor/gettor-4/
+#: (content/gettor/gettor-4/contents+en.lrquestion.seo_slug)
+msgid "to-use-gettor-via-xmpp"
+msgstr "para-usar-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 ""
+"Infelizmente, alguns sites entregam CAPTCHAs para usuários Tor, e nós não "
+"somos capazes de remover CAPTCHAs dos websites."
+
+#: 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 "navegador-tor-é-construído-a-partir-do-firefox-porque"
+
+#: http//localhost/tbb/tbb-12/
+#: (content/tbb/tbb-12/contents+en.lrquestion.title)
+msgid "Can I use Flash in Tor Browser?"
+msgstr "Eu posso usar Flash no Tor Browser?"
+
+#: 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 ""
+"O documento <mark><a "
+"href=\"https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability\">O Projeto e Implementação do Navegador Tor</a></mark> explica "
+"melhor o pensamento por trás deste projeto."
+
+#: 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 "Esta etapa geralmente é rápida, mas pode levar alguns minutos."
+
+#: 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 ""
+"Clique no botão \"Copy Tor Log To Clipboard\" que aparece na janela de "
+"diálogo quando o Navegador Tor está se conectando pela primeira vez a rede. "
+
+#: 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 ""
+"Você pode estar usando uma rede censurada, tente acessar utilizando nossas "
+"pontes."
+
+#: 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 ""
+"Nós não encorajamos as pessoas a usar caminhos mais longos do que este, pois"
+" isto aumentaria a carga na rede sem prover (até onde sabemos) qualquer "
+"melhoria na segurança."
+
+#: http//localhost/tormobile/tormobile-3/
+#: (content/tormobile/tormobile-3/contents+en.lrquestion.seo_slug)
+msgid "run-tor-on-ios"
+msgstr "Executar-tor-no-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 "Não consigo acessar o X.onion!"
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "ExtORPort auto"
+msgstr "ExtORPort auto"
+
+#: 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 "Eu preciso do Navegador Tor em um idioma outro que o inglês."
+
+#: http//localhost/tbb/tbb-34/
+#: (content/tbb/tbb-34/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-js-enabled-default"
+msgstr "navegador-tor-js-habilitado-padrão"
+
+#: http//localhost/misc/misc-9/
+#: (content/misc/misc-9/contents+en.lrquestion.seo_slug)
+msgid "having-a-problem-updating-vidalia"
+msgstr "tenho-problemas-atualizacao-vidalia"
+
+#: http//localhost/tbb/tbb-16/
+#: (content/tbb/tbb-16/contents+en.lrquestion.seo_slug)
+msgid "pick-which-country-i-am-exiting"
+msgstr "Escolher-o-país-que-estou-saindo"
+
+#: 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 ""
+"## Set your bandwidth rate (leave commented and Tor will run without "
+"bandwidth caps)"
+
+#: 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 ""
+"Com o lançamento do Navegador Tor 6.0.6, nós mudamos para DuckDuckGo como "
+"mecanismo de busca primário."
+
+#: 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 ""
+"Nós não recomendados rodar múltiplas instâncias do Navegador Tor, e pode não"
+" funcionar antecipadamente em muitas plataformas."
+
+#: 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 ""
+"Isso significa que PSI ou governos que tentam bloquear o acesso a rede Tor "
+"não podem simplesmente bloquear todas as pontes."
+
+#: 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 ""
+"Eu deveria instalar um novo add-on ou extensão no Navegador Tor, como o "
+"AdBlock Plus ou uBlock Origin?"
+
+#: 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 ""
+"Por favor, observe que as VPNs não dispõem de idênticas propriedades de "
+"anonimato do Tor, mas ajudam a resolver certos problemas de limites à "
+"geolocalização."
+
+#: 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 ""
+"Rodando o Navegador Tor não faz você agir como um transmissor na rede."
+
+#: 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 ""
+"Por enquanto, Desconectar não teve acesso aos resultados de pesquisa do "
+"Google que usamos no Navegador Tor."
+
+#: http//localhost/gettor/gettor-4/
+#: (content/gettor/gettor-4/contents+en.lrquestion.title)
+msgid "To use GetTor via XMPP (Jitsi, CoyIM)."
+msgstr "Para usar o GetTor via 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 ""
+"Enquanto é tecnicamente possível usar o Tor com outros navegadores, você "
+"pode se expor a ataques potenciais ou vazamento de informações, então nós "
+"fortemente desencorajamos isso."
+
+#: 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 ""
+"Alguns websites, como de bancos ou provedores de email, podem interpretar "
+"isso como um sinal que sua conta foi comprometida e bloquear você."
+
+#: 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 ""
+"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."
+
+#: http//localhost/tbb/tbb-7/
+#: (content/tbb/tbb-7/contents+en.lrquestion.seo_slug)
+msgid "website-blocking-access-over-tor"
+msgstr "website-bloqueando-acesso-sobre-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 ""
+"Caso bloqueássemos o uso do Tor por certas pessoas, basicamente estaríamos "
+"criando uma \"porta dos fundos\" no software, que resultaria na "
+"vulnerabilização de nossos usuários, expondo-os a ataques de regimes "
+"perversos ou de outros adversários."
+
+#: templates/footer.html:5
+msgid "Our mission:"
+msgstr "Nossa missão:"
+
+#: 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 ""
+"Proteger os direitos humanos e liberdades por meio da criação e "
+"implementação de tecnologias de anonimato e privacidade livres e de código "
+"aberto, provendo apoio à seu uso e disponibilidade irrestritos enquanto "
+"contribuímos para avanço de sua compreensão científica e popular. "
+
+#: templates/footer.html:24
+msgid "Subscribe to our Newsletter"
+msgstr "Assine nossa newsletter"
+
+#: templates/footer.html:25
+msgid "Get monthly updates and opportunities from the Tor Project"
+msgstr "Receba atualizações mensais e avisos de oportunidades do Projeto Tor"
+
+#: templates/footer.html:32
+msgid ""
+"Trademark, copyright notices, and rules for use by third parties can be "
+"found in our "
+msgstr ""
+"Trademark, avisos de direitos autorais, e regras de uso para terceiros podem"
+" ser encontradas em nosso"
+
+#: templates/layout.html:7
+msgid "Tor Project | Support"
+msgstr "Projeto Tor | Suporte técnico"
+
+#: templates/navbar.html:4
+msgid "Tor Logo"
+msgstr "Logotipo do Tor"
+
+#: templates/navbar.html:40
+msgid "Download Tor Browser"
+msgstr "Baixe o Tor Browser"
+
+#: templates/search.html:5
+msgid "Search"
+msgstr "Pesquisa"
+
+#: templates/macros/question.html:11
+msgid "Permalink"
+msgstr "Link permanente"
diff --git a/contents+zh-CN.po b/contents+zh-CN.po
new file mode 100644
index 000000000..5b4c08233
--- /dev/null
+++ b/contents+zh-CN.po
@@ -0,0 +1,4069 @@
+# Translators:
+# Herman Gu <hkoe.academic(a)gmail.com>, 2018
+# erinm, 2018
+# MD Rights <psychi2009(a)gmail.com>, 2018
+# Emma Peel, 2018
+# ヨイツの賢狼ホロ, 2018
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-10-27 19:20+CET\n"
+"PO-Revision-Date: 2018-10-02 22:41+0000\n"
+"Last-Translator: ヨイツの賢狼ホロ, 2018\n"
+"Language-Team: Chinese (China) (https://www.transifex.com/otf/teams/1519/zh_CN/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: zh_CN\n"
+"Plural-Forms: nplurals=1; plural=0;\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 "强烈不推荐自行修改 Tor 线路。"
+
+#: 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 "但请注意,其他浏览器不能让您的活动保持私密,您可能会错误地使用非私密浏览器来执行您在 Tor Browser 中的操作。"
+
+#: http//localhost/misc/misc-4/
+#: (content/misc/misc-4/contents+en.lrquestion.description)
+msgid "We do not recommend using Tor with BitTorrent."
+msgstr "不推荐将 Tor 和 BitTorrent 一起使用。"
+
+#: 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 "* Français (法语)"
+
+#: 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 "Tor Browser 防止窃听者获知您访问过的网站。"
+
+#: 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 ""
+"虽然 Disconnect 是一个允许用户使用不同的搜索提供商的元搜索引擎,它使用 Bing 作为后备,而Bing 的搜索结果质量并不理想。"
+
+#: 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 "* 编辑 /usr/local/etc/tor/torrc 文件如下:"
+
+#: http//localhost/misc/misc-15/
+#: (content/misc/misc-15/contents+en.lrquestion.title)
+msgid "How can I donate to Tor Project?"
+msgstr "我该怎样向 Tor Project 捐款?"
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "* Locate your Tor Browser folder or application."
+msgstr "* 打开你 Tor Browser 的文件夹。"
+
+#: 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 "Tor 的网络有超过一百万个用户,但是只有 6000 多个节点路径来导流数据,每次节点传送都会造成一定的延迟。"
+
+#: 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 "低级和默认设置都允许 JavaScript,但中级和高级则会屏蔽 HTTP 网站的 JavaScript。"
+
+#: 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 "在 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 "无法连接到 Tor,但我不知道发生了什么什么错误。"
+
+#: 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 "我的网站被审查机构屏蔽了,Tor Browser 能帮助用户访问我的网站吗?"
+
+#: 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 "请确认你只有一个 Tor Browser 在运行并且你的 Tor Browser 安装在一个有正确权限的文件夹里。"
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "* Delete the Tor Browser folder or application."
+msgstr "* 删除 Tor Browser 文件夹或者应用程序。"
+
+#: 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 "强烈建议不要在 Tor Browser 上安装新的附加组件,因为这可能会损害你的隐私和安全。"
+
+#: 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 站点上禁用 JavaScript 的用户,我们推荐配置 Tor Browser 的安全滑块。(参见 Tor Browser "
+"洋葱菜单的“安全设置”)"
+
+#: 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 "这些服务使用特殊的 tld .onion (而不是.com .net .org等)而且这些服务只有在 Tor 网络 里可以连接。"
+
+#: 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 "我视图访问的网站阻止了来自 Tor 网络的连接请求。"
+
+#: http//localhost/misc/misc-6/
+#: (content/misc/misc-6/contents+en.lrquestion.title)
+msgid "Does Tor keep logs?"
+msgstr "Tor 会留存日志吗?"
+
+#: 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 "目前没有在 Windows Phone 上运行 Tor 的方法。"
+
+#: http//localhost/onionservices/onionservices-2/
+#: (content/onionservices/onionservices-2/contents+en.lrquestion.title)
+msgid "What is a .onion or what are onion services?"
+msgstr "什么是 .onion,或者说什么是洋葱服务?"
+
+#: 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 ""
+"通过 Tor 网络分享文件,<mark><a href=\"https://onionshare.org/\">OnionShare "
+"洋葱分享</a></mark>是一个不错的选项。"
+
+#: http//localhost/operators/operators-7/
+#: (content/operators/operators-7/contents+en.lrquestion.description)
+msgid "No."
+msgstr "不要这么做。"
+
+#: 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 "设置 Tor Browser 为默认浏览器"
+
+#: 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 "不幸的是,我们目前还没有 ChromeOS 版本的 Tor Browser 。"
+
+#: 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=\"新版本提醒\">"
+
+#: 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 "我电脑上的一些文件被锁住了,有人要求我下载 Tor Browser 来支付赎金赎回文件!"
+
+#: 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 "很多出口节点会设置成阻止 BitTorrent 一类的文件共享服务的流量。"
+
+#: 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 "Tor 需要准确的时间设置:请检查你的时间,时区和日期设置是否正确。"
+
+#: 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 ""
+"更多信息请查阅我们的<mark><a href=\"https://blog.torproject.org/bittorrent-over-tor-"
+"isnt-good-idea\">有关这个项目的博文</a></mark>。"
+
+#: 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 ""
+"你可以我们的财务报告上查询<mark><a "
+"href=\"https://www.torproject.org/about/sponsors.html.en\">捐款人</a></mark>和一系列<mark><a"
+" href=\"https://blog.torproject.org/category/tags/form-990\">日志</a></mark>。"
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "RunAsDaemon 1"
+msgstr "RunAsDaemon 1"
+
+#: 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 "如果您的网络连接需要设置 SOCKS 代理,请确认您代理服务器的信息正确。"
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.seo_slug)
+msgid "using-correct-packages"
+msgstr "使用正确的安装包"
+
+#: 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 "如果您同时使用 Tor Browser 和其他浏览器,这不会影响 Tor 的安全性和私密性。"
+
+#: 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 "Tor Browser 可以帮助人们访问所在地区被封锁的网站。"
+
+#: http//localhost/tbb/tbb-21/
+#: (content/tbb/tbb-21/contents+en.lrquestion.title)
+msgid "How do I view Tor Browser message log?"
+msgstr "我该怎么查询 Tor Browser 的消息日志?"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Deutsch (de)"
+msgstr "* Deutsch (德语)"
+
+#: 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 "我如何在 FreeBSD 上运行中转(或中间)节点"
+
+#: http//localhost/misc/misc-15/
+#: (content/misc/misc-15/contents+en.lrquestion.description)
+msgid "Thank you for your support!"
+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 ""
+"If you need other bridges, you can get them at our <mark><a "
+"href=\"https://bridges.torproject.org/\">Bridges website</a></mark>."
+msgstr ""
+"如果您需要其他的网桥,你可以从<mark><a "
+"href=\"https://bridges.torproject.org/\">网桥网站</a></mark>上查询。"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Polish (pl)"
+msgstr "* Polish (波兰语)"
+
+#: 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 Browser 目前支持 Windows ,macOS 和 GNU/Linux 操作系统。"
+
+#: 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 ""
+"<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> 维护的 <mark><a "
+"href=\"https://guardianproject.info/apps/orbot/\">Orbot</a></mark> 和 "
+"<mark><a "
+"href=\"https://guardianproject.info/apps/orfox/\">Orfox</a></mark>来使用 Tor "
+"网络。"
+
+#: 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 "不过你的网络提供商或网络管理员也许可以发现你在使用 Tor,但他们无法知道你浏览的具体网站。"
+
+#: 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 "* 请确认在开机时启动 Tor 。可以以 root 用户运行 \"sysrc tor_enable=YES\" 来启用此功能。"
+
+#: 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 "抱歉, 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 ""
+"19.11.2017 00:04:48.200 [NOTICE] Bootstrapped 10%: Finishing handshake with "
+"directory server"
+msgstr ""
+"19.11.2017 00:04:48.200 [NOTICE] Bootstrapped 10%: Finishing handshake with "
+"directory server"
+
+#: 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 "你可以通过运行你自己的中继服务器和鼓励他人做同样的事来提高整个 Tor 网络的速度。"
+
+#: 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 "当 Tor Browser 需要更新时,你可以在打开 Tor Browser 时看见一个更新提示。"
+
+#: 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 "你可以更新 Tor Browser 至最新版本。"
+
+#: 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=\"有锁型标志的绿色洋葱\">"
+
+#: 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 "抱歉,我们没有官方支持 *BSD 系统上的 Tor Browser 。"
+
+#: 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 "* 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 "* 在命令窗口以 root 权限执行“pkg install tor ”"
+
+#: 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 ""
+"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)"
+
+#: 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-services"
+
+#: http//localhost/onionservices/
+#: (content/onionservices/contents+en.lrtopic.title)
+msgid "Onion Services"
+msgstr "洋葱服务"
+
+#: 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 ""
+"请浏览<mark><a href=\"https://www.torproject.org/docs/pluggable-"
+"transports.html.en\">可插拔传输</a></mark>获取更多信息。"
+
+#: http//localhost/tormobile/tormobile-2/
+#: (content/tormobile/tormobile-2/contents+en.lrquestion.title)
+msgid "Who is the Guardian Project?"
+msgstr "什么是 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 ""
+"但是,苹果要求所有在 iOS 运行的浏览器使用 Webkit ,这会使 Onion Browser 不能提供和 Tor Browser 相同的隐私保护。"
+
+#: http//localhost/tbb/tbb-13/
+#: (content/tbb/tbb-13/contents+en.lrquestion.description)
+msgid "They need to be configured separately to use Tor."
+msgstr "需要单独配置来使用 Tor。"
+
+#: http//localhost/tbb/ (content/tbb/contents+en.lrtopic.seo_slug)
+msgid "tor-browser"
+msgstr "Tor Browser"
+
+#: 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 "您应该能够在 Tor 日志中发现这些常见问题(请在 Tor 日志里寻找如下所示的错误):"
+
+#: 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 ""
+"大多数时候,只需下载 <mark><a href=\"https://www.torproject.org/download/download-"
+"easy.html.en\">Tor Browser</a></mark>,您就可以使用它去访问被屏蔽的网站。"
+
+#: 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 ""
+"我们厌恶用 Tor 做糟糕的事情的人,但是我们并不能在剔除他们的同时,不伤害到人权活动者,记者,虐待后的幸存者们,以及其他用 Tor 做好事的人们。"
+
+#: http//localhost/operators/ (content/operators/contents+en.lrtopic.seo_slug)
+msgid "operators"
+msgstr "operators"
+
+#: 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 "同时运行 Tor Browser 和其他的浏览器安全吗?"
+
+#: 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 ""
+"如果无法通过我们的<mark><a href=\"https://www.torproject.org\">网站</a></mark>下载 "
+"Tor,你可以通过 GetTor 获取 Tor。"
+
+#: 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 "因为禁用 JavaScript 会让很多网站无法工作, Tor Browser 内置的 NoScript 默认允许 JavaScript。"
+
+#: 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 ""
+"我们在审查严重的地区提供了诸如<mark><a href=\"https://www.torproject.org/docs/pluggable-"
+"transports.html.en\">可插拔传输</a></mark>等一系列选项。"
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "* Run \"service tor start\" (as root)"
+msgstr "* 以 root 用户运行 \"service tor start\""
+
+#: 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 "* 以 root 用户运行 \"apt-get install tor\""
+
+#: 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 ""
+"2017-10-29 09:23:47.900 [NOTICE] Bootstrapped 10%: Finishing handshake with "
+"directory server"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Vietnamese (vi)"
+msgstr "* Vietnamese (越南语)"
+
+#: 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 "我能在 Tor 网络中使用 BitTorrent 吗?"
+
+#: 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 ""
+"Tor 有不同的资金支持赞助,包括美国中央政府部分机构(译者加:应该是搞笑的,Tor 被列为国家安全局重点监控对象-----"
+"因为无法监控),私有募款机构和个人。"
+
+#: 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 ""
+"有一些网桥是 Tor Browser 内置的,在第一次启动 Tor Browser 时你可以通过点击 Tor Launcher "
+"中的“设置”(并遵循提示)来使用这些网桥。"
+
+#: 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 ""
+"如果你确信这是 Tor Browser 的问题,请你报告给<mark><a "
+"href=\"https://trac.torproject.org/\">我们的 Bug 跟踪平台</a></mark>。"
+
+#: http//localhost/tbb/tbb-18/
+#: (content/tbb/tbb-18/contents+en.lrquestion.title)
+msgid "Is there support for *BSD?"
+msgstr "有对 *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 "无法连接 Tor,我的网络被审查了吗?"
+
+#: 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 "目前没有设置 Tor Browser 为默认浏览器的方法。"
+
+#: 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 "Windows 中的默认位置是桌面,macOS 中位于应用程序文件夹(你需要在安装完毕后把浏览器移动到应用程序文件夹来运行。)"
+
+#: 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 "我能将 Tor 的图标用于我的产品中吗?"
+
+#: 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 "如果你在 Tor 日志里看见这句话,这意味着 Tor 和目录服务器无法完成 TLS 握手。"
+
+#: 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 ""
+"关于网桥的更多信息请参阅 <mark><a href=\"https://tb-manual.torproject.org/en-"
+"US/bridges.html\">Tor Browser 用户手册</a></mark>。"
+
+#: 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 "我们认为 Flash 在任何浏览器上都是是极不安全的 —— 它可以轻易盗取你的个人信息或者给你安装恶意软件。"
+
+#: http//localhost/onionservices/onionservices-1/
+#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
+msgid "You can access these websites by using Tor Browser."
+msgstr "您可以用 Tor Browser 访问这些网站。"
+
+#: http//localhost/tormobile/tormobile-1/
+#: (content/tormobile/tormobile-1/contents+en.lrquestion.title)
+msgid "Can I run Tor on an Android device?"
+msgstr "我能在 Android 设备上使用 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-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 "#RelayBandwidthBurst 100 MBytes"
+
+#: 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 ""
+"在切换到<mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/doc/ReducedExitPolicy\">严格出口政策</a></mark>时请稍加考虑。"
+
+#: 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 "我能在使用 Tor Browser 时使用其它的浏览器吗(例如 Chrome 或 Firefox)?"
+
+#: http//localhost/tormobile/ (content/tormobile/contents+en.lrtopic.title)
+msgid "Tor Mobile"
+msgstr "在移动设备上使用 Tor"
+
+#: http//localhost/misc/misc-12/
+#: (content/misc/misc-12/contents+en.lrquestion.title)
+msgid "How can I share files anonymously through Tor?"
+msgstr "我如何使用 Tor 匿名的分享文件?"
+
+#: 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 "##### 常见错误 #4:时钟偏差"
+
+#: 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 "两个选项都在菜单中,你也可以从地址栏的网站信息菜单中选择“新的 Tor 线路”选项。"
+
+#: 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/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 them in the family"
+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 ""
+"您可以在<mark><a href=\"https://www.torproject.org/docs/trademark-"
+"faq.html\">商标问答界面</a></mark>了解一切有关我们商标的事情。"
+
+#: 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 "使用 Tor Browser 有时会比其他浏览器慢。"
+
+#: 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 "* 请确认你的时钟,日期和时区设置正确。你可以安装 ntp / openntpd 等软件来确保时间正确。"
+
+#: 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 "Tor Browser 支持哪些平台?"
+
+#: http//localhost/tormobile/tormobile-1/
+#: (content/tormobile/tormobile-1/contents+en.lrquestion.description)
+msgid "Tor on Android is provided by The Guardian Project."
+msgstr "Guardian Project 提供了 Android 上的 Tor。"
+
+#: 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 "如果你无法连接洋葱服务,请参阅 <a href=\"/#onionservices-3\">我无法访问 x.onion!</a>"
+
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.title)
+msgid "How do I run an exit relay on Debian?"
+msgstr "我如何在 Debian 上运行出口节点?"
+
+#: 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 "一些国家,包括中国和伊朗,已经发现了检测和屏蔽 Tor 网桥的方法。"
+
+#: 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 "然后粘贴 Tor 日志到文本文件或者其他文档格式中。"
+
+#: 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 ""
+"不过,为了用于提高网络的安全性,我们会存留一些关于网络功能的日志。您可以在 <mark><a "
+"href=\"https://metrics.torproject.org/\">Tor Metrics</a></mark> 中查看到。"
+
+#: 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 ""
+"请参阅 <mark><a href=\"https://www.eff.org/https-everywhere/faq\">HTTPS "
+"Everywhere 的常见问题 </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 "有人要求我下载 Tor Browser 来解锁我的文件"
+
+#: http//localhost/tormobile/tormobile-2/
+#: (content/tormobile/tormobile-2/contents+en.lrquestion.seo_slug)
+msgid "who-is-the-guardian-project"
+msgstr "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 "默认禁用 JavaScript 造成的不便过于严重,也许会让大多数用户直接放弃使用 Tor 。"
+
+#: 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 "如果您的系统不需要代理,或者您不敢肯定,请尝试直接连接 Tor 网络。"
+
+#: 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 "使用 Tor Browser 时,没人能看见你在浏览的网站。"
+
+#: 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 "Tor Browser 会让你的网络活动看起来像是来自于世界各个不同地区的网络连接。"
+
+#: 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 "* 请确认你的时钟,日期和时区设置正确。"
+
+#: http//localhost/tormessenger/tormessenger-1/
+#: (content/tormessenger/tormessenger-1/contents+en.lrquestion.title)
+msgid "Does Tor Project make an application for private chat?"
+msgstr "Tor Project 有开发私密聊天软件吗?"
+
+#: 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 ""
+"你可以点击<mark><a "
+"href=\"https://guardianproject.info/apps/orbot/\">Orbot</a></mark>和<mark><a "
+"href=\"https://guardianproject.info/apps/orfox/\">Orfox</a></mark>网页了解更多信息。"
+
+#: 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 ""
+"如果 Tor Browser 已开启,点击 TorButton (屏幕左上角的绿色洋葱图标),然后点击“打开网络设置” - “复制 Tor "
+"日志到剪贴板”。"
+
+#: 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 "我们强烈不推荐把 Tor 和 Tor Browser 以外的浏览器搭配使用。"
+
+#: 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 ""
+"了解关于 Tor 与 VPN 组合使用等更多信息,请访问<mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">我们的 "
+"wiki</a></mark>。"
+
+#: 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 ""
+"<h4 class=\"card-title\">这个可视化实例展示了窃听者在不同的情况(网站是否支持 HTTPS ,是否在使用 Tor "
+"Browser)时会看到哪些信息。</h4>"
+
+#: 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 ""
+"<mark><a href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-"
+"idea\">即使通过 Tor 网络,BitTorrent 也不是匿名的</a></mark>。"
+
+#: 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 "选择一个你能简单记住的目录,下载完成后你能在选择的目录中看到 Tor Browser 文件夹。"
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.title)
+msgid "How do I update Tor Browser?"
+msgstr "我如何更新 Tor Browser?"
+
+#: 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 ""
+"查找 /var/log/syslog 中例如 \"Self-testing indicates your ORPort is reachable "
+"from the outside. Excellent.\" 这样的日志记录。"
+
+#: 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 "我如何在 FreeBSD 或 HardenedBSD 上运行中转或中间节点?"
+
+#: http//localhost/tbb/tbb-25/
+#: (content/tbb/tbb-25/contents+en.lrquestion.title)
+msgid "I'm having a problem with NoScript."
+msgstr "我遇到 NoScript 的使用问题。"
+
+#: http//localhost/tbb/tbb-34/
+#: (content/tbb/tbb-34/contents+en.lrquestion.title)
+msgid "Why does Tor Browser ship with Javascript enabled?"
+msgstr "为什么 Tor Browser 默认启用 JavaScript ?"
+
+#: 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 "Tor Browser 会安装更新。"
+
+#: 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 "* 不要使用 Ubuntu 仓库中的包,它们未得到可靠更新。 如果您使用它们,您可能会错过重要的稳定性和安全性修复。"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Português (pt-BR)"
+msgstr "* Português (葡萄牙语)"
+
+#: 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 "Tor Browser 有两种方法改变你的中继线路 —— “新身份”和“为该站点使用新 Tor 线路”。"
+
+#: 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 "我应该在家里运行 Tor 出口节点吗?"
+
+#: 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 ""
+"* 查阅我们的 <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorExitGuidelines\">出口节点政策</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 "在其它浏览器中使用 Tor 可能会使你置于没有 Tor Browser 提供的隐私保护的风险中。"
+
+#: 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 ""
+"2017-10-29 09:23:40.800 [NOTICE] Opening Socks listener on 127.0.0.1:9150"
+
+#: 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 "请采取强硬立场支持数字隐私和互联网自由,以及允许 Tor 用户访问 xyz.com,谢谢。”"
+
+#: 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 "* 编辑 /etc/tor/torrc:"
+
+#: 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 "我用 Tor Browser 访问 Facebook、Twitter 之类的网站时遇到了问题。"
+
+#: 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 "如果您看见这些提示出现在您的日志里面,这意味着您连接 SOCKS 代理失败了。"
+
+#: 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 "为什么 Tor Browser 会提示“Firefox 没有响应“?"
+
+#: http//localhost/tbb/tbb-24/
+#: (content/tbb/tbb-24/contents+en.lrquestion.title)
+msgid "I'm having a problem with DuckDuckGo."
+msgstr "我使用 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 "我能用其他的浏览器使用 Tor 服务吗?"
+
+#: 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 ""
+"* 查找 /var/log/syslog 中例如 \"Self-testing indicates your ORPort is reachable "
+"from the outside. Excellent.\" 这样的日志记录。"
+
+#: 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 "也就是说, Tor 比以前快的多了,你未必会注意到和其它浏览器相比的速度变化。"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Türkçe (tr)"
+msgstr "* Türkçe (土耳其语)"
+
+#: 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 ""
+"11/1/2017 21:11:44 PM.500 [NOTICE] Bootstrapped 85%: Finishing handshake "
+"with first hop"
+
+#: http//localhost/connecting/
+#: (content/connecting/contents+en.lrtopic.seo_slug)
+msgid "connecting-to-tor"
+msgstr "connecting-to-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=\"New release alert\">"
+
+#: 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 "其余的中继会在你每次访问新网站时改变,这三个 Tor 中继会一起提供完整的隐私保护。"
+
+#: http//localhost/tbb/tbb-2/
+#: (content/tbb/tbb-2/contents+en.lrquestion.seo_slug)
+msgid "first-address-relay-circuit"
+msgstr "中转节点的地址"
+
+#: 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=\"为此站点使用新"
+" Tor 线路\">"
+
+#: 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 ""
+"在 Windows 系统中默认是在桌面;在 macOS 中则是应用程序文件夹;而在 GNU/Linux 系统中则没有默认路径,例如,如果你的 Tor "
+"Browser 是英文版的话,那目录的名称会是“tor-browser_en-US”。"
+
+#: http//localhost/misc/ (content/misc/contents+en.lrtopic.seo_slug)
+msgid "misc"
+msgstr "misc"
+
+#: 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 ""
+"Tor Browser 基于 <mark><a href=\"https://www.mozilla.org/en-"
+"US/firefox/organizations/\">Firefox ESR</a></mark> 开发,所以也许会遇到 Firefox 的错误。"
+
+#: 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 ""
+"如果你希望成为一个 Tor 中继,请参阅<mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
+"中继指南</a></mark>。"
+
+#: 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 "我可以设置 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 ""
+"Please make sure your clock is set accurately, including the correct "
+"timezone. Then restart Tor."
+msgstr "请确认您的时间设置是正确的,包括正确的时区。然后重新启动 Tor。"
+
+#: http//localhost/faq/faq-2/
+#: (content/faq/faq-2/contents+en.lrquestion.seo_slug)
+msgid "can-tor-help-users-access-website"
+msgstr "Tor 能否帮助用户访问网站"
+
+#: 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 ""
+"如果你的问题不在列表中,请提交一个你遇到的问题的 <mark><a href=\"https://trac.torproject.org\">bug "
+"报告</a></mark>。"
+
+#: 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 "我们能让网站解封 Tor 用户的最成功的手段是让用户直接联系网站管理员"
+
+#: 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 "Tor Browser 是否为每个网站使用不同的线路?"
+
+#: 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 "请注意 Kaspersky 一类的防病毒软件可能会在防火墙等级封锁 Tor。"
+
+#: http//localhost/gettor/gettor-3/
+#: (content/gettor/gettor-3/contents+en.lrquestion.title)
+msgid "To use GetTor via Twitter."
+msgstr "通过 Twitter 使用 GetTor。"
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "* Run \"service tor reload\" (as root)."
+msgstr "* 以 root 用户运行 \"service tor reload\""
+
+#: 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 "Tor Browser防止人们获知您访问过的网站。"
+
+#: 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 "如果你只想访问只在某些国家或地区提供的服务,你可能更应该去使用 VPN 而不是 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-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 MBytes"
+
+#: 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 "Tor Browser 做了很多工作,例如加入强化隐私和安全的补丁。"
+
+#: 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 ""
+"如果你平时只在某个特定的国家使用他们的服务,从其他国家进行访问时你的账号可能就会被冻结。如无法连接 onion 服务,请参阅 <a "
+"href=\"/#onionservices-3\">无法连接 x.onion!</a>"
+
+#: 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 "##### 常见错误 #1: 代理连接失败"
+
+#: 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 "目前没有设置 Tor Browser 为默认浏览器的方法。"
+
+#: 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 "Tor Project 并不是这个恶意软件的作者。不过恶意软件的作者希望你使用 Tor Browser 来匿名的联系他们来交付赎金。"
+
+#: 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 "当我使用 Tor Browser 时,其他人是否能知道我曾经访问过哪些网站?"
+
+#: 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 ""
+"运行此功能将会关闭所有已经打开的浏览器窗口及标签页,清除所有的浏览器 Cookie 与历史记录等个人信息,并且为后续所有的网络连接创建新的洋葱路由回路。"
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.description)
+msgid "##### New Identity"
+msgstr "##### 新身份"
+
+#: 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 "使用 Tor Browser 能够保护我电脑上的其他应用吗?"
+
+#: 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 无响应"
+
+#: http//localhost/tbb/tbb-31/
+#: (content/tbb/tbb-31/contents+en.lrquestion.seo_slug)
+msgid "which-platform-tor-browser-available"
+msgstr "Tor Browser 可用于哪些平台"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* TorBrowser"
+msgstr "* Tor Browser"
+
+#: 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 "#Address noname.example.com"
+
+#: 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 "当新的 Tor Browser 稳定版本发布时,我们将会写一篇包括新的特性与已知问题的博文。"
+
+#: 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 "Tor 具有避免恶意用户破坏匿名性的保护措施,这些措施也阻止了我们追踪用户。"
+
+#: 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 "如果你遇到了连接问题,请选择 “复制 Tor 日志到剪贴板” 选项。"
+
+#: 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> 是 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:47.900 [NOTICE] Bootstrapped 5%: Connecting to directory "
+"server"
+msgstr ""
+"2017-10-29 09:23:47.900 [NOTICE] Bootstrapped 5%: Connecting to directory "
+"server"
+
+#: 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 "我了解到有些网站只能使用 Tor 访问。这些网站是什么?我该如何访问它们?"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* For Windows"
+msgstr "* Windows"
+
+#: http//localhost/tbb/tbb-26/
+#: (content/tbb/tbb-26/contents+en.lrquestion.title)
+msgid "I'm having a problem with HTTPS Everywhere."
+msgstr "我遇到 HTTPS Everywhere 的使用问题。"
+
+#: 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 "* Korean (韩语)"
+
+#: 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 ""
+"请访问 <mark><a href=\"https://duck.co/help\">DuckDuckGo 的支持网站</a></mark> "
+"了解详细信息。"
+
+#: 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 ""
+"2017-10-29 09:24:08.900 [WARN] Proxy Client: unable to connect "
+"toxx..xxx..xxx.xx:xxxxx (\"general SOCKS server failure\")"
+
+#: http//localhost/misc/misc-10/
+#: (content/misc/misc-10/contents+en.lrquestion.seo_slug)
+msgid "does-tor-project-offer-hosting"
+msgstr "Tor Project 是否提供虚拟主机服务"
+
+#: 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 ""
+"封锁 Tor "
+"用户意味着也可能封锁了希望在专制国家自由的浏览互联网的用户,希望隐藏自己避免被发现的研究人员、记者、举报人和社会活动家,或只是希望不被第三方跟踪的普通人。"
+
+#: 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 "我可以改变 Tor Browser 为我在某个网站分配的 IP 地址吗?"
+
+#: 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 ""
+"13-11-17 19:53:49.300 [WARN] 1 connections died in state connect()ing with "
+"SSL state (No SSL object)"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Italiano (it)"
+msgstr "* Italiano (意大利语)"
+
+#: 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 "目前路径的长度为 3 加上你的路径中敏感路径的数量。"
+
+#: 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 "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-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 "## 设置你的联系方式"
+
+#: 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 ""
+"请参见我们的<mark><a "
+"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">志愿者页面</a></mark>以了解参与项目的方法!"
+
+#: 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 "当我使用 Tor 时,窃听者能够获取我分享给网站的信息(登录信息或者其他以这种格式传递的信息)吗?"
+
+#: 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 "选择它会在新的 Tor 线路上加载当前标签页。"
+
+#: 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 "Tor 开发者没有追踪 Tor 用户的手段。"
+
+#: 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 "为什么 Tor Browser 是基于 Firefox 而不是其他的浏览器呢?"
+
+#: 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 "如果这是你第一次听说 Tor Browser,我们知道你可能会认为我们是坏人。"
+
+#: 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 ""
+"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."
+
+#: 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 "你的出口节点有一个独立的 IP 地址,而且不会传输你的流量。"
+
+#: 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 "13-11-17 19:53:49.300 [WARN] 10 connections have failed:"
+
+#: http//localhost/tormobile/tormobile-5/
+#: (content/tormobile/tormobile-5/contents+en.lrquestion.title)
+msgid "When is Tor Browser for Android being released?"
+msgstr "基于 Android 平台的 Tor 什么时候会发布呢?"
+
+#: 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 ""
+"您可以访问<mark><a href=\"https://donate.torproject.org/donor-"
+"faq\">捐款常见问题界面</a></mark>,以了解更多捐款方面的信息。"
+
+#: 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 "Vidalia 提供的许多功能已经整合进了 Tor Browser 中。"
+
+#: 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 "参阅 <mark><a href=\"#operators-6\">如何运行一个网桥</a></mark> 了解详细信息。"
+
+#: 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 ""
+"11/1/2017 21:11:45 PM.300 [WARN] Failed to find node for hop 0 of our path. "
+"Discarding this circuit."
+
+#: 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 ""
+"11/1/2017 21:11:43 PM.500 [NOTICE] Opening Socks listener on 127.0.0.1:9150"
+
+#: 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 "当你浏览洋葱服务网站时,Tor Browser 会在地址栏左侧以一个绿色的洋葱图标表示(使用洋葱服务的安全连接)。 "
+
+#: http//localhost/misc/misc-9/
+#: (content/misc/misc-9/contents+en.lrquestion.description)
+msgid "Vidalia is no longer maintained or supported."
+msgstr "Vidalia 已经不再维护和支持。"
+
+#: 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 ""
+"GetTor 是一项通过不同方式自动回复最新版 Tor Browser 下载链接的服务。这些链接由不同处所托管,例如 Dropbox 、Google "
+"Drive 和 GitHub."
+
+#: 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 "Tor Browser 的 Windows 安装程序默认会在桌面上创建一个快捷方式,也许你不小心取消选中了那个选项。"
+
+#: http//localhost/gettor/gettor-2/
+#: (content/gettor/gettor-2/contents+en.lrquestion.title)
+msgid "To use GetTor via email."
+msgstr "通过电子邮件使用 GetTor。"
+
+#: 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 "常见于最新稳定版本的 Tor Browser 的问题是什么?"
+
+#: 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 ""
+"不,在几次 beta 版之后,我们终止了 <a href=\"https://blog.torproject.org/sunsetting-tor-"
+"messenger\">Tor Messenger</a> 的支持。"
+
+#: 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 "即使现在没有那么多资源进行这项工作,我们依旧相信 Tor 可以和即时消息结合。"
+
+#: 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 "* 以 root 用户运行 \"apt-get install tor obfs4proxy\""
+
+#: 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 ""
+"在 iOS 上我们推荐 Onion Browser,它是开放源代码软件,使用 Tor 线路,而且由和 Tor Project 关系密切的人开发。"
+
+#: http//localhost/tbb/tbb-15/
+#: (content/tbb/tbb-15/contents+en.lrquestion.title)
+msgid "Can I download Tor Browser for ChromeOS?"
+msgstr "我能为 ChromeOS 下载 Tor Browser 吗?"
+
+#: http//localhost/tbb/tbb-2/
+#: (content/tbb/tbb-2/contents+en.lrquestion.description)
+msgid "That is normal Tor behavior."
+msgstr "这是 Tor 的正常行为。"
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "Removing Tor Browser from your system is simple:"
+msgstr "在您的系统上删除 Tor Browser 非常简单:"
+
+#: 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 "每当 Tor Browser有更新版被发布时,都会有提示自动出现。"
+
+#: 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 ""
+"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 Browser 已经默认安装了两个插件 —— <mark><a href=\"https://www.eff.org/https-"
+"everywhere\">HTTPS Everywhere</a></mark> 和 <mark><a "
+"href=\"https://noscript.net/\">NoScript</a></mark> —— 再安装别的插件将会让你降低(或失去)匿名性。"
+
+#: 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 "Tor Browser 做了大量工作使它和你的操作系统的其他部分相互隔离,以及设置为默认浏览器的过程并不可靠。"
+
+#: 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 ""
+"在 /var/log/tor/notices.log 中查找例如 \"Self-testing indicates your ORPort is "
+"reachable from the outside. Excellent.\" 这样的日志记录。"
+
+#: 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 协议传输的未加密的内容。"
+
+#: 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 ""
+"11/1/2017 21:11:44 PM.300 [NOTICE] Bootstrapped 80%: Connecting to the Tor "
+"network"
+
+#: 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 ""
+"有各种各样的洋葱服务网站,例如让记者和他的资料来源间无元数据的交谈和安全的传输文件的 <mark><a "
+"href=\"https://securedrop.org/\">SecureDrop</a></mark> 和 <mark><a "
+"href=\"https://onionshare.org/\">OnionShare</a>,安全的更新软件,以及以更安全的方式访问<mark><a "
+"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
+"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>一类的网站。"
+
+#: 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 ""
+"例如 DuckDuckGo 的洋葱服务: <a "
+"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+
+#: 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 "通常情况下,除非你知道如何把 VPN 和 Tor 在不侵犯你的隐私的情况下一起配置,我们不建议将这两者配合使用。"
+
+#: 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 "只能通过 Tor 访问的网站称作“洋葱服务”,它们以 .onion 结尾。"
+
+#: 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 ""
+"而且使用超过三个中继的线路会损害你的匿名性,首先这会让<mark><a "
+"href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">拒绝服务攻击</a></mark>更容易,其次如果只有很少的用户的中继长度和你一样的话,你会更容易被区分出来。"
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.title)
+msgid "How do I run a obfs4 bridge on Debian?"
+msgstr "我如何在 Debian 中搭建一个 obfs4 网桥?"
+
+#: 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 ""
+"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"
+
+#: 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 "有些网站因为他们无法分辨出普通 Tor 用户和机器人的区别而屏蔽了 Tor 用户的访问。"
+
+#: 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 "卸载 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 "Tor Browser 是为和 Tor 一起使用而定制的 Firefox 。"
+
+#: 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 "在信息正文中写出您的操作系统(如 Windows,macOS(OS X)或GNU/Linux(linux))并发送。"
+
+#: http//localhost/tbb/tbb-6/ (content/tbb/tbb-6/contents+en.lrquestion.title)
+msgid "Can I make Tor Browser my default browser?"
+msgstr "我能将 Tor Browser 作为我的默认浏览器吗?"
+
+#: 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 ""
+"请参阅<mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
+"中继指南</a></mark>以了解关于运行一个 Tor 中继的更多信息。"
+
+#: 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 "##### 常见错误 #2: 无法连接到中继"
+
+#: 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 "需要一些额外软件和设置来运行 obfsproxy 网桥。"
+
+#: 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 "* 以 root 用户把下面的行添加到 /etc/apt/sources.list 中。用前一步你获得的版本号代替 <version>。"
+
+#: 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 "如果你正在通过 https 访问一个洋葱服务网站,你会在地址栏的左侧看到一个有绿色锁的洋葱图标。"
+
+#: 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 "<h4 class=\"card-title\">如果你正在使用 HTTPS ,你的 URL 会以 “https://” 开头。</h4>"
+
+#: 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 ""
+"<mark><a href=\"https://blog.torproject.org/tor-heart-onion-browser-and-"
+"more-ios-tor\">了解更多关于 Onion Browser 的信息</a></mark>。"
+
+#: 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 "Nickname ididnteditheconfig"
+
+#: 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 "谢谢你。\""
+
+#: 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 "##### 为此站点使用新 Tor 线路"
+
+#: 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 "Tor Browser 使用什么搜索引擎,它是如何保护我的隐私的?"
+
+#: 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 "你当然可以在使用 Tor Browser 时使用其它的浏览器。"
+
+#: 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 ""
+"如果无法访问您想访问的洋葱服务,请检查是否正确输入了洋葱地址的16个字符(或者新版地址的56个字符)。只要有一点点错误, Tor Browser "
+"就无法连接到网站。"
+
+#: http//localhost/censorship/
+#: (content/censorship/contents+en.lrtopic.seo_slug)
+msgid "censorship"
+msgstr "censorship"
+
+#: 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 "你们为什么不阻止那些心怀不轨的人用 Tor 做坏事呢?"
+
+#: 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 "Tor Project 没有支持也没有纵容以恶意的方式使用我们的软件。"
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.description)
+msgid "* Determine your Ubuntu version by running the following command:"
+msgstr "* 运行下面的命令确定你 Ubuntu 的版本"
+
+#: 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 ""
+"Tor Browser 目前支持 <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\">GNU/Linux</a></mark> 和 <mark><a "
+"href=\"https://www.torproject.org/download/download-easy.html.en#mac\">macOS"
+" (OS X)</a></mark>操作系统。"
+
+#: 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 "最后,重新启动 Tor Browser。"
+
+#: http//localhost/connecting/ (content/connecting/contents+en.lrtopic.title)
+msgid "Connecting To Tor"
+msgstr "连接 Tor"
+
+#: 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 "ContactInfo 0xFFFFFFFF Random Person <nobody AT example dot com>"
+
+#: http//localhost/misc/misc-9/
+#: (content/misc/misc-9/contents+en.lrquestion.title)
+msgid "I'm having a problem updating or using Vidalia."
+msgstr "我在使用或是升级 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 "造成 Tor Browser 连接失败的最常见的问题之一是系统时间设置错误。"
+
+#: 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 "为什么我连接的中继回路,第一个 IP 地址总是相同的呢?"
+
+#: 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 "Guardian Project 维护在 Android 上使用 Tor 网络的应用程序 Orbot 和 Orfox。"
+
+#: 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 ""
+"19.11.2017 00:04:48.000 [NOTICE] Bootstrapped 5%: Connecting to direc Tor y "
+"server"
+
+#: 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 ""
+"如果这个问题还没有被解决,请查看位于 <mark><a href=\"https://tb-manual.torproject.org/en-"
+"US/troubleshooting.html\">Tor Browser 用户手册</a></mark>的故障排查界面。"
+
+#: 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 "如果你所使用服务的提供商支持比基于 IP 的验证更安全的双因素认证选项的话,你也许能规避这种场景。"
+
+#: 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 "一些反病毒程序和恶意程序防护软件禁止我使用 Tor Browser。"
+
+#: 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 (如果你使用网桥)"
+
+#: 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 "不过在切换浏览器时要多加小心,你也许会不小心在普通浏览器里执行要在 Tor Browser 中执行的操作。"
+
+#: 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 "哪些个人或者集团在资助 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 "我能同时运行多个 Tor Browser 吗?"
+
+#: 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 ""
+"请参阅 <mark><a href=\"https://noscript.net/faq\">NoScript 的常见问题 </a></mark>。"
+
+#: 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 "你应该复查你的防火墙设置,检查你在你的 torrc 中设置的用户名和端口是否正确。"
+
+#: 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 "我们正在进行和 Android 上的 Tor Browser 相关的工作,你也许会在接下来的几个月内发现预发行版本。"
+
+#: 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 "* 运行下面的命令来添加签名软件包的 gpg 公钥:"
+
+#: 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 "如果您看见这些提示出现在您的日志里面,这意味着您的 Tor 无法连接到 Tor 网络中的第一个节点。"
+
+#: 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 ""
+"你想这样做吗?<mark><a "
+"href=\"https://www.torproject.org/about/contact.html.en\">联系我们</a></mark>。"
+
+#: 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 ""
+"如果你在升级后使用 Tor Browser 时出现问题,请查阅 <mark><a "
+"href=\"https://blog.torproject.org\">blog.torproject.org</a></mark>。你的问题可能会被包含在我们发布的有关最新稳定版本"
+" Tor Browser 的博客中。"
+
+#: http//localhost/misc/ (content/misc/contents+en.lrtopic.title)
+msgid "Misc"
+msgstr "其它"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* obfs4proxy.exe (if you use bridges)"
+msgstr "* obfs4proxy.exe (如果你使用网桥)"
+
+#: 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 ""
+"在几个小时后(传播需要足够的时间),你可以访问<mark><a "
+"href=\"https://metrics.torproject.org/rs.html#search\">Metrics</a></mark> "
+"来确认你的中继有没有注册到网路中。"
+
+#: 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 ""
+"GetTor 将会给你自动回复一封电子邮件给,信中会带有 Tor Browser 的下载链接、数字签名(用于<mark><a "
+"href=\"https://www.torproject.org/docs/verifying-"
+"signatures.html.en\">验证下载</a></mark>)、签名的指纹和文件的散列值。"
+
+#: 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 "我如何确定我正在 Ubuntu 上使用正确的软件包?"
+
+#: 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 ""
+"Guardian Project 在 Android 上维护 Tor (以及其他保护隐私的软件),你可以在<mark><a "
+"href=\"https://guardianproject.info/\">The Guardian Project "
+"的网站</a></mark>上获得更多信息。"
+
+#: 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 "推荐在支持 Tor 的商业实体(例如某些 VPS 服务商 —— 译者注)上搭建 Tor 的出口节点。"
+
+#: 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 "Orfox 用于浏览互联网,Orbot 可以让你的 Android 上的其它应用使用 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-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "If it hasn't, re-check firewalls, IP and ports again."
+msgstr "如果没有的话,请复查你的防火墙设置、IP 地址和端口。"
+
+#: 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 "Tor Browser 中停用了 Flash,我们也不建议你启用它。"
+
+#: 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 ""
+"如果无法访问您想访问的洋葱服务,请检查是否正确输入了洋葱地址的 16 个字符(或者新版地址的 56 个字符)。只要有一点点错误, Tor Browser"
+" 就无法连接到网站。"
+
+#: 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 ""
+"不过有一个非官方支持的 <mark><a href=\"https://www.torbsd.org/\">TorBSD 项目</a></mark>。"
+
+#: 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 "您需要什么帮助?"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Nederlands (nl)"
+msgstr "* Nederlands (荷兰语)"
+
+#: 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 ""
+"<mark><a "
+"href=\"https://www.torproject.org/projects/torbrowser/design/\">了解关于 Tor "
+"Browser 的设计的更多信息</a></mark>。"
+
+#: 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 ""
+"<mark><a href=\"https://www.torproject.org/projects/torbrowser.html.en\">Tor"
+" Browser</a></mark> 目前提供这些语言:"
+
+#: 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 "* Español (法语)"
+
+#: 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 "为何不阻止用 Tor Browser 作恶的人?"
+
+#: http//localhost/faq/ (content/faq/contents+en.lrtopic.title)
+msgid "Most Frequently Asked Questions"
+msgstr "常见问题"
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.title)
+msgid "How do I uninstall Tor Browser?"
+msgstr "我如何卸载 Tor Browser?"
+
+#: 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 "我在 Windows 上下载并安装了 Tor Browser 但是没办法找到它。"
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "* Empty your Trash."
+msgstr "* 清空回收站。"
+
+#: http//localhost/tormobile/tormobile-3/
+#: (content/tormobile/tormobile-3/contents+en.lrquestion.title)
+msgid "Can I run Tor on an iOS device?"
+msgstr "我能在 iOS 设备上使用 Tor 吗?"
+
+#: 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 "我能在 Windows Phone 上使用 Tor 吗?"
+
+#: 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 "一个网站(银行,电子邮件等)封锁了我(即使我没再使用 Tor Browser),我该怎么办?"
+
+#: http//localhost/misc/misc-14/
+#: (content/misc/misc-14/contents+en.lrquestion.title)
+msgid "How do I volunteer with Tor Project?"
+msgstr "我如何作为一个志愿者参与 Tor Project?"
+
+#: 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 "不过你应该清楚其他浏览器不能提供和 Tor Browser 一样的隐私保护。"
+
+#: http//localhost/faq/faq-4/
+#: (content/faq/faq-4/contents+en.lrquestion.description)
+#: 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 "
+"<mark><a href=\"https://onionbrowser.com/\">Onion Browser</a></mark>."
+msgstr ""
+"目前尚未有官方版本的基于 iOS 平台的 Tor 软件。尽管如此,我们仍然推荐使用 <mark><a "
+"href=\"https://onionbrowser.com/\">Onion Browser</a></mark>。"
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "Enabling ntpd is suggested."
+msgstr "推荐使用 ntpd 。"
+
+#: 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 "* 运行下面的命令来检查签名并安装 tor:"
+
+#: 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 ""
+"2017-10-29 09:24:08.900 [WARN] Proxy Client: unable to connect to "
+"xx..xxx..xxx.xx:xxxxx (\"general SOCKS server failure\")"
+
+#: 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 "你也许需要选择“32 位”或“64 位”版本:这和你的电脑有关,你可能需要查阅你电脑的说明书或是和制造商联系来了解更多信息。"
+
+#: 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 ""
+"要了解中转节点如何工作,请参阅<mark><a href=\"https://blog.torproject.org/improving-tors-"
+"anonymity-changing-guard-parameters\">这篇博客文章</a></mark>和<mark><a "
+"href=\"https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf\">这篇论文</a></mark>。"
+
+#: 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 "我如何在 Debian 上运行中转或中间节点?"
+
+#: 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 ""
+"请参阅<mark><a href=\"http://support.torproject.org/#tbb-10\">我的防病毒软件 / "
+"反恶意软件工具阻止我使用 Tor Browser</a></mark>,这是这种问题产生的主要原因。"
+
+#: http//localhost/tbb/tbb-26/
+#: (content/tbb/tbb-26/contents+en.lrquestion.seo_slug)
+msgid "problem-with-https-everywhere"
+msgstr "我遇到了 HTTPS Everywhere 的问题"
+
+#: http//localhost/censorship/ (content/censorship/contents+en.lrtopic.title)
+msgid "Censorship"
+msgstr "审查"
+
+#: 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 "请采取强硬立场支持数字隐私和互联网自由,以及允许 Tor 用户访问 xyz.com。”"
+
+#: 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 "Tor Browser 没有连接上互联网,但这似乎并不是网络审查造成的问题。"
+
+#: 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 "如果你访问的网站使用了 HTTPS,你的流量在离开出口节点时是加密的,不会被窃听者看到。"
+
+#: 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 "什么是网桥?"
+
+#: 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 "你操作系统上的其他程序(包括其他的浏览器)的连接不会使用 Tor 网络,也不会被保护。"
+
+#: 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 "* 你应该会看到 \"Registered server transport 'obfs4'\" 消息表示 obfs4proxy 正常工作。"
+
+#: 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 "Tor 被设计成通过防止被各种人(甚至是我们)监控和审查来抵御人权和隐私。"
+
+#: 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 ""
+"<mark><a "
+"href=\"https://github.com/Yawning/obfs4/blob/master/doc/obfs4-spec.txt\">Obfsproxy</a></mark>"
+" 网桥通过增加一层混淆来解决这些问题。"
+
+#: 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 "有些机构,例如您的互联网服务提供商,也许会知道您正在使用 Tor 。不过他们将不会知晓您正在使用 Tor 做些什么。"
+
+#: 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 "有时重度依赖 JavaScript 的网站无法在 Tor Browser 中正确运作。"
+
+#: http//localhost/gettor/gettor-2/
+#: (content/gettor/gettor-2/contents+en.lrquestion.description)
+msgid "Send an email to gettor(a)torproject.org."
+msgstr "给 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 "只有 Tor Browser 的流量会通过 Tor 网络传输。"
+
+#: 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 "是的,通常是三个,但如果你访问洋葱服务或是 \".exit\" 地址时会增加。"
+
+#: 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 "* 以 root 用户运行 \"service tor reload\""
+
+#: 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 ""
+"<mark><a "
+"href=\"https://www.torproject.org/projects/projects.html.en\">我们的页面上</a></mark>有我们开发的软件的列表。"
+
+#: 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 "Tor Project 提供虚拟主机服务吗?"
+
+#: 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 "我能搭配 VPN 使用 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 "网桥是不在 Tor 公共目录里列出的中继节点。"
+
+#: 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 ""
+"你也可以通过连接 <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo "
+"的洋葱服务</a>确认你可以访问洋葱服务。"
+
+#: 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 "要获得 Tor Browser 的下载链接,你可以向 gettor(a)torproject.org 发送带有下面信息的电子邮件:"
+
+#: 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 "“嗨!我正在使用 Tor Browser 访问 xyz.com ,不过似乎你们并没有允许 Tor 用户访问。"
+
+#: 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 ""
+"要获得 Tor Browser 的下载链接,你可以向 <mark><a href=\"https://twitter.com/get_tor\"> "
+"@get_tor </a></mark>发送带有下列信息的私信(你不需要关注这个账号):"
+
+#: 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 "这意味着有些网站会在 Tor Browser 中打开,有些会在其他浏览器中打开,这种行为很危险而且会破坏匿名性。"
+
+#: 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 ""
+"原则上来说,我们不仅想让 Tor Browser 尽可能安全,还想让大多数人都可以使用。所以按照目前状态, Tor Browser 会继续默认启用 "
+"JavaScript。"
+
+#: 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 "幸运的是,大多数网站、设备,还有其它浏览器都正在淘汰 Flash。"
+
+#: 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 "#MyFamily $keyid,$keyid,..."
+
+#: 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 ""
+"## The IP address or hostname for incoming connections (leave commented and "
+"Tor will guess)"
+
+#: 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 ""
+"DuckDuckGo (声称)不会跟踪它的用户也不会储存用户搜索的信息,你可以阅读 <mark><a "
+"href=\"https://duckduckgo.com/privacy\">DuckDuckGo 的隐私政策 </a></mark>了解更多信息。"
+
+#: 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 ""
+"你也可以通过连接 <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo "
+"的洋葱服务</a>确认你可以访问其他的洋葱服务。"
+
+#: 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 "Tor Browser 会提示你所有的活动和下载会被终止,在你点击“新身份”时考虑这一点。"
+
+#: http//localhost/tbb/tbb-33/
+#: (content/tbb/tbb-33/contents+en.lrquestion.title)
+msgid "Does running Tor Browser make me a relay?"
+msgstr "运行 Tor Browser 让我成为一个中继吗?"
+
+#: 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 "网络管理员能发现我正在使用 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 ""
+"11/1/2017 21:11:44 PM.300 [WARN] Failed to find node for hop 0 of our path. "
+"Discarding this circuit."
+msgstr ""
+"11/1/2017 21:11:44 PM.300 [WARN] Failed to find node for hop 0 of our path. "
+"Discarding this circuit."
+
+#: 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 "让 Tor 选择路由会给你带来最高的安全性,修改中继节点可能会破坏你的匿名性。"
+
+#: 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 ""
+"请查看我们的 <mark><a href=\"https://blog.torproject.org\">博客</a></mark> "
+"获取关于将来这个项目的细节与公告。"
+
+#: 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 "torproject.org 被屏蔽了,怎么下载 Tor?"
+
+#: 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 ""
+"19.11.2017 00:04:47.400 [NOTICE] Opening Socks listener on 127.0.0.1:9150"
+
+#: http//localhost/tormobile/tormobile-4/
+#: (content/tormobile/tormobile-4/contents+en.lrquestion.seo_slug)
+msgid "run-tor-on-windows-phone"
+msgstr "在 Windows Phone 上运行 Tor"
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "Log notice file /var/log/tor/notices.log"
+msgstr "Log notice file /var/log/ Tor /notices.log"
+
+#: http//localhost/misc/misc-11/
+#: (content/misc/misc-11/contents+en.lrquestion.title)
+msgid "Can I change the number of hops Tor uses?"
+msgstr "我能修改 Tor 网络中的跳跃次数吗?"
+
+#: 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 "我可以选择出口节点的所在地吗?"
+
+#: 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 "Tor Browser 中,每一个新的羽毛会分配到一条独立的链路。"
+
+#: 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 "如何能使 Tor 运行得更快? Tor Browser 比其他的浏览器更慢吗?"
+
+#: 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 "你可以安装 ntp / openntpd (或类似的软件)来确保时间正确。"
+
+#: 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 "Torbutton 图标(浏览器左上角的洋葱图标)会显示一个黄色的三角形。"
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "ServerTransportPlugin obfs4 exec /usr/bin/obfs4proxy"
+msgstr "ServerTransportPlugin obfs4 exec /usr/bin/obfs4proxy"
+
+#: 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 "支持 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 ""
+"查找日志中例如 \"Self-testing indicates your ORPort is reachable from the outside. "
+"Excellent.\" 这样的日志记录。"
+
+#: 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 "为什么我的搜索引擎换成了 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 "如果你处于某个压迫政权中,或是担心被发现自己正在和 Tor 中继的 IP 地址连接,你可能需要使用网桥。"
+
+#: 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 ""
+"参阅 <mark><a href=\"https://tb-manual.torproject.org/en-US/\">Tor Browser "
+"用户手册</a></mark>关于<mark><a href=\"https://tb-manual.torproject.org/en-"
+"US/circumvention.html\">审查</a></mark>的章节获得更多信息。"
+
+#: 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 ""
+"如果这个问题还没有被解决,请查看位于<mark><a href=\"https://tb-manual.torproject.org/en-"
+"US/bridges.html\">Tor Browser 用户手册</a></mark>的故障排查界面。"
+
+#: 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 "Tor Project 提供邮件服务或者其他保护隐私的互联网服务吗?"
+
+#: 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 ""
+"如果您要确保所有流量都将通过 Tor 网络传输,请尝试能通过 USB 设备或 DVD 在几乎所有电脑上启动的 <mark><a "
+"href=\"https://tails.boum.org/\">Tails</a></mark> Live 操作系统。"
+
+#: http//localhost/tbb/ (content/tbb/contents+en.lrtopic.title)
+msgid "Tor Browser"
+msgstr "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 "##### Common log error #3: Failed to complete TLS handshake"
+msgstr "##### 常见错误 #3:无法完成 TLS 握手"
+
+#: 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 "我建议您重新考虑这个决定; Tor 被世界各地的人用来保护隐私和对抗审查。"
+
+#: 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 "我需要追查一个 Tor 用户,你们能帮助我吗?"
+
+#: 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 ""
+"13-11-17 19:52:24.300 [NOTICE] Bootstrapped 10%: Finishing handshake with "
+"direc Tor y server"
+
+#: 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 "十分不幸,有些网站要求 Tor 用户填写验证码,我们对此无能为力。"
+
+#: 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 "我可以在 Tor Browser上使用 Flash 吗?"
+
+#: 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 ""
+"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
+"/#identifier-linkability\">Tor Browser 的设计和实现 </a></mark>文档进一步解释了设计背后的思考。"
+
+#: 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 "当 Tor Browser 第一次连接到网络时,点击窗口下方的“复制 Tor 日志到剪贴板”按钮。"
+
+#: 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 "在 iOS 上运行 Tor"
+
+#: 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 "我无法访问 X.onion!"
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "ExtORPort auto"
+msgstr "ExtORPort auto"
+
+#: 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 "我需要 Tor Browser 提供英语之外的语言。"
+
+#: 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 ""
+"## Set your bandwidth rate (leave commented and Tor will run without "
+"bandwidth caps)"
+
+#: 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 "Tor Browser 6.0.6 后使用 DuckDuckGo 作为内置搜索引擎。"
+
+#: 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 project.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 "我们不推荐同时运行多个 Tor Browser ,这种做法在许多平台上都可能会有无法预料的后果。"
+
+#: 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 "这意味着政府或 ISP 阻止 Tor 网络的尝试不能简单的封锁所有网桥。"
+
+#: 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 "我应该在 Tor Browser 中安装新的扩展程序吗, 例如 AdBlock Plus 或者 uBlock Origin ?"
+
+#: 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 "请注意,VPN 和 Tor 在隐私属性上是有区别的,但是 VPN 可以解决一些区域限制问题。"
+
+#: 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 "运行 Tor Browser 不会使你成为网络中的一个中继节点。"
+
+#: 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 "我们以前在 Tor Browser 使用的 Disconnect 已经不能再从 Google 获得搜索结果。"
+
+#: http//localhost/gettor/gettor-4/
+#: (content/gettor/gettor-4/contents+en.lrquestion.title)
+msgid "To use GetTor via XMPP (Jitsi, CoyIM)."
+msgstr "通过 XMPP(Jitsi,CoyM)使用 GetTor。"
+
+#: 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 "虽然你可以同时使用 Tor Browser 和其他的浏览器,但是同时使用其他浏览器会暴露你的身份信息。我们强烈建议您不要使用其他浏览器。"
+
+#: 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 ""
+"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."
+
+#: http//localhost/tbb/tbb-7/
+#: (content/tbb/tbb-7/contents+en.lrquestion.seo_slug)
+msgid "website-blocking-access-over-tor"
+msgstr "网站封锁了来自 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 "虽然我们仅需要增加一些软件后门就可以阻止某些人使用 Tor 网络,但是这会导致我们的用户遭更容易受到专制政权和其他组织的攻击。"
+
+#: templates/footer.html:5
+msgid "Our mission:"
+msgstr "我们的任务:"
+
+#: 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 "订阅我们的新闻"
+
+#: templates/footer.html:25
+msgid "Get monthly updates and opportunities from the Tor Project"
+msgstr "订阅我们每个月发布的消息"
+
+#: 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 Project | 支持"
+
+#: templates/navbar.html:4
+msgid "Tor Logo"
+msgstr "Tor 标志"
+
+#: templates/navbar.html:40
+msgid "Download Tor Browser"
+msgstr "下载 Tor Browser"
+
+#: templates/search.html:5
+msgid "Search"
+msgstr "搜索"
+
+#: templates/macros/question.html:11
+msgid "Permalink"
+msgstr "永久链接"
1
0

[translation/support-portal] Update translations for support-portal
by translation@torproject.org 10 Nov '18
by translation@torproject.org 10 Nov '18
10 Nov '18
commit 731615523beba1f3702121674b384d6128d146e2
Author: Translation commit bot <translation(a)torproject.org>
Date: Sat Nov 10 12:49:29 2018 +0000
Update translations for support-portal
---
contents+bn.po | 3 +-
contents+ca.po | 3 +-
contents+de.po | 5 +-
contents+es-AR.po | 4596 +++++++++++++++++++++++++++++++++++++++++++++++++++++
contents+es_AR.po | 3 +-
contents+fa.po | 7 +-
contents+ga.po | 3 +-
contents+he.po | 5 +-
contents+id.po | 3 +-
contents+is.po | 3 +-
contents+it.po | 3 +-
contents+ka.po | 3 +-
contents+ko.po | 7 +-
contents+nb.po | 3 +-
contents+pt-BR.po | 4571 ++++++++++++++++++++++++++++++++++++++++++++++++++++
contents+pt-PT.po | 4095 +++++++++++++++++++++++++++++++++++++++++++++++
contents+ru.po | 9 +-
contents+tr.po | 3 +-
contents+zh-CN.po | 4069 +++++++++++++++++++++++++++++++++++++++++++++++
19 files changed, 17370 insertions(+), 24 deletions(-)
diff --git a/contents+bn.po b/contents+bn.po
index ba82e750b..c518f396f 100644
--- a/contents+bn.po
+++ b/contents+bn.po
@@ -1,12 +1,13 @@
# Translators:
# erinm, 2018
# Emma Peel, 2018
+#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-10-27 19:20+CET\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Emma Peel, 2018\n"
"Language-Team: Bengali (https://www.transifex.com/otf/teams/1519/bn/)\n"
"MIME-Version: 1.0\n"
diff --git a/contents+ca.po b/contents+ca.po
index 7d85c99df..7766c6273 100644
--- a/contents+ca.po
+++ b/contents+ca.po
@@ -1,12 +1,13 @@
# Translators:
# erinm, 2018
# Emma Peel, 2018
+#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-10-27 19:20+CET\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Emma Peel, 2018\n"
"Language-Team: Catalan (https://www.transifex.com/otf/teams/1519/ca/)\n"
"MIME-Version: 1.0\n"
diff --git a/contents+de.po b/contents+de.po
index dd39e3612..6dc3bc9fb 100644
--- a/contents+de.po
+++ b/contents+de.po
@@ -1,14 +1,15 @@
# Translators:
-# erinm, 2018
# Curtis Baltimore <curtisbaltimore(a)protonmail.com>, 2018
# Jim John <transifex(a)exware.de>, 2018
+# erinm, 2018
# Emma Peel, 2018
+#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-10-27 19:20+CET\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Emma Peel, 2018\n"
"Language-Team: German (https://www.transifex.com/otf/teams/1519/de/)\n"
"MIME-Version: 1.0\n"
diff --git a/contents+es-AR.po b/contents+es-AR.po
new file mode 100644
index 000000000..ebde15569
--- /dev/null
+++ b/contents+es-AR.po
@@ -0,0 +1,4596 @@
+# Translators:
+# erinm, 2018
+# Zuhualime Akoochimoya, 2018
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-10-27 19:20+CET\n"
+"PO-Revision-Date: 2018-10-02 22:41+0000\n"
+"Last-Translator: Zuhualime Akoochimoya, 2018\n"
+"Language-Team: Spanish (Argentina) (https://www.transifex.com/otf/teams/1519/es_AR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: es_AR\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\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 ""
+"Nos oponemos enfáticamente a la modificación de la manera en que Tor crea "
+"sus cicuitos."
+
+#: 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 ""
+"Sin embargo, advertí que tu otro navegador no está manteniendo tu actividad "
+"privada, y podés olvidarte y accidentalmente usar ese navegador no privado "
+"para hacer algo que intentabas hacer con el navegador Tor."
+
+#: http//localhost/misc/misc-4/
+#: (content/misc/misc-4/contents+en.lrquestion.description)
+msgid "We do not recommend using Tor with BitTorrent."
+msgstr "No recomendamos usar Tor con bittorrent."
+
+#: 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 "Esto puede significar que estás en una red que está censurada."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Français (fr)"
+msgstr "* Francés (fr)"
+
+#: 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 ""
+"En el caso de bancos, y otros sitios web sensitivos, es común también ver "
+"bloqueos basados en geografía (si un banco sabe que generalmente accedés sus"
+" servicios desde un país, y de repente estás conectando desde un relevo de "
+"salida en el otro lado del mundo, tu cuenta puede ser bloqueada o "
+"suspendida)."
+
+#: http//localhost/https/https-1/
+#: (content/https/https-1/contents+en.lrquestion.description)
+msgid "Tor prevents eavesdroppers from learning sites that you visit."
+msgstr ""
+"Tor le impide saber a observadores hostiles qué sitios estás visitando."
+
+#: 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 ""
+"Desde que Disconnect es más bien un meta motor de búsqueda que permite a los"
+" usuarios escoger entre diferentes proveedores de búsqueda, por defecto "
+"estaba entregando resultados de búsqueda de Bing, los cuales eran "
+"básicamente inaceptables desde el punto de vista de la calidad."
+
+#: 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 "* Editá /usr/local/etc/tor/torrc para que aparezca como lo siguiente:"
+
+#: http//localhost/misc/misc-15/
+#: (content/misc/misc-15/contents+en.lrquestion.title)
+msgid "How can I donate to Tor Project?"
+msgstr "¿Cómo puedo donar al proyecto Tor?"
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "* Locate your Tor Browser folder or application."
+msgstr "* Localizá tu carpeta del navegador Tor o la aplicación."
+
+#: 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 ""
+"La red de Tor tiene por encima de un millón de usuarios diarios, y sólo por "
+"encima de 6000 relevos para rutear todo su tráfico, y la carga en cada "
+"servidor puede a veces causar latencia."
+
+#: 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 ""
+"El ajuste más bajo/por defecto permite Javascript, pero ambos niveles medio "
+"y alto bloquean Javascript en sitios HTTP."
+
+#: 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 "Algo cómo ésto podría lograrlo:"
+
+#: http//localhost/tbb/tbb-14/
+#: (content/tbb/tbb-14/contents+en.lrquestion.seo_slug)
+msgid "installing-add-on-extensions-tor-browser"
+msgstr "instalando-extensiones-complementarias-en-navegador-tor"
+
+#: 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 ""
+"Estoy teniendo problemas conectándome a Tor, y no puedo darme cuenta dónde "
+"estoy equivocado."
+
+#: 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 ""
+"Un puente es solo un relevo normal con una configuración ligeramente "
+"diferente."
+
+#: 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 ""
+"Nuestro sitio web está bloqueado por un censor. ¿El Navegador Tor puede "
+"ayudar a los usuarios a acceder al mismo?"
+
+#: 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 ""
+"Por favor asegurate que ninguna otra instancia del navegador Tor esté ya "
+"corriendo, y que hayas extraído el navegador Tor en una ubicación en que tu "
+"usuario tiene los permisos correctos."
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "* Delete the Tor Browser folder or application."
+msgstr "* Borrá la carpeta del navegador Tor o la aplicación."
+
+#: 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 ""
+"Está enfáticamente recomendado no instalar nuevos complementos en el "
+"navegador Tor, porque los mismos pueden comprometer tu privacidad y "
+"seguridad."
+
+#: 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 ""
+"Para usuarios que quieren tener Javascript deshabilitado por defecto en "
+"todos los sitios HTTP, recomendamos cambiar la regla deslizante de seguridad"
+" en tu navegador Tor (en el menú Onion del navegador Tor, bajo \"Ajustes de "
+"Seguridad\")."
+
+#: http//localhost/faq/ (content/faq/contents+en.lrtopic.seo_slug)
+msgid "faq"
+msgstr "pmf"
+
+#: 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 ""
+"Estos servicios usan especialmente el dominio de nivel tope .onion (en vez "
+"de .com, .net, .org, etc.) y solamente son accesibles a través de la red de "
+"Tor."
+
+#: 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 ""
+"Un sitio web al que estoy intentando entrar está bloqueando el acceso "
+"mediante Tor."
+
+#: http//localhost/misc/misc-6/
+#: (content/misc/misc-6/contents+en.lrquestion.title)
+msgid "Does Tor keep logs?"
+msgstr "¿Tor mantiene bitácoras?"
+
+#: http//localhost/censorship/censorship-7/
+#: (content/censorship/censorship-7/contents+en.lrquestion.seo_slug)
+msgid "what-is-a-bridge"
+msgstr "qué-es-un-puente"
+
+#: 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 ""
+"No hay al momento ningún método soportado para correr Tor en Windows Phone."
+
+#: http//localhost/onionservices/onionservices-2/
+#: (content/onionservices/onionservices-2/contents+en.lrquestion.title)
+msgid "What is a .onion or what are onion services?"
+msgstr "¿Qué es un .onion o qué son servicios onion?"
+
+#: 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 ""
+"Para compartir archivos a través de Tor, <mark><a "
+"href=\"https://onionshare.org/\">OnionShare</a></mark> es una buena opción."
+
+#: http//localhost/operators/operators-7/
+#: (content/operators/operators-7/contents+en.lrquestion.description)
+msgid "No."
+msgstr "No."
+
+#: http//localhost/tbb/tbb-25/
+#: (content/tbb/tbb-25/contents+en.lrquestion.seo_slug)
+msgid "problem-noscript"
+msgstr "problema-de-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 "ajustando-navegador-tor-por-defecto"
+
+#: 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 ""
+"Desafortunadamente, aún no tenemos una versión del navegador Tor para "
+"ChromeOS."
+
+#: 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=\"New release alert\">"
+
+#: 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 ""
+"¡Los archivos en mi computadora han sido bloqueados, y alguien está "
+"demandando que descargue el navegador Tor para pagar un rescate por mis "
+"archivos!"
+
+#: 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 ""
+"Muchos nodos de salida están configurados para bloquear ciertos tipos de "
+"tráfico de compartición de archivos, tales como bittorrent. "
+
+#: http//localhost/censorship/censorship-4/
+#: (content/censorship/censorship-4/contents+en.lrquestion.seo_slug)
+msgid "cant-connect-to-tor-browser"
+msgstr "no-puedo-conectar-al-navegador-tor"
+
+#: 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 "accediendo-sitios-web-que-solamente-son-accesibles-sobre-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 ""
+"Tor requiere un reloj preciso para trabajar: por favor revisá tus ajustes de"
+" tiempo, huso horario y fecha."
+
+#: 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 ""
+"Para mayores detalles, por favor mirá nuestra <mark><a "
+"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-"
+"idea\">entrada blog sobre el tema</a></mark>."
+
+#: http//localhost/tbb/tbb-8/
+#: (content/tbb/tbb-8/contents+en.lrquestion.seo_slug)
+msgid "website-blocked-by-censor-can-tor-browser-help"
+msgstr "sitio-web-bloqueado-por-censor-puede-ayudar-navegador-tor"
+
+#: 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 ""
+"Mirá una lista de todos <mark><a "
+"href=\"https://www.torproject.org/about/sponsors.html.en\">nuestros "
+"patrocinantes</a></mark> y unas series de <mark><a "
+"href=\"https://blog.torproject.org/category/tags/form-990\">entradas de "
+"blog</a></mark> sobre nuestros reportes financieros."
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "RunAsDaemon 1"
+msgstr "RunAsDaemon 1"
+
+#: 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 ""
+"Si es requerido un proxy SOCKS para tu configuración de red, por favor "
+"asegurate que hayas entrado los detalles del mismo correctamente."
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.seo_slug)
+msgid "using-correct-packages"
+msgstr "usando-los-paquetes-correctos"
+
+#: 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 ""
+"Si corrés el navegador Tor y otro navegador al mismo tiempo, no se afectarán"
+" ni el rendimiento de Tor ni las propiedades de privacidad."
+
+#: 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 ""
+"El navegador Tor sin dudas puede ayudar a la gente a acceder a tu sitio web "
+"desde lugares donde esté bloqueado."
+
+#: http//localhost/tbb/tbb-21/
+#: (content/tbb/tbb-21/contents+en.lrquestion.title)
+msgid "How do I view Tor Browser message log?"
+msgstr "¿Cómo veo la bitácora de mensajes del navegador Tor?"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Deutsch (de)"
+msgstr "* Alemán (de)"
+
+#: 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 "como-corro-un-intermedio-o-guarda-en-freebsd"
+
+#: http//localhost/misc/misc-15/
+#: (content/misc/misc-15/contents+en.lrquestion.description)
+msgid "Thank you for your support!"
+msgstr "¡Gracias por tu soporte!"
+
+#: 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 ""
+"Si necesitás otros puentes, podés obtenerlos en nuestro <mark><a "
+"href=\"https://bridges.torproject.org/\">sitio web de puentes</a></mark>."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Polish (pl)"
+msgstr "* Polaco (pl)"
+
+#: 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 ""
+"El navegador Tor está disponible corrientemente en Windows, Linux y 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 ""
+"Para <mark><a "
+"href=\"https://www.torproject.org/docs/android.html.en\">Android</a></mark>,"
+" <mark><a href=\"https://guardianproject.info/\">El proyecto "
+"Guardián</a></mark> mantiene las aplicaciones basadas en Tor <mark><a "
+"href=\"https://guardianproject.info/apps/orbot/\">Orbot</a></mark> y "
+"<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 "usar-rpv-con-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 ""
+"Sin embargo, tus proveedores de servicio o administradores de red pueden ser"
+" capaces de ver que te estás conectando a la red de Tor, aunque no sabrán "
+"qué estás haciendo cuando estés ahí."
+
+#: 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 ""
+"* Asegurate que tor arranque en la inicialización del sistema corriendo "
+"\"sysrc tor_enable=YES\" (como superusuario)."
+
+#: 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 ""
+"Puede haber una dificultad temporaria de conexión, o los operadores del "
+"sitio pueden haberlo sacado de línea sin ninguna advertencia."
+
+#: http//localhost/misc/misc-10/
+#: (content/misc/misc-10/contents+en.lrquestion.description)
+msgid "No, the Tor Project does not offer hosting services."
+msgstr "No, el proyecto Tor no ofrece servicios de alojamiento de sitios."
+
+#: 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 ""
+"19.11.2017 00:04:48.200 [NOTICE] Bootstrapped 10%: Finishing handshake with "
+"directory server"
+
+#: 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 ""
+"Podés ayudar a mejorar la velocidad de la red corriendo tu propio relevo, o "
+"animando a otros a hacerlo."
+
+#: 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 ""
+"Podrías ver una indicación escrita cuando el navegador Tor se abre, "
+"diciéndote que está disponible para actualizar."
+
+#: 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 ""
+"Podés actualizar el navegador Tor tan pronto como una nueva versión sea "
+"lanzada."
+
+#: 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 ""
+"Lo lamentamos, pero no hay al momento soporte oficial para correr el "
+"navegador Tor en *BSD."
+
+#: 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 "* Para 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 ""
+"Una vez que hayas copiado la bitácora, estarás habilitado para pegarla en un"
+" editor de texto o cliente de correo electrónico."
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "* Run \"pkg install tor\" (as root)."
+msgstr "* Corré \"pkg install tor\" (como superusuario)."
+
+#: http//localhost/misc/misc-15/
+#: (content/misc/misc-15/contents+en.lrquestion.seo_slug)
+msgid "donate-tor-project"
+msgstr "donar-proyecto-tor"
+
+#: 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 ""
+"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)"
+
+#: http//localhost/connecting/connecting-1/
+#: (content/connecting/connecting-1/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-wont-connect"
+msgstr "navegador-tor-no-se-conecta"
+
+#: http//localhost/onionservices/
+#: (content/onionservices/contents+en.lrtopic.seo_slug)
+msgid "onion-services"
+msgstr "onion-services"
+
+#: http//localhost/onionservices/
+#: (content/onionservices/contents+en.lrtopic.title)
+msgid "Onion Services"
+msgstr "Servicios Onion"
+
+#: 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 ""
+"Si las fuerzas policiales se mostraran interesadas en el tráfico desde tu "
+"relevo de salida, es posible que los oficiales encauten tu computadora."
+
+#: 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 ""
+"Mirá nuestra página en <mark><a href=\"https://www.torproject.org/docs"
+"/pluggable-transports.html.en\">transportes insertables</a></mark> para más "
+"información."
+
+#: http//localhost/tormobile/tormobile-2/
+#: (content/tormobile/tormobile-2/contents+en.lrquestion.title)
+msgid "Who is the Guardian Project?"
+msgstr "¿Quién es el proyecto Guardián?"
+
+#: 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 ""
+"Si aún no sos capaz de conectar al servicio onion, por favor intentá de "
+"nuevo más tarde."
+
+#: 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 ""
+"Sin embargo, Apple requiere que los navegadores en iOS usen algo llamado "
+"Webkit, lo cual evita que el navegador Onion tenga las mismas protecciones "
+"de privacidad que el navegador Tor."
+
+#: http//localhost/tbb/tbb-13/
+#: (content/tbb/tbb-13/contents+en.lrquestion.description)
+msgid "They need to be configured separately to use Tor."
+msgstr "Necesitan ser configurados separadamente para usar Tor."
+
+#: http//localhost/tbb/ (content/tbb/contents+en.lrtopic.seo_slug)
+msgid "tor-browser"
+msgstr "tor-browser"
+
+#: 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 "por-qué-tor-está-usando-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 ""
+"Debieras ver uno de éstos errores comunes (prestá atención a las siguientes "
+"líneas en la bitácora de Tor):"
+
+#: 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 "decir-que-sitio-web-es-visitado-mientras-use-navegador-tor"
+
+#: 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 ""
+"La mayoría de las veces, simplemente descargando el <mark><a "
+"href=\"https://www.torproject.org/download/download-easy.html.en\">navegador"
+" Tor</a></mark> y usándolo para navegar hacia el sitio bloqueado permitirá "
+"el acceso."
+
+#: 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 ""
+"Detestamos que haya algunas personas que usen Tor para hacer cosas "
+"terribles, pero no podemos hacer nada para librarnos de ellos sin también "
+"socavar a los activistas de derechos humanos, periodistas, sobrevivientes de"
+" abuso, y otras personas que usan Tor para buenas cosas."
+
+#: http//localhost/operators/ (content/operators/contents+en.lrtopic.seo_slug)
+msgid "operators"
+msgstr "operadores"
+
+#: 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 "¿Es seguro correr el navegador Tor y otro navegador al mismo tiempo?"
+
+#: 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 ""
+"Si no podés descargar Tor a través de nuestro <mark><a "
+"href=\"https://www.torproject.org\">sitio web</a></mark>, podés obtener una "
+"copia de Tor que te será entregada via GetTor."
+
+#: 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 ""
+"Configuramos a NoScript para permitir por defecto Javascript en el navegador"
+" Tor porque muchos sitios web no funcionarán con Javascript deshabilitado."
+
+#: 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 ""
+"En lugares donde la censura es omnipresente, tenemos un número de opciones "
+"disponibles para evadirla, incluyendo <mark><a "
+"href=\"https://www.torproject.org/docs/pluggable-"
+"transports.html.en\">transportes insertables</a></mark>."
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "* Run \"service tor start\" (as root)"
+msgstr "* Corré \"service tor start\" (como superusuario)"
+
+#: 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 "* Corré \"apt-get install tor\" (como superusuario)."
+
+#: 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 ""
+"2017-10-29 09:23:47.900 [NOTICE] Bootstrapped 10%: Finishing handshake with "
+"directory server"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Vietnamese (vi)"
+msgstr "* Vietnamita (vi)"
+
+#: http//localhost/tbb/tbb-36/
+#: (content/tbb/tbb-36/contents+en.lrquestion.seo_slug)
+msgid "run-multible-instances-of-tor-browser"
+msgstr "correr-múltiples-instancias-del-navegador-tor"
+
+#: 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 "teniendo-problemas-conectándose-a-tor"
+
+#: http//localhost/misc/misc-4/
+#: (content/misc/misc-4/contents+en.lrquestion.title)
+msgid "Can I use Tor with BitTorrent?"
+msgstr "¿Puedo usar Tor con bittorrent?"
+
+#: 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 ""
+"Tor es financiado por un número de diferentes patrocinantes, incluyendo "
+"agencias federales de EUA. fundaciones privadas, y donantes individuales."
+
+#: 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 ""
+"Algunos puentes están incorporados en el navegador Tor, y podés usarlos "
+"eligiendo \"configurar\" (y luego siguiendo las consignas) en la ventana del"
+" lanzador Tor que aparece cuando abrís el navegador Tor por primera vez."
+
+#: 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 ""
+"Si creés que ésta es una dificultad del navegador Tor, por favor reportala "
+"en nuestro <mark><a href=\"https://trac.torproject.org/\">rastreador de "
+"errores</a></mark>."
+
+#: http//localhost/tbb/tbb-18/
+#: (content/tbb/tbb-18/contents+en.lrquestion.title)
+msgid "Is there support for *BSD?"
+msgstr "¿Hay soporte para *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 "No puedo conectar al navegador Tor, ¿mi red está censurada?"
+
+#: 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 ""
+"No hay al momento ningún método soportado para hacer que el navegador Tor "
+"sea tu navegador por defecto."
+
+#: http//localhost/tbb/tbb-39/
+#: (content/tbb/tbb-39/contents+en.lrquestion.description)
+msgid "Set your security to \"Standard\"."
+msgstr "Ajustá tu seguridad a \"Estándar\"."
+
+#: 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 ""
+"La localización por defecto en Windows es el Escritorio; en macOS es la "
+"carpeta Aplicaciones (en macOS, tenés que moverla dentro de la carpeta "
+"Aplicaciones cuando completás el proceso de instalación)."
+
+#: http//localhost/tbb/tbb-22/
+#: (content/tbb/tbb-22/contents+en.lrquestion.seo_slug)
+msgid "make-tor-faster"
+msgstr "hacer-tor-más-rápido"
+
+#: http//localhost/misc/misc-8/
+#: (content/misc/misc-8/contents+en.lrquestion.title)
+msgid "Can I use the Tor logo in my product?"
+msgstr "¿Puedo usar el logo de Tor en mi producto?"
+
+#: 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 ""
+"Si ves líneas cómo éstas en tu bitácora Tor, significa que Tor falló al "
+"completar un intercambio para sincronización TLS con las autoridades de "
+"directorio."
+
+#: 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 ""
+"Para más información acerca de puentes, mirá el <mark><a href=\"https://tb-"
+"manual.torproject.org/en-US/bridges.html\">manual del navegador "
+"Tor</a></mark>."
+
+#: 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 ""
+"No pensamos que Flash sea seguro para usar en cualquier navegador - es una "
+"pieza de programa muy insegura que puede fácilmente comprometer tu "
+"privacidad o instalar programas maliciosos."
+
+#: http//localhost/onionservices/onionservices-1/
+#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
+msgid "You can access these websites by using Tor Browser."
+msgstr "Podés acceder a éstos sitios web usando el navegador Tor."
+
+#: http//localhost/tormobile/tormobile-1/
+#: (content/tormobile/tormobile-1/contents+en.lrquestion.title)
+msgid "Can I run Tor on an Android device?"
+msgstr "¿Puedo correr Tor en un dispositivo Android?"
+
+#: 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 "#RelayBandwidthBurst 100 MBytes"
+
+#: 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 ""
+"Considerá si te gustaría cambiar a la <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/doc/ReducedExitPolicy\">política"
+" de salida reducida</a></mark>."
+
+#: 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 "cualquiera-será-capaz-de-decir-qué-sitio-web-visito"
+
+#: 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 "descargar-navegador-tor-para-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 ""
+"¿Puedo aún usar otro navegador, como Chrome o Firefox, cuando estoy usando "
+"el navegador Tor?"
+
+#: 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 "¿Cómo puedo compartir archivos anónimamente a través de Tor?"
+
+#: 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 "##### Error común de bitácora #4: Distorsión de reloj"
+
+#: 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 ""
+"Ambas opciones está localizadas en el menú, pero podés acceder a la opción "
+"Nuevo Circuito dentro del menú de información del sitio, en la barra URL."
+
+#: 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 "Usando puentes probablemente arregle ésto."
+
+#: 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 them in the family"
+msgstr "## Si controlás múltiples relevos, incluilos en la familia"
+
+#: 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 ""
+"Podés leer todo acerca de eso en nuestra <mark><a "
+"href=\"https://www.torproject.org/docs/trademark-faq.html\">página de "
+"preguntas más frecuentes sobre marcas registradas</a></mark>."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* فارسى (fa)"
+msgstr "* Farsi (fa)"
+
+#: http//localhost/tbb/tbb-13/
+#: (content/tbb/tbb-13/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-protecting-other-apps"
+msgstr "protegiendo-otras-aplicaciones-con-navegador-tor"
+
+#: 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 ""
+"Usar el navegador Tor puede a veces ser más lento que otros navegadores."
+
+#: 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 ""
+"* Asegurate que tu reloj, fecha, y huso horario estén ajustados "
+"correctamente. Instalá el paquete ntp u openntpd (o similar) para mantenerlo"
+" de ésa manera."
+
+#: 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 "¿Para cuales plataformas está disponible el navegador Tor?"
+
+#: http//localhost/tormobile/tormobile-1/
+#: (content/tormobile/tormobile-1/contents+en.lrquestion.description)
+msgid "Tor on Android is provided by The Guardian Project."
+msgstr "Tor en Android está provisto por el Proyecto Guardián."
+
+#: 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 ""
+"Si no sos capaz de conectar a un servicio onion, por favor mirá <a "
+"href=\"/#onionservices-3\">¡No puedo alcanzar X.onion!</a>"
+
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.title)
+msgid "How do I run an exit relay on Debian?"
+msgstr "¿Cómo corro un relevo de salida en Debian?"
+
+#: 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 ""
+"Varios países, incluyendo China e Irán, han encontrado maneras de detectar y"
+" bloquear conexiones a puentes Tor."
+
+#: 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 ""
+"Luego pegá la bitácora de Tor dentro de un archivo de texto u otro "
+"documento."
+
+#: 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 ""
+"Tomamos algunas mediciones seguras de cómo funciona la red, las cuales podés"
+" revisar en <mark><a href=\"https://metrics.torproject.org/\">Tor "
+"Metrics</a></mark>."
+
+#: 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 ""
+"Por favor mirá <mark><a href=\"https://www.eff.org/https-"
+"everywhere/faq\">PMF HTTPS Everywhere</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 ""
+"alguien-solicita-descargar-navegador-tor-para-desbloquear-mis-archivos"
+
+#: http//localhost/tormobile/tormobile-2/
+#: (content/tormobile/tormobile-2/contents+en.lrquestion.seo_slug)
+msgid "who-is-the-guardian-project"
+msgstr "quién-es-el-proyecto-guardián"
+
+#: 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 ""
+"La mayoría de los usuarios abandonarían Tor por completo si deshabilitamos "
+"Javascript por defecto, porque causaría demasiados problemas para ellos."
+
+#: 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 ""
+"Si un proxy SOCKS no es requerido, o no estás seguro, por favor tratá "
+"conectando a la red de Tor sin un proxy SOCKS."
+
+#: 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 ""
+"Cuando estés usando el navegador Tor, nadie puede ver los sitios web que "
+"visitás."
+
+#: 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 ""
+"El navegador Tor frecuentemente hace que tu conexión aparezca como si "
+"estuviera viniendo desde una parte del mundo enteramente diferente."
+
+#: 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 ""
+"Esta opción es útil si el relevo de salida que estás usando es incapaz de "
+"conectar al sitio web que requerís, o no está cargándolo apropiadamente."
+
+#: 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 ""
+"* Asegurate que tu reloj, fecha, y huso horario estén ajustados "
+"correctamente."
+
+#: http//localhost/tormessenger/tormessenger-1/
+#: (content/tormessenger/tormessenger-1/contents+en.lrquestion.title)
+msgid "Does Tor Project make an application for private chat?"
+msgstr "¿El proyecto Tor hace alguna aplicación para charla privada?"
+
+#: 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 ""
+"Más información puede ser encontrada en las páginas web <mark><a "
+"href=\"https://guardianproject.info/apps/orbot/\">Orbot</a></mark> y "
+"<mark><a href=\"https://guardianproject.info/apps/orfox/\">Orfox</a></mark>."
+
+#: 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 ""
+"Si el navegador Tor ya está abierto, cliqueá en el icono \"botón de Tor\" "
+"(la pequeña cebolla verde en la esquina superior izquierda de la pantalla), "
+"luego \"Abrir ajustes de red\", luego \"Copiar bitácora de Tor al "
+"portapapeles\"."
+
+#: 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 ""
+"Recomendamos enfáticamente en contra de usar Tor en cualquier navegador que "
+"no sea el navegador Tor."
+
+#: 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 ""
+"Podés encontrar información más detallada acerca de Tor + RPV en <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">nuestra"
+" wiki</a></mark>."
+
+#: 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 ""
+"<h4 class=\"card-title\">Esta visualización muestra que información es "
+"visible a observadores hostiles con y sin el navegador Tor y encriptación "
+"HTTPS.</h4>"
+
+#: 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 ""
+"Específicamente, bittorrent <mark><a href=\"https://blog.torproject.org"
+"/bittorrent-over-tor-isnt-good-idea\">no es anónimo sobre Tor</a></mark>."
+
+#: 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 ""
+"Elegí una ubicación de directorio que vayas a recordar fácilmente, y una vez"
+" que la descarga termine, deberías ver allí una carpeta con el navegador "
+"Tor,"
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.title)
+msgid "How do I update Tor Browser?"
+msgstr "¿Cómo hago para actualizar el navegador Tor?"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "This should fix the issues you're experiencing."
+msgstr "Esto debiera solucionar las dificultades que estás experimentando."
+
+#: 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 ""
+"Prestá atención a una línea de bitácora en /var/log/syslog tal como \"Self-"
+"testing indicates your ORPort is reachable from the outside. Excellent.\""
+
+#: 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 "¿Cómo corro un relevo intermedio o guarda en FreeBSD o HardenedBSD?"
+
+#: http//localhost/tbb/tbb-25/
+#: (content/tbb/tbb-25/contents+en.lrquestion.title)
+msgid "I'm having a problem with NoScript."
+msgstr "Estoy teniendo un problema con NoScript."
+
+#: http//localhost/tbb/tbb-34/
+#: (content/tbb/tbb-34/contents+en.lrquestion.title)
+msgid "Why does Tor Browser ship with Javascript enabled?"
+msgstr "¿Por qué el navegador Tor viene con Javascript habilitado?"
+
+#: http//localhost/misc/misc-3/
+#: (content/misc/misc-3/contents+en.lrquestion.seo_slug)
+msgid "tor-funding"
+msgstr "financiación-tor"
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.description)
+msgid "Tor browser will install the updates."
+msgstr "El navegador Tor instalará las actualizaciones."
+
+#: 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 ""
+"* No usés los paquetes en los repositorios de Ubuntu. No son actualizados "
+"confiablemente. Si los usás, vas a perder parches importantes de estabilidad"
+" y seguridad."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Português (pt-BR)"
+msgstr "* Portugués (pt-BR)"
+
+#: 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 ""
+"El navegador Tor tiene dos maneras de cambiar tu circuito de relevos - "
+"\"Nueva identidad\" y \"Nuevo circuito Tor para éste sitio\"."
+
+#: 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 ""
+"Si no podés encontrarlo en cualquiera de esas carpetas, descargalo de nuevo "
+"y fijate en la solicitud que te pregunta por elegir un directorio para "
+"descargarlo."
+
+#: http//localhost/operators/operators-7/
+#: (content/operators/operators-7/contents+en.lrquestion.seo_slug)
+msgid "run-exit-from-home"
+msgstr "correr-salida-desde-el-hogar"
+
+#: http//localhost/operators/operators-7/
+#: (content/operators/operators-7/contents+en.lrquestion.title)
+msgid "Should I run an exit relay from home?"
+msgstr "¿Debería correr un relevo de salida desde mi hogar?"
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.seo_slug)
+msgid "updating-tor-browser"
+msgstr "actualizando-navegador-tor"
+
+#: 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 ""
+"* Revisá nuestros <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorExitGuidelines\">lineamientos"
+" de relevo de salida</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 ""
+"Usando Tor en cualquier otro navegador puede dejarte vulnerable sin las "
+"protecciones de privacidad del navegador Tor."
+
+#: http//localhost/tbb/tbb-17/
+#: (content/tbb/tbb-17/contents+en.lrquestion.seo_slug)
+msgid "run-tor-browser-and-different-browser"
+msgstr "correr-navegador-tor-y-otro-diferente"
+
+#: http//localhost/faq/faq-3/
+#: (content/faq/faq-3/contents+en.lrquestion.seo_slug)
+msgid "install-add-on-extension-tor-browser"
+msgstr "instalar-extensión-complementaria-navegador-tor"
+
+#: 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 ""
+"2017-10-29 09:23:40.800 [NOTICE] Opening Socks listener on 127.0.0.1:9150"
+
+#: 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 ""
+"\"Por favor, plantate firme en favor de la privacidad digital y la libertad "
+"de Internet, y permití a los usuarios de Tor acceder a xyz.com. Gracias.\""
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.seo_slug)
+msgid "how-do-i-run-a-obfs4-bridge-debian"
+msgstr "como-corro-un-puente-obfs4-en-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 "* Editá /etc/tor/torrc para que aparezca como lo siguiente:"
+
+#: 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 ""
+"Estoy teniendo problemas usando características de Facebook, Twitter, o "
+"algún otro sitio web cuando estoy usando el navegador Tor."
+
+#: http//localhost/misc/misc-1/
+#: (content/misc/misc-1/contents+en.lrquestion.seo_slug)
+msgid "tracing-tor-user"
+msgstr "rastreando-usuario-tor"
+
+#: http//localhost/tbb/tbb-20/
+#: (content/tbb/tbb-20/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-will-not-connect-no-censorship"
+msgstr "navegador-tor-no-conecta-sin-censura"
+
+#: 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 ""
+"Si ves líneas cómo éstas en tu bitácora Tor, significa que estás fallando en"
+" conectarte a un proxy SOCKS."
+
+#: 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 ""
+"Lo mejor para hacer en estos casos es contactar a los propietarios del sitio"
+" web, e informarles que sus CAPTCHAS están previniendo que usuarios tales "
+"como vos estén usando sus servicios."
+
+#: 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 ""
+"¿Por qué mi navegador Tor dice algo acerca de que Firefox no está "
+"funcionando?"
+
+#: http//localhost/tbb/tbb-24/
+#: (content/tbb/tbb-24/contents+en.lrquestion.title)
+msgid "I'm having a problem with DuckDuckGo."
+msgstr "Estoy teniendo un problema con 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 "¿Puedo usar Tor con un navegador aparte del navegador Tor?"
+
+#: 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 ""
+"* Prestá atención a una línea de bitácora en /var/log/syslog tal como "
+"\"Self-testing indicates your ORPort is reachable from the outside. "
+"Excellent.\""
+
+#: 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 ""
+"Dicho sea de paso, Tor es mucho más rápido de lo que solía ser, y puede que "
+"realmente no notes ningún cambio en velocidad con respecto a otros "
+"navegadores."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Türkçe (tr)"
+msgstr "* Turco (tr)"
+
+#: 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 ""
+"11/1/2017 21:11:44 PM.500 [NOTICE] Bootstrapped 85%: Finishing handshake "
+"with first hop"
+
+#: http//localhost/connecting/
+#: (content/connecting/contents+en.lrtopic.seo_slug)
+msgid "connecting-to-tor"
+msgstr "connecting-to-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=\"New release alert\">"
+
+#: 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 ""
+"Pero por favor considerá que nuestro programa es usado cada día para una "
+"amplia variedad de propósitos por activistas de derechos humanos, "
+"periodistas, sobrevivientes de violencia doméstica, informantes, oficiales "
+"de policía, y muchos otros. Desafortunadamente, la protección que nuestro "
+"programa puede proveer a estos grupos de personas puede también ser abusada "
+"por criminales y autores de programas maliciosos."
+
+#: http//localhost/misc/misc-8/
+#: (content/misc/misc-8/contents+en.lrquestion.seo_slug)
+msgid "using-tor-logo"
+msgstr "usar-logo-tor"
+
+#: http//localhost/tbb/tbb-35/
+#: (content/tbb/tbb-35/contents+en.lrquestion.seo_slug)
+msgid "get-rid-of-captchas"
+msgstr "eliminar-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 ""
+"El resto de tu circuito cambia con cada nuevo sitio web que visitás, y entre"
+" todos, éstos relevos proveen las protecciones de privacidad completas de "
+"Tor."
+
+#: http//localhost/tbb/tbb-2/
+#: (content/tbb/tbb-2/contents+en.lrquestion.seo_slug)
+msgid "first-address-relay-circuit"
+msgstr "primera-dirección-cicuito-relevo"
+
+#: 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 ""
+"En Linux, no hay una ubicación por defecto, de cualquier manera, la carpeta "
+"se llamará \"tor-browser_en-US\" si estás corriendo el navegador Tor en "
+"inglés."
+
+#: http//localhost/misc/ (content/misc/contents+en.lrtopic.seo_slug)
+msgid "misc"
+msgstr "misc"
+
+#: 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 ""
+"El navegador Tor se construye usando <mark><a href=\"https://www.mozilla.org"
+"/en-US/firefox/organizations/\">Firefox ESR</a></mark>, por lo que pueden "
+"ocurrir errores concernientes a Firefox."
+
+#: 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 ""
+"Si quisieras correr un relevo, por favor mirá nuestra <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">guía de"
+" relevo Tor</a></mark>."
+
+#: http//localhost/https/https-1/
+#: (content/https/https-1/contents+en.lrquestion.seo_slug)
+msgid "can-eavesdroppers-see-information-i-share"
+msgstr "pueden-observadores-hostiles-ver-información-que-comparto"
+
+#: http//localhost/tbb/tbb-32/
+#: (content/tbb/tbb-32/contents+en.lrquestion.title)
+msgid "Can I set Tor Browser as my default browser?"
+msgstr "¿Puedo ajustar al navegador Tor como mi navegador por defecto?"
+
+#: 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 ""
+"Por favor asegurate que tu reloj esté ajustado precisamente, incluyendo el "
+"huso horario correcto. Luego reiniciá Tor."
+
+#: http//localhost/faq/faq-2/
+#: (content/faq/faq-2/contents+en.lrquestion.seo_slug)
+msgid "can-tor-help-users-access-website"
+msgstr "puede-tor-ayudar-a-usuarios-acceder-sitio-web"
+
+#: 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 ""
+"Si tu dificultad no está listada, por favor envía un <mark><a "
+"href=\"https://trac.torproject.org\">reporte de error</a></mark>acerca de lo"
+" que estás experimentando."
+
+#: 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 ""
+"Lo lamentamos mucho, pero has sido infectado con un programa malicioso."
+
+#: 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 ""
+"El éxito más rotundo que hemos tenido al hacer que los sitios desbloqueen "
+"usuarios de Tor es involucrar a los usuarios para contactar directamente a "
+"los administradores del sitio."
+
+#: 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 "¿El navegador Tor usa un circuito diferente para cada sitio web?"
+
+#: 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 ""
+"Por favor notá que algunos clientes antivirus, como Kaspersky, puede también"
+" estar bloqueando Tor a nivel del cortafuegos."
+
+#: http//localhost/gettor/gettor-3/
+#: (content/gettor/gettor-3/contents+en.lrquestion.title)
+msgid "To use GetTor via Twitter."
+msgstr "Usar GetTor vía Twitter."
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "* Run \"service tor reload\" (as root)."
+msgstr "* Corré \"service tor reload\" (como superusuario)"
+
+#: 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 "El navegador Tor previene que otros sepan que sitios web visitás."
+
+#: 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 ""
+"Si lo que querés es simplemente ser capaz de acceder a algún recurso que "
+"está disponible solamente en un país, podrías querer considerar usar una RPV"
+" en vez de usar 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-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 MBytes"
+
+#: 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 ""
+"Un montón de trabajo ha sido puesto en hacer el navegador Tor, incluyendo el"
+" uso de parches extra para ampliar privacidad y seguridad."
+
+#: 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 ""
+"Si no sos capaz de conectar a un servicio onion, por favor mirá <a "
+"href=\"#onionservices-3\">¡No puedo alcanzar X.onion!</a>"
+
+#: 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 ""
+"Esto significa que tu computadora no será utilizada para rutear tráfico para"
+" otros."
+
+#: 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 ""
+"* Luego que tu relevo se conecte a la red, intentará determinar si los "
+"puertos que configuraste son alcanzables desde el exterior."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* English (en-US)"
+msgstr "* Inglés (en-US)"
+
+#: http//localhost/tbb/tbb-1/
+#: (content/tbb/tbb-1/contents+en.lrquestion.seo_slug)
+msgid "most-common-issues-latest-stable-tor-browser"
+msgstr "dificultades-más-comunes-último-navegador-tor-estable"
+
+#: 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 ""
+"Estamos siempre buscando más diversidad en nuestras fuentes de financiación,"
+" especialmente desde fundaciones e individuos."
+
+#: 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 "###### Error común de bitácora #1: Fallo de conexión en proxy"
+
+#: 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 ""
+"Sentimos que hablando abiertamente acerca de quienes nos financian y nuestro"
+" modelo de financiación es la mejor manera de mantener la confianza con "
+"nuestra comunidad."
+
+#: http//localhost/tbb/tbb-9/
+#: (content/tbb/tbb-9/contents+en.lrquestion.seo_slug)
+msgid "using-tor-with-a-browser-besides-tor-browser"
+msgstr "usando-tor-con-navegador-aparte-del-navegador-tor"
+
+#: 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 ""
+"Desafortunadamente, no hay ninguna manera soportada para hacer al navegador "
+"Tor tu navegador por defecto."
+
+#: 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 ""
+"El proyecto Tor no creó este programa malicioso. Los autores del mismo están"
+" solicitándote que descargues el navegador Tor presumiblemente para "
+"contactarlos anónimamente con el rescate que están demandando de vos."
+
+#: 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 ""
+"Cuando use Tor, ¿cualquiera será capaz de saber que sitios web visito?"
+
+#: 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 ""
+"Seleccionándola cerrará todas tus pestañas y ventanas, limpiará toda "
+"información privada tal como \"cookies\" e historial de navegación, y usará "
+"nuevos circuitos Tor para todas las conexiones."
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.description)
+msgid "##### New Identity"
+msgstr "##### Nueva Identidad"
+
+#: 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 ""
+"¿Usando el navegador Tor se protejen otras aplicaciones en mi computadora?"
+
+#: 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 ""
+"Es un relevo rápido y estable que permanece como el primero en tu circuito "
+"por 2-3 meses en orden a proteger contra un ataque conocido de ruptura de "
+"anonimato."
+
+#: http//localhost/tbb/tbb-42/
+#: (content/tbb/tbb-42/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-firefox-not-working-error"
+msgstr "error-firefox-no-funcionando-de-navegador-tor"
+
+#: http//localhost/tbb/tbb-31/
+#: (content/tbb/tbb-31/contents+en.lrquestion.seo_slug)
+msgid "which-platform-tor-browser-available"
+msgstr "cual-plataforma-disponible-navegador-tor"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* TorBrowser"
+msgstr "* TorBrowser"
+
+#: 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 "#Address noname.example.com"
+
+#: 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 ""
+"Cada vez que lanzamos una nueva versión estable del navegador Tor, "
+"escribimos una entrada en el blog que detalla sus nuevas características y "
+"dificultades conocidas."
+
+#: 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 ""
+"Las mismas protecciones que evitan que malas personas vulneren el anonimato "
+"provisto por Tor, también previenen que nosotros rastreemos usuarios."
+
+#: 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 ""
+"Si estás teniendo problemas conectándote, por favor seleccioná la opción "
+"\"Copiar la bitácora de Tor al portapapeles\"."
+
+#: 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> es el motor "
+"de búsqueda por defecto en el navegador Tor."
+
+#: 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 ""
+"2017-10-29 09:23:47.900 [NOTICE] Bootstrapped 5%: Connecting to directory "
+"server"
+
+#: 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 ""
+"He escuchado acerca de sitios web que solamente son accesibles a través de "
+"Tor. ¿Qué son éstos sitios web, y cómo puedo accederlos?"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* For Windows"
+msgstr "* Para Windows"
+
+#: http//localhost/tbb/tbb-26/
+#: (content/tbb/tbb-26/contents+en.lrquestion.title)
+msgid "I'm having a problem with HTTPS Everywhere."
+msgstr "Estoy teniendo un problema con HTTPS Everywhere."
+
+#: http//localhost/tbb/tbb-39/
+#: (content/tbb/tbb-39/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-issues-facebook-twitter-websites"
+msgstr "dificultades-con-facebook-twitter-del-navegador-tor"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Korean (ko)"
+msgstr "* Coreano (ko)"
+
+#: 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 ""
+"Por favor mirá el <mark><a href=\"https://duck.co/help\">portal de soporte "
+"de DuckDuckGo</a></mark>."
+
+#: 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 ""
+"2017-10-29 09:24:08.900 [WARN] Proxy Client: unable to connect "
+"toxx..xxx..xxx.xx:xxxxx (\"general SOCKS server failure\")"
+
+#: http//localhost/misc/misc-10/
+#: (content/misc/misc-10/contents+en.lrquestion.seo_slug)
+msgid "does-tor-project-offer-hosting"
+msgstr "proyecto-tor-ofrece-alojamiento"
+
+#: 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 ""
+"Al bloquear usuarios de Tor, probablemente estés bloqueando gente en países "
+"represivos que quieren usar una Internet libre, periodistas e investigadores"
+" que quieren protegerse a sí mismos de ser descubiertos, informantes, "
+"activistas, y personas ordinarias que quieren optar en contra de rastreo "
+"invasivo por parte de terceros."
+
+#: 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 ""
+"¿Hay alguna manera de cambiar la dirección IP que el navegador Tor me asigna"
+" para un sitio en particular?"
+
+#: 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 ""
+"13-11-17 19:53:49.300 [WARN] 1 connections died in state connect()ing with "
+"SSL state (No SSL object)"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Italiano (it)"
+msgstr "* Italiano (it)"
+
+#: 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 ""
+"Al momento, la longitud de ruta es parte del código ejecutable no "
+"configurable, y está establecida en 3, más el número de nodos que son "
+"sensitivos en tu camino."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* العربية (ar)"
+msgstr "* Arabe (ar)"
+
+#: 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 ""
+"Tor no mantiene ninguna bitácora que pudiera identificar a un usuario "
+"particular."
+
+#: 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 "## Ajustá tu propia información de contacto"
+
+#: 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 ""
+"¡Por favor mirá nuestra <mark><a "
+"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">página de "
+"voluntarios</a></mark> para saber cómo hacer para involucrarse!"
+
+#: 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 ""
+"Cuando estoy usando Tor, ¿puede algún observador hostil ver la información "
+"que comparto con sitios web, tal como información de ingreso y cosas que "
+"tipeo en formularios?"
+
+#: 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 ""
+"Seleccionándola causará que la pestaña activa en este momento sea recargada "
+"sobre un nuevo circuito Tor."
+
+#: 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 ""
+"No hay nada que los desarrolladores de Tor puedan hacer para tracear "
+"usuarios de Tor."
+
+#: 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 ""
+"¿Por qué el navegador Tor está construido a partir de Firefox y no algún "
+"otro navegador?"
+
+#: http//localhost/tbb/tbb-35/
+#: (content/tbb/tbb-35/contents+en.lrquestion.title)
+msgid "Can you get rid of all the captchas?"
+msgstr "¿Podés deshacerte de todos los \"captchas\"?"
+
+#: 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 ""
+"Si ésta es tu primera introducción al navegador Tor, entendemos que puedas "
+"pensar que somos malas personas que habilitan a otras personas aún peores."
+
+#: 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 ""
+"19.11.2017 00:04:48.800 [ADVERTENCIA] Se recibió una llamada NETINFO con "
+"tiempo dispar (OR:xxx.xx.x.xx:xxxx): Parece que nuestro reloj está atrasado "
+"en 1 día, 0 horas, 1 minuto, o que el de ellos está adelantado."
+
+#: 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 ""
+"Disponé de una dirección IP separada para tu relevo de salida, y no rutees "
+"tu propio tráfico a través de la misma."
+
+#: 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 "13-11-17 19:53:49.300 [ADVERTENCIA] 10 conexiones han fallado:"
+
+#: http//localhost/tormobile/tormobile-5/
+#: (content/tormobile/tormobile-5/contents+en.lrquestion.title)
+msgid "When is Tor Browser for Android being released?"
+msgstr "¿Cuándo estaría siendo lanzado el navegador Tor para Android?"
+
+#: 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 "como-corro-un-relevo-intermedio-o-guarda"
+
+#: 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 ""
+"Podés encontrar más información acerca de donaciones en nuestras <mark><a "
+"href=\"https://donate.torproject.org/donor-faq\">preguntas más frecuentes de"
+" donantes</a></mark>."
+
+#: http//localhost/tbb/tbb-40/
+#: (content/tbb/tbb-40/contents+en.lrquestion.seo_slug)
+msgid "different-circuit-each-website"
+msgstr "circuito-diferente-para-cada-sitio-web"
+
+#: 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 ""
+"Una gran porción de las características que Vidalia ofrecía han sido ahora "
+"integradas dentro del propio navegador Tor."
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.seo_slug)
+msgid "antivirus-blocking-tor"
+msgstr "antivirus-bloqueando-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 ""
+"Mirá <mark><a href=\"#operators-6\">Como corro un puente</a></mark> para más"
+" instrucciones."
+
+#: 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 "cambiar-el-número-de-saltos-que-usa-tor"
+
+#: http//localhost/misc/misc-7/
+#: (content/misc/misc-7/contents+en.lrquestion.description)
+msgid "No, we don't provide any online services."
+msgstr "No, no proveemos ningún servicio en línea."
+
+#: 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 ""
+"11/1/2017 21:11:45 PM.300 [ADVERTENCIA] Fallo en encontrar nodo para salto 0"
+" de nuestro camino. Descartando éste circuito."
+
+#: 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 ""
+"11/1/2017 21:11:43 PM.500 [NOTICE] Opening Socks listener on 127.0.0.1:9150"
+
+#: 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 ""
+"Cuando accedas a un sitio web que use un servicio onion, el navegador Tor "
+"mostrará en la barra URL un icono de una cebollita verde visualizando el "
+"estado de tu conexión: segura y usando un servicio onion."
+
+#: http//localhost/misc/misc-9/
+#: (content/misc/misc-9/contents+en.lrquestion.description)
+msgid "Vidalia is no longer maintained or supported."
+msgstr "Vidalia no es mantenido o soportado más."
+
+#: 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 ""
+"GetTor es un servicio que automáticamente responde a mensajes con vínculos a"
+" la última versión del navegador Tor, ubicados en una variedad de locaciones"
+" que son menos probable de ser censuradas, tales como Dropbox, Google Drive "
+"y GitHub."
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "Next, exclude the following processes:"
+msgstr "Luego, excluí los siguientes procesos:"
+
+#: 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 ""
+"El ajuste por defecto en el instalador para Windows también crea un atajo "
+"para vos en tu Escritorio, aunque tené en cuenta que accidentalmente podrías"
+" haber descliqueado la opción para crear el atajo."
+
+#: http//localhost/gettor/gettor-2/
+#: (content/gettor/gettor-2/contents+en.lrquestion.title)
+msgid "To use GetTor via email."
+msgstr "Usar GetTor vía correo electrónico."
+
+#: 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 ""
+"¿Cuáles son las dificultades más comunes con la última versión estable del "
+"navegador Tor?"
+
+#: 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 ""
+"No. Luego de once lanzamientos beta, discontinuamos el soporte de <a "
+"href=\"https://blog.torproject.org/sunsetting-tor-messenger\">mensajero de "
+"Tor</a>."
+
+#: 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 ""
+"Si ves líneas cómo éstas en tu bitácora de Tor, significa que tu reloj de "
+"sistema es incorrecto."
+
+#: 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 ""
+"Aún creemos en la habilidad de Tor para ser usado en una aplicación de "
+"mensajería, pero no tenemos los recursos para hacerlo en éste momento."
+
+#: http//localhost/gettor/gettor-2/
+#: (content/gettor/gettor-2/contents+en.lrquestion.seo_slug)
+msgid "to-use-gettor-via-email"
+msgstr "usar-gettor-vía-correo-electrónico"
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "* Run \"apt-get install tor obfs4proxy\" (as root)."
+msgstr "* Corré \"apt-get install tor obfs4proxy\" (como superusuario)."
+
+#: http//localhost/censorship/censorship-6/
+#: (content/censorship/censorship-6/contents+en.lrquestion.seo_slug)
+msgid "is-my-network-censored"
+msgstr "está-mi-red-censurada"
+
+#: 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 ""
+"Recomendamos una aplicación iOS llamada navegador Onion, la cual es de "
+"fuente abierta, usa ruteo Tor, y está desarrollada por alguien que trabaja "
+"cercanamente con el proyecto Tor."
+
+#: http//localhost/tbb/tbb-15/
+#: (content/tbb/tbb-15/contents+en.lrquestion.title)
+msgid "Can I download Tor Browser for ChromeOS?"
+msgstr "¿Puedo descargar el navegador Tor para ChromeOS?"
+
+#: http//localhost/tbb/tbb-2/
+#: (content/tbb/tbb-2/contents+en.lrquestion.description)
+msgid "That is normal Tor behavior."
+msgstr "Ese comportamiento es normal en Tor."
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "Removing Tor Browser from your system is simple:"
+msgstr "Remover el navegador Tor de tu sistema es simple:"
+
+#: http//localhost/tormobile/tormobile-5/
+#: (content/tormobile/tormobile-5/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-for-android"
+msgstr "navegador-tor-para-android"
+
+#: http//localhost/tbb/tbb-11/
+#: (content/tbb/tbb-11/contents+en.lrquestion.seo_slug)
+msgid "cannot-find-tor-on-windows"
+msgstr "no-puedo-encontrar-tor-en-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 ""
+"El navegador Tor te solicitará actualizar el programa una vez que una nueva "
+"versión haya sido lanzada."
+
+#: 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 ""
+"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 ""
+"El navegador Tor ya tiene instalados dos complementos - <mark><a "
+"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere y <mark><a "
+"href=\"https://noscript.net/\">NoScript</a></mark> - y añadir cualquier cosa"
+" más puede dejar tu anonimato sin efecto."
+
+#: 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 ""
+"El navegador Tor trabaja intensamente para aislarse a sí mismo del resto de "
+"tu sistema, y los pasos para hacerlo el navegador por defecto no son "
+"confiables."
+
+#: 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 ""
+"Prestá atención a una línea de bitácora en /var/log/tor/notices.log tal como"
+" \"Self-testing indicates your ORPort is reachable from the outside. "
+"Excellent.\""
+
+#: 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 ""
+"Sin embargo, información enviada sin encriptación a través de Internet "
+"usando HTTP común puede aún ser interceptada por operadores del relevo de "
+"salida o cualquiera observando el tráfico entre tu relevo de salida y tu "
+"sitio web de destino."
+
+#: 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 ""
+"11/1/2017 21:11:44 PM.300 [NOTICE] Bootstrapped 80%: Connecting to the Tor "
+"network"
+
+#: 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 ""
+"A los servicios onion se les confía también para charlar y compartir "
+"archivos libres de metadatos, interacción más segura entre periodistas y sus"
+" fuentes, como por ejemplo con <mark><a "
+"href=\"https://securedrop.org/\">SecureDrop</a></mark> u <mark><a "
+"href=\"https://onionshare.org/\">OnionShare</a></mark>, actualizaciones de "
+"programas más seguras, y maneras más seguras de alcanzar sitios web "
+"populares como <mark><a href=\"https://www.facebook.com/notes/protect-the-"
+"graph/making-connections-to-facebook-more-"
+"secure/1526085754298237/\">Facebook</a></mark>."
+
+#: 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 ""
+"Por ejemplo, el onion de DuckDuckGo es <a "
+"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+
+#: http//localhost/tormobile/tormobile-1/
+#: (content/tormobile/tormobile-1/contents+en.lrquestion.seo_slug)
+msgid "run-tor-on-android"
+msgstr "correr-tor-en-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 ""
+"Hablando en términos generales, no recomendamos usar una RPV con Tor excepto"
+" que seas un usuario avanzado que conoce como configurar ambos en una manera"
+" que no comprometa tu privacidad."
+
+#: 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 ""
+"Sitios web que sólo son accesibles a través de Tor son llamados \"onions\" y"
+" terminan en el Dominio de Nivel Tope .onion."
+
+#: 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 ""
+"También, usando rutas más largas que 3 se podría dañar el anonimato, primero"
+" porque hace a los ataques de <mark><a "
+"href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denegación de "
+"seguridad</a></mark> más fáciles, y segundo porque podría actuar como un "
+"identificador si solamente un pequeño número de usuarios tiene la misma "
+"longitud de ruta que vos."
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.title)
+msgid "How do I run a obfs4 bridge on Debian?"
+msgstr "¿Cómo corro un puente obfs4 en Debian?"
+
+#: http//localhost/tbb/tbb-30/
+#: (content/tbb/tbb-30/contents+en.lrquestion.seo_slug)
+msgid "website-locks-torbrowser-out"
+msgstr "sitio-web-bloquea-navegador-tor"
+
+#: 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 ""
+"Si no recordás cuál fue este destino, lo más probable es que sea tu carpeta "
+"Descargas o Escritorio."
+
+#: 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 ""
+"13-11-17 19:53:49.300 [ADVERTENCIA] 9 conexiones fallaron en estado de "
+"intercambio para sincronización (TLS) con estado SSL SSLv2/v3 \"read server "
+"hello A in HANDSHAKE\""
+
+#: 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 ""
+"A veces, los sitios web bloquearán usuarios de Tor porque no pueden "
+"establecer la diferencia entre el usuario promedio de Tor y tráfico generado"
+" automáticamente."
+
+#: 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 "desinstalar-navegador-tor"
+
+#: 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 ""
+"El navegador Tor es una versión modificada de Firefox específicamente "
+"diseñada para uso con Tor."
+
+#: 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 ""
+"Escribí tu sistema operativo (tal como Windows, MacOS (OS X), o Linux) en el"
+" cuerpo del mensaje y envialo."
+
+#: http//localhost/tbb/tbb-6/ (content/tbb/tbb-6/contents+en.lrquestion.title)
+msgid "Can I make Tor Browser my default browser?"
+msgstr "¿Puedo hacer al navegador Tor mi navegador por defecto?"
+
+#: 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 ""
+"Por el más profundo recurso en correr un relevo, mirá la <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Guía de"
+" relevo Tor</a></mark>."
+
+#: 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 ""
+"###### Error común de bitácora #2: No se pueden alcanzar relevos de guardia"
+
+#: 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 ""
+"Dar de alta un puente obfsproxy requiere un paquete adicional de programas y"
+" configuraciones adicionales."
+
+#: 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 ""
+"* Como superusuario, añadí las siguientes líneas a /etc/apt/sources.list. "
+"Usá la versión que encontraste en el paso previo para <version>."
+
+#: 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 ""
+"Y si estás accediendo un sitio web con https y servicio onion, mostrará un "
+"icono de una cebolla verde y un candado."
+
+#: 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 ""
+"<h4 class=\"card-title\">Si estás usando HTTPS, el URL de tu sitio web "
+"comenzará con \"https://\"</h4>"
+
+#: 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 ""
+"<mark><a href=\"https://blog.torproject.org/tor-heart-onion-browser-and-"
+"more-ios-tor\">Aprendé más acerca del navegador Onion</a></mark>."
+
+#: 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 "Nickname ididnteditheconfig"
+
+#: http//localhost/misc/misc-6/
+#: (content/misc/misc-6/contents+en.lrquestion.seo_slug)
+msgid "does-tor-keep-logs"
+msgstr "tor-mantiene-bitácoras"
+
+#: http//localhost/tbb/tbb-7/
+#: (content/tbb/tbb-7/contents+en.lrquestion.description)
+msgid "Thank you.\""
+msgstr "Gracias.\""
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* 日本語 (ja)"
+msgstr "* Japonés (ja)"
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.description)
+msgid "##### New Tor Circuit for this Site"
+msgstr "##### Nuevo circuito Tor para este sitio."
+
+#: 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 ""
+"¿Qué motor de búsqueda viene con el navegador Tor y cómo hace para proteger "
+"mi privacidad?"
+
+#: 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 ""
+"Por favor asegurate que tu reloj de sistema y huso horario estén ajustados "
+"precisamente."
+
+#: 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 ""
+"Ciertamente podés usar otro navegador mientras estás también usando el "
+"navegador Tor."
+
+#: 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 ""
+"Si no podés alcanzar el servicio onion que deseás, asegurate que hayas "
+"entrado la dirección onion de 16 caracteres, o el formato nuevo de 56 "
+"caracteres, correctamente: aún un pequeño error evitará que el navegador Tor"
+" sea capaz de alcanzar el sitio."
+
+#: http//localhost/censorship/
+#: (content/censorship/contents+en.lrtopic.seo_slug)
+msgid "censorship"
+msgstr "censura"
+
+#: 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 ""
+"¿Por qué no previenen que malas personas hagan cosas malas cuando usan Tor?"
+
+#: 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 ""
+"El proyecto Tor no soporta o condona el uso de nuestro programa para "
+"propósitos maliciosos."
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.description)
+msgid "* Determine your Ubuntu version by running the following command:"
+msgstr "* Determiná tu versión de Ubuntu corriendo el siguiente comando:"
+
+#: 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 ""
+"El navegador Tor está actualmente disponible en <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> y <mark><a "
+"href=\"https://www.torproject.org/download/download-easy.html.en#mac\">macOS"
+" (OS X)</a></mark>."
+
+#: http//localhost/censorship/censorship-1/
+#: (content/censorship/censorship-1/contents+en.lrquestion.seo_slug)
+msgid "our-website-is-blocked-by-a-censor"
+msgstr "nuestro-sitio-web-está-bloqueado-por-un-censor"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "Finally, restart Tor Browser."
+msgstr "Finalmente, reiniciá el navegador Tor."
+
+#: http//localhost/connecting/ (content/connecting/contents+en.lrtopic.title)
+msgid "Connecting To Tor"
+msgstr "Conectándose a Tor"
+
+#: 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 ""
+"* Notá que la utilidad estándar \"Desinstalar\" de tu sistema operativo no "
+"es usada."
+
+#: 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 ""
+"Cuando confirme que es alcanzable, cargará un \"descriptor de servidor\" a "
+"las autoridades de directorio para hacerles saber a los clientes qué "
+"dirección, puertos, claves, etc. está usando tu relevo."
+
+#: 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 "ContactInfo 0xFFFFFFFF Random Person <nobody AT example dot com>"
+
+#: http//localhost/misc/misc-9/
+#: (content/misc/misc-9/contents+en.lrquestion.title)
+msgid "I'm having a problem updating or using Vidalia."
+msgstr "Estoy teniendo un problema actualizando o usando 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 ""
+"Una de las dificultades más comunes que causa errores de conexión en el "
+"navegador Tor es un reloj de sistema incorrecto."
+
+#: 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 ""
+"¿Por qué es la primera dirección IP en mi circuito de relevos siempre la "
+"misma?"
+
+#: 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 ""
+"Para Android, el proyecto Guardián mantiene las aplicaciones, basadas en "
+"Tor, Orbot y Orfox."
+
+#: 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 ""
+"19.11.2017 00:04:48.000 [NOTICE] Bootstrapped 5%: Connecting to directory "
+"server"
+
+#: 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 ""
+"La única manera de resolver esto es siguiendo el procedimiento recomendado "
+"por el sitio para recuperación de la cuenta, o contactando a los operadores "
+"y explicando la situación."
+
+#: 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 ""
+"Si ésto no soluciona el problema, mirá la página de Solución de Problemas en"
+" el <mark><a href=\"https://tb-manual.torproject.org/en-"
+"US/troubleshooting.html\">manual del navegador Tor</a></mark>."
+
+#: 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 ""
+"Podrías ser capaz de evitar este escenario si tu proveedor ofrece "
+"autenticación de 2 factores, lo cual es una opción de seguridad mucho mejor "
+"que reputaciones basadas en IP."
+
+#: 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 ""
+"Mi protección contra virus o programas maliciosos está bloqueándome de "
+"acceder al navegador 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-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 ""
+"Si no ves éste mensaje, significa que tu relevo no es alcanzable desde el "
+"exterior."
+
+#: 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.exe (si usás puentes)"
+
+#: 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 ""
+"Sé cuidadoso cuando cambiés alternadamente entre Tor y un navegador menos "
+"seguro, porque podés usar accidentalmente el otro navegador para algo que "
+"intentabas hacer usando Tor."
+
+#: 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 "no-puedo-alcanzar-x-onion"
+
+#: http//localhost/misc/misc-3/
+#: (content/misc/misc-3/contents+en.lrquestion.title)
+msgid "Who funds Tor?"
+msgstr "¿Quién financia Tor?"
+
+#: http//localhost/tbb/tbb-24/
+#: (content/tbb/tbb-24/contents+en.lrquestion.seo_slug)
+msgid "problem-with-duckduckgo"
+msgstr "problema-con-duckduckgo"
+
+#: http//localhost/tbb/tbb-23/
+#: (content/tbb/tbb-23/contents+en.lrquestion.seo_slug)
+msgid "search-engine-tor-browser"
+msgstr "motor-búsqueda-navegador-tor"
+
+#: http//localhost/tbb/tbb-36/
+#: (content/tbb/tbb-36/contents+en.lrquestion.title)
+msgid "Can I run multiple instances of Tor Browser?"
+msgstr "¿Puedo correr múltiples instancias del navegador Tor?"
+
+#: 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 ""
+"Por favor mirá las <mark><a href=\"https://noscript.net/faq\">PMF de "
+"NoScript</a></mark>."
+
+#: 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 ""
+"Debieras revisar tus cortafuegos, que los IP y puertos que especificaste en "
+"tu torrc estén correctos, etc."
+
+#: 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 ""
+"Los servicios onion permiten a la gente navegar pero también publicar "
+"anónimamente, incluyendo la publicación de sitios web anónimos."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.seo_slug)
+msgid "need-tor-browser-language-not-english"
+msgstr "necesito-navegador-tor-no-en-inglés"
+
+#: 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 ""
+"En éste momento estamos trabajando en el navegador Tor para Android, y "
+"podrías llegar a ver lanzamientos alfa aparecer en meses venideros."
+
+#: http//localhost/gettor/gettor-3/
+#: (content/gettor/gettor-3/contents+en.lrquestion.seo_slug)
+msgid "to-use-gettor-via-twitter"
+msgstr "usar-gettor-vía-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 ""
+"* Añadí la clave gpg usada para firmar los paquetes corriendo los siguientes"
+" comandos:"
+
+#: 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 ""
+"Si ves líneas cómo éstas en tu bitácora Tor, significa que tu Tor falló en "
+"conectar al primer nodo en el cicuito Tor."
+
+#: 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 ""
+"¿Los tenés vos? <mark><a "
+"href=\"https://www.torproject.org/about/contact.html.en\">Contactanos</a></mark>."
+
+#: 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 "cómo-descargar-tor-si-torproject-org-es-bloqueado"
+
+#: 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 ""
+"Si empezaste a tener dificultades con tu navegador Tor luego de actualizar, "
+"revisá <mark><a "
+"href=\"https://blog.torproject.org\">blog.torproject.org</a></mark> por la "
+"entrada más reciente acerca del navegador estable Tor, para ver si tu "
+"dificultad está listada."
+
+#: http//localhost/misc/ (content/misc/contents+en.lrtopic.title)
+msgid "Misc"
+msgstr "Misc"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* obfs4proxy.exe (if you use bridges)"
+msgstr "* obfs4proxy.exe (si usás puentes)"
+
+#: 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 ""
+"Luego de unas pocas horas (para darle suficiente tiempo para propagar), "
+"podés consultar <mark><a "
+"href=\"https://metrics.torproject.org/rs.html#search\">Metrics</a></mark> "
+"para ver si tu relevo ha sido exitosamente registrado en la red."
+
+#: 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 ""
+"GetTor responderá con un correo electrónico conteniendo vínculos desde los "
+"cuales podés descargar el navegador Tor, la firma criptográfica (necesaria "
+"para la <mark><a href=\"https://www.torproject.org/docs/verifying-"
+"signatures.html.en\">verificación de la descarga</a></mark>), la huella "
+"digital de la clave usada para hacer la firma, y suma de verificación del "
+"paquete."
+
+#: 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 "¿Cómo me aseguro que estoy usando los paquetes correctos en Ubuntu?"
+
+#: 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 ""
+"El proyecto Guardián mantiene Tor (y otras aplicaciones de privacidad) en "
+"Android. Más información puede ser encontrada en el sitio web <mark><a "
+"href=\"https://guardianproject.info/\">proyecto Guardián</a></mark>."
+
+#: 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 ""
+"Otras pestañas y ventanas abiertas del mismo sitio web, empezarán a usar el "
+"nuevo circuito una vez que sean recargadas."
+
+#: 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 "aplicación-proyecto-tor-para-charla-privada"
+
+#: 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 ""
+"En vez de eso, considerá correr tu relevo de salida en una instalación "
+"comercial que simpatice con la causa de Tor."
+
+#: 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 ""
+"Por favor, tratá conectando con puentes, y eso debiera arreglar el problema."
+
+#: 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 ""
+"Orfox es para navegación en web, y Orbot puede rutear otras aplicaciones en "
+"tu teléfono Android sobre la red de 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-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "If it hasn't, re-check firewalls, IP and ports again."
+msgstr "Si no lo ha logrado, revisá de nuevo los cortafuegos, IP y puertos."
+
+#: 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 ""
+"Flash está deshabilitado en el navegador Tor, y te recomendamos que no lo "
+"habilites."
+
+#: 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 ""
+"Si no podés alcanzar el servicio onion que deseás, asegurate que hayas "
+"entrado la dirección onion de 16 caracteres correctamente: aún un pequeño "
+"error evitará que el navegador Tor sea capaz de alcanzar el sitio."
+
+#: 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 ""
+"Hay algo llamado <mark><a href=\"https://www.torbsd.org/\">el proyecto "
+"TorBSD</a></mark>, pero su navegador Tor no está soportado oficialmente."
+
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.seo_slug)
+msgid "how-do-i-run-an-exit"
+msgstr "como-corro-una-salida"
+
+#: http//localhost/ (content/contents+en.lrshowcase.title)
+msgid "How can we help?"
+msgstr "¿Cómo podemos ayudarte?"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Nederlands (nl)"
+msgstr "* Holandés (nl)"
+
+#: 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 ""
+"<mark><a "
+"href=\"https://www.torproject.org/projects/torbrowser/design/\">Aprendé más "
+"acerca del diseño del navegador Tor</a></mark>."
+
+#: 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 ""
+"Actualmente ofrecemos el <mark>Navegador Tor<a "
+"href=\"https://www.torproject.org/projects/torbrowser.html.en\"></a> en los "
+"siguientes lenguajes:"
+
+#: 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 "correr-navegador-tor-me-convierte-en-relevo"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Español (es-ES)"
+msgstr "* Español (es-ES)"
+
+#: http//localhost/tbb/tbb-19/
+#: (content/tbb/tbb-19/contents+en.lrquestion.seo_slug)
+msgid "cannot-connect-to-tor-browser-network-censored"
+msgstr "no-puedo-conectar-al-navegador-tor-red-censurada"
+
+#: 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 "Contactá tu proveedor y preguntale si provee A2F."
+
+#: http//localhost/misc/misc-2/
+#: (content/misc/misc-2/contents+en.lrquestion.seo_slug)
+msgid "prevent-bad-people-doing-bad-things-with-tor"
+msgstr "prevenir-a-malas-personas-de-hacer-cosas-malas-con-tor"
+
+#: http//localhost/faq/ (content/faq/contents+en.lrtopic.title)
+msgid "Most Frequently Asked Questions"
+msgstr "Preguntas más frecuentes"
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.title)
+msgid "How do I uninstall Tor Browser?"
+msgstr "¿Cómo desinstalo el navegador Tor?"
+
+#: 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 ""
+"Descargué e instalé el navegador Tor para Windows, pero ahora no puedo "
+"encontrarlo."
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "* Empty your Trash."
+msgstr "* Vaciá la basura."
+
+#: http//localhost/tormobile/tormobile-3/
+#: (content/tormobile/tormobile-3/contents+en.lrquestion.title)
+msgid "Can I run Tor on an iOS device?"
+msgstr "¿Puedo correr Tor en un dispositivo iOS?"
+
+#: 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 "¿Cómo corro Tor en 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 ""
+"Un sitio web (banco, proveedor de correo electrónico, etc.) me bloquea cada "
+"vez que uso Tor. ¿Qué puedo hacer?"
+
+#: http//localhost/misc/misc-14/
+#: (content/misc/misc-14/contents+en.lrquestion.title)
+msgid "How do I volunteer with Tor Project?"
+msgstr "¿Cómo hago para ser voluntario en el proyecto Tor?"
+
+#: 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 ""
+"Sin embargo, debieras saber que las propiedades de privacidad del navegador "
+"Tor no estarán presentes en el otro navegador."
+
+#: http//localhost/faq/faq-4/
+#: (content/faq/faq-4/contents+en.lrquestion.description)
+#: 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 "
+"<mark><a href=\"https://onionbrowser.com/\">Onion Browser</a></mark>."
+msgstr ""
+"No hay aún una versión oficial de Tor para iOS, aunque recomendamos <mark><a"
+" href=\"https://onionbrowser.com/\">el navegador Onion</a></mark>."
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "Enabling ntpd is suggested."
+msgstr "Es sugerido habilitar ntpd."
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.seo_slug)
+msgid "change-ip-address"
+msgstr "cambiar-dirección-ip"
+
+#: 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 ""
+"* Corré los siguientes comandos para instalar tor y verificar sus firmas:"
+
+#: 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 ""
+"2017-10-29 09:24:08.900 [WARN] Proxy Client: unable to connect to "
+"xx..xxx..xxx.xx:xxxxx (\"general SOCKS server failure\")"
+
+#: 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 ""
+"Puede que te sea ofrecida una opción del programa para 32 ó 64 bits, esto "
+"depende del modelo de la computadora que estás usando; consultá la "
+"documentación acerca de tu computadora para saber más."
+
+#: 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 ""
+"Para más información sobre como trabajan los relevos de guardia, mirá esta "
+"<mark><a href=\"https://blog.torproject.org/improving-tors-anonymity-"
+"changing-guard-parameters\">entrada de blog</a></mark> y <mark><a "
+"href=\"https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf\">artículo</a></mark> sobre "
+"guardias de entrada."
+
+#: 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 "¿Cómo corro un relevo intermedio o guarda en Debian?"
+
+#: 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 ""
+"La mayoría de las protecciones contra virus o programas maliciosos permiten "
+"al usuario incluir en una \"lista blanca\" ciertos procesos que de otra "
+"manera serían bloqueados."
+
+#: http//localhost/tbb/tbb-6/
+#: (content/tbb/tbb-6/contents+en.lrquestion.seo_slug)
+msgid "make-tor-browser-default-browser"
+msgstr "hacer-navegador-tor-navegador-por-defecto"
+
+#: 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 ""
+"Si estás corriendo un antivirus, por favor mirá <mark><a "
+"href=\"http://support.torproject.org/#tbb-10\">Mi protección contra virus y "
+"programas maliciosos está bloqueándome de acceder al navegador "
+"Tor</a></mark>, es común que programas antivirus/protectores contra "
+"programas maliciosos causen éste tipo de dificultad."
+
+#: http//localhost/tbb/tbb-26/
+#: (content/tbb/tbb-26/contents+en.lrquestion.seo_slug)
+msgid "problem-with-https-everywhere"
+msgstr "problema-con-https-everywhere"
+
+#: http//localhost/censorship/ (content/censorship/contents+en.lrtopic.title)
+msgid "Censorship"
+msgstr "Censura"
+
+#: 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 ""
+"Por favor, plantate firme en favor de la privacidad digital y la libertad de"
+" Internet, y permití a los usuarios de Tor acceder a xyz.com."
+
+#: 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 ""
+"El navegador Tor no se conecta, pero no pareciera ser una dificultad que "
+"involucre censura."
+
+#: 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 ""
+"Las direcciones deben ser compartidas con vos por quien aloja el sitio web, "
+"ya que los onions no están indexados en los motores de búsqueda en la manera"
+" típica en que lo están los sitios web convencionales."
+
+#: 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 ""
+"Si el sitio que estás visitando usa HTTPS, luego el tráfico egresando de tu "
+"relevo de salida estará encriptado, y no será visible a observadores "
+"hostiles."
+
+#: 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 ""
+"Por esa razón, es mejor no correr tu relevo de salida en tu hogar o usando "
+"la conexión de internet del mismo."
+
+#: http//localhost/censorship/censorship-7/
+#: (content/censorship/censorship-7/contents+en.lrquestion.title)
+msgid "What is a bridge?"
+msgstr "¿Qué es un puente?"
+
+#: 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 ""
+"Cualquier otra aplicación en tu sistema (incluyendo otros navegadores) no "
+"tendrán sus conexiones ruteadas sobre la red de Tor, y no serán protegidas."
+
+#: 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 ""
+"* Debieras ver también el mensaje \"Transporte 'obfs4' registrado en "
+"servidor\" indicando que obfs4proxy está funcionando."
+
+#: 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 ""
+"La solución más sencilla es cliquear en el \"menú onion\", y luego en la "
+"regla deslizante de seguridad."
+
+#: 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 ""
+"Tor está diseñado para defender los derechos humanos y la privacidad, "
+"previniendo que cualquiera censure, aún nosotros."
+
+#: 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 ""
+"Por supuesto, debieras evitar mantener cualquier información sensitiva o "
+"personal en la computadora que está albergando tu relevo de salida."
+
+#: 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 ""
+"Los puentes <mark><a "
+"href=\"https://github.com/Yawning/obfs4/blob/master/doc/obfs4-spec.txt\">obfsproxy</a></mark>"
+" solucionan ésto añadiendo otra capa de ofuscación."
+
+#: 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 "El archivo que descargaste y corriste te pregunta por un destino."
+
+#: 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 ""
+"Algunas entidades, como tu Proveedor de Servicios de Internet (ISP), pueden "
+"ser capaces de ver que estás usando Tor, pero no podrán saber a dónde vas "
+"cuando lo hagas."
+
+#: 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 ""
+"Algunas veces, sitios web que usan profusamente Javascript pueden tener "
+"dificultades funcionales sobre el navegador Tor."
+
+#: http//localhost/gettor/gettor-2/
+#: (content/gettor/gettor-2/contents+en.lrquestion.description)
+msgid "Send an email to gettor(a)torproject.org."
+msgstr "Enviar un correo electrónico a 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 "Sólo el tráfico del navegador Tor será ruteado sobre la red de Tor."
+
+#: 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 ""
+"Eso es, en casos normales es 3, pero por ejemplo si estás accediendo un "
+"servicio onion o una dirección \".exit\" puede ser más."
+
+#: 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 "* Corré \"service tor reload\" (como superusuario)"
+
+#: 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 ""
+"Una lista de todos nuestros proyectos de programas puede ser encontrada en "
+"nuestra <mark><a "
+"href=\"https://www.torproject.org/projects/projects.html.en\">página de "
+"proyectos</a></mark>."
+
+#: 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 ""
+"Esta opción es útil si querés prevenir que tu subsecuente actividad en el "
+"navegador sea vinculable con lo que estuviste haciendo anteriormente."
+
+#: http//localhost/misc/misc-10/
+#: (content/misc/misc-10/contents+en.lrquestion.title)
+msgid "Does the Tor Project offer hosting?"
+msgstr "¿El proyecto Tor ofrece alojamiento de sitios?"
+
+#: 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 "¿Puedo usar una RPV con 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 ""
+"Relevos puente son relevos Tor que no están listados en el directorio "
+"público de Tor."
+
+#: 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 ""
+"Podés también asegurarte que seas capaz de acceder otros servicios onion "
+"conectando al servicio onion de <a "
+"href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo</a>,"
+
+#: 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 ""
+"Para obtener vínculos para descargar el navegador Tor, enviá un mensaje a "
+"gettor(a)torproject.org con uno de los siguientes códigos en él:"
+
+#: 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 ""
+"\"¡Hola! Traté de acceder al sitio xyz.com mientras estaba usando el "
+"navegador Tor y descubrí que no permitís a usuarios de Tor acceder a tu "
+"sitio."
+
+#: 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 ""
+"Para obtener vínculos para descargar el navegador Tor, enviá un mensaje "
+"directo a <mark><a href=\"https://twitter.com/get_tor\">@get_tor</a></mark> "
+"con uno de los siguientes códigos en él (no necesitás seguir la cuenta):"
+
+#: 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 ""
+"Esto significa que a veces un sitio web se cargaría en el navegador Tor, y a"
+" veces se cargaría en otro navegador. Este tipo de comportamiento puede ser "
+"peligroso y causar la ruptura del anonimato."
+
+#: 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 ""
+"Ultimamente, queremos hacer al navegador Tor tan seguro como sea posible, "
+"haciéndolo mientras tanto utilizable para la mayoría de la gente, por lo que"
+" por ahora, eso significa dejar Javascript habilitado por defecto."
+
+#: 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 ""
+"Afortunadamente, la mayoría de los sitios web, dispositivos, y otros "
+"navegadores se están alejando del uso de Flash."
+
+#: 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 "#MyFamily $keyid,$keyid,..."
+
+#: http//localhost/censorship/censorship-2/
+#: (content/censorship/censorship-2/contents+en.lrquestion.seo_slug)
+msgid "website-is-blocking-access-over-tor"
+msgstr "sitio-web-está-bloqueando-acceso-sobre-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 ""
+"## La dirección IP o nombre de la computadora para conexiones entrantes "
+"(dejalo comentado y Tor adivinará)"
+
+#: 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 "cómo-descargar-tor-si-torproject-org-es-bloqueado"
+
+#: 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 ""
+"DuckDuckGo no rastrea sus usuarios ni almacena ningún dato acerca de "
+"búsquedas de usuario. Aprendé más acerca de la <mark><a "
+"href=\"https://duckduckgo.com/privacy\">política de privacidad de "
+"DuckDuckGo</a></mark>."
+
+#: http//localhost/tbb/tbb-21/
+#: (content/tbb/tbb-21/contents+en.lrquestion.seo_slug)
+msgid "view-tor-browser-message-log"
+msgstr "ver-bitácora-mensajes-navegador-tor"
+
+#: http//localhost/tbb/tbb-38/
+#: (content/tbb/tbb-38/contents+en.lrquestion.seo_slug)
+msgid "network-admin-know-i-am-using-tor"
+msgstr "administrador-de-red-sabe-que-estoy-usando-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 ""
+"ofrece-proyecto-tor-servicios-correo-electrónico-o-protección-de-privacidad"
+
+#: 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 ""
+"Podés también asegurarte que seas capaz de acceder otros servicios onion "
+"conectándote al <a href=\"http://3g2upl4pq6kufc4m.onion\">servicio onion de "
+"DuckDuckGo</a>."
+
+#: http//localhost/misc/misc-14/
+#: (content/misc/misc-14/contents+en.lrquestion.seo_slug)
+msgid "volunteer-with-tor-project"
+msgstr "voluntarios-con-proyecto-tor"
+
+#: 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 ""
+"El navegador Tor te advertirá que toda actividad y descargas serán "
+"detenidas, por lo cual tené en cuenta esto antes de cliquear \"Nueva "
+"Identidad\"."
+
+#: http//localhost/tbb/tbb-33/
+#: (content/tbb/tbb-33/contents+en.lrquestion.title)
+msgid "Does running Tor Browser make me a relay?"
+msgstr "¿El navegador Tor me hace actuar como relevo?"
+
+#: 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 ""
+"¿Mi administrador de red será capaz de decir que estoy usando el navegador "
+"Tor?"
+
+#: 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 ""
+"11/1/2017 21:11:44 PM.300 [WARN] Failed to find node for hop 0 of our path. "
+"Discarding this circuit."
+
+#: 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 ""
+"Obtenés la mejor seguridad que Tor puede proveer cuando dejás la selección "
+"de la ruta a Tor; forzando los nodos de entrada/salida puede comprometer tu "
+"anonimato."
+
+#: 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 ""
+"Por favor mirá nuestro <mark><a "
+"href=\"https://blog.torproject.org\">blog</a></mark> por futuros anuncios y "
+"detalles acerca de éste proyecto."
+
+#: 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 "¿Como descargo Tor si torproject.org está bloqueado?"
+
+#: 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 ""
+"19.11.2017 00:04:47.400 [NOTICE] Opening Socks listener on 127.0.0.1:9150"
+
+#: http//localhost/tormobile/tormobile-4/
+#: (content/tormobile/tormobile-4/contents+en.lrquestion.seo_slug)
+msgid "run-tor-on-windows-phone"
+msgstr "correr-tor-en-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 "Log notice file /var/log/tor/notices.log"
+
+#: http//localhost/misc/misc-11/
+#: (content/misc/misc-11/contents+en.lrquestion.title)
+msgid "Can I change the number of hops Tor uses?"
+msgstr "¿Puedo cambiar el número de saltos que usa Tor?"
+
+#: 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 ""
+"El primer relevo en tu circuito es llamado una \"guardia de entrada\" o "
+"\"guardia\"."
+
+#: http//localhost/tbb/tbb-16/
+#: (content/tbb/tbb-16/contents+en.lrquestion.title)
+msgid "Can I pick which country I'm exiting from?"
+msgstr "¿Puedo elegir desde cuál país estoy saliendo?"
+
+#: http//localhost/misc/misc-12/
+#: (content/misc/misc-12/contents+en.lrquestion.seo_slug)
+msgid "share-files-anonymously-through-tor"
+msgstr "compartir-archivos-anónimamente-a-través-de-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 "En el navegador Tor, cada nuevo dominio obtiene su propio circuito."
+
+#: 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 "## Establecé el apodo de éste relevo"
+
+#: 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 ""
+"¿Cómo puedo hacer correr a Tor más rápido? ¿El navegador Tor es más lento "
+"que otros navegadores?"
+
+#: 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 ""
+"Esta opción no limpia ninguna información privada o desvincula tu actividad,"
+" ni tampoco afecta tus conexiones actuales a otros sitios web."
+
+#: 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 ""
+"Instalá el paquete ntp u openntpd (o similar) para mantenerlo de esa manera."
+
+#: 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 ""
+"El icono del botón Tor (la cebollita verde en la esquina superior izquierda "
+"del navegador) mostrará un triángulo amarillo."
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "ServerTransportPlugin obfs4 exec /usr/bin/obfs4proxy"
+msgstr "ServerTransportPlugin obfs4 exec /usr/bin/obfs4proxy"
+
+#: http//localhost/operators/ (content/operators/contents+en.lrtopic.title)
+msgid "Operators"
+msgstr "Operadores"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Русский (ru)"
+msgstr "* Ruso (ru)"
+
+#: http//localhost/tormobile/ (content/tormobile/contents+en.lrtopic.seo_slug)
+msgid "tor-mobile"
+msgstr "tor-móvil"
+
+#: http//localhost/tbb/tbb-18/
+#: (content/tbb/tbb-18/contents+en.lrquestion.seo_slug)
+msgid "is-there-support-for-bsd"
+msgstr "hay-soporte-para-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 ""
+"Prestá atención a una línea de bitácora en tu /var/log/syslog tal como "
+"\"Self-testing indicates your ORPort is reachable from the outside. "
+"Excellent.\""
+
+#: http//localhost/onionservices/onionservices-3/
+#: (content/onionservices/onionservices-3/contents+en.lrquestion.seo_slug)
+msgid "i-cannot-reach-x-dot-onion"
+msgstr "no-puedo-alcanzar-x-punto-onion"
+
+#: http//localhost/tbb/tbb-41/
+#: (content/tbb/tbb-41/contents+en.lrquestion.title)
+msgid "Why did my search engine switch to DuckDuckGo?"
+msgstr "¿Por qué mi motor de búsqueda se cambió a 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 ""
+"Los puentes son útiles para usuarios de Tor bajo regímenes represivos, y "
+"para las personas que quieren una capa extra de seguridad porque están "
+"preocupadas que alguien reconocerá que están contactando una dirección IP de"
+" un relevo Tor público."
+
+#: 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 ""
+"Para más información, por favor mirá la sección <mark><a href=\"https://tb-"
+"manual.torproject.org/en-US/\">Manual de Usuario del navegador "
+"Tor</a></mark> sobre la <mark><a href=\"https://tb-manual.torproject.org/en-"
+"US/circumvention.html\">censura</a></mark>."
+
+#: 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 ""
+"Si ésto no soluciona el problema, mirá la página de Solución de Problemas en"
+" el <mark><a href=\"https://tb-manual.torproject.org/en-"
+"US/bridges.html\">manual del navegador Tor</a></mark>."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* 简体字 (zh-CN)"
+msgstr "* Chino (zh-CN)"
+
+#: http//localhost/onionservices/onionservices-2/
+#: (content/onionservices/onionservices-2/contents+en.lrquestion.seo_slug)
+msgid "what-is-a-dot-onion"
+msgstr "qué-es-un-punto-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 ""
+"¿El proyecto Tor ofrece servicio de correo electrónico u otros servicios web"
+" de protección de privacidad?"
+
+#: 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 ""
+"Cuando confirme que es alcanzable, cargará un \"descriptor de servidor\" a "
+"las autoridades de directorio para hacer saber a los clientes qué dirección,"
+" puertos, claves, etc. está usando tu relevo."
+
+#: 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 ""
+"Si necesitás estar seguro que todo el tráfico irá a través de la red de Tor,"
+" hechale una mirada al <mark><a href=\"https://tails.boum.org/\">sistema "
+"operativo Tails</a></mark>, el cual podés iniciar en casi cualquier "
+"computadora desde un pendrive o un DVD."
+
+#: http//localhost/tbb/ (content/tbb/contents+en.lrtopic.title)
+msgid "Tor Browser"
+msgstr "Navegador Tor"
+
+#: 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 ""
+"###### Error común de bitácora #3: Fallo al completar intercambio para "
+"sincronización TLS"
+
+#: 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 ""
+"Te urjo a que reconsideres ésta decisión; Tor es utilizado por gente "
+"alrededor del mundo para proteger su privacidad y combatir la censura."
+
+#: http//localhost/tbb/tbb-12/
+#: (content/tbb/tbb-12/contents+en.lrquestion.seo_slug)
+msgid "using-flash-tor-browser"
+msgstr "usando-flash-en-navegador-tor"
+
+#: 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 ""
+"Tengo una muy buena razón para rastrear a un usuario de Tor. ¿Pueden ayudar?"
+
+#: 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 ""
+"13-11-17 19:52:24.300 [NOTICE] Bootstrapped 10%: Finishing handshake with "
+"directory server"
+
+#: 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 ""
+"Por favor abrí tu programa de protección contra virus o programas "
+"maliciosos, y mirá en los ajustes por una \"lista blanca\" o algo similar."
+
+#: http//localhost/gettor/gettor-4/
+#: (content/gettor/gettor-4/contents+en.lrquestion.seo_slug)
+msgid "to-use-gettor-via-xmpp"
+msgstr "usar-gettor-vía-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 ""
+"Desafortunadamente, algunos sitios web entregan CAPTCHAS a usuarios Tor, y "
+"no somos capaces de remover CAPTCHAS de sitios web."
+
+#: 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 "por-que-navegador-tor-está-hecho-a-partir-de-firefox"
+
+#: http//localhost/tbb/tbb-12/
+#: (content/tbb/tbb-12/contents+en.lrquestion.title)
+msgid "Can I use Flash in Tor Browser?"
+msgstr "¿Puedo usar Flash en el navegador Tor?"
+
+#: 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 ""
+"El documento <mark><a "
+"href=\"https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability\">el diseño e implementación del navegador Tor</a></mark> "
+"explica con más amplitud el pensamiento detrás de éste diseño."
+
+#: 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 "Este paso es usualmente rápido, pero puede tomar unos pocos minutos."
+
+#: 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 ""
+"Cliqueá el botón titulado \"Copiar bitácora de Tor al portapapeles\" que "
+"aparece en la ventana de diálogo cuando el navegador Tor se está conectando "
+"a la red al inicio."
+
+#: 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 ""
+"Podrías estar en una red censurada, por lo cual debieras tratar usando "
+"puentes."
+
+#: 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 ""
+"No queremos alentar a la gente para que use rutas más largas que ésta, ya "
+"que incrementan la carga sobre la red sin (tan lejos como podemos decir) "
+"proveer ninguna seguridad más."
+
+#: http//localhost/tormobile/tormobile-3/
+#: (content/tormobile/tormobile-3/contents+en.lrquestion.seo_slug)
+msgid "run-tor-on-ios"
+msgstr "correr-tor-en-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 "¡No puedo alcanzar a X.onion!"
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "ExtORPort auto"
+msgstr "ExtORPort auto"
+
+#: 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 "Necesito al navegador Tor en un lenguaje que no es Inglés."
+
+#: http//localhost/tbb/tbb-34/
+#: (content/tbb/tbb-34/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-js-enabled-default"
+msgstr "js-habilitado-por-defecto-en-navegador-tor"
+
+#: http//localhost/misc/misc-9/
+#: (content/misc/misc-9/contents+en.lrquestion.seo_slug)
+msgid "having-a-problem-updating-vidalia"
+msgstr "teniendo-un-problema-actualizando-vidalia"
+
+#: http//localhost/tbb/tbb-16/
+#: (content/tbb/tbb-16/contents+en.lrquestion.seo_slug)
+msgid "pick-which-country-i-am-exiting"
+msgstr "elegir-por-cual-país-estoy-saliendo"
+
+#: 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 ""
+"## Ajustá tu tasa de ancho de banda (dejalo comentado y Tor correrá sin "
+"límites de ancho de banda)"
+
+#: 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 ""
+"Con el lanzamiento del navegador Tor 6.0.6, cambiamos a DuckDuckGo como "
+"motor de búsqueda primario."
+
+#: 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 ""
+"No recomendamos correr múltiples instancias del navegador Tor, y puede no "
+"trabajar de forma anticipada en muchas plataformas."
+
+#: 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 ""
+"Eso significa que los Proveedores de Servicio de Internet o gobiernos "
+"intentando bloquear el acceso a la red de Tor simplemente no pueden bloquear"
+" todos los puentes."
+
+#: 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 ""
+"¿Debería instalar un complemento o extensión nueva, comoo AdBlock Plus o "
+"uBlock Origin en el navegador Tor? "
+
+#: 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 ""
+"Por favor notá que las RPVs no tienen las mismas propiedades de privacidad "
+"que Tor, pero ayudarán a solucionar algunas dificultades de restricción por "
+"geolocalización."
+
+#: 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 "Correr el navegador Tor no te hace actuar como relevo en la red."
+
+#: 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 ""
+"Ya desde hace rato, Disconnect no ha tenido acceso a resultados de búsqueda "
+"de Google, los cuales usábamos en el navegador Tor."
+
+#: http//localhost/gettor/gettor-4/
+#: (content/gettor/gettor-4/contents+en.lrquestion.title)
+msgid "To use GetTor via XMPP (Jitsi, CoyIM)."
+msgstr "Usar GetTor vía 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 ""
+"Mientras que es técnicamente posible usar Tor con otros navegadores, podés "
+"estar abriéndote a potenciales ataques o filtrado de información, por lo que"
+" lo desanimamos enfáticamente."
+
+#: 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 ""
+"Algunos sitios web, tales como bancos o proveedores de correo electrónico, "
+"pueden interpretar ésto como un signo de que tu cuenta haya sido "
+"comprometida, y te bloquean."
+
+#: 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 ""
+"19.11.2017 00:04:48.800 [ADVERTENCIA] Se recibió una llamada NETINFO con "
+"tiempo dispar (OR:xxx.xx.x.xx:xxxx): Parece que nuestro reloj está atrasado "
+"en 1 día, 0 horas, 1 minuto, o que el de ellos está adelantado. Tor requiere"
+" un reloj preciso para funcionar: por favor revisá tus ajustes de tiempo, "
+"huso horario y fecha."
+
+#: http//localhost/tbb/tbb-7/
+#: (content/tbb/tbb-7/contents+en.lrquestion.seo_slug)
+msgid "website-blocking-access-over-tor"
+msgstr "sitio-web-bloqueando-acceso-sobre-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 ""
+"Si quisiéramos bloquear a ciertas personas de usar Tor, básicamente "
+"estaríamos añadiendo una puerta trasera al programa, la cual expondría a "
+"nuestros usuarios más vulnerables a ataques por parte de malos regímenes y "
+"otros adversarios."
+
+#: templates/footer.html:5
+msgid "Our mission:"
+msgstr "Nuestra misión:"
+
+#: 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 ""
+"avanzar los derechos y libertades humanas creando y desplegando tecnologías "
+"de anonimato y privacidad de fuente abierta, soportando su disponibilidad y "
+"uso irrestricto, y ampliando su entendimiento científico y popular."
+
+#: templates/footer.html:24
+msgid "Subscribe to our Newsletter"
+msgstr "Suscribite a nuestro boletín informativo"
+
+#: templates/footer.html:25
+msgid "Get monthly updates and opportunities from the Tor Project"
+msgstr "Obtené actualizaciones y oportunidades mensuales del proyecto Tor"
+
+#: templates/footer.html:32
+msgid ""
+"Trademark, copyright notices, and rules for use by third parties can be "
+"found in our "
+msgstr ""
+"Las marcas registradas, notas de derechos de autor, y reglas de uso por "
+"terceros pueden ser encontradas en nuestro"
+
+#: templates/layout.html:7
+msgid "Tor Project | Support"
+msgstr "Proyecto Tor | Soporte"
+
+#: templates/navbar.html:4
+msgid "Tor Logo"
+msgstr "Logo Tor"
+
+#: templates/navbar.html:40
+msgid "Download Tor Browser"
+msgstr "Descargar navegador Tor"
+
+#: templates/search.html:5
+msgid "Search"
+msgstr "Búsqueda"
+
+#: templates/macros/question.html:11
+msgid "Permalink"
+msgstr "Permalink"
diff --git a/contents+es_AR.po b/contents+es_AR.po
index 8350f2b1a..ebde15569 100644
--- a/contents+es_AR.po
+++ b/contents+es_AR.po
@@ -1,12 +1,13 @@
# Translators:
# erinm, 2018
# Zuhualime Akoochimoya, 2018
+#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-10-27 19:20+CET\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Zuhualime Akoochimoya, 2018\n"
"Language-Team: Spanish (Argentina) (https://www.transifex.com/otf/teams/1519/es_AR/)\n"
"MIME-Version: 1.0\n"
diff --git a/contents+fa.po b/contents+fa.po
index 9fa16b9db..1fa060dcc 100644
--- a/contents+fa.po
+++ b/contents+fa.po
@@ -1,13 +1,14 @@
# Translators:
-# erinm, 2018
# A.Mehraban <Mehr.Ban(a)chmail.ir>, 2018
+# erinm, 2018
+#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-10-27 19:20+CET\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: A.Mehraban <Mehr.Ban(a)chmail.ir>, 2018\n"
+"PO-Revision-Date: 2018-10-02 22:41+0000\n"
+"Last-Translator: erinm, 2018\n"
"Language-Team: Persian (https://www.transifex.com/otf/teams/1519/fa/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
diff --git a/contents+ga.po b/contents+ga.po
index 3b458435b..f4cd8eb3f 100644
--- a/contents+ga.po
+++ b/contents+ga.po
@@ -1,12 +1,13 @@
# Translators:
# erinm, 2018
# Emma Peel, 2018
+#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-10-27 19:20+CET\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Emma Peel, 2018\n"
"Language-Team: Irish (https://www.transifex.com/otf/teams/1519/ga/)\n"
"MIME-Version: 1.0\n"
diff --git a/contents+he.po b/contents+he.po
index f2821ea5e..c1e20ff4a 100644
--- a/contents+he.po
+++ b/contents+he.po
@@ -1,13 +1,14 @@
# Translators:
-# ION, 2018
# erinm, 2018
+# ION, 2018
# Emma Peel, 2018
+#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-10-27 19:20+CET\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Emma Peel, 2018\n"
"Language-Team: Hebrew (https://www.transifex.com/otf/teams/1519/he/)\n"
"MIME-Version: 1.0\n"
diff --git a/contents+id.po b/contents+id.po
index bc5a3e00c..e0e6a95fc 100644
--- a/contents+id.po
+++ b/contents+id.po
@@ -1,12 +1,13 @@
# Translators:
# erinm, 2018
# Emma Peel, 2018
+#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-10-27 19:20+CET\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Emma Peel, 2018\n"
"Language-Team: Indonesian (https://www.transifex.com/otf/teams/1519/id/)\n"
"MIME-Version: 1.0\n"
diff --git a/contents+is.po b/contents+is.po
index 7c239e23e..2887f880d 100644
--- a/contents+is.po
+++ b/contents+is.po
@@ -1,12 +1,13 @@
# 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-10-27 19:20+CET\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"PO-Revision-Date: 2018-10-02 22:41+0000\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"
diff --git a/contents+it.po b/contents+it.po
index 4255daef1..b0e1f7278 100644
--- a/contents+it.po
+++ b/contents+it.po
@@ -1,12 +1,13 @@
# Translators:
# erinm, 2018
# Emma Peel, 2018
+#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-10-27 19:20+CET\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Emma Peel, 2018\n"
"Language-Team: Italian (https://www.transifex.com/otf/teams/1519/it/)\n"
"MIME-Version: 1.0\n"
diff --git a/contents+ka.po b/contents+ka.po
index 3848d0bb5..877c24ca5 100644
--- a/contents+ka.po
+++ b/contents+ka.po
@@ -1,12 +1,13 @@
# Translators:
# erinm, 2018
# A. C., 2018
+#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-10-27 19:20+CET\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: A. C., 2018\n"
"Language-Team: Georgian (https://www.transifex.com/otf/teams/1519/ka/)\n"
"MIME-Version: 1.0\n"
diff --git a/contents+ko.po b/contents+ko.po
index 6fcdfa110..0120cce14 100644
--- a/contents+ko.po
+++ b/contents+ko.po
@@ -1,13 +1,14 @@
# Translators:
-# Philipp Sauter <qt123(a)pm.me>, 2018
# erinm, 2018
+# Philipp Sauter <qt123(a)pm.me>, 2018
+#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-10-27 19:20+CET\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: erinm, 2018\n"
+"PO-Revision-Date: 2018-10-02 22:41+0000\n"
+"Last-Translator: Philipp Sauter <qt123(a)pm.me>, 2018\n"
"Language-Team: Korean (https://www.transifex.com/otf/teams/1519/ko/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
diff --git a/contents+nb.po b/contents+nb.po
index 35a9c3fd0..74c570753 100644
--- a/contents+nb.po
+++ b/contents+nb.po
@@ -1,11 +1,12 @@
# Translators:
# erinm, 2018
+#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-10-27 19:20+CET\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: erinm, 2018\n"
"Language-Team: Norwegian Bokmål (https://www.transifex.com/otf/teams/1519/nb/)\n"
"MIME-Version: 1.0\n"
diff --git a/contents+pt-BR.po b/contents+pt-BR.po
new file mode 100644
index 000000000..ff9bdf7b2
--- /dev/null
+++ b/contents+pt-BR.po
@@ -0,0 +1,4571 @@
+# Translators:
+# Eduardo Bonsi, 2018
+# erinm, 2018
+# Emma Peel, 2018
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-10-27 19:20+CET\n"
+"PO-Revision-Date: 2018-10-02 22:41+0000\n"
+"Last-Translator: Emma Peel, 2018\n"
+"Language-Team: Portuguese (Brazil) (https://www.transifex.com/otf/teams/1519/pt_BR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: pt_BR\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\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 "Modificar o modo como o Tor cria os seus circuitos não é recomendado."
+
+#: 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 ""
+"Contudo, esteja ciente de que o seu outro navegador poderá não estar "
+"transmitindo as suas atividades privadas, e que você pode se esquecer disso "
+"e acidentalmente usar esse navegador não-anônimo para fazer algo que você "
+"pretendia fazer no Tor."
+
+#: http//localhost/misc/misc-4/
+#: (content/misc/misc-4/contents+en.lrquestion.description)
+msgid "We do not recommend using Tor with BitTorrent."
+msgstr "Nós não recomendamos utilizar o Tor com o BitTorrent."
+
+#: 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 "Isto poderia significar que você está em uma rede censurada."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Français (fr)"
+msgstr "* Francês (fr)"
+
+#: 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 ""
+"No caso de bancos, e outros websites sensíveis, é também comum ver bloqueios"
+" baseado na localização geográfica (se um banco sabe que você geralmente "
+"acessa seus serviços de um país; e de repente você está se conectando com um"
+" retransmissor de saída em outro lado do mundo, a sua conta pode ser "
+"bloqueada ou suspendida)."
+
+#: http//localhost/https/https-1/
+#: (content/https/https-1/contents+en.lrquestion.description)
+msgid "Tor prevents eavesdroppers from learning sites that you visit."
+msgstr ""
+"O Tor te protege de bisbilhoteiros que tentam aprender os sites que você "
+"visita."
+
+#: 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 ""
+"Como o Disconnect é mais um mecanismo de meta busca que permite que os "
+"usuários escolham entre diferentes provedores de pesquisa, ele recorre à "
+"entrega de resultados de pesquisa do Bing que são basicamente inaceitáveis "
+"em termos de qualidade."
+
+#: 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 "* Edite /usr/local/etc/tor/torrc para se assemelhar ao seguinte:"
+
+#: http//localhost/misc/misc-15/
+#: (content/misc/misc-15/contents+en.lrquestion.title)
+msgid "How can I donate to Tor Project?"
+msgstr "Como posso doar ao Projeto Tor?"
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "* Locate your Tor Browser folder or application."
+msgstr "* Localize a pasta ou aplicação do navegador Tor."
+
+#: 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 ""
+"A rede Tor tem mais de um milhão de usuários diariamente, e acima de mais de"
+" 6000 retransmissores, e para encaminhar todo esse tráfego, a carga em cada "
+"servidor às vezes pode provocar latência. "
+
+#: 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 ""
+"A configuração baixa/padrão permite o Javascript, mas os níveis médio e "
+"alto, ambos bloqueiam o Javascript em sites HTTP."
+
+#: 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 "Algo deste tipo poderá até resolver:"
+
+#: http//localhost/tbb/tbb-14/
+#: (content/tbb/tbb-14/contents+en.lrquestion.seo_slug)
+msgid "installing-add-on-extensions-tor-browser"
+msgstr "instalando-add-on-extensões-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 ""
+"Estou tendo problemas para conectar com o Tor e não consigo descobrir o que "
+"está errado."
+
+#: 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 ""
+"Uma ponte é apenas um retransmissor normal com uma configuração levemente "
+"diferente."
+
+#: 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 ""
+"Nosso website foi bloqueado por um censor. Será que o Navegador Tor pode "
+"ajudar as pessoas acessarem nosso website?"
+
+#: 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 ""
+"Por favor, tenha certeza que nenhuma outra instância do Navegador Tor esteja"
+" executando, e que você tenha extraído o Navegador Tor em uma localização "
+"onde o seu usuário tenha as permissões corretas."
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "* Delete the Tor Browser folder or application."
+msgstr "* Delete a pasta ou aplicação do Navegador Tor. "
+
+#: 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 ""
+"É fortemente desencorajado instalar novos add-ons no navegador Tor, pois "
+"eles podem comprometer a sua privacidade e segurança."
+
+#: 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 ""
+"Para usuários que querem ter o Javascript desabilitado por padrão em todos "
+"sites HTTP, nós recomendamos mudar o controle deslizante de segurança do "
+"Navegador Tor (no menu da Cebola do Navegador Tor sob \"Configurações de "
+"Segurança\")."
+
+#: 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 ""
+"Estes serviços fazem uso do domínio de nível superior de uso especial .onion"
+" (em vez de .com, .net, .org, etc) e são acessíveis somente através da rede "
+"Tor."
+
+#: 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 ""
+"Um site que eu estou tentando acessar está bloqueando o acesso via Tor."
+
+#: http//localhost/misc/misc-6/
+#: (content/misc/misc-6/contents+en.lrquestion.title)
+msgid "Does Tor keep logs?"
+msgstr "O Tor mantém registros?"
+
+#: http//localhost/censorship/censorship-7/
+#: (content/censorship/censorship-7/contents+en.lrquestion.seo_slug)
+msgid "what-is-a-bridge"
+msgstr "o que-é-uma-ponte"
+
+#: 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 "Atualmente não existe suporte para execução do Tor no Windows Phone."
+
+#: http//localhost/onionservices/onionservices-2/
+#: (content/onionservices/onionservices-2/contents+en.lrquestion.title)
+msgid "What is a .onion or what are onion services?"
+msgstr "O que é .onion ou serviços onion?"
+
+#: 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 ""
+"Para compartilhar arquivos via Tor, <mark><a "
+"href=\"https://onionshare.org/\">OnionShare</a></mark> é uma boa opção."
+
+#: http//localhost/operators/operators-7/
+#: (content/operators/operators-7/contents+en.lrquestion.description)
+msgid "No."
+msgstr "Não."
+
+#: http//localhost/tbb/tbb-25/
+#: (content/tbb/tbb-25/contents+en.lrquestion.seo_slug)
+msgid "problem-noscript"
+msgstr "problema-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 "configurando-navegador-tor-como-padrão"
+
+#: 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 ""
+"Infelizmente, nós ainda não temos uma versão do Navegador Tor para ChromeOS."
+
+#: 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=\"New release alert\">"
+
+#: 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 ""
+"Os arquivos do meu computador foram bloqueados, e alguém está exigindo que "
+"eu baixe o Navegador Tor para pagar um resgate pelos meus arquivos!"
+
+#: 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 ""
+"Muitos nodos de saída são configurados para bloquear certos tipos de tráfego"
+" de compartilhamento, tal como o do BitTorrent."
+
+#: http//localhost/censorship/censorship-4/
+#: (content/censorship/censorship-4/contents+en.lrquestion.seo_slug)
+msgid "cant-connect-to-tor-browser"
+msgstr "não-pode-conectar-se-ao-navegador-tor "
+
+#: 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 "acessando-sites-somente-disponiveis-atraves-da-rede-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 ""
+"Tor requer uma hora precisa para funcionar: por favor verifique sua hora, "
+"zona de tempo e configurações de data."
+
+#: 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 ""
+"Para maiores detalhes, por favor veja o <mark><a "
+"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-"
+"idea\">artigo em nosso blog sobre esse tema</a></mark>."
+
+#: 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-bloqueado-pela-censura-tor-browser-pode-me-ajudar"
+
+#: 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 ""
+"Confira a lista de todos os <mark><a "
+"href=\"https://www.torproject.org/about/sponsors.html.en\">nossos "
+"patrocinadores</a></mark> e uma série de <mark><a "
+"href=\"https://blog.torproject.org/category/tags/form-990\">artigos em nosso"
+" blog</a></mark> sobre nossos relatórios financeiros."
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "RunAsDaemon 1"
+msgstr "RunAsDaemon 1"
+
+#: 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 ""
+"Se um SOCKS proxy é necessário para a configuração de sua rede, então por "
+"favor tenha certeza se você forneceu seus detalhes de proxy corretamente."
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.seo_slug)
+msgid "using-correct-packages"
+msgstr "utilizando-pacotes-corretos"
+
+#: 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 ""
+"Se você rodar o Navegador Tor e outro navegador ao mesmo tempo, isso não "
+"afetará a performance ou propriedades de privacidade do Tor."
+
+#: 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 ""
+"O Navegador Tor pode, com certeza, ajudar pessoas a acessarem seu site em "
+"lugares onde ele é bloqueado."
+
+#: http//localhost/tbb/tbb-21/
+#: (content/tbb/tbb-21/contents+en.lrquestion.title)
+msgid "How do I view Tor Browser message log?"
+msgstr "Como eu faço para consultar as mensagens de log do Navegador Tor?"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Deutsch (de)"
+msgstr "* Alemão (de)"
+
+#: 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 "como-rodar-um-intermediario-ou-guarda-no-freebsd"
+
+#: http//localhost/misc/misc-15/
+#: (content/misc/misc-15/contents+en.lrquestion.description)
+msgid "Thank you for your support!"
+msgstr "Obrigado por seu apoio!"
+
+#: 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 ""
+"Se você necessita usar outras pontes pode acessá-las em nosso <mark><a "
+"href=\"https://bridges.torproject.org/\">site de Pontes</a></mark>"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Polish (pl)"
+msgstr "* Polonês (pl)"
+
+#: 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 "O Navegador Tor está disponível atualmente para Windows, Linux e 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 ""
+"Para <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>mantém os Tor-powered apps <mark><a "
+"href=\"https://guardianproject.info/apps/orbot/\">Orbot</a></mark>e<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-com-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 ""
+"De qualquer maneira, seu provedor de serviços ou administradores da rede "
+"estão aptos para ver que você está conectando a uma rede Tor, apesar que "
+"eles não sabem o que você está fazendo quando você conecta lá."
+
+#: 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 ""
+"* Tenha certeza que o tor iniciara durante o boot executando o comando "
+"\"sysrc tor_enable=\"YES\" (como root)"
+
+#: 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 ""
+"Pode haver um problema de conexão temporário ou os operadores do site podem "
+"ter permitido que ele ficasse offline sem aviso."
+
+#: http//localhost/misc/misc-10/
+#: (content/misc/misc-10/contents+en.lrquestion.description)
+msgid "No, the Tor Project does not offer hosting services."
+msgstr "Não, o projeto Tor não oferece serviços de hospedagem."
+
+#: 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 ""
+"19.11.2017 00:04:48.200 [NOTICE] Bootstrapped 10%: Finishing handshake with "
+"directory server"
+
+#: 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 ""
+"Você pode ajudar a melhorar a velocidade da rede rodando seu próprio relay "
+"ou encorajando outros a rodarem os seus. "
+
+#: 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 ""
+"Você pode ver uma indicação por escrito quando o Navegador Tor se abre "
+"informando que uma atualização está disponível."
+
+#: 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 ""
+"Você pode atualizar o Navegador Tor assim que uma nova versão for lançada."
+
+#: 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 ""
+"Desculpe, mas atualmente não há nenhum suporte oficial para rodar o Tor no "
+"*BSD."
+
+#: 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 "* Para 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 ""
+"Uma vez copiado o log, você poderá colá-lo em um editor de texto ou cliente "
+"de email."
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "* Run \"pkg install tor\" (as root)."
+msgstr "* Execute \"pkg install tor\" (como root)."
+
+#: http//localhost/misc/misc-15/
+#: (content/misc/misc-15/contents+en.lrquestion.seo_slug)
+msgid "donate-tor-project"
+msgstr "doar-ao-projeto-tor"
+
+#: 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 ""
+"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)"
+
+#: http//localhost/connecting/connecting-1/
+#: (content/connecting/connecting-1/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-wont-connect"
+msgstr "tor-browser-nao-conecta"
+
+#: http//localhost/onionservices/
+#: (content/onionservices/contents+en.lrtopic.seo_slug)
+msgid "onion-services"
+msgstr "serviços-onion"
+
+#: http//localhost/onionservices/
+#: (content/onionservices/contents+en.lrtopic.title)
+msgid "Onion Services"
+msgstr "Serviços Onion"
+
+#: 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 ""
+"Se as forças de segurança ficar interessada no tráfego do seu retransmissor "
+"de saída, é possível que policiais apreendam seu computador."
+
+#: 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 ""
+"Veja nossa página em <mark><a href=\"https://www.torproject.org/docs"
+"/pluggable-transports.html.en\">pluggable transports</a></mark> para mais "
+"informações."
+
+#: http//localhost/tormobile/tormobile-2/
+#: (content/tormobile/tormobile-2/contents+en.lrquestion.title)
+msgid "Who is the Guardian Project?"
+msgstr "O que é o 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 ""
+"Se você ainda está inabilitado de se conectar ao serviço onion, por favor "
+"tente de novamente mais tarde. "
+
+#: 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 ""
+"No entanto, a Apple exige que os navegadores para iOS utilizem algo chamado "
+"Webkit, o que inviabiliza os navegadores onion de possuir as mesmas "
+"proteções de privacidade que o navegador Tor."
+
+#: http//localhost/tbb/tbb-13/
+#: (content/tbb/tbb-13/contents+en.lrquestion.description)
+msgid "They need to be configured separately to use Tor."
+msgstr "Eles precisam ser configurados separadamente para utilizar o Tor."
+
+#: http//localhost/tbb/ (content/tbb/contents+en.lrtopic.seo_slug)
+msgid "tor-browser"
+msgstr "tor-browser"
+
+#: 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 "por que-tor-está-utilizando-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 ""
+"Você deve ver um desses comuns logs de erros (veja as seguintes linhas no "
+"seu log do Tor):"
+
+#: 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 "diz-qual-website-é-visitado-enquanto-está-usando-navegador-tor"
+
+#: 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 ""
+"Na maioria das vezes, apenas fazendo o download do<mark><a "
+"href=\"https://www.torproject.org/download/download-easy.html.en\">Navegador"
+" Tor</a></mark> e em seguida usando-o para se conectar ao site bloqueado "
+"tornará o acesso possível. "
+
+#: 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 ""
+"Nós achamos detestável o fato de que algumas pessoas usam o Tor para fazer "
+"coisas horríveis, mas nada podemos fazer para livrar-nos deles sem também "
+"minar a segurança de ativistas de direitos, jornalistas, sobreviventes de "
+"abusos, entre outras pessoas que usam o Tor para fazer coisas boas."
+
+#: http//localhost/operators/ (content/operators/contents+en.lrtopic.seo_slug)
+msgid "operators"
+msgstr "operadores"
+
+#: 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 "É seguro rodar o Navegador Tor e outro navegador ao mesmo tempo?"
+
+#: 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 ""
+"Se você não consegue baixar o Tor através do nosso <mark><a "
+"href=\"https://www.torproject.org\">site</a></mark>, você pode obter uma "
+"cópia do Tor através do seu GetTor."
+
+#: 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 ""
+"Nós configuramos NoScript para permitir JavaScript por padrão no Navegador "
+"Tor porque muitos websites não vão funcionar com o JavaScript desabilitado."
+
+#: 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 ""
+"Em lugares onde há censura forte, temos várias opções disponíveis para "
+"contorná-la, incluindo <mark><a href=\"https://www.torproject.org/docs"
+"/pluggable-transports.html.en\">transportes plugáveis</a></mark>"
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "* Run \"service tor start\" (as root)"
+msgstr "* Execute \"service tor start\" (como 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 "* Execute \"apt-get install tor\" (como 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 ""
+"2017-10-29 09:23:47.900 [NOTICE] Bootstrapped 10%: Finishing handshake with "
+"directory server"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Vietnamese (vi)"
+msgstr "* Vietnamita (vi)"
+
+#: http//localhost/tbb/tbb-36/
+#: (content/tbb/tbb-36/contents+en.lrquestion.seo_slug)
+msgid "run-multible-instances-of-tor-browser"
+msgstr "executar-múltiplas-instâncias-do-navegador-tor"
+
+#: 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 "tendo-problemas-conectando-ao-tor"
+
+#: http//localhost/misc/misc-4/
+#: (content/misc/misc-4/contents+en.lrquestion.title)
+msgid "Can I use Tor with BitTorrent?"
+msgstr "Eu posso Tor e BitTorrent juntos?"
+
+#: 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 ""
+"Tor é financiado por diversos patrocinadores diferentes, incluindo agências "
+"federais dos Estados Unidos da América, fundações privadas e doadores "
+"individuais."
+
+#: 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 ""
+"Algumas pontes são padrão no Navegador Tor e você pode usá-las escolhendo "
+"\"configure\" (e seguindo os passos) na janela do Tor Launcher que se abre "
+"quando você inicia o Navegador Tor pela primeira vez. "
+
+#: 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 ""
+"Se você acredita que esse é um problema do Navegador Tor, por favor relate o"
+" erro em nosso <mark><a href=\"https://trac.torproject.org/\">bug "
+"tracker</a></mark>."
+
+#: http//localhost/tbb/tbb-18/
+#: (content/tbb/tbb-18/contents+en.lrquestion.title)
+msgid "Is there support for *BSD?"
+msgstr "Há suporte para *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 ""
+"Eu não consigo me conectar ao Navegador Tor, minha rede está censurada?"
+
+#: 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 ""
+"Atualmente não existe método de suporte para configurar o navegador TOR como"
+" seu navegador padrão."
+
+#: http//localhost/tbb/tbb-39/
+#: (content/tbb/tbb-39/contents+en.lrquestion.description)
+msgid "Set your security to \"Standard\"."
+msgstr "Definir sua segurança como \"Padrão\"."
+
+#: 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 ""
+"O local padrão no Windows é o Desktop; no macOS é a pasta Aplicativos (no "
+"macOS, você deve movê-lo para a pasta Aplicativos quando concluir o processo"
+" de instalação)."
+
+#: http//localhost/tbb/tbb-22/
+#: (content/tbb/tbb-22/contents+en.lrquestion.seo_slug)
+msgid "make-tor-faster"
+msgstr "Faça-o-tor-mais-rápido"
+
+#: http//localhost/misc/misc-8/
+#: (content/misc/misc-8/contents+en.lrquestion.title)
+msgid "Can I use the Tor logo in my product?"
+msgstr "Posso usar a logo do Tor em meu produto?"
+
+#: 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 ""
+"Se você vê linhas como essa em seu log do Tor, isso significa que o Tor "
+"falhou em completar o TLS handshake com o directory authorities."
+
+#: 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 ""
+"Para mais informações sobre pontes veja o <mark><a href=\"https://tb-"
+"manual.torproject.org/en-US/bridges.html\">manual do Navegador "
+"Tor</a></mark>"
+
+#: 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 ""
+"Nós não consideramos o Flash um software seguro para uso em qualquer "
+"navegador — é um programa muito inseguro que pode facilmente comprometer sua"
+" privacidade ou infectá-lo com malware."
+
+#: http//localhost/onionservices/onionservices-1/
+#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
+msgid "You can access these websites by using Tor Browser."
+msgstr "Você pode acessar esses sites usando o Tor."
+
+#: http//localhost/tormobile/tormobile-1/
+#: (content/tormobile/tormobile-1/contents+en.lrquestion.title)
+msgid "Can I run Tor on an Android device?"
+msgstr "Eu posso executar Tor em um aparelho Android?"
+
+#: 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 "#RelayBandwidthBurst 100 MBytes"
+
+#: 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 ""
+"Considere se você não gostaria de mudar para a <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/doc/ReducedExitPolicy\">Política"
+" reduzida de saída</a></mark>."
+
+#: 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 "baixar-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 ""
+"Eu posso ainda usar outro navegador, como Chrome ou Firefox, quando estou "
+"usando Navegador Tor?"
+
+#: 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 "Como eu posso compartilhar arquivos de maneira anônima usando Tor?"
+
+#: 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 "##### Log de erro comum: #4 Clock skew"
+
+#: 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 ""
+"Ambas opções estão localizadas no menu, porém você também pode acessar a "
+"opção \"Novo Circuito\" em cima do menu de informações do site, na barra da "
+"URL."
+
+#: 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 "Utilizar pontes provavelmente irá corrigir isso."
+
+#: 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 them in the family"
+msgstr ""
+"## Se você controla múltiplos retransmissores, incluam eles na família."
+
+#: 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 ""
+"Você pode ler sobre esse tema em nossa <mark><a "
+"href=\"https://www.torproject.org/docs/trademark-faq.html\">Página de FAQ "
+"sobre o registro da marca</a></mark>."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* فارسى (fa)"
+msgstr "* Farsi (fa)"
+
+#: http//localhost/tbb/tbb-13/
+#: (content/tbb/tbb-13/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-protecting-other-apps"
+msgstr "tor-browser-protegendo-outros-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 ""
+"Usar o Navegador Tor às vezes pode ser mais lento do que outros navegadores."
+
+#: 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 ""
+"* Certifique-se que seu relógio, data e fuso horário estão configurados "
+"corretamente. Instale o pacote ntp ou openntpd (ou similar) para sejam "
+"mantidos corretos."
+
+#: 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 "Em quais plataformas o Navegador Tor é disponível?"
+
+#: http//localhost/tormobile/tormobile-1/
+#: (content/tormobile/tormobile-1/contents+en.lrquestion.description)
+msgid "Tor on Android is provided by The Guardian Project."
+msgstr "Tor em Android é fornecido pelo projeto O Guardião."
+
+#: 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 ""
+"Se você está inabilitado de se conectar a um serviço onion, por favor veja "
+"<a href=\"/#onionservices-3\"> Eu não consigo acessar X.onion </a> "
+
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.title)
+msgid "How do I run an exit relay on Debian?"
+msgstr "Como eu executo um relay de saída no Debian ?"
+
+#: 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 ""
+"Vários países, incluindo China e Irã, encontraram meios de detectar e "
+"bloquear conexões para pontes Tor."
+
+#: 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 ""
+"Então cole o log do Tor dentro de um arquivo de texto ou outro documento."
+
+#: 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 ""
+"Nós, de fato, efetuamos algumas mensurações seguras sobre o funcionamento da"
+" rede, que você pode conferir na página de <mark><a "
+"href=\"https://metrics.torproject.org/\">Métricas do Tor</a></mark>."
+
+#: 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 ""
+"Por favor veja <mark><a href=\"https://www.eff.org/https-"
+"everywhere/faq\">HTTPS Everywhere</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 "alguem-pede-para-baixar-tor-browser-para-desbloquear-meus-arquivos"
+
+#: http//localhost/tormobile/tormobile-2/
+#: (content/tormobile/tormobile-2/contents+en.lrquestion.seo_slug)
+msgid "who-is-the-guardian-project"
+msgstr "o-que-é-o-projeto-guardião"
+
+#: 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 ""
+"A maioria dos usuários desistiriam totalmente do Tor se nós desabilitássemos"
+" o Javascript por padrão porque isso causaria muitos problemas para eles."
+
+#: 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 ""
+"Se um SOCKS proxy não é necessário, ou você não tem certeza, por favor tente"
+" conectar a rede Tor sem um SOCKS proxy."
+
+#: 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 "Quando você usa Tor, ninguém pode ver os sites que você visita."
+
+#: 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 ""
+"Navegador Tor frequentemente faz sua conexão parecer que está vindo de "
+"diferentes partes do mundo."
+
+#: 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 ""
+"Essa opção é útil se o retransmissor de saída que você está usando está "
+"impossibilitado para conectar ao website que você necessita, ou não está "
+"carregando ele corretamente."
+
+#: 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 ""
+"Certifique-se que seu relógio, data e fuso horário estão configurados "
+"corretamente."
+
+#: http//localhost/tormessenger/tormessenger-1/
+#: (content/tormessenger/tormessenger-1/contents+en.lrquestion.title)
+msgid "Does Tor Project make an application for private chat?"
+msgstr "O Projeto Tor oferece um aplicativo privado para chat?"
+
+#: 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 ""
+"Mais informações podem ser encontradas nas páginas <mark><a "
+"href=\"https://guardianproject.info/apps/orbot/\">Orbot</a></mark> e "
+"<mark><a href=\"https://guardianproject.info/apps/orfox/\">Orfox</a></mark>."
+
+#: 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 ""
+"Se o Navegador Tor já está aberto, clique no ícone do Torbutton (a pequena "
+"cebola verde no canto superior esquerdo da tela), então clique em \"Open "
+"Network Settings\", e então em \"Copy Tor Log To Clipboard\". "
+
+#: 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 ""
+"Nós recomendamos fortemente contra a utilização do Tor em qualquer navegador"
+" que não seja o navegador Tor."
+
+#: 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 ""
+"Você pode encontrar informações mais detalhadas sobre Tor + VPN na <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">nossa "
+"wiki</a></mark>."
+
+#: 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 ""
+"<h4 class=\"card-title\">Esta visualização mostra que informações são "
+"visíveis para bisbilhoteiros com e sem a utilização do navegador Tor e "
+"criptografia HTTPS.</h4>"
+
+#: 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 ""
+"BitTorrent, especificamente, <mark><a href=\"https://blog.torproject.org"
+"/bittorrent-over-tor-isnt-good-idea\">não é anônimo quando quando conecta-se"
+" via Tor</a></mark>."
+
+#: 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 ""
+"Selecione um diretório de que você consiga lembrar-se facilmente e, quando o"
+" download estiver finalizado, você verá uma pasta chamada \"Tor Browser\" "
+"nesse local."
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.title)
+msgid "How do I update Tor Browser?"
+msgstr "Como eu atualizo o Navegador Tor?"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "This should fix the issues you're experiencing."
+msgstr "Isto deve resolver os problemas que você está encontrando."
+
+#: 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 ""
+"Veja sua entrada de log em /var/log/syslog algo como \"Self-testing "
+"indicates your ORPort is reachable from the outside. Excellent.\""
+
+#: 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 ""
+"Como eu executo um retransmissor do meio ou guarda no FreeBSD ou "
+"HardenedBSD?"
+
+#: http//localhost/tbb/tbb-25/
+#: (content/tbb/tbb-25/contents+en.lrquestion.title)
+msgid "I'm having a problem with NoScript."
+msgstr "Eu estou tendo um problema com o NoScript."
+
+#: http//localhost/tbb/tbb-34/
+#: (content/tbb/tbb-34/contents+en.lrquestion.title)
+msgid "Why does Tor Browser ship with Javascript enabled?"
+msgstr "Por que o Navegador Tor vem com o Javascript habilitado?"
+
+#: http//localhost/misc/misc-3/
+#: (content/misc/misc-3/contents+en.lrquestion.seo_slug)
+msgid "tor-funding"
+msgstr "financiamento-tor"
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.description)
+msgid "Tor browser will install the updates."
+msgstr "O navegador TOR irá instalar as atualizações."
+
+#: 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 ""
+"* Não use os pacotes dos repositórios do Ubuntu. Eles não são atualizados de"
+" maneira confiável. Se você usar eles, você perderá importante estabilidade "
+"e atualizações na segurança."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Português (pt-BR)"
+msgstr "* Português (pt-BR)"
+
+#: 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 ""
+"Navegador Tor tem duas maneiras de mudar seu circuito de transmissão - "
+"\"Nova Identidade\" e \"Novo Circuito Tor para esse Site\"."
+
+#: 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 ""
+"Caso você não consiga encontrá-lo em uma dessas pastas, baixe-o novamente e "
+"preste atenção à caixa de diálogo que pede a seleção de um diretório para "
+"download."
+
+#: http//localhost/operators/operators-7/
+#: (content/operators/operators-7/contents+en.lrquestion.seo_slug)
+msgid "run-exit-from-home"
+msgstr "operar-saida-de-casa"
+
+#: http//localhost/operators/operators-7/
+#: (content/operators/operators-7/contents+en.lrquestion.title)
+msgid "Should I run an exit relay from home?"
+msgstr "Eu deveria rodar um retransmissor de saída a partir de casa?"
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.seo_slug)
+msgid "updating-tor-browser"
+msgstr "atualizando-navegador-tor"
+
+#: 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 ""
+"* Revise nossos <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorExitGuidelines\">"
+" Diretrizes de relays de saída</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 ""
+"Usando Tor com outro navegador pode deixar você vulnerável sem as proteções "
+"de privacidade do Navegador Tor."
+
+#: http//localhost/tbb/tbb-17/
+#: (content/tbb/tbb-17/contents+en.lrquestion.seo_slug)
+msgid "run-tor-browser-and-different-browser"
+msgstr "execute-navegador-tor-e-navegador-diferente"
+
+#: 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 ""
+"2017-10-29 09:23:40.800 [NOTICE] Opening Socks listener on 127.0.0.1:9150"
+
+#: 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 ""
+"Por favor tenha uma posição forte em favor da privacidade digital e "
+"liberdade na internet, e permita aos usuários do Tor acessarem xyz.com. "
+"Obrigado.\""
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.seo_slug)
+msgid "how-do-i-run-a-obfs4-bridge-debian"
+msgstr "como-rodar-o-obfs4-ponte-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 "* Edite /etc/tor/torrc para se assemelhar a:"
+
+#: 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 ""
+"Estou tendo problemas para usar as features no Facebook, Twitter e alguns "
+"outros websites quando estou usando o Tor Browser."
+
+#: http//localhost/misc/misc-1/
+#: (content/misc/misc-1/contents+en.lrquestion.seo_slug)
+msgid "tracing-tor-user"
+msgstr "rastreamento-de-usuarios-tor"
+
+#: 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-nao-conecta-sem-censura"
+
+#: 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 ""
+"Se você vê linhas como essas no seu registro Tor, isso significa que você "
+"está falhando ao conectar a um SOCKS proxy."
+
+#: 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 ""
+"A melhor coisa a fazer nesses casos é contactar os donos do website, e "
+"informar eles que seus CAPTCHAs estão impedindo usuários como você de usar "
+"seus serviços."
+
+#: 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 ""
+"Por que meu Navegador Tor diz algo sobre o Firefox não estar funcionando?"
+
+#: http//localhost/tbb/tbb-24/
+#: (content/tbb/tbb-24/contents+en.lrquestion.title)
+msgid "I'm having a problem with DuckDuckGo."
+msgstr "Eu estou tendo um problema com o 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 "Posso utilizar o Tor com um browser que não seja o Tor Browser?"
+
+#: 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 ""
+"* Veja o log de entrada em /var/log/syslog tal como \"Self-testing "
+"indicates your ORPort is reachable from the outside. Excellent.\""
+
+#: 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 ""
+"Dito isto, o Tor é muito mais rápido do que costumava ser e talvez você não "
+"note nenhuma diferença na velocidade em comparação a outros browsers."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Türkçe (tr)"
+msgstr "* Turco (tr)"
+
+#: 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 ""
+"11/1/2017 21:11:44 PM.500 [NOTICE] Bootstrapped 85%: Finishing handshake "
+"with first hop"
+
+#: http//localhost/connecting/
+#: (content/connecting/contents+en.lrtopic.seo_slug)
+msgid "connecting-to-tor"
+msgstr "conectando-ao-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=\"New release alert\">"
+
+#: 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 ""
+"Mas, por favor, entenda que nosso software é usado todos os dias com uma "
+"ampla variedade de objetivos por ativistas de direitos humanos, jornalistas,"
+" sobreviventes de violência doméstica, denunciantes, oficiais da lei, e "
+"muitos outros. Infelizmente, a proteção oferecida pelo nosso software a "
+"essas pessoas também pode ser objeto de abusos por criminosos e "
+"desenvolvedores de malware."
+
+#: http//localhost/misc/misc-8/
+#: (content/misc/misc-8/contents+en.lrquestion.seo_slug)
+msgid "using-tor-logo"
+msgstr "uso-do-logotipo-tor"
+
+#: http//localhost/tbb/tbb-35/
+#: (content/tbb/tbb-35/contents+en.lrquestion.seo_slug)
+msgid "get-rid-of-captchas"
+msgstr "como-se-livrar-dos-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 ""
+"O resto de seu circuito muda a cada novo site que você visita, e em conjunto"
+" esses relays proporcionam todas as proteções de privacidade do Tor. "
+
+#: http//localhost/tbb/tbb-2/
+#: (content/tbb/tbb-2/contents+en.lrquestion.seo_slug)
+msgid "first-address-relay-circuit"
+msgstr "primeiro-endereço-circuito-transmissão"
+
+#: 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 ""
+"No Linux, não existe uma localização padrão, de qualquer modo o diretório "
+"será nomeado \"tor-browser_en-US\" se você está rodando o Navegador do Tor "
+"em Inglês."
+
+#: http//localhost/misc/ (content/misc/contents+en.lrtopic.seo_slug)
+msgid "misc"
+msgstr "misc"
+
+#: 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 ""
+"O navegador Tor é feito utilizando-se o <mark><a "
+"href=\"https://www.mozilla.org/en-US/firefox/organizations/\">Firefox ESR "
+"</a></mark>, então erros relacionados ao Firefox podem ocorrer."
+
+#: 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 ""
+"Se você gostaria de ser tornar um relay, por favor veja nosso <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Guia "
+"Tor Relay </a></mark>"
+
+#: http//localhost/https/https-1/
+#: (content/https/https-1/contents+en.lrquestion.seo_slug)
+msgid "can-eavesdroppers-see-information-i-share"
+msgstr "bisbilhoteiros-podem-ver-informações-que-eu-compartilho"
+
+#: http//localhost/tbb/tbb-32/
+#: (content/tbb/tbb-32/contents+en.lrquestion.title)
+msgid "Can I set Tor Browser as my default browser?"
+msgstr "Eu posso definir o Navegador Tor como meu navegador padrão?"
+
+#: 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 ""
+"Por favor tenha certeza que seu relógio está configurado precisamente, "
+"incluindo a zona de tempo correta. Então reinicie o Tor."
+
+#: 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 ""
+"Se seu problema não estiver listado, por favor escreva um <mark><a "
+"href=\"https://trac.torproject.org\">bug report</a></mark> sobre o que você "
+"está experienciando."
+
+#: 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 "Sentimos muito, mas você foi infectado com malware."
+
+#: 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 ""
+"O meio com maior sucesso em fazer com que websites desbloqueie usuários Tor,"
+" é os usuários entrando em contato direto com os administradores do site."
+
+#: 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 "O Navegador Tor utiliza um circuito diferente para cada site?"
+
+#: 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 ""
+"Observe que alguns clientes de antivírus, como o Kaspersky, também podem "
+"estar bloqueando o Tor no nível do firewall."
+
+#: http//localhost/gettor/gettor-3/
+#: (content/gettor/gettor-3/contents+en.lrquestion.title)
+msgid "To use GetTor via Twitter."
+msgstr "Usar GetTor via Twitter."
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "* Run \"service tor reload\" (as root)."
+msgstr "* Execute \"service tor reload\" (como 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 ""
+"O Navegador Tor impede que outras pessoas saibam quais sites você visita."
+
+#: 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 ""
+"Caso o resultado desejado seja apenas a possibilidade de acesso a recursos "
+"somente disponíveis em um determinado país, você deve avaliar a "
+"possibilidade de usar uma VPN em vez do 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-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 MBytes"
+
+#: 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 ""
+"Muito trabalho está sendo feito para fazer o Navegador Tor, incluindo o uso "
+"de correções extras para aumentar a privacidade e segurança."
+
+#: 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 ""
+"Se você está inabilitado de se conectar a um serviço onion, por favor veja "
+"<a href=\"#onionservices-3\"> Eu não consigo acessar X.onion </a> "
+
+#: 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 ""
+"Isso significa que seu computador não vai ser usado para rotear trafégo para"
+" outros."
+
+#: 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 ""
+"* Depois que seu retransmissor conecta na rede, ele vai tentar determinar se"
+" as portas que você configurou são alcançáveis do lado de fora."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* English (en-US)"
+msgstr "* Inglês (en-US)"
+
+#: http//localhost/tbb/tbb-1/
+#: (content/tbb/tbb-1/contents+en.lrquestion.seo_slug)
+msgid "most-common-issues-latest-stable-tor-browser"
+msgstr "problemas-mais-comuns-ultima-versao-estavel-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 ""
+"Estamos sempre em busca de maior diversidade em nossas fontes de "
+"financiamento, especialmente por parte de fundações e indivíduos;"
+
+#: 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 "###### Common log error #1: Proxy connection failure"
+
+#: 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 ""
+"Nós sentimos que uma conversa franca sobre nossos financiadores e nosso "
+"modelo de financiamento é a melhor forma de manter a confiança de nossa "
+"comunidade."
+
+#: http//localhost/tbb/tbb-9/
+#: (content/tbb/tbb-9/contents+en.lrquestion.seo_slug)
+msgid "using-tor-with-a-browser-besides-tor-browser"
+msgstr "sando-tor-com-uma-navegador-alem-do-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 ""
+"Infelizmente, não existe suporte para tornar o navegador Tor seu navegador "
+"padrão."
+
+#: 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 ""
+"O Projeto Tor não criou esse malware. Os desenvolvedores de malware pedem "
+"que você baixe o Tor Browser, supostamente para contactá-los e possibilitar "
+"o pagamento anônimo do resgate que exigem de você."
+
+#: 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 ""
+"Quando eu uso o Navegador Tor, é possível que alguém saiba quais sites eu "
+"visito?"
+
+#: 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 ""
+"Selecionado isso todas as abas e janelas vão fechar, toda informação privada"
+" como cookies e histórico de navegação vão ser apagadas, e vai ser usado "
+"novos circuitos Tor para todas conexões."
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.description)
+msgid "##### New Identity"
+msgstr "##### Nova Identidade"
+
+#: 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 "O uso do Navegador Tor protege outros programas no meu computador?"
+
+#: 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 ""
+"É um relay rápido e confiável que se mantém como o primeiro em seu circuito "
+"por 2-3 meses de forma a proteger contra um ataque conhecido de quebra de "
+"anonimato."
+
+#: http//localhost/tbb/tbb-42/
+#: (content/tbb/tbb-42/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-firefox-not-working-error"
+msgstr "navegador-tor-firefox-nao-funciona-erro"
+
+#: http//localhost/tbb/tbb-31/
+#: (content/tbb/tbb-31/contents+en.lrquestion.seo_slug)
+msgid "which-platform-tor-browser-available"
+msgstr "que-plataforma-o-navegador-tor-está-disponível"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* TorBrowser"
+msgstr "* Tor Browser"
+
+#: 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 "#Endereço noname.example.com"
+
+#: 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 ""
+"Sempre que lançamos uma nova versão estável do Tor Browser, escrevemos uma "
+"postagem no blog que detalha seus novos recursos e problemas conhecidos."
+
+#: 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 ""
+"As mesmas proteções que impedem as pessoas más de quebrar o anonimato do Tor"
+" também impedem que nós rastreemos usuários."
+
+#: 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 ""
+"Se você está tendo problemas para conectar, por favor selecione a opção "
+"\"copiar registro do Tor para área de transferência\"."
+
+#: 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> é o buscador"
+" padrão no navegador Tor."
+
+#: 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 ""
+"2017-10-29 09:23:47.900 [NOTICE] Bootstrapped 5%: Connecting to directory "
+"server"
+
+#: 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 ""
+"Eu sei que certos websites são acessíveis somente usando Tor. O que são "
+"esses site e como eu posso acessá-los?"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* For Windows"
+msgstr "* Para Windows"
+
+#: http//localhost/tbb/tbb-26/
+#: (content/tbb/tbb-26/contents+en.lrquestion.title)
+msgid "I'm having a problem with HTTPS Everywhere."
+msgstr "Eu estou tendo um problema com o HTTPS Everywhere."
+
+#: http//localhost/tbb/tbb-39/
+#: (content/tbb/tbb-39/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-issues-facebook-twitter-websites"
+msgstr "navegador-tor-problemas-facebook-twitter-websites"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Korean (ko)"
+msgstr "* Coreano (ko)"
+
+#: 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 ""
+"Por favor veja o <mark><a href=\"https://duck.co/help\">portal de suporte do"
+" DuckDuckGo</a></mark>."
+
+#: 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 ""
+"2017-10-29 09:24:08.900 [WARN] Proxy Client: unable to connect "
+"toxx..xxx..xxx.xx:xxxxx (\"general SOCKS server failure\")"
+
+#: http//localhost/misc/misc-10/
+#: (content/misc/misc-10/contents+en.lrquestion.seo_slug)
+msgid "does-tor-project-offer-hosting"
+msgstr "o-projeto-tor-oferece-hospedagem"
+
+#: 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 ""
+"Bloqueando usuários do Tor, você está provavelmente bloqueando pessoas em "
+"países repressivos que querem usar uma internet livre, jornalistas e "
+"pesquisadores que querem proteger eles mesmos das descobertas, delatores, "
+"ativistas, e qualquer pessoa que opte por sair da vigilância invasiva de "
+"terceiros."
+
+#: 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 ""
+"Existe uma maneira de alterar o endereço IP que o Navegador Tor atribui a "
+"mim em um site específico?"
+
+#: 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 ""
+"13-11-17 19:53:49.300 [WARN] 1 connections died in state connect()ing with "
+"SSL state (No SSL object)"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Italiano (it)"
+msgstr "* Italiano (it)"
+
+#: 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 ""
+"Neste momento, o comprimento do caminho é codificado em 3 mais o número de "
+"nodos em seu caminho que sejam sensíveis."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* العربية (ar)"
+msgstr "* Árabe (ar)"
+
+#: 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 ""
+"Tor não mantém qualquer tipo de registro que permita a identificação de um "
+"usuário específico."
+
+#: 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 "## Defina suas informações de contato"
+
+#: 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 ""
+"Por favor, confira nossa <mark><a "
+"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">página de "
+"voluntariado</a></mark> e descubra como participar!"
+
+#: 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 ""
+"Quando eu uso Tor, alguém que me espie pode ver as informações que eu "
+"compartilho com websites, como aquelas de logins ou de formulários que eu "
+"preencho?"
+
+#: 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 ""
+"Selecionando isso a aba atualmente-ativa ou janela vai ser recarregada sobre"
+" o novo circuito Tor."
+
+#: 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 ""
+"Não há nada que os desenvolvedores do Tor possam fazer para rastrear "
+"usuários da rede Tor."
+
+#: 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 ""
+"Por que o navegador TOR é projetado a partir do Firefox e não de outro "
+"navegador ?"
+
+#: http//localhost/tbb/tbb-35/
+#: (content/tbb/tbb-35/contents+en.lrquestion.title)
+msgid "Can you get rid of all the captchas?"
+msgstr "É possível se livrar de todos os captchas?"
+
+#: 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 ""
+"Se este é o seu primeiro contato com o Tor Browser, nós compreendemos que "
+"você possa pensar que somos pessoas más que alimentam o poder de pessoas "
+"ainda piores."
+
+#: 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 ""
+"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."
+
+#: 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 ""
+"Tenha um endereço de IP separado de seu retransmissor de saída, e não "
+"roteie seu próprio tráfego através dele."
+
+#: 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 "13-11-17 19:53:49.300 [WARN] 10 conexões falharam:"
+
+#: http//localhost/tormobile/tormobile-5/
+#: (content/tormobile/tormobile-5/contents+en.lrquestion.title)
+msgid "When is Tor Browser for Android being released?"
+msgstr "Quando o Tor Browser para Android será lançado?"
+
+#: 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 "como-operar-um-relay-intermediario-ou-guarda"
+
+#: 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 ""
+"Você encontrará maiores informações sobre doações em nossa <mark><a "
+"href=\"https://donate.torproject.org/donor-faq\">FAQ para os "
+"doadores</a></mark>."
+
+#: http//localhost/tbb/tbb-40/
+#: (content/tbb/tbb-40/contents+en.lrquestion.seo_slug)
+msgid "different-circuit-each-website"
+msgstr "diferentes-circuitos-para-cada-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 ""
+"Uma grande parte dos recursos oferecidos anteriormente pelo Vidalia foram "
+"agora integrados ao próprio Tor Browser."
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.seo_slug)
+msgid "antivirus-blocking-tor"
+msgstr "antivirus-bloqueia-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 ""
+"Veja <mark><a href=\"#operators-6\">Como operar uma ponte</a></mark>para "
+"mais instruções."
+
+#: 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 "mudar-o-numero-de-saltos-usados-pelo-Tor"
+
+#: http//localhost/misc/misc-7/
+#: (content/misc/misc-7/contents+en.lrquestion.description)
+msgid "No, we don't provide any online services."
+msgstr "Não, nós não provemos quaisquer serviços online."
+
+#: 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 ""
+"11/1/2017 21:11:45 PM.300 [WARN] Failed to find node for hop 0 of our path. "
+"Discarding this circuit."
+
+#: 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 ""
+"11/1/2017 21:11:43 PM.500 [NOTICE] Opening Socks listener on 127.0.0.1:9150"
+
+#: 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 ""
+"Ao acessar um site que usa um serviço .onion, o Navegador Tor mostrará na "
+"barra de URL um ícone de uma pequena cebola verde exibindo o estado de sua "
+"conexão: seguro e usando um serviço .onion."
+
+#: http//localhost/misc/misc-9/
+#: (content/misc/misc-9/contents+en.lrquestion.description)
+msgid "Vidalia is no longer maintained or supported."
+msgstr "O Vidalia não está mais recebendo manutenção ou suporte."
+
+#: 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 ""
+"GetTor é um serviço que automaticamente responde mensagens com endereços "
+"para a última versão do Navegador Tor, hospedado em diversas localizações "
+"que são menos propensas de serem censuradas, como Dropbox, Google Drive, e "
+"GitHub."
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "Next, exclude the following processes:"
+msgstr "Em seguida, exclua os seguintes processos:"
+
+#: 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 ""
+"A configuração padrão no instalador do Windows também cria um atalho para "
+"você no seu Desktop, mas esteja ciente de que você pode acidentalmente ter "
+"desativado a opção para criar um atalho."
+
+#: http//localhost/gettor/gettor-2/
+#: (content/gettor/gettor-2/contents+en.lrquestion.title)
+msgid "To use GetTor via email."
+msgstr "Usar GetTor via e-mail."
+
+#: 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 ""
+"Quais são os problemas mais comuns na última versão estável do Navegador "
+"Tor?"
+
+#: 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 ""
+"Não. Depois de onze lançamentos beta, nós descontinuaremos o suporte ao <a "
+"href=\"https://blog.torproject.org/sunsetting-tor-messenger\">Tor "
+"Messenger</a>."
+
+#: 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 ""
+"Se você ver linhas como essas em seu log Tor, isto significa que o horário "
+"do seu sistema está incorreto."
+
+#: 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 ""
+"Nós ainda acreditamos na utilidade do Tor para se utilizando como aplicativo"
+" de mensagens, mas não temos recursos para fazer isso agora."
+
+#: http//localhost/gettor/gettor-2/
+#: (content/gettor/gettor-2/contents+en.lrquestion.seo_slug)
+msgid "to-use-gettor-via-email"
+msgstr "para-usar-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 "* Execute \"apt-get install tor obfs4proxy\" (como root)."
+
+#: http//localhost/censorship/censorship-6/
+#: (content/censorship/censorship-6/contents+en.lrquestion.seo_slug)
+msgid "is-my-network-censored"
+msgstr "minha-rede-esta-censurada"
+
+#: 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 ""
+"Nós recomendamos para iOS o aplicativo Onion Browser, que é open source, usa"
+" roteamento Tor, e é desenvolvido por alguém que participa de perto com o "
+"Tor Project"
+
+#: http//localhost/tbb/tbb-15/
+#: (content/tbb/tbb-15/contents+en.lrquestion.title)
+msgid "Can I download Tor Browser for ChromeOS?"
+msgstr "Eu posso fazer download do Navegador Tor para o ChromeOS?"
+
+#: http//localhost/tbb/tbb-2/
+#: (content/tbb/tbb-2/contents+en.lrquestion.description)
+msgid "That is normal Tor behavior."
+msgstr "Isso é o comportamento normal do Tor."
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "Removing Tor Browser from your system is simple:"
+msgstr "Remover o Navegador Tor do seu sistema é simples:"
+
+#: http//localhost/tormobile/tormobile-5/
+#: (content/tormobile/tormobile-5/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-for-android"
+msgstr "navegador-tor-para-android"
+
+#: http//localhost/tbb/tbb-11/
+#: (content/tbb/tbb-11/contents+en.lrquestion.seo_slug)
+msgid "cannot-find-tor-on-windows"
+msgstr "nao-consigo-achar-tor-no-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 ""
+"O Navegador Tor vai pedir que você atualize o software uma vez que uma nova "
+"versão esteja disponível. "
+
+#: 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 ""
+"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 ""
+"O Navegador Tor já vem instalado com dois add-ons — <mark><a "
+"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> e "
+"<mark><a href=\"https://noscript.net/\">NoScript</a></mark> — e adicionar "
+"qualquer outra coisa poderia comprometer seu anonimato."
+
+#: 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 ""
+"O Navegador Tor trabalha dura para isolar ele mesmo do restante do sistema, "
+"e os passos para fazer ele o navegador padrão são incertos."
+
+#: 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 ""
+"Veja sua entrada de log em /var/log/syslog algo como \"Self-testing "
+"indicates your ORPort is reachable from the outside. Excellent.\""
+
+#: 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 ""
+"Contudo, o envio de informações não criptografadas pela internet utilizando "
+"HTTP ainda pode ser interceptada por operadores de relay de saída ou alguém "
+"observando o tráfego entre o seu relay de saída e o seu site de destino."
+
+#: 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 ""
+"11/1/2017 21:11:44 PM.300 [NOTICE] Bootstrapped 80%: Connecting to the Tor "
+"network"
+
+#: 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 ""
+"Os serviços onion também oferecem confiabilidade para chats e "
+"compartilhamento de arquivos livres de metadados, interações mais segura "
+"para jornalistas e suas fontes usando recursos como o <mark><a "
+"href=\"https://securedrop.org/\">SecureDrop</a></mark> ou o <mark><a "
+"href=\"https://onionshare.org/\">OnionShare</a></mark>, atualizações de "
+"software mais seguras e meios de acesso mais seguro a websites populares "
+"tais como o <mark><a href=\"https://www.facebook.com/notes/protect-the-graph"
+"/making-connections-to-facebook-more-"
+"secure/1526085754298237/\">Facebook</a></mark>."
+
+#: 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 ""
+"Por exemplo, o serviço onion DuckDuckGO é <a "
+"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+
+#: http//localhost/tormobile/tormobile-1/
+#: (content/tormobile/tormobile-1/contents+en.lrquestion.seo_slug)
+msgid "run-tor-on-android"
+msgstr "execute-tor-no-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 ""
+"No geral, não recomendamos usar VPN com Tor a não ser que você seja um "
+"usuário avançado que saiba configurar ambos de maneira que não comprometa "
+"sua privacidade."
+
+#: 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 ""
+"Os sites que só podem ser acessados por meio do Tor são chamados de "
+"\"onions\" (cebolas) e terminam com .onion."
+
+#: 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 ""
+"Além disso, o uso de caminhos mais longos do que 3 poderá prejudicar seu "
+"anonimato; em primeiro lugar, porque torna mais fáceis os ataques de "
+"<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">negação de "
+"segurança</a></mark> e, em segundo lugar, porque funcionará como um "
+"identificador, já que somente um pequeno número de usuários seguirá um "
+"caminho com idêntico comprimento."
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.title)
+msgid "How do I run a obfs4 bridge on Debian?"
+msgstr "Como eu rodo um obfs4 no Debian?"
+
+#: http//localhost/tbb/tbb-30/
+#: (content/tbb/tbb-30/contents+en.lrquestion.seo_slug)
+msgid "website-locks-torbrowser-out"
+msgstr "website-bloqueia-acesso-torbrowser"
+
+#: 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 ""
+"Se você não lembra qual era este destino, provavelmente está na sua pasta de"
+" Downloads ou no Desktop."
+
+#: 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 ""
+"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"
+
+#: 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 ""
+"Algumas vezes websites bloquearão usuários do Tor porque eles não podem "
+"dizer a diferença entre a média de usuários Tor e tráfego automatizado."
+
+#: 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 "desinstale-navegador-tor"
+
+#: 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 ""
+"O navegador TOR é uma versão modificada do Firefox, especialmente projetado "
+"para utilização com o TOR."
+
+#: 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 ""
+"Escreva seu sistema operacional (como windows, MacOS (OS X), or linux) no "
+"corpo da mensagem e envie."
+
+#: http//localhost/tbb/tbb-6/ (content/tbb/tbb-6/contents+en.lrquestion.title)
+msgid "Can I make Tor Browser my default browser?"
+msgstr "Posso fazer do Tor Browser meu navegador padrão?"
+
+#: 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 ""
+"Para ver recursos mais detalhados sobre a operação de um relay, veja "
+"<mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Guia "
+"Tor Relay</a></mark>."
+
+#: 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 ""
+"##### Erro de log comum #2: Não é possível acessar os retransmissores "
+"guardiães."
+
+#: 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 ""
+"A configuração de uma ponte obfsproxy requer a instalação de pacotes de "
+"software e configurações adicionais."
+
+#: 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 ""
+"* Como root, adicione as seguintes linhas em /etc/apt/sources.list. Use a "
+"versão que você encontrou no passo anterior para <version>."
+
+#: 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 ""
+"Caso você esteja acessando um website via HTTPS e um serviço onion, serão "
+"exibidos os ícones de uma cebola e de um cadeado."
+
+#: 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 ""
+"<h4 class=\"card-title\">Se você está usando HTTPS, a URL do seu website "
+"começará com \"https://\".</h4>"
+
+#: 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 ""
+"<mark><a href=\"https://blog.torproject.org/tor-heart-onion-browser-and-"
+"more-ios-tor\">Aprenda mais sobre o navegador Onion</a></mark>"
+
+#: 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 "Nickname ididnteditheconfig"
+
+#: http//localhost/misc/misc-6/
+#: (content/misc/misc-6/contents+en.lrquestion.seo_slug)
+msgid "does-tor-keep-logs"
+msgstr "tor-mantem-registros"
+
+#: http//localhost/tbb/tbb-7/
+#: (content/tbb/tbb-7/contents+en.lrquestion.description)
+msgid "Thank you.\""
+msgstr "Obrigado.\""
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* 日本語 (ja)"
+msgstr "* Japonês (ja)"
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.description)
+msgid "##### New Tor Circuit for this Site"
+msgstr "##### Novo Circuito Tor para esse Site"
+
+#: 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 ""
+"Qual sistema de pesquisa vem com o Navegador Tor e como ele protege a minha "
+"privacidade?"
+
+#: 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 ""
+"Por favor certifique-se que o relógio e fuso horário do seu sistema estão "
+"configurados corretamente."
+
+#: 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 ""
+"Certamente você pode utilizar outro navegador enquanto utiliza o navegador "
+"TOR."
+
+#: 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 ""
+"Caso você não consiga acessar o serviço onion desejado, certifique-se de ter"
+" digitado corretamente os 16 caracteres, ou 56 caracteres no novo formato, "
+"do endereço onion: até mesmo um pequeno erro impedirá o Tor Browser de "
+"acessar o site."
+
+#: http//localhost/censorship/
+#: (content/censorship/contents+en.lrtopic.seo_slug)
+msgid "censorship"
+msgstr "censura"
+
+#: 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 ""
+"Por que vocês não impedem que pessoas ruins façam coisas ruins enquanto "
+"usando o Tor?"
+
+#: 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 ""
+"O Projeto Tor não apoia nem faz vista grossa para o uso de nosso software "
+"com propósitos maliciosos."
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.description)
+msgid "* Determine your Ubuntu version by running the following command:"
+msgstr ""
+"* Determine a sua versão Ubuntu utilizada executando o seguinte comando:"
+
+#: 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 ""
+"O Tor Browser está atualmente disponível em versões para <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> e <mark><a "
+"href=\"https://www.torproject.org/download/download-easy.html.en#mac\">macOS"
+" (OS X)</a></mark>."
+
+#: http//localhost/censorship/censorship-1/
+#: (content/censorship/censorship-1/contents+en.lrquestion.seo_slug)
+msgid "our-website-is-blocked-by-a-censor"
+msgstr "nosso-website-esta-bloqueado-por-um-censor"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "Finally, restart Tor Browser."
+msgstr "Finalmente, reinicie o navegador TOR."
+
+#: http//localhost/connecting/ (content/connecting/contents+en.lrtopic.title)
+msgid "Connecting To Tor"
+msgstr "Conectando-se ao Tor"
+
+#: 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 ""
+"* Note que em seu sistema operacional a utilidade padrão \"Desinstalar\" não"
+" é utilizada."
+
+#: 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 ""
+"Quando ele confirma que está acessível, ele vai enviar um \"descritor do "
+"servidor\" para o diretório de autoridades para deixar os clientes saberem "
+"qual endereço, porta, chaves, etc seu retransmissor está usando."
+
+#: 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 "ContactInfo 0xFFFFFFFF Random Person <nobody AT example dot com>"
+
+#: http//localhost/misc/misc-9/
+#: (content/misc/misc-9/contents+en.lrquestion.title)
+msgid "I'm having a problem updating or using Vidalia."
+msgstr "Estou tendo problema em atualizar ou usar o 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 ""
+"Um dos problemas mais comuns que causam erros de conexão no Navegador Tor é "
+"o relógio do sistema incorreto."
+
+#: 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 "Por que o primeiro IP address no meu relay circuit é sempre o mesmo?"
+
+#: 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 ""
+"Para o Android, The Guardian Project mantém os aplicativos baseados em Tor "
+"Orbot e Orfox"
+
+#: 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 ""
+"19.11.2017 00:04:48.000 [NOTICE] Bootstrapped 5%: Connecting to directory "
+"server"
+
+#: 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 ""
+"A melhor maneira de resolver isso é seguir os procedimentos recomendados no "
+"site para recuperação de contas, ou contactar os operadores e explicar a "
+"situação."
+
+#: 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 ""
+"Se isso não solucionar o problema, veja a página de Solução de Problemas no "
+"<mark><a href=\"https://tb-manual.torproject.org/en-"
+"US/troubleshooting.html\">manual do Navegador Tor</a></mark>"
+
+#: 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 ""
+"Você pode estár apto a evitar esse cenário se seu provedor oferecer "
+"autenticação 2 fatores, que é uma opção mais segura que reputação baseada em"
+" IP."
+
+#: 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 ""
+"O meu antivírus ou proteção contra malware está bloqueando o meu acesso ao "
+"Tor Browser."
+
+#: 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 ""
+"Se você não consegue visualizar esta mensagem, isto significa que o seu "
+"relay não é acessível por fora."
+
+#: 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 (caso você use conexões de ponte)"
+
+#: 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 ""
+"Cuidado ao trocar o Tor por um navegador menos seguro, porque você pode "
+"acidentalmente utilizar este último navegador para algo que você pretendia "
+"fazer utilizando o Tor."
+
+#: 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 "nao-consigo-acessar-x-onion"
+
+#: http//localhost/misc/misc-3/
+#: (content/misc/misc-3/contents+en.lrquestion.title)
+msgid "Who funds Tor?"
+msgstr "Quem financia o Tor?"
+
+#: http//localhost/tbb/tbb-24/
+#: (content/tbb/tbb-24/contents+en.lrquestion.seo_slug)
+msgid "problem-with-duckduckgo"
+msgstr "problema-com-duckduckgo"
+
+#: http//localhost/tbb/tbb-23/
+#: (content/tbb/tbb-23/contents+en.lrquestion.seo_slug)
+msgid "search-engine-tor-browser"
+msgstr "motor-pesquisa-navegador-tor"
+
+#: http//localhost/tbb/tbb-36/
+#: (content/tbb/tbb-36/contents+en.lrquestion.title)
+msgid "Can I run multiple instances of Tor Browser?"
+msgstr "Posso executar várias instâncias do Navegador Tor?"
+
+#: 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 ""
+"Por favor veja o <mark><a href=\"https://noscript.net/faq\">FAQ do "
+"NoScript</a></mark>."
+
+#: 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 ""
+"Você deve checar novamente seu firewall, verificando qual IP e portas que "
+"você especificou no seu torrc estão corretos, etc."
+
+#: 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 ""
+"Os serviços onion permitem que as pessoas não só naveguem, mas também "
+"publiquem anonimamente, inclusive através da edição de websites anônimos."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.seo_slug)
+msgid "need-tor-browser-language-not-english"
+msgstr "preciso-tor-browser-idioma-nao-ingles"
+
+#: 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 ""
+"Atualmente estamos trabalhando em um navegador Tor para Android e você "
+"poderá ver lançamentos de versões alfa nos próximos meses."
+
+#: http//localhost/gettor/gettor-3/
+#: (content/gettor/gettor-3/contents+en.lrquestion.seo_slug)
+msgid "to-use-gettor-via-twitter"
+msgstr "para-usar-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 ""
+"* Adicione a chave gpd usada para assinar os pacotes executando os seguintes"
+" comandos"
+
+#: 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 ""
+"Se você vê linhas como essas em seu registro do Tor, isso significa que seu "
+"Tor falhou na conexão com o primeiro nó no circuito Tor."
+
+#: 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 ""
+"É este o seu caso? <mark><a "
+"href=\"https://www.torproject.org/about/contact.html.en\">Entre em "
+"contato</a></mark>."
+
+#: 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 "como-fazer-download-do-tor-se-torproject-org-está-bloqueado"
+
+#: 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 ""
+"Se você começar a encontrar problemas com seu Tor depois de uma atualização,"
+" acesse <mark><a "
+"href=\"https://blog.torproject.org>blog.torproject.org</a></mark> para "
+"checar o post da versão estável mais recente do navegador Tor e ver se seu "
+"problema está listado."
+
+#: http//localhost/misc/ (content/misc/contents+en.lrtopic.title)
+msgid "Misc"
+msgstr "Misc"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* obfs4proxy.exe (if you use bridges)"
+msgstr "* obfs4proxy.exe (caso você use conexões de ponte)"
+
+#: 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 ""
+"Depois de poucas horas (para ter tempo o bastante para propagar), você pode "
+"consultar o <mark><a "
+"href=\"https://metrics.torproject.org/rs.html#search\">Metrics</a></mark> "
+"para ver se seu retransmissor foi registrado com sucesso na rede."
+
+#: 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 ""
+"GetTor vai responder com um email contendo endereços do qual você pode "
+"baixar o Navegador Tor, a assinatura criptográfica(necessária para <mark><a "
+"href=\"https://www.torproject.org/docs/verifying-"
+"signatures.html.en\">verificar o download</a></mark>), a impressão digital "
+"da chave usada para fazer a assinatura, e o checksum do pacote."
+
+#: 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 ""
+"Como eu me certifico de que estou usando os pacotes corretos para o Ubuntu ?"
+
+#: 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 ""
+"O Guardian Project mantém o Tor (e outras aplicações de privacidade) no "
+"Android. Mais informações podem ser encontradas no site do <mark><a "
+"href=\"https://guardianproject.info/\">Guardian Project's</a></mark>"
+
+#: 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 ""
+"Outras abas e janelas abertas do mesmo website usarão o novo circuito assim "
+"que eles forem recarregados."
+
+#: 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 "app-para-chat-privado-do-projeto-tor"
+
+#: 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 ""
+"Em vez disso, considere executar seu retransmissor de saída em uma "
+"instalação comercial que é solidária com Tor."
+
+#: 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 "Por favor tente conectar com pontes, e isso deve resolver o problema."
+
+#: 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 ""
+"Orfox é um navegador de internet, e Orbot pode rotear outras apps em seu "
+"telefone Android sob a rede 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-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "If it hasn't, re-check firewalls, IP and ports again."
+msgstr "Se não for esse o caso, confira novamente os firewalls, IP e portas."
+
+#: 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 ""
+"O Flash está desabilitado no navegador TOR, e recomendamos que você não o "
+"habilite. "
+
+#: 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 ""
+"Se você não consegue acessar o serviço onion desejado, certifique-se que "
+"você digitou o endereço onion de 16 caracteres corretamente: até um pequeno "
+"erro fará com que o navegador TOR seja incapaz de acessar o site."
+
+#: 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 ""
+"Existe o projeto <mark><a "
+"href=\"https://www.torbsd.org/\">TorBSD</a></mark>, mas o navegador Tor "
+"deles não é oficialmente suportado."
+
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.seo_slug)
+msgid "how-do-i-run-an-exit"
+msgstr "como-rodar-um-nodo-de-saida"
+
+#: http//localhost/ (content/contents+en.lrshowcase.title)
+msgid "How can we help?"
+msgstr "Como nós podemos ajudar?"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Nederlands (nl)"
+msgstr "* Holandês (nl)"
+
+#: 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 ""
+"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design/\"> "
+"Aprenda mais sobre o design do navegador Tor </a></mark>."
+
+#: 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 ""
+"Atualmente nós oferecemos o <mark><a "
+"href=\"https://www.torproject.org/projects/torbrowser.html.en\">Navegador "
+"Tor</a></mark> nos seguintes idiomas:"
+
+#: 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 "rodar-navegador-tor-me-faz-um-retransmissor"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Español (es-ES)"
+msgstr "* Espanhol (es-ES)"
+
+#: http//localhost/tbb/tbb-19/
+#: (content/tbb/tbb-19/contents+en.lrquestion.seo_slug)
+msgid "cannot-connect-to-tor-browser-network-censored"
+msgstr "não-foi-possível-conectar-ao-navegador-tor-rede-censurada"
+
+#: 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 "Contate seu provedor e pergunte a eles se eles provem 2FA."
+
+#: http//localhost/misc/misc-2/
+#: (content/misc/misc-2/contents+en.lrquestion.seo_slug)
+msgid "prevent-bad-people-doing-bad-things-with-tor"
+msgstr "evitar-que-pessoas-mas-facam-coisas-mas-com-tor"
+
+#: http//localhost/faq/ (content/faq/contents+en.lrtopic.title)
+msgid "Most Frequently Asked Questions"
+msgstr "Perguntas Frequentes"
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.title)
+msgid "How do I uninstall Tor Browser?"
+msgstr "Como eu desinstalo o Navegador Tor?"
+
+#: 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 ""
+"Eu fiz o download e instalei o Tor Browser para Windows, mas agora não "
+"consigo encontrá-lo."
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "* Empty your Trash."
+msgstr "* Esvazie a sua Lixeira."
+
+#: http//localhost/tormobile/tormobile-3/
+#: (content/tormobile/tormobile-3/contents+en.lrquestion.title)
+msgid "Can I run Tor on an iOS device?"
+msgstr "Posso utilizar o Tor em um dispositivo iOS?"
+
+#: 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 "Como eu utilizo o Tor no 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 ""
+"Um site (banco, provedor de e-mail, etc...) bloqueia-me sempre que uso Tor. "
+"O que eu posso fazer?"
+
+#: http//localhost/misc/misc-14/
+#: (content/misc/misc-14/contents+en.lrquestion.title)
+msgid "How do I volunteer with Tor Project?"
+msgstr "Como eu posso ser voluntária/o no Projeto Tor?"
+
+#: 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 ""
+"De qualquer maneira, você deveria saber que as propriedades de privacidade "
+"do Navegador Tor não estarão presentes em outros navegadores."
+
+#: http//localhost/faq/faq-4/
+#: (content/faq/faq-4/contents+en.lrquestion.description)
+#: 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 "
+"<mark><a href=\"https://onionbrowser.com/\">Onion Browser</a></mark>."
+msgstr ""
+"Ainda não há versão oficial do Tor para iOS. Assim, nós recomendamos o "
+"<mark><a href=\"https://onionbrowser.com/\">Onion Browser</a></mark>."
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "Enabling ntpd is suggested."
+msgstr "Sugere-se habilitar o ntpd."
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.seo_slug)
+msgid "change-ip-address"
+msgstr "mude-endereço-ip"
+
+#: 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 ""
+"Rode os seguintes comandos pra instalar o tor e checar suas assinaturas:"
+
+#: 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 ""
+"2017-10-29 09:24:08.900 [WARN] Proxy Client: unable to connect to "
+"xx..xxx..xxx.xx:xxxxx (\"general SOCKS server failure\")"
+
+#: 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 ""
+"Pode ser oferecido a escolha de programas de \"32-bit\" ou \"64-bit\": isso "
+"depende de qual modelo de computador você está usando; consulte a "
+"documentação sobre seu computador para encontrar mais."
+
+#: 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 ""
+"Para mais informações sobre como relays guarda funcionam, veja essa <mark><a"
+" href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters\">postagem em nosso blog</a></mark>e essa <mark><a href=\"https"
+"://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf\">publicação</a></mark>sobre "
+"guardas de entrada."
+
+#: 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 "Como eu executo um retransmissor guarda ou do meio no Debian?"
+
+#: 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 ""
+"A maioria dos antivírus ou proteção contra malwares permitem que o usuário "
+"dê autorização a processos que normalmente seriam bloqueados."
+
+#: http//localhost/tbb/tbb-6/
+#: (content/tbb/tbb-6/contents+en.lrquestion.seo_slug)
+msgid "make-tor-browser-default-browser"
+msgstr "tornar-tor-navegador-padrão"
+
+#: 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 ""
+"Se você estiver executando um anti-virus, por favor veja <mark><a "
+"href=\"http://support.torproject.org/#tbb-10\">Minha proteção "
+"antivirus/malware está me impedindo de acessar o Tor Browser</a></mark>, é "
+"comum que softwares anti-virus / anti-malware causem esse tipo de problema."
+
+#: http//localhost/tbb/tbb-26/
+#: (content/tbb/tbb-26/contents+en.lrquestion.seo_slug)
+msgid "problem-with-https-everywhere"
+msgstr "problema-com-https-everywhere"
+
+#: http//localhost/censorship/ (content/censorship/contents+en.lrtopic.title)
+msgid "Censorship"
+msgstr "Censura"
+
+#: 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 ""
+"Por favor tenha uma posição forte em favor da privacidade digital e "
+"liberdade na internet, e permita aos usuários do Tor acessarem xyz.com."
+
+#: 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 ""
+"O Tor Browser não está funcionando, mas não parece ser algo relacionado a "
+"censura."
+
+#: 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 ""
+"Os endereços devem ser compartilhados com você por quem hospeda seu website,"
+" como onions não são indexados nos mecanismos de pesquisa na maneira típica "
+"que os websites normais são."
+
+#: 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 ""
+"Se o site que você está visitando utiliza HTTPS, então o tráfego deixando o "
+"seu relay de saída será criptografado, e não será visível para "
+"bisbilhoteiros."
+
+#: 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 ""
+"Por essa razão, é melhor não rodar seu retransmissor de saída em sua casa ou"
+" usando a conexão de internet da sua residência."
+
+#: http//localhost/censorship/censorship-7/
+#: (content/censorship/censorship-7/contents+en.lrquestion.title)
+msgid "What is a bridge?"
+msgstr "O que é uma ponte?"
+
+#: 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 ""
+"Quaisquer outros aplicativos em seu sistema (incluindo outros navegadores) "
+"não serão roteados através da rede Tor e, portanto, não estarão protegidos."
+
+#: 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 ""
+"* Você deveria olhar também a mensagem \"Servidor de transporte registrado "
+"'obfs4'\" indicando que obfs4proxy é funcional."
+
+#: 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 ""
+"A maneira mais simples de resolver é clicar no \"menu da cebola\", então "
+"clicar no controle deslizante de segurança."
+
+#: 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 ""
+"O Tor foi concebido para defender os direitos humanos e a privacidade ao "
+"impedir qualquer pessoa de exercer a censura, inclusive nós mesmos."
+
+#: 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 ""
+"Naturalmente, você deveria evitar manter qualquer informação sensível ou "
+"pessoal em computadores que hospedam seu retransmissor de saída."
+
+#: 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 ""
+"Conexões de ponte <mark><a "
+"href=\"https://github.com/Yawning/obfs4/blob/master/doc/obfs4-spec.txt\">Obfsproxy</a></mark>"
+" lidam com isto adicionando outra camada de obscuridade."
+
+#: 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 "O arquivo que você baixou e rodou está solicitando um destino."
+
+#: 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 ""
+"Algumas entidades, como o seu provedor de serviços de Internet (ISP), podem "
+"ver que você está usando o Tor, mas elas não sabem para onde você está indo "
+"quando você o faz."
+
+#: 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 ""
+"Algumas vezes websites que tem muito código em Javascript pode ter problemas"
+" funcionais sobre o Navegador Tor."
+
+#: http//localhost/gettor/gettor-2/
+#: (content/gettor/gettor-2/contents+en.lrquestion.description)
+msgid "Send an email to gettor(a)torproject.org."
+msgstr "Envie um e-mail para 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 "Apenas o tráfego do Tor Browser será redirecionado para a rede Tor."
+
+#: 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 ""
+"Isto é, em situações normais, esse número é 3 mas, por exemplo, caso você "
+"esteja acessando um serviço onion ou um endereço de \"saída\", ele poderá "
+"ser maior."
+
+#: 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 "* Execute \"service tor reload\" (como 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 ""
+"Uma lista de todos os nossos projetos de software está disponível em nossa "
+"<mark><a "
+"href=\"https://www.torproject.org/projects/projects.html.en\">página de "
+"projetos</a></mark>."
+
+#: 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 ""
+"Essa opção é útil se você quer prevenir que atividades posteriores do seu "
+"navegador sejam ligadas ao que você estava fazendo antes."
+
+#: http//localhost/misc/misc-10/
+#: (content/misc/misc-10/contents+en.lrquestion.title)
+msgid "Does the Tor Project offer hosting?"
+msgstr "O Projeto Tor oferece serviços de hospedagem?"
+
+#: 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 "Eu posso utilizar VPN com o 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 ""
+"Retransmissores pontes são retransmissores do Tor que não estão listados no "
+"diretório público do Tor."
+
+#: 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 ""
+"Você também podem se certificar de que está apto a acessar outros serviços "
+"onion conectando-se ao serviço onion <a "
+"href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGO</a>."
+
+#: 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 ""
+"Para receber os links para baixar o Navegador Tor, envie uma mensagem para "
+"gettor(a)torproject.org com um dos seguintes códigos:"
+
+#: 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 ""
+"\"Oi! Eu tentei acessar seu site xyz.com enquanto estava usando o Navegador "
+"Tor e percebi que você não permite usuários Tor acessarem seu site."
+
+#: 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 ""
+"Para receber os links para baixar o Navegador Tor, envie uma mensagem direta"
+" para <mark><a href=\"https://twitter.com/get_tor\">@get_tor</a></mark> com "
+"um dos seguintes códigos (você não precisa seguir a conta):"
+
+#: 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 ""
+"Isso significa que algumas vezes um website carregaria no Navegador Tor, e "
+"algumas vezes ele carregaria em outro navegador, esse tipo de comportamento "
+"pode ser perigoso e quebrar a anonimidade."
+
+#: 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 ""
+"Ultimamente, nós queremos fazer o Navegador Tor tão seguro quanto possível "
+"enquanto também fazemos ele usável para a maioria das pessoas, então por "
+"agora, isso significa deixar o Javascript habilitado por padrão."
+
+#: 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 ""
+"Felizmente, a maioria dos websites, aparelhos e outros browsers estão "
+"abandonando o uso do Flash."
+
+#: 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 "#MyFamily $keyid,$keyid,..."
+
+#: http//localhost/censorship/censorship-2/
+#: (content/censorship/censorship-2/contents+en.lrquestion.seo_slug)
+msgid "website-is-blocking-access-over-tor"
+msgstr "webiste-está-bloqueando-acesso-através-do-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 ""
+"##O endereço IP ou hostname para conexões de entrada (deixe comentado e o "
+"Tor irá saber)"
+
+#: 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 "como-eu-baixo-o-tor-se-torproject-org-está-bloqueado"
+
+#: 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 ""
+"DuckDuckGo não rastreia seus usuário nem armazena dados sobre pesquisas "
+"feitas por eles. Veja mais sobre <mark><a "
+"href=\"https://duckduckgo.com/privacy\">a política de privacidade "
+"DuckDuckGo</a></mark>."
+
+#: http//localhost/tbb/tbb-21/
+#: (content/tbb/tbb-21/contents+en.lrquestion.seo_slug)
+msgid "view-tor-browser-message-log"
+msgstr "mostrar-log-de-mensagens-do-navegador-tor"
+
+#: http//localhost/tbb/tbb-38/
+#: (content/tbb/tbb-38/contents+en.lrquestion.seo_slug)
+msgid "network-admin-know-i-am-using-tor"
+msgstr "administrador-rede-sabe-que-estou-usando-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 "projeto-tor-oferece-email-ou-servicos-web-protecao-privacidade"
+
+#: 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 ""
+"Você também pode certificar-se de que é possível acessar outros serviços "
+"onion conectando-se ao <a href=\"http://3g2upl4pq6kufc4m.onion\">serviço "
+"onion do DuckDuckGo</a>."
+
+#: http//localhost/misc/misc-14/
+#: (content/misc/misc-14/contents+en.lrquestion.seo_slug)
+msgid "volunteer-with-tor-project"
+msgstr "seja-um-voluntario-do-projeto-tor"
+
+#: 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 ""
+"Navegador Tor vai alertar você que toda atividade e downloads vão ser "
+"parados, então leve isso em conta antes de clicar em \"Nova Identidade\"."
+
+#: http//localhost/tbb/tbb-33/
+#: (content/tbb/tbb-33/contents+en.lrquestion.title)
+msgid "Does running Tor Browser make me a relay?"
+msgstr "Ao executar o Navegador Tor eu me torno um retransmissor?"
+
+#: 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 "Meu administrador de rede conseguirá saber se eu uso o Navegador Tor?"
+
+#: 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 ""
+"11/1/2017 21:11:44 PM.300 [WARN]Falha para encontrar um nó para o hop 0 do "
+"nosso caminho. Descartando esse circuito."
+
+#: 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 ""
+"Você consegue a melhor segurança que o Tor pode provar quando você deixa a "
+"seleção de rota para ele; passar por cima dos nós de entrada / saída pode "
+"comprometer seu anonimato."
+
+#: 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 ""
+"Por favor acompanhe nosso <mark><a "
+"href=\"https://blog.torproject.org\">blog</a></mark> para anúncios futuros e"
+" detalhes relacionados a este projeto."
+
+#: 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 "Como eu baixo Tor caso torproject.org esteja bloqueado?"
+
+#: 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 ""
+"19.11.2017 00:04:47.400 [NOTICE] Opening Socks listener on 127.0.0.1:9150"
+
+#: http//localhost/tormobile/tormobile-4/
+#: (content/tormobile/tormobile-4/contents+en.lrquestion.seo_slug)
+msgid "run-tor-on-windows-phone"
+msgstr "Executar-tor-no-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 "Log notice file /var/log/tor/notices.log"
+
+#: http//localhost/misc/misc-11/
+#: (content/misc/misc-11/contents+en.lrquestion.title)
+msgid "Can I change the number of hops Tor uses?"
+msgstr "Posso alterar o número de saltos que o TOR usa?"
+
+#: 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 ""
+"O primeiro relay em seu circuito é chamado de \"guarda\" ou \"guarda de "
+"entrada\"."
+
+#: http//localhost/tbb/tbb-16/
+#: (content/tbb/tbb-16/contents+en.lrquestion.title)
+msgid "Can I pick which country I'm exiting from?"
+msgstr "Eu posso escolher de qual país eu estou saindo?"
+
+#: http//localhost/misc/misc-12/
+#: (content/misc/misc-12/contents+en.lrquestion.seo_slug)
+msgid "share-files-anonymously-through-tor"
+msgstr "compartilhar-arquivos-anonimamente-atraves-do-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 "No Navegador Tor, cada novo domínio tem um circuito próprio."
+
+#: 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 "## Defina o nickname deste relay"
+
+#: 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 ""
+"O que eu posso fazer para que Tor rode mais rápido? O Navegador Tor é mais "
+"lento do que outros navegadores?"
+
+#: 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 ""
+"Essa opção não apaga qualquer informação privada ou desvincula sua "
+"atividade, nem afeta suas conexões atuais para outros websites."
+
+#: 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 "Instale o pacote ntp ou openntp (ou similar) pra manter dessa forma."
+
+#: 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 ""
+"O ícone Torbutton (a pequena cebola verde no canto superior esquerdo do "
+"navegador) exibirá um triângulo amarelo."
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "ServerTransportPlugin obfs4 exec /usr/bin/obfs4proxy"
+msgstr "ServerTransportPlugin obfs4 exec /usr/bin/obfs4proxy"
+
+#: http//localhost/operators/ (content/operators/contents+en.lrtopic.title)
+msgid "Operators"
+msgstr "Operadores"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Русский (ru)"
+msgstr "* Russo (ru)"
+
+#: 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 "existe-suporte-para-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 ""
+"Veja sua entrada de log em /var/log/syslog algo como \"Self-testing "
+"indicates your ORPort is reachable from the outside. Excellent.\""
+
+#: http//localhost/onionservices/onionservices-3/
+#: (content/onionservices/onionservices-3/contents+en.lrquestion.seo_slug)
+msgid "i-cannot-reach-x-dot-onion"
+msgstr "nao-consigo-acessar-x-ponto-onion"
+
+#: http//localhost/tbb/tbb-41/
+#: (content/tbb/tbb-41/contents+en.lrquestion.title)
+msgid "Why did my search engine switch to DuckDuckGo?"
+msgstr "Por que meu sistema de pesquisa mudou para o 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 ""
+"Pontes são úteis para usuários do Tor que estão sob regimes ditatoriais, e "
+"para pessoas que queiram uma camada extra de segurança porque elas estão "
+"preocupados se alguém reconhecerá que elas estão contactando de um endereço "
+"de IP público de um retransmissor Tor."
+
+#: 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 ""
+"Para mais informações, por favor acesse o <mark>Manual de Uso do Tor</mark> "
+"na seção <mark><a href=\"https://tb-manual.torproject.org/en-"
+"US/circumvention.html\">censura</a></mark>."
+
+#: 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 ""
+"Se isso não solucionar o problema, veja a página de Solução de Problemas no "
+"<mark><a href=\"https://tb-manual.torproject.org/en-US/bridges.html\">manual"
+" do Navegador Tor</a></mark>"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* 简体字 (zh-CN)"
+msgstr "* Chinês (zh-CN)"
+
+#: http//localhost/onionservices/onionservices-2/
+#: (content/onionservices/onionservices-2/contents+en.lrquestion.seo_slug)
+msgid "what-is-a-dot-onion"
+msgstr "o-que-e-um-ponto-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 ""
+"O Projeto Tor oferece serviços de correio eletrônico ou outros serviços web "
+"de proteção de privacidade?"
+
+#: 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 ""
+"* Quando ele confirma que está acessível, ele vai enviar um \"descritor do "
+"servidor\" para o diretório de autoridades para deixar os clientes saberem "
+"qual endereço, porta, chaves, etc seu retransmissor está usando."
+
+#: 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 ""
+"Caso você necessite garantir que todo o tráfego passará pela rede Tor, "
+"confira o <mark><a href=\"https://tails.boum.org/\">Sistema operacional "
+"\"live\" Tails</a></mark> com o qual você pode inicializar praticamente "
+"qualquer computador a partir de um drive USB ou de um DVD."
+
+#: http//localhost/tbb/ (content/tbb/contents+en.lrtopic.title)
+msgid "Tor Browser"
+msgstr "Navegador Tor"
+
+#: 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 "##### Erro de log comum #3: Falha ao concluir TLS handshake"
+
+#: 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 ""
+"Eu insisto para você reconsiderar essa decisão; Tor é usado por pessoas de "
+"todo o mundo para proteger sua privacidade e lutar contra a censura."
+
+#: http//localhost/tbb/tbb-12/
+#: (content/tbb/tbb-12/contents+en.lrquestion.seo_slug)
+msgid "using-flash-tor-browser"
+msgstr "usando-flash-no-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 ""
+"Eu tenho uma razão válida para rastrear um usuário do Tor. Vocês podem me "
+"ajudar? "
+
+#: 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 ""
+"13-11-17 19:52:24.300 [NOTICE] Bootstrapped 10%: Finishing handshake with "
+"directory server"
+
+#: 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 ""
+"Por favor, abra seu software antivírus ou antimalware e procure nas "
+"configurações por uma \"lista branca\" ou algo semelhante."
+
+#: http//localhost/gettor/gettor-4/
+#: (content/gettor/gettor-4/contents+en.lrquestion.seo_slug)
+msgid "to-use-gettor-via-xmpp"
+msgstr "para-usar-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 ""
+"Infelizmente, alguns sites entregam CAPTCHAs para usuários Tor, e nós não "
+"somos capazes de remover CAPTCHAs dos websites."
+
+#: 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 "navegador-tor-é-construído-a-partir-do-firefox-porque"
+
+#: http//localhost/tbb/tbb-12/
+#: (content/tbb/tbb-12/contents+en.lrquestion.title)
+msgid "Can I use Flash in Tor Browser?"
+msgstr "Eu posso usar Flash no Tor Browser?"
+
+#: 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 ""
+"O documento <mark><a "
+"href=\"https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability\">O Projeto e Implementação do Navegador Tor</a></mark> explica "
+"melhor o pensamento por trás deste projeto."
+
+#: 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 "Esta etapa geralmente é rápida, mas pode levar alguns minutos."
+
+#: 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 ""
+"Clique no botão \"Copy Tor Log To Clipboard\" que aparece na janela de "
+"diálogo quando o Navegador Tor está se conectando pela primeira vez a rede. "
+
+#: 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 ""
+"Você pode estar usando uma rede censurada, tente acessar utilizando nossas "
+"pontes."
+
+#: 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 ""
+"Nós não encorajamos as pessoas a usar caminhos mais longos do que este, pois"
+" isto aumentaria a carga na rede sem prover (até onde sabemos) qualquer "
+"melhoria na segurança."
+
+#: http//localhost/tormobile/tormobile-3/
+#: (content/tormobile/tormobile-3/contents+en.lrquestion.seo_slug)
+msgid "run-tor-on-ios"
+msgstr "Executar-tor-no-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 "Não consigo acessar o X.onion!"
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "ExtORPort auto"
+msgstr "ExtORPort auto"
+
+#: 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 "Eu preciso do Navegador Tor em um idioma outro que o inglês."
+
+#: http//localhost/tbb/tbb-34/
+#: (content/tbb/tbb-34/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-js-enabled-default"
+msgstr "navegador-tor-js-habilitado-padrão"
+
+#: http//localhost/misc/misc-9/
+#: (content/misc/misc-9/contents+en.lrquestion.seo_slug)
+msgid "having-a-problem-updating-vidalia"
+msgstr "tenho-problemas-atualizacao-vidalia"
+
+#: http//localhost/tbb/tbb-16/
+#: (content/tbb/tbb-16/contents+en.lrquestion.seo_slug)
+msgid "pick-which-country-i-am-exiting"
+msgstr "Escolher-o-país-que-estou-saindo"
+
+#: 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 ""
+"## Set your bandwidth rate (leave commented and Tor will run without "
+"bandwidth caps)"
+
+#: 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 ""
+"Com o lançamento do Navegador Tor 6.0.6, nós mudamos para DuckDuckGo como "
+"mecanismo de busca primário."
+
+#: 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 ""
+"Nós não recomendados rodar múltiplas instâncias do Navegador Tor, e pode não"
+" funcionar antecipadamente em muitas plataformas."
+
+#: 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 ""
+"Isso significa que PSI ou governos que tentam bloquear o acesso a rede Tor "
+"não podem simplesmente bloquear todas as pontes."
+
+#: 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 ""
+"Eu deveria instalar um novo add-on ou extensão no Navegador Tor, como o "
+"AdBlock Plus ou uBlock Origin?"
+
+#: 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 ""
+"Por favor, observe que as VPNs não dispõem de idênticas propriedades de "
+"anonimato do Tor, mas ajudam a resolver certos problemas de limites à "
+"geolocalização."
+
+#: 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 ""
+"Rodando o Navegador Tor não faz você agir como um transmissor na rede."
+
+#: 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 ""
+"Por enquanto, Desconectar não teve acesso aos resultados de pesquisa do "
+"Google que usamos no Navegador Tor."
+
+#: http//localhost/gettor/gettor-4/
+#: (content/gettor/gettor-4/contents+en.lrquestion.title)
+msgid "To use GetTor via XMPP (Jitsi, CoyIM)."
+msgstr "Para usar o GetTor via 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 ""
+"Enquanto é tecnicamente possível usar o Tor com outros navegadores, você "
+"pode se expor a ataques potenciais ou vazamento de informações, então nós "
+"fortemente desencorajamos isso."
+
+#: 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 ""
+"Alguns websites, como de bancos ou provedores de email, podem interpretar "
+"isso como um sinal que sua conta foi comprometida e bloquear você."
+
+#: 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 ""
+"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."
+
+#: http//localhost/tbb/tbb-7/
+#: (content/tbb/tbb-7/contents+en.lrquestion.seo_slug)
+msgid "website-blocking-access-over-tor"
+msgstr "website-bloqueando-acesso-sobre-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 ""
+"Caso bloqueássemos o uso do Tor por certas pessoas, basicamente estaríamos "
+"criando uma \"porta dos fundos\" no software, que resultaria na "
+"vulnerabilização de nossos usuários, expondo-os a ataques de regimes "
+"perversos ou de outros adversários."
+
+#: templates/footer.html:5
+msgid "Our mission:"
+msgstr "Nossa missão:"
+
+#: 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 ""
+"Proteger os direitos humanos e liberdades por meio da criação e "
+"implementação de tecnologias de anonimato e privacidade livres e de código "
+"aberto, provendo apoio à seu uso e disponibilidade irrestritos enquanto "
+"contribuímos para avanço de sua compreensão científica e popular. "
+
+#: templates/footer.html:24
+msgid "Subscribe to our Newsletter"
+msgstr "Assine nossa newsletter"
+
+#: templates/footer.html:25
+msgid "Get monthly updates and opportunities from the Tor Project"
+msgstr "Receba atualizações mensais e avisos de oportunidades do Projeto Tor"
+
+#: templates/footer.html:32
+msgid ""
+"Trademark, copyright notices, and rules for use by third parties can be "
+"found in our "
+msgstr ""
+"Trademark, avisos de direitos autorais, e regras de uso para terceiros podem"
+" ser encontradas em nosso"
+
+#: templates/layout.html:7
+msgid "Tor Project | Support"
+msgstr "Projeto Tor | Suporte técnico"
+
+#: templates/navbar.html:4
+msgid "Tor Logo"
+msgstr "Logotipo do Tor"
+
+#: templates/navbar.html:40
+msgid "Download Tor Browser"
+msgstr "Baixe o Tor Browser"
+
+#: templates/search.html:5
+msgid "Search"
+msgstr "Pesquisa"
+
+#: templates/macros/question.html:11
+msgid "Permalink"
+msgstr "Link permanente"
diff --git a/contents+pt-PT.po b/contents+pt-PT.po
new file mode 100644
index 000000000..bf69fd37b
--- /dev/null
+++ b/contents+pt-PT.po
@@ -0,0 +1,4095 @@
+# Translators:
+# erinm, 2018
+# MS <manuelarodsilva(a)gmail.com>, 2018
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-10-27 19:20+CET\n"
+"PO-Revision-Date: 2018-10-02 22:41+0000\n"
+"Last-Translator: MS <manuelarodsilva(a)gmail.com>, 2018\n"
+"Language-Team: Portuguese (Portugal) (https://www.transifex.com/otf/teams/1519/pt_PT/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: pt_PT\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\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 ""
+"Modificar o modo como o Tor cria os seus circuitos é fortemente "
+"desencorajado."
+
+#: 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 ""
+"No entanto, esteja ciente de que o seu outro navegador não está a manter a "
+"sua atividade privada, e pode esquecer-se e acidentalmente utilizar esse "
+"navegador não privado para fazer algo que pretendia efetuar no Tor. Browser."
+
+#: http//localhost/misc/misc-4/
+#: (content/misc/misc-4/contents+en.lrquestion.description)
+msgid "We do not recommend using Tor with BitTorrent."
+msgstr "Nós não recomendamos a utilização do Tor com o BitTorrent."
+
+#: 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 "Isto poderia significar que está numa rede que é censurada."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Français (fr)"
+msgstr "* Francês (fr)"
+
+#: 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-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "* Edit /usr/local/etc/tor/torrc to look like the following:"
+msgstr "* Edite /usr/local/etc/tor/torrc para parecer-se com o seguinte:"
+
+#: http//localhost/misc/misc-15/
+#: (content/misc/misc-15/contents+en.lrquestion.title)
+msgid "How can I donate to Tor Project?"
+msgstr "Como é que eu posso doar para o Projeto Tor?"
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "* Locate your Tor Browser folder or application."
+msgstr "* Localize a sua pasta ou aplicação do Tor Browser."
+
+#: 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 "instalar-add-on-extensões-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 ""
+"Eu estou a ter problemas para ligar ao Tor, e eu não consigo saber o que "
+"está errado."
+
+#: 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 ""
+"O nosso site da Web está bloqueado por um censor. O Tor Browser pode ajudar "
+"os utilizadores a aceder ao nosso site da Web?"
+
+#: 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 "* Elimine a pasta ou aplicação do Tor Browser."
+
+#: 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 ""
+"Nós desencorajamos fortemente a instalação de novos extras no Tor Browser, "
+"pois estes podem comprometer a sua privacidade e a sua segurança."
+
+#: 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 "perguntas mais frequentes"
+
+#: 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 ""
+"Um site da Web que eu estou a tentar aceder está a bloquear o acesso ao Tor."
+
+#: http//localhost/misc/misc-6/
+#: (content/misc/misc-6/contents+en.lrquestion.title)
+msgid "Does Tor keep logs?"
+msgstr "O Tor mantém registos de eventos?"
+
+#: http//localhost/censorship/censorship-7/
+#: (content/censorship/censorship-7/contents+en.lrquestion.seo_slug)
+msgid "what-is-a-bridge"
+msgstr "o-que-é-uma-ponte"
+
+#: 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 ""
+"Atualmente, não existe nenhum método suportado para executar o Tor no "
+"Windows Phone."
+
+#: http//localhost/onionservices/onionservices-2/
+#: (content/onionservices/onionservices-2/contents+en.lrquestion.title)
+msgid "What is a .onion or what are onion services?"
+msgstr "O que é .onion ou o que são serviços onion?"
+
+#: 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 ""
+"Para partilhar ficheiros através do Tor, <mark><a "
+"href=\"https://onionshare.org/\">OnionShare</a></mark> é uma boa opção."
+
+#: http//localhost/operators/operators-7/
+#: (content/operators/operators-7/contents+en.lrquestion.description)
+msgid "No."
+msgstr "Não."
+
+#: http//localhost/tbb/tbb-25/
+#: (content/tbb/tbb-25/contents+en.lrquestion.seo_slug)
+msgid "problem-noscript"
+msgstr "problema-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 "definir-tor-browser-como-predefinido"
+
+#: 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 ""
+"Infelizmente, nós ainda não temos uma versão do Tor Browser para o ChromeOS."
+
+#: 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=\"New release alert\">"
+
+#: 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 ""
+"Os ficheiros no meu computador foram bloqueados, e alguém está a exigir que "
+"eu transfira o Tor Browser para pagar um resgate pelos meus ficheiros!"
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.description)
+msgid "$ sudo apt-get install tor deb.torproject.org-keyring"
+msgstr ""
+
+#: 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 "não-consigo-ligar-ao-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 ""
+
+#: 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 ""
+"Para mais detalhes, por favor, consulte o nosso <mark><a "
+"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-"
+"idea\">artigo de blogue sobre o assunto</a></mark>."
+
+#: http//localhost/tbb/tbb-8/
+#: (content/tbb/tbb-8/contents+en.lrquestion.seo_slug)
+msgid "website-blocked-by-censor-can-tor-browser-help"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+"Se executar o Tor Browser ao mesmo tempo que outro navegador, isso não "
+"afetará o desempenho ou as propriedades de privacidade do Tor."
+
+#: 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 ""
+"O Tor Browser pode certamente ajudar as pessoas a acederem ao seu site da "
+"Web em locais onde o acesso está bloqueado."
+
+#: http//localhost/tbb/tbb-21/
+#: (content/tbb/tbb-21/contents+en.lrquestion.title)
+msgid "How do I view Tor Browser message log?"
+msgstr "Como é que eu visualizo o registo de mensagens do Tor Browser?"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Deutsch (de)"
+msgstr "* Alemão (de)"
+
+#: 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 ""
+
+#: http//localhost/misc/misc-15/
+#: (content/misc/misc-15/contents+en.lrquestion.description)
+msgid "Thank you for your support!"
+msgstr "Obrigado pelo seu apoio!"
+
+#: 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 ""
+"Se precisar de outras pontes, pode obtê-las no nosso <mark><a "
+"href=\"https://bridges.torproject.org/\">site da Web de Pontes</a></mark>."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Polish (pl)"
+msgstr "* Polaco (pl)"
+
+#: 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 "O Tor Browser está atualmente disponível para Linux, OSX e Windows."
+
+#: 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 ""
+
+#: 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 "usando-vpn-com-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 "Não, o Projeto Tor não oferece serviços de hospedagem."
+
+#: 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/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 ""
+"Pode ajudar a melhorar a velocidade da rede, executando a sua própria "
+"retransmissão ou incentivando os outros para fazerem o mesmo."
+
+#: 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 "Pode atualizar o Tor Browser assim que for lançada uma nova versão."
+
+#: 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 ""
+"Desculpe, mas atualmente não há suporte oficial para a execução do Tor "
+"Browser nos sistemas *BSD,"
+
+#: 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 "* Para 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 ""
+"Assim que tiver copiado o registo, irá poder colá-lo num editor de texto ou "
+"cliente de e-mail."
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "* Run \"pkg install tor\" (as root)."
+msgstr "* Executar \"pkg install tor\" (como \"root\")."
+
+#: http//localhost/misc/misc-15/
+#: (content/misc/misc-15/contents+en.lrquestion.seo_slug)
+msgid "donate-tor-project"
+msgstr "doar-projeto-tor"
+
+#: 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 ""
+
+#: http//localhost/onionservices/
+#: (content/onionservices/contents+en.lrtopic.seo_slug)
+msgid "onion-services"
+msgstr "serviços-onion"
+
+#: http//localhost/onionservices/
+#: (content/onionservices/contents+en.lrtopic.title)
+msgid "Onion Services"
+msgstr "Onion Services"
+
+#: 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 ""
+"Consulte a nossa página de <mark><a href=\"https://www.torproject.org/docs"
+"/pluggable-transports.html.en\">transportes ligáveis</a></mark> para mais "
+"informação."
+
+#: http//localhost/tormobile/tormobile-2/
+#: (content/tormobile/tormobile-2/contents+en.lrquestion.title)
+msgid "Who is the Guardian Project?"
+msgstr "Quem é 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 ""
+"Se ainda não conseguir ligar-se ao serviço \"onion\", por favor, tente "
+"novamente mais tarde."
+
+#: 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 ""
+"Contudo, a Apple exige que os navegadores no iOS usem algo chamado de "
+"Webkit, que impede que o Onion Browser tenha as mesmas proteções de "
+"privacidade que o Tor Browser."
+
+#: http//localhost/tbb/tbb-13/
+#: (content/tbb/tbb-13/contents+en.lrquestion.description)
+msgid "They need to be configured separately to use Tor."
+msgstr "É necessário configurá-los individualmente para utilizar o Tor."
+
+#: http//localhost/tbb/ (content/tbb/contents+en.lrtopic.seo_slug)
+msgid "tor-browser"
+msgstr "tor-browser"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+"Durante a maior parte do tempo, o simples ato de fazer download do Tor Browser e usá-lo para navegar até o site bloqueado bastará para possibilitar o acesso.\n"
+"\n"
+"Na maioria das vezes, basta transferir o <mark><a href=\"https://www.torproject.org/download/download-easy.html.en\">Tor Browser</a></mark> e depois utilizá-lo para navegar até ao site bloqueado que irá permitir o acesso."
+
+#: 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 "operadores"
+
+#: 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 ""
+"É seguro a utilização em simultâneo do Tor Browser com outro navegador?"
+
+#: 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 ""
+"Se não conseguir transferir o Tor através do nosso <mark><a "
+"href=\"https://www.torproject.org\">site da Web</a></mark>, pode obter uma "
+"cópia do Tor, enviada para si via GetTor."
+
+#: 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 ""
+"Para os locais onde há forte censura, nós dispomos de uma variedade de "
+"opções para contorná-la, incluindo os <mark><a "
+"href=\"https://www.torproject.org/docs/pluggable-"
+"transports.html.en\">transportes ligáveis</a></mark>."
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "* Run \"service tor start\" (as root)"
+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 \"apt-get install tor\" (as root)."
+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: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 "* Vietnamita (vi)"
+
+#: http//localhost/tbb/tbb-36/
+#: (content/tbb/tbb-36/contents+en.lrquestion.seo_slug)
+msgid "run-multible-instances-of-tor-browser"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+"Algumas pontes estão integradas no Tor Browser e pode usar essas pontes, "
+"escolhendo a opção \"configurar\" (e depois seguir as instruções) na janela "
+"do Tor Launcher, que abre numa janela quando executa o Tor Browser pela "
+"primeira vez."
+
+#: 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 ""
+"Se acredita que este é um problema do Tor Browser, por favor, comunique-o no"
+" nosso <mark><a href=\"https://trac.torproject.org/\">rastreador de "
+"erros</a></mark>."
+
+#: http//localhost/tbb/tbb-18/
+#: (content/tbb/tbb-18/contents+en.lrquestion.title)
+msgid "Is there support for *BSD?"
+msgstr "Existe suporte para *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 "Eu não consigo ligar ao Tor Browser. A minha rede está censurada?"
+
+#: 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 ""
+"Atualmente não existe nenhum método suportado para configurar o Tor Browser "
+"como o seu navegador predefinido."
+
+#: 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 "torne mais rápido"
+
+#: http//localhost/misc/misc-8/
+#: (content/misc/misc-8/contents+en.lrquestion.title)
+msgid "Can I use the Tor logo in my product?"
+msgstr "Eu posso utilizar o logótipo do Tor no meu produto?"
+
+#: 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 ""
+"Para obter mais informações sobre pontes, confira o <mark><a href=\"https"
+"://tb-manual.torproject.org/en-US/bridges.html\">manual do Tor "
+"Browser</a></mark>."
+
+#: 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 ""
+"Nós não pensamos que é seguro utilizar o Flash em qualquer navegador — é um "
+"programa muito inseguro que pode comprometer facilmente a sua privacidade ou"
+" afetá-lo com malware."
+
+#: 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 "Eu posso executar o Tor num dispositivo Android?"
+
+#: 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 "alguem-podera-dizer-que-websites-eu-visito"
+
+#: 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 "transferir-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 ""
+"Como é que eu posso partilhar os ficheiros anonimamente através do Tor?"
+
+#: 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/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 them in the family"
+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 "* Farsi (fa)"
+
+#: http//localhost/tbb/tbb-13/
+#: (content/tbb/tbb-13/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-protecting-other-apps"
+msgstr "tor-browser-protege-outras-aplicacoes"
+
+#: 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 ""
+"Ao utilizar o Tor Browser pode, às vezes, ser mais lento que os outros "
+"navegadores."
+
+#: 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 "Quais as plataformas em que o Tor Browser está disponível?"
+
+#: http//localhost/tormobile/tormobile-1/
+#: (content/tormobile/tormobile-1/contents+en.lrquestion.description)
+msgid "Tor on Android is provided by The Guardian Project."
+msgstr "Tor no Android é fornecido por The Guardian Project."
+
+#: 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/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.title)
+msgid "How do I run an exit relay on Debian?"
+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 ""
+"Por favor, consulte as <mark><a href=\"https://www.eff.org/https-"
+"everywhere/faq\"> Perguntas Mais Frequentes de HTTPS Everywhere</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 ""
+
+#: http//localhost/tormobile/tormobile-2/
+#: (content/tormobile/tormobile-2/contents+en.lrquestion.seo_slug)
+msgid "who-is-the-guardian-project"
+msgstr "quem-é-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 ""
+
+#: http//localhost/tormessenger/tormessenger-1/
+#: (content/tormessenger/tormessenger-1/contents+en.lrquestion.title)
+msgid "Does Tor Project make an application for private chat?"
+msgstr "O Projeto Tor tem uma aplicação para conversação privada?"
+
+#: 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 ""
+"Pode encontrar mais informação nas páginas da Web do <mark><a "
+"href=\"https://guardianproject.info/apps/orbot/\">Orbot</a></mark> e "
+"<mark><a href=\"https://guardianproject.info/apps/orfox/\">Orfox</a></mark>."
+
+#: 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 ""
+"Caso o Tor Browser já esteja aberto, clique no ícone do Torbutton (a pequena"
+" cebola verde no canto superior esquerdo da tela) e, em seguida, em \"Abrir "
+"configurações de rede\" e, em seguida, em \"Copiar os registros do Tor para "
+"a Área de Transferência\"."
+
+#: 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 ""
+"Pode encontrar mais informação detalhada sobre Tor + VPN na <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">nossa "
+"wiki</a></mark>."
+
+#: 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 ""
+"Escolha uma diretoria que irá lembrar-se com facilidade, e assim que a "
+"transferência terminar, deverá ver uma pasta \"Tor Browser\" nesse local."
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.title)
+msgid "How do I update Tor Browser?"
+msgstr "Como é que eu atualizo o Tor Browser?"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "This should fix the issues you're experiencing."
+msgstr "Isto deverá corrigir os problemas que está a ter."
+
+#: 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 "Eu estou a ter um problema com NoScript."
+
+#: http//localhost/tbb/tbb-34/
+#: (content/tbb/tbb-34/contents+en.lrquestion.title)
+msgid "Why does Tor Browser ship with Javascript enabled?"
+msgstr "Por que é que o Tor Browser vem com o Javascript ativado?"
+
+#: http//localhost/misc/misc-3/
+#: (content/misc/misc-3/contents+en.lrquestion.seo_slug)
+msgid "tor-funding"
+msgstr ""
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.description)
+msgid "Tor browser will install the updates."
+msgstr "O Tor Browser irá instalar as atualizações."
+
+#: 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 "* Português (pt-BR)"
+
+#: 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 ""
+"Caso você não o encontre em uma dessas pastas, baixe-o novamente e fique "
+"atento à caixa de diálogo que pede a você a escolha de um diretório para "
+"download."
+
+#: http//localhost/operators/operators-7/
+#: (content/operators/operators-7/contents+en.lrquestion.seo_slug)
+msgid "run-exit-from-home"
+msgstr ""
+
+#: http//localhost/operators/operators-7/
+#: (content/operators/operators-7/contents+en.lrquestion.title)
+msgid "Should I run an exit relay from home?"
+msgstr ""
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.seo_slug)
+msgid "updating-tor-browser"
+msgstr "atualização-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 ""
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.description)
+msgid ""
+"$ gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -"
+msgstr ""
+
+#: 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 "executar-tor-browser-e-navegador-diferente"
+
+#: http//localhost/faq/faq-3/
+#: (content/faq/faq-3/contents+en.lrquestion.seo_slug)
+msgid "install-add-on-extension-tor-browser"
+msgstr "instalar-extensão-extra-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 ""
+
+#: 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 "* Edite /etc/tor/torrc para parecer-se com o seguinte:"
+
+#: 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 ""
+"Eu estou com problemas para utilizar as funcionalidades no Facebook, "
+"Twitter, ou noutro site da Web quando eu estou a utilizar o Tor Browser."
+
+#: http//localhost/misc/misc-1/
+#: (content/misc/misc-1/contents+en.lrquestion.seo_slug)
+msgid "tracing-tor-user"
+msgstr ""
+
+#: 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-nao-ira-ligar-sem-censura"
+
+#: 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 "Eu estou a ter um problema com 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 ""
+
+#: 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 ""
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "BridgeRelay 1"
+msgstr ""
+
+#: 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 ""
+"Dito isso, o Tor é muito mais rápido do que costumava ser e você pode não "
+"perceber qualquer mudança na velocidade de outros navegadores."
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Türkçe (tr)"
+msgstr "* Turco (tr)"
+
+#: 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 "ligar-ao-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=\"New release alert\">"
+
+#: 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 ""
+
+#: http//localhost/tbb/tbb-35/
+#: (content/tbb/tbb-35/contents+en.lrquestion.seo_slug)
+msgid "get-rid-of-captchas"
+msgstr "livrar-se-de-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 ""
+"O restante do seu circuito altera com cada novo site da Web que visita, e é "
+"o conjunto destes retransmissores que fornecem as proteções de privacidade "
+"total do Tor."
+
+#: http//localhost/tbb/tbb-2/
+#: (content/tbb/tbb-2/contents+en.lrquestion.seo_slug)
+msgid "first-address-relay-circuit"
+msgstr "primeiro-endereço-circuito-de-retransmissão"
+
+#: 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 ""
+
+#: 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 "diversos"
+
+#: 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 ""
+
+#: http//localhost/tbb/tbb-32/
+#: (content/tbb/tbb-32/contents+en.lrquestion.title)
+msgid "Can I set Tor Browser as my default browser?"
+msgstr "Eu posso definir o Tor Browser como o meu navegador predefinido?"
+
+#: 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 "tor-pode-ajudar-utilizadores-aceder-sitedaweb"
+
+#: 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 ""
+"Se o seu problema não está listado, por favor, crie um <mark><a "
+"href=\"https://trac.torproject.org\">relatório de erro</a></mark> sobre a "
+"sua experiência."
+
+#: 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 "O Tor Browser utiliza um circuito diferente para cada site da Web?"
+
+#: 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 ""
+"Por favor, note que alguns clientes de antivírus, tal como Kaspersky, também"
+" podem bloquear o Tor no nível da firewall."
+
+#: http//localhost/gettor/gettor-3/
+#: (content/gettor/gettor-3/contents+en.lrquestion.title)
+msgid "To use GetTor via Twitter."
+msgstr "Para utilizar o GetTor via Twitter:"
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "* Run \"service tor reload\" (as root)."
+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 "Tor Browser prevents people from knowing the websites you visit."
+msgstr ""
+"O Tor Browser evita que as pessoas saibam quais são os websites que você "
+"visita."
+
+#: 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 ""
+"Caso o resultado desejado seja, simplesmente, o acesso a recursos "
+"disponíveis em apenas um país específico, avalie a possibilidade de usar uma"
+" VPN em vez do 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-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 ""
+
+#: 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 "* Inglês (en-US)"
+
+#: http//localhost/tbb/tbb-1/
+#: (content/tbb/tbb-1/contents+en.lrquestion.seo_slug)
+msgid "most-common-issues-latest-stable-tor-browser"
+msgstr "problemas-mais-comuns-ultima-versao-estavel-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 ""
+
+#: 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 ""
+"Quando eu utilizo o Tor Browser, alguém poderá dizer quais os sites da Web "
+"que eu visito?"
+
+#: 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 "##### Nova Identidade"
+
+#: 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 ""
+"O uso do Tor Browser pode proteger outros aplicativos em meu computador?"
+
+#: 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 ""
+"Este é um retransmissor rápido e estável que ocupa o primeiro lugar no seu "
+"circuito durante 2 a 3 meses, para o proteger contra um ataque que pode "
+"quebrar o anonimato."
+
+#: http//localhost/tbb/tbb-42/
+#: (content/tbb/tbb-42/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-firefox-not-working-error"
+msgstr ""
+
+#: http//localhost/tbb/tbb-31/
+#: (content/tbb/tbb-31/contents+en.lrquestion.seo_slug)
+msgid "which-platform-tor-browser-available"
+msgstr ""
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* TorBrowser"
+msgstr "* TorBrowser"
+
+#: 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 "#Endereço noname.example.com"
+
+#: 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 ""
+"Sempre que nós lançamos uma versão estável do Tor Browser, nós publicamos um"
+" artigo de blogue que detalha as suas novas funcionalidades e problemas "
+"conhecidos."
+
+#: 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> é o "
+"mecanismo de pesquisa predefinido no 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: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 ""
+"Eu ouvi falar sobre sites da Web que só são acessíveis por meio do Tor. "
+"Quais são estes sites da Web, e como é que eu os posso aceder?"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* For Windows"
+msgstr "* Para Windows"
+
+#: http//localhost/tbb/tbb-26/
+#: (content/tbb/tbb-26/contents+en.lrquestion.title)
+msgid "I'm having a problem with HTTPS Everywhere."
+msgstr "Eu estou a ter um problema com HTTPS Everywhere."
+
+#: http//localhost/tbb/tbb-39/
+#: (content/tbb/tbb-39/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-issues-facebook-twitter-websites"
+msgstr ""
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Korean (ko)"
+msgstr "* Coreano (ko)"
+
+#: 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 ""
+"Por favor, consulte o <mark><a href=\"https://duck.co/help\">portal de apoio"
+" do DuckDuckGo</a></mark>."
+
+#: 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 ""
+
+#: 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 "* Italiano (it)"
+
+#: 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 "* Árabe (ar)"
+
+#: 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 "## Defina a sua própria informação de contacto"
+
+#: 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 ""
+"Quando eu estou a utilizar o Tor, os bisbilhoteiros ainda podem ver a "
+"informação que eu partilho com os sites da Web, tal como informação de "
+"sessão e coisas que eu digito nos formulários?"
+
+#: 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/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/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 "Pode livrar-se de todos os captchas?"
+
+#: 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 ""
+
+#: 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 "Quando é que será lançado o Tor Browser para Android?"
+
+#: 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 ""
+
+#: 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 ""
+"Pode encontrar mais informação sobre doações nas nossas <mark><a "
+"href=\"https://donate.torproject.org/donor-faq\">Perguntas Mais Frequentes "
+"do doador</a></mark>. "
+
+#: http//localhost/tbb/tbb-40/
+#: (content/tbb/tbb-40/contents+en.lrquestion.seo_slug)
+msgid "different-circuit-each-website"
+msgstr "circuito-diferente-cada-sitedaWeb"
+
+#: 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 "antivírus-bloquear-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 ""
+
+#: http//localhost/misc/misc-7/
+#: (content/misc/misc-7/contents+en.lrquestion.description)
+msgid "No, we don't provide any online services."
+msgstr "Não, nós não oferecemos quaisquer serviços on-line."
+
+#: 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 "Em seguida, exclua os seguintes processos:"
+
+#: 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 ""
+"A definição predefinida no instalador do Windows também cria um atalho para "
+"si, na sua Área de Trabalho, mas é importante lembrar-se que pode ter "
+"desmarcado acidentalmente a opção para criar um atalho."
+
+#: http//localhost/gettor/gettor-2/
+#: (content/gettor/gettor-2/contents+en.lrquestion.title)
+msgid "To use GetTor via email."
+msgstr "Para utilizar GetTor via e-mail."
+
+#: 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 ""
+"Quais são os problemas mais comuns com a última versão estável do Tor "
+"Browser?"
+
+#: 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 "para-utilizar-gettor-via-e-mail"
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "* Run \"apt-get install tor obfs4proxy\" (as root)."
+msgstr ""
+
+#: http//localhost/censorship/censorship-6/
+#: (content/censorship/censorship-6/contents+en.lrquestion.seo_slug)
+msgid "is-my-network-censored"
+msgstr ""
+
+#: 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 ""
+"Nós recomendamos uma aplicação para iOS chamada de Onion Browser, que é de "
+"código aberto, usa reencaminhamento Tor e é desenvolvido por alguém que "
+"trabalha de perto com o Tor Project."
+
+#: http//localhost/tbb/tbb-15/
+#: (content/tbb/tbb-15/contents+en.lrquestion.title)
+msgid "Can I download Tor Browser for ChromeOS?"
+msgstr "Eu posso transferir o Tor Browser para ChromeOS?"
+
+#: http//localhost/tbb/tbb-2/
+#: (content/tbb/tbb-2/contents+en.lrquestion.description)
+msgid "That is normal Tor behavior."
+msgstr "Esse é um comportamento normal do Tor."
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "Removing Tor Browser from your system is simple:"
+msgstr "Remover o Tor Browser do seu sistema é simples:"
+
+#: http//localhost/tormobile/tormobile-5/
+#: (content/tormobile/tormobile-5/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-for-android"
+msgstr "tor-browser-para-android"
+
+#: http//localhost/tbb/tbb-11/
+#: (content/tbb/tbb-11/contents+en.lrquestion.seo_slug)
+msgid "cannot-find-tor-on-windows"
+msgstr "não-e-possível-encontrar-tor-no-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)
+#: http//localhost/tbb/tbb-14/
+#: (content/tbb/tbb-14/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 ""
+
+#: 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 ""
+"Por exemplo, o \"onion\" de DuckDuckGo é <a "
+"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+
+#: http//localhost/tormobile/tormobile-1/
+#: (content/tormobile/tormobile-1/contents+en.lrquestion.seo_slug)
+msgid "run-tor-on-android"
+msgstr "executar-tor-em-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 ""
+"Em termos gerais, não recomendamos o uso de uma VPN com o Tor a menos que "
+"vocẽ seja um usuário avançado que saiba configurar a ambos de um modo que "
+"não comprometa sua privacidade."
+
+#: 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 ""
+
+#: http//localhost/tbb/tbb-30/
+#: (content/tbb/tbb-30/contents+en.lrquestion.seo_slug)
+msgid "website-locks-torbrowser-out"
+msgstr "site da Web-bloqueia-torbrowser"
+
+#: 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 ""
+"Se não se lembrar de qual era este destino, é mais provável que seja a pasta"
+" de \"Transferências\" ou \"Área de Trabalho\"."
+
+#: 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 "desinstalar-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 "Posso definir o Tor Browser no meu navegador predefinido?"
+
+#: 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 ""
+"Para o recurso mais profundo sobre a execução de uma retransmissão, consulte"
+" <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Guia de"
+" Retransmissão do Tor</a></mark>."
+
+#: 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 ""
+"Se estiver a utilizar HTTPS, o URL do seu site da Web começara com "
+"\"https://\".</h4>"
+
+#: 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 ""
+"<mark><a href=\"https://blog.torproject.org/tor-heart-onion-browser-and-"
+"more-ios-tor\">Saiba mais sobre o Onion Browser</a></mark>."
+
+#: 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 ""
+
+#: http//localhost/tbb/tbb-7/
+#: (content/tbb/tbb-7/contents+en.lrquestion.description)
+msgid "Thank you.\""
+msgstr "Obrigado.\""
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* 日本語 (ja)"
+msgstr "* Japonês (ja)"
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.description)
+msgid "##### New Tor Circuit for this Site"
+msgstr "##### Novo Tor Circuit para este Site"
+
+#: 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 ""
+"Qual mecanismo de busca vem com o Tor Browser e como ele protege minha "
+"privacidade?"
+
+#: 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 ""
+"Por favor, certifique-se de que o o relógio de seu sistema e seu fuso "
+"horário estão corretamente configurados."
+
+#: 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 "censura"
+
+#: 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 ""
+"Por que é que não impede que as pessoas más façam coisas desagradáveis "
+"quando utilizam o Tor?"
+
+#: 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 ""
+"O Tor Browser está atualmente disponível para <mark><a "
+"href=\"https://www.torproject.org/download/download-"
+"easy.html.en#windows\">Linux</a></mark>, <mark><a "
+"href=\"https://www.torproject.org/download/download-"
+"easy.html.en#linux\">macOS (OSX)</a></mark> e <mark><a "
+"href=\"https://www.torproject.org/download/download-"
+"easy.html.en#mac\">Windows</a></mark>."
+
+#: http//localhost/censorship/censorship-1/
+#: (content/censorship/censorship-1/contents+en.lrquestion.seo_slug)
+msgid "our-website-is-blocked-by-a-censor"
+msgstr ""
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "Finally, restart Tor Browser."
+msgstr "Finalmente, reinicie o Tor Browser"
+
+#: http//localhost/connecting/ (content/connecting/contents+en.lrtopic.title)
+msgid "Connecting To Tor"
+msgstr "A ligar ao Tor"
+
+#: 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 "Eu estou com um problema ao atualizar ou a utilizar 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 ""
+"Um dos problemas mais comuns a causar erros de conexão no Tor Browser é um "
+"relógio de sistema incorreto."
+
+#: 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 ""
+"Por que o primeiro endereço IP do meu circuito de retransmissão é sempre o "
+"mesmo?"
+
+#: 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 ""
+"Para Android, The Guardia Project mantém as aplicações Orbot e Orfox que "
+"funcionam com o Tor."
+
+#: 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 ""
+"Meu software antivírus ou antimalware me impede de acessar o Tor Browser."
+
+#: 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 ""
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* obfs4proxy (if you use bridges)"
+msgstr "* obfs4proxy (se utilizar pontes)"
+
+#: 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 ""
+
+#: http//localhost/misc/misc-3/
+#: (content/misc/misc-3/contents+en.lrquestion.title)
+msgid "Who funds Tor?"
+msgstr "Quem financia o Tor?"
+
+#: http//localhost/tbb/tbb-24/
+#: (content/tbb/tbb-24/contents+en.lrquestion.seo_slug)
+msgid "problem-with-duckduckgo"
+msgstr "problema-com-duckduckgo"
+
+#: http//localhost/tbb/tbb-23/
+#: (content/tbb/tbb-23/contents+en.lrquestion.seo_slug)
+msgid "search-engine-tor-browser"
+msgstr "motor-pesquisa-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 ""
+
+#: 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 ""
+"Por favor, consulte as <mark> <a href=\"https://noscript.net/faq\">Perguntas"
+" Mais Frequentes de NoScript</a> </mark>."
+
+#: 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 "precisa-idioma-não-inglês-tor-browser"
+
+#: 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 ""
+"Atualmente, nós estamos a trabalhar no Tor Browser para Android, e poderá "
+"ver os lançamentos de versões alfa a aparecerem nos próximos meses."
+
+#: http//localhost/gettor/gettor-3/
+#: (content/gettor/gettor-3/contents+en.lrquestion.seo_slug)
+msgid "to-use-gettor-via-twitter"
+msgstr "para-utilizar-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 ""
+"Você? <mark><a href=\"https://www.torproject.org/about/contact.html.en"
+"\">Contacta-nos</a></mark>."
+
+#: 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 ""
+
+#: 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 "Diversos"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* obfs4proxy.exe (if you use bridges)"
+msgstr "* obfs4proxy.exe (se utilizar pontes)"
+
+#: 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 ""
+"Guardian Project mantém o Tor (e outras aplicações de privacidade) em "
+"Android. Pode encontrar mais informação no <mark><a "
+"href=\"https://guardianproject.info/\">site da Web do Guardian "
+"Project</a></mark>."
+
+#: 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 "aplicação-projeto-tor-para-conversacao-privada"
+
+#: 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 ""
+"Orfox é para a navegação na Web, e o Orbot pode reencaminhar outras "
+"aplicações no seu telefone Android através da rede 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-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 ""
+"O Flash está desativado no Tor Browser, e nós recomendamos que não o ative."
+
+#: 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 ""
+
+#: http//localhost/ (content/contents+en.lrshowcase.title)
+msgid "How can we help?"
+msgstr "Como é que nós pudemos ajudar?"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Nederlands (nl)"
+msgstr "* Holandês (nl)"
+
+#: 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 ""
+"<mark><a "
+"href=\"https://www.torproject.org/projects/torbrowser/design/\">Saiba mais "
+"sobre o desenho do Tor Browser</a></mark>."
+
+#: 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 ""
+"Atualmente, nós oferecemos o <mark><a "
+"href=\"https://www.torproject.org/projects/torbrowser.html.en\">Tor "
+"Browser</a></mark> nos seguintes idiomas:"
+
+#: 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 ""
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Español (es-ES)"
+msgstr "* Espanhol (es-ES)"
+
+#: http//localhost/tbb/tbb-19/
+#: (content/tbb/tbb-19/contents+en.lrquestion.seo_slug)
+msgid "cannot-connect-to-tor-browser-network-censored"
+msgstr "nao-é-possivel-ligar-à-rede-tor-censurada"
+
+#: 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 ""
+
+#: http//localhost/faq/ (content/faq/contents+en.lrtopic.title)
+msgid "Most Frequently Asked Questions"
+msgstr "Perguntas Mais Frequentes"
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.title)
+msgid "How do I uninstall Tor Browser?"
+msgstr "Como é que eu desinstalo o Tor Browser?"
+
+#: 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 ""
+"Eu transferi e instalei o Tor Browser para Windows, mas agora não o consigo "
+"encontrar."
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "* Empty your Trash."
+msgstr "* Limpe a sua 'Reciclagem'"
+
+#: http//localhost/tormobile/tormobile-3/
+#: (content/tormobile/tormobile-3/contents+en.lrquestion.title)
+msgid "Can I run Tor on an iOS device?"
+msgstr "Eu posso executar o Tor num dispositivo iOS?"
+
+#: 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 "Como é que eu executo o Tor no 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 "Como é que eu posso voluntariar no Projeto Tor?"
+
+#: 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)
+#: 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 "
+"<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 "alterar-endereço-ip"
+
+#: 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 ""
+"Para obter mais informação sobre como funcionam os retransmissores de "
+"proteção, consulte este <mark><a href=\"https://blog.torproject.org"
+"/improving-tors-anonymity-changing-guard-parameters\">artigo de "
+"blogue</a></mark> e esta <mark><a href=\"https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf\">monografia</a></mark> sobre "
+"esse tipo de retransmissor."
+
+#: 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 ""
+"A maioria dos softwares antivírus ou antimalware permite que o usuário "
+"adicione certos processos, que de outro modo seriam bloqueados, a uma "
+"\"lista branca\"."
+
+#: http//localhost/tbb/tbb-6/
+#: (content/tbb/tbb-6/contents+en.lrquestion.seo_slug)
+msgid "make-tor-browser-default-browser"
+msgstr ""
+
+#: 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 "problema-com-https-everywhere"
+
+#: http//localhost/censorship/ (content/censorship/contents+en.lrtopic.title)
+msgid "Censorship"
+msgstr "Censura"
+
+#: 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 ""
+"Por favor, tome uma posição forte em favor da privacidade digital e da "
+"liberdade da Internet, e permita que os utilizadores do Tor acedam a "
+"xyz.com."
+
+#: 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 ""
+"O Tor Browser não liga, mas este não parece ser um problema com a censura."
+
+#: 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 "O que é uma ponte?"
+
+#: 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 ""
+
+#: 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 ""
+"Qualquer outro aplicativo em seu sistema (incluindo outros navegadores) não "
+"rotearão suas conexões pela rede Tor e, portanto, não serão protegidos."
+
+#: 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 "O ficheiro que transferiu e executou solicita-lhe um destino."
+
+#: 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 ""
+"Algumas entidades, tais como o seu Provedor de Acesso à Intenet (em inglês, "
+"ISP = Internet Service Provider), podem ver que você está usando o Tor, mas "
+"não sabem aonde você vai quando o faz."
+
+#: 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 "Envie uma mensagem para 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 "Somente o tráfego do Tor Browser será roteado através da rede Tor."
+
+#: 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 ""
+
+#: 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 ""
+"Uma lista de todos os nossos projetos de software pode ser encontrada na "
+"nossa <mark><a "
+"href=\"https://www.torproject.org/projects/projects.html.en\">página de "
+"projetos</a></mark>."
+
+#: 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 "O Projeto Tor oferece hospedagem?"
+
+#: 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 "Eu posso utilizar uma VPN com o 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 ""
+"Felizmente, a maioria dos websites, dispostivos e demais navegadores estão "
+"se afastando do uso do Flash."
+
+#: 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 "#MyFamily $keyid,$keyid,..."
+
+#: http//localhost/censorship/censorship-2/
+#: (content/censorship/censorship-2/contents+en.lrquestion.seo_slug)
+msgid "website-is-blocking-access-over-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-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 ""
+
+#: 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 "ver-registo-mensagens-tor-browser"
+
+#: http//localhost/tbb/tbb-38/
+#: (content/tbb/tbb-38/contents+en.lrquestion.seo_slug)
+msgid "network-admin-know-i-am-using-tor"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+"Obtém a melhor segurança que o Tor pode oferecer quando permite que o este "
+"efetue a seleção da rota; substituindo os nodos de entrada / saída que podem"
+" comprometer o seu anonimato."
+
+#: 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 ""
+"Por favor, consulte o nosso <mark><a "
+"href=\"https://blog.torproject.org\">blogue</a></mark> para anúncios futuros"
+" e detalhes, relacionados com este projeto."
+
+#: 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 "Como é que eu transfiro o Tor se o torproject.org estiver bloqueado?"
+
+#: 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 "executar-tor-no-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 "Eu posso alterar o número de etapas que o Tor utiliza?"
+
+#: 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 ""
+"O primeiro servidor de retransmissão de seu circuito é chamado de \"guarda "
+"de entrada\" ou, simplesmente, \"guarda\"."
+
+#: http//localhost/tbb/tbb-16/
+#: (content/tbb/tbb-16/contents+en.lrquestion.title)
+msgid "Can I pick which country I'm exiting from?"
+msgstr "Eu posso escolher o país do meu nodo de saída?"
+
+#: http//localhost/misc/misc-12/
+#: (content/misc/misc-12/contents+en.lrquestion.seo_slug)
+msgid "share-files-anonymously-through-tor"
+msgstr ""
+
+#: 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 "No Tor Browser, cada novo domínio recebe o seu próprio circuito."
+
+#: http//localhost/tormessenger/
+#: (content/tormessenger/contents+en.lrtopic.seo_slug)
+msgid "tor-messenger"
+msgstr "mensageiro-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-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 ""
+"O que é que eu posso fazer para o Tor ser mais rápido? O Tor Browser é mais "
+"lento que os outros navegadores?"
+
+#: 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 "Operadores"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Русский (ru)"
+msgstr "* Russo (ru)"
+
+#: 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 "existe-suporte-para-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 ""
+
+#: http//localhost/tbb/tbb-41/
+#: (content/tbb/tbb-41/contents+en.lrquestion.title)
+msgid "Why did my search engine switch to DuckDuckGo?"
+msgstr "Porque é que o meu motor de pesquisa muda para 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 ""
+"Para mais informação, por favor, consulte <mark><a href=\"https://tb-"
+"manual.torproject.org/en-US/\">Tor Browser - Manual do Utilizador</a></mark>"
+" secção de <mark><a href=\"https://tb-manual.torproject.org/en-"
+"US/circumvention.html\">censura</a></mark>."
+
+#: 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 ""
+"Se isto não resolver o problema, consulte a página de Solução de Problemas "
+"no <mark><a href=\"https://tb-manual.torproject.org/en-"
+"US/bridges.html\">manual do Tor Browser</a></mark>"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* 简体字 (zh-CN)"
+msgstr "* Chinês (Simplificado) (zh-CN)"
+
+#: http//localhost/onionservices/onionservices-2/
+#: (content/onionservices/onionservices-2/contents+en.lrquestion.seo_slug)
+msgid "what-is-a-dot-onion"
+msgstr ""
+
+#: 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 ""
+"O Tor Project oferece serviço de e-mail ou outros serviços de proteção de "
+"privacidade na Web?"
+
+#: 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 ""
+"Caso seja necessário assegurar que todo o tráfego seja transmitido pela rede"
+" Tor, confira o <mark><a href=\"https://tails.boum.org/\">sistema "
+"operacional \"live\" Tails</a></mark> que você pode usar para dar boot em "
+"qualquer computador usando um pendrive USB ou um DVD."
+
+#: http//localhost/tbb/ (content/tbb/contents+en.lrtopic.title)
+msgid "Tor Browser"
+msgstr "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 "##### 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 "usando-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 ""
+"Eu tenho uma razão convincente para rastrear um utilizador do Tor. Pode "
+"ajudar?"
+
+#: 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 ""
+"Por favor, abra seu software antivírus ou antimalware e procure, nas "
+"configurações, por uma \"lista branca\" ou algo semelhante."
+
+#: http//localhost/gettor/gettor-4/
+#: (content/gettor/gettor-4/contents+en.lrquestion.seo_slug)
+msgid "to-use-gettor-via-xmpp"
+msgstr "para-utilizar-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 ""
+
+#: http//localhost/tbb/tbb-4/
+#: (content/tbb/tbb-4/contents+en.lrquestion.seo_slug)
+msgid "tor-browser-is-built-from-firefox-why"
+msgstr "porque-o-tor-browser-e-criado-a-partir-do-firefox"
+
+#: http//localhost/tbb/tbb-12/
+#: (content/tbb/tbb-12/contents+en.lrquestion.title)
+msgid "Can I use Flash in Tor Browser?"
+msgstr "Eu posso utilizar o Flash no Tor Browser?"
+
+#: 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 ""
+"O documento <mark><a "
+"href=\"https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability\">O Desenho e Implementação do Tor Browser</a></mark> explica "
+"ainda mais o pensamento por trás desse desenho."
+
+#: 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 ""
+"Clique no botão rotulado \"Copiar o registro do Tor para a Área de "
+"Transferência\", que será exibido numa caixa de diálogo quando o Tor Browser"
+" estiver se conectando á rede pela primeira vez."
+
+#: 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 ""
+"É possível que esteja numa rede censurada, e por isso, deveria tentar a "
+"utilização de pontes."
+
+#: 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 "executar-tor-em-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 "Eu não consigo alcançar 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 ""
+
+#: http//localhost/misc/misc-9/
+#: (content/misc/misc-9/contents+en.lrquestion.seo_slug)
+msgid "having-a-problem-updating-vidalia"
+msgstr ""
+
+#: http//localhost/tbb/tbb-16/
+#: (content/tbb/tbb-16/contents+en.lrquestion.seo_slug)
+msgid "pick-which-country-i-am-exiting"
+msgstr "escolher-pais-nodo-saida"
+
+#: 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 ""
+
+#: 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 ""
+"Eu devo instalar um novo extra ou extensão no Tor Browser, tais como AdBlock"
+" Plus ou uBlock Origin?"
+
+#: 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 ""
+"Por favor, observe que as VPNs não dispõem dos mesmos recursos de "
+"privacidade do Tor, mas podem ajudar você a superar problemas de limites e "
+"bloqueios a geolocalizações."
+
+#: 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 "Para utilizar GetTor via 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 ""
+
+#: 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 "A nossa missão:"
+
+#: 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 "Subscreva o nosso Boletim Informativo"
+
+#: templates/footer.html:25
+msgid "Get monthly updates and opportunities from the Tor Project"
+msgstr ""
+
+#: 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 - Projeto | Apoio"
+
+#: templates/navbar.html:4
+msgid "Tor Logo"
+msgstr "Logótipo do Tor"
+
+#: templates/navbar.html:40
+msgid "Download Tor Browser"
+msgstr "Transferir Tor Browser"
+
+#: templates/search.html:5
+msgid "Search"
+msgstr "Pesquisar"
+
+#: templates/macros/question.html:11
+msgid "Permalink"
+msgstr "Ligação Permanente"
diff --git a/contents+ru.po b/contents+ru.po
index 90862d134..316a3ae3e 100644
--- a/contents+ru.po
+++ b/contents+ru.po
@@ -1,16 +1,17 @@
# Translators:
-# Sergey Smirnov <cj75300(a)gmail.com>, 2018
# erinm, 2018
# 45Green Anonymous <45tanaa(a)gmail.com>, 2018
+# Sergey Smirnov <cj75300(a)gmail.com>, 2018
# Legenden Rifk <rekytcsgo(a)gmail.com>, 2018
-# diana azaryan, 2018
+# diana azaryan <dianazryn(a)gmail.com>, 2018
+#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-10-27 19:20+CET\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: diana azaryan, 2018\n"
+"PO-Revision-Date: 2018-10-02 22:41+0000\n"
+"Last-Translator: diana azaryan <dianazryn(a)gmail.com>, 2018\n"
"Language-Team: Russian (https://www.transifex.com/otf/teams/1519/ru/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
diff --git a/contents+tr.po b/contents+tr.po
index 10cf9792b..35baf3ed0 100644
--- a/contents+tr.po
+++ b/contents+tr.po
@@ -1,12 +1,13 @@
# Translators:
# erinm, 2018
# Emma Peel, 2018
+#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-10-27 19:20+CET\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Emma Peel, 2018\n"
"Language-Team: Turkish (https://www.transifex.com/otf/teams/1519/tr/)\n"
"MIME-Version: 1.0\n"
diff --git a/contents+zh-CN.po b/contents+zh-CN.po
new file mode 100644
index 000000000..5b4c08233
--- /dev/null
+++ b/contents+zh-CN.po
@@ -0,0 +1,4069 @@
+# Translators:
+# Herman Gu <hkoe.academic(a)gmail.com>, 2018
+# erinm, 2018
+# MD Rights <psychi2009(a)gmail.com>, 2018
+# Emma Peel, 2018
+# ヨイツの賢狼ホロ, 2018
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-10-27 19:20+CET\n"
+"PO-Revision-Date: 2018-10-02 22:41+0000\n"
+"Last-Translator: ヨイツの賢狼ホロ, 2018\n"
+"Language-Team: Chinese (China) (https://www.transifex.com/otf/teams/1519/zh_CN/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: zh_CN\n"
+"Plural-Forms: nplurals=1; plural=0;\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 "强烈不推荐自行修改 Tor 线路。"
+
+#: 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 "但请注意,其他浏览器不能让您的活动保持私密,您可能会错误地使用非私密浏览器来执行您在 Tor Browser 中的操作。"
+
+#: http//localhost/misc/misc-4/
+#: (content/misc/misc-4/contents+en.lrquestion.description)
+msgid "We do not recommend using Tor with BitTorrent."
+msgstr "不推荐将 Tor 和 BitTorrent 一起使用。"
+
+#: 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 "* Français (法语)"
+
+#: 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 "Tor Browser 防止窃听者获知您访问过的网站。"
+
+#: 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 ""
+"虽然 Disconnect 是一个允许用户使用不同的搜索提供商的元搜索引擎,它使用 Bing 作为后备,而Bing 的搜索结果质量并不理想。"
+
+#: 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 "* 编辑 /usr/local/etc/tor/torrc 文件如下:"
+
+#: http//localhost/misc/misc-15/
+#: (content/misc/misc-15/contents+en.lrquestion.title)
+msgid "How can I donate to Tor Project?"
+msgstr "我该怎样向 Tor Project 捐款?"
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "* Locate your Tor Browser folder or application."
+msgstr "* 打开你 Tor Browser 的文件夹。"
+
+#: 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 "Tor 的网络有超过一百万个用户,但是只有 6000 多个节点路径来导流数据,每次节点传送都会造成一定的延迟。"
+
+#: 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 "低级和默认设置都允许 JavaScript,但中级和高级则会屏蔽 HTTP 网站的 JavaScript。"
+
+#: 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 "在 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 "无法连接到 Tor,但我不知道发生了什么什么错误。"
+
+#: 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 "我的网站被审查机构屏蔽了,Tor Browser 能帮助用户访问我的网站吗?"
+
+#: 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 "请确认你只有一个 Tor Browser 在运行并且你的 Tor Browser 安装在一个有正确权限的文件夹里。"
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "* Delete the Tor Browser folder or application."
+msgstr "* 删除 Tor Browser 文件夹或者应用程序。"
+
+#: 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 "强烈建议不要在 Tor Browser 上安装新的附加组件,因为这可能会损害你的隐私和安全。"
+
+#: 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 站点上禁用 JavaScript 的用户,我们推荐配置 Tor Browser 的安全滑块。(参见 Tor Browser "
+"洋葱菜单的“安全设置”)"
+
+#: 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 "这些服务使用特殊的 tld .onion (而不是.com .net .org等)而且这些服务只有在 Tor 网络 里可以连接。"
+
+#: 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 "我视图访问的网站阻止了来自 Tor 网络的连接请求。"
+
+#: http//localhost/misc/misc-6/
+#: (content/misc/misc-6/contents+en.lrquestion.title)
+msgid "Does Tor keep logs?"
+msgstr "Tor 会留存日志吗?"
+
+#: 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 "目前没有在 Windows Phone 上运行 Tor 的方法。"
+
+#: http//localhost/onionservices/onionservices-2/
+#: (content/onionservices/onionservices-2/contents+en.lrquestion.title)
+msgid "What is a .onion or what are onion services?"
+msgstr "什么是 .onion,或者说什么是洋葱服务?"
+
+#: 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 ""
+"通过 Tor 网络分享文件,<mark><a href=\"https://onionshare.org/\">OnionShare "
+"洋葱分享</a></mark>是一个不错的选项。"
+
+#: http//localhost/operators/operators-7/
+#: (content/operators/operators-7/contents+en.lrquestion.description)
+msgid "No."
+msgstr "不要这么做。"
+
+#: 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 "设置 Tor Browser 为默认浏览器"
+
+#: 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 "不幸的是,我们目前还没有 ChromeOS 版本的 Tor Browser 。"
+
+#: 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=\"新版本提醒\">"
+
+#: 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 "我电脑上的一些文件被锁住了,有人要求我下载 Tor Browser 来支付赎金赎回文件!"
+
+#: 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 "很多出口节点会设置成阻止 BitTorrent 一类的文件共享服务的流量。"
+
+#: 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 "Tor 需要准确的时间设置:请检查你的时间,时区和日期设置是否正确。"
+
+#: 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 ""
+"更多信息请查阅我们的<mark><a href=\"https://blog.torproject.org/bittorrent-over-tor-"
+"isnt-good-idea\">有关这个项目的博文</a></mark>。"
+
+#: 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 ""
+"你可以我们的财务报告上查询<mark><a "
+"href=\"https://www.torproject.org/about/sponsors.html.en\">捐款人</a></mark>和一系列<mark><a"
+" href=\"https://blog.torproject.org/category/tags/form-990\">日志</a></mark>。"
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "RunAsDaemon 1"
+msgstr "RunAsDaemon 1"
+
+#: 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 "如果您的网络连接需要设置 SOCKS 代理,请确认您代理服务器的信息正确。"
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.seo_slug)
+msgid "using-correct-packages"
+msgstr "使用正确的安装包"
+
+#: 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 "如果您同时使用 Tor Browser 和其他浏览器,这不会影响 Tor 的安全性和私密性。"
+
+#: 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 "Tor Browser 可以帮助人们访问所在地区被封锁的网站。"
+
+#: http//localhost/tbb/tbb-21/
+#: (content/tbb/tbb-21/contents+en.lrquestion.title)
+msgid "How do I view Tor Browser message log?"
+msgstr "我该怎么查询 Tor Browser 的消息日志?"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Deutsch (de)"
+msgstr "* Deutsch (德语)"
+
+#: 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 "我如何在 FreeBSD 上运行中转(或中间)节点"
+
+#: http//localhost/misc/misc-15/
+#: (content/misc/misc-15/contents+en.lrquestion.description)
+msgid "Thank you for your support!"
+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 ""
+"If you need other bridges, you can get them at our <mark><a "
+"href=\"https://bridges.torproject.org/\">Bridges website</a></mark>."
+msgstr ""
+"如果您需要其他的网桥,你可以从<mark><a "
+"href=\"https://bridges.torproject.org/\">网桥网站</a></mark>上查询。"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Polish (pl)"
+msgstr "* Polish (波兰语)"
+
+#: 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 Browser 目前支持 Windows ,macOS 和 GNU/Linux 操作系统。"
+
+#: 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 ""
+"<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> 维护的 <mark><a "
+"href=\"https://guardianproject.info/apps/orbot/\">Orbot</a></mark> 和 "
+"<mark><a "
+"href=\"https://guardianproject.info/apps/orfox/\">Orfox</a></mark>来使用 Tor "
+"网络。"
+
+#: 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 "不过你的网络提供商或网络管理员也许可以发现你在使用 Tor,但他们无法知道你浏览的具体网站。"
+
+#: 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 "* 请确认在开机时启动 Tor 。可以以 root 用户运行 \"sysrc tor_enable=YES\" 来启用此功能。"
+
+#: 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 "抱歉, 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 ""
+"19.11.2017 00:04:48.200 [NOTICE] Bootstrapped 10%: Finishing handshake with "
+"directory server"
+msgstr ""
+"19.11.2017 00:04:48.200 [NOTICE] Bootstrapped 10%: Finishing handshake with "
+"directory server"
+
+#: 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 "你可以通过运行你自己的中继服务器和鼓励他人做同样的事来提高整个 Tor 网络的速度。"
+
+#: 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 "当 Tor Browser 需要更新时,你可以在打开 Tor Browser 时看见一个更新提示。"
+
+#: 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 "你可以更新 Tor Browser 至最新版本。"
+
+#: 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=\"有锁型标志的绿色洋葱\">"
+
+#: 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 "抱歉,我们没有官方支持 *BSD 系统上的 Tor Browser 。"
+
+#: 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 "* 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 "* 在命令窗口以 root 权限执行“pkg install tor ”"
+
+#: 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 ""
+"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)"
+
+#: 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-services"
+
+#: http//localhost/onionservices/
+#: (content/onionservices/contents+en.lrtopic.title)
+msgid "Onion Services"
+msgstr "洋葱服务"
+
+#: 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 ""
+"请浏览<mark><a href=\"https://www.torproject.org/docs/pluggable-"
+"transports.html.en\">可插拔传输</a></mark>获取更多信息。"
+
+#: http//localhost/tormobile/tormobile-2/
+#: (content/tormobile/tormobile-2/contents+en.lrquestion.title)
+msgid "Who is the Guardian Project?"
+msgstr "什么是 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 ""
+"但是,苹果要求所有在 iOS 运行的浏览器使用 Webkit ,这会使 Onion Browser 不能提供和 Tor Browser 相同的隐私保护。"
+
+#: http//localhost/tbb/tbb-13/
+#: (content/tbb/tbb-13/contents+en.lrquestion.description)
+msgid "They need to be configured separately to use Tor."
+msgstr "需要单独配置来使用 Tor。"
+
+#: http//localhost/tbb/ (content/tbb/contents+en.lrtopic.seo_slug)
+msgid "tor-browser"
+msgstr "Tor Browser"
+
+#: 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 "您应该能够在 Tor 日志中发现这些常见问题(请在 Tor 日志里寻找如下所示的错误):"
+
+#: 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 ""
+"大多数时候,只需下载 <mark><a href=\"https://www.torproject.org/download/download-"
+"easy.html.en\">Tor Browser</a></mark>,您就可以使用它去访问被屏蔽的网站。"
+
+#: 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 ""
+"我们厌恶用 Tor 做糟糕的事情的人,但是我们并不能在剔除他们的同时,不伤害到人权活动者,记者,虐待后的幸存者们,以及其他用 Tor 做好事的人们。"
+
+#: http//localhost/operators/ (content/operators/contents+en.lrtopic.seo_slug)
+msgid "operators"
+msgstr "operators"
+
+#: 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 "同时运行 Tor Browser 和其他的浏览器安全吗?"
+
+#: 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 ""
+"如果无法通过我们的<mark><a href=\"https://www.torproject.org\">网站</a></mark>下载 "
+"Tor,你可以通过 GetTor 获取 Tor。"
+
+#: 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 "因为禁用 JavaScript 会让很多网站无法工作, Tor Browser 内置的 NoScript 默认允许 JavaScript。"
+
+#: 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 ""
+"我们在审查严重的地区提供了诸如<mark><a href=\"https://www.torproject.org/docs/pluggable-"
+"transports.html.en\">可插拔传输</a></mark>等一系列选项。"
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "* Run \"service tor start\" (as root)"
+msgstr "* 以 root 用户运行 \"service tor start\""
+
+#: 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 "* 以 root 用户运行 \"apt-get install tor\""
+
+#: 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 ""
+"2017-10-29 09:23:47.900 [NOTICE] Bootstrapped 10%: Finishing handshake with "
+"directory server"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Vietnamese (vi)"
+msgstr "* Vietnamese (越南语)"
+
+#: 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 "我能在 Tor 网络中使用 BitTorrent 吗?"
+
+#: 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 ""
+"Tor 有不同的资金支持赞助,包括美国中央政府部分机构(译者加:应该是搞笑的,Tor 被列为国家安全局重点监控对象-----"
+"因为无法监控),私有募款机构和个人。"
+
+#: 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 ""
+"有一些网桥是 Tor Browser 内置的,在第一次启动 Tor Browser 时你可以通过点击 Tor Launcher "
+"中的“设置”(并遵循提示)来使用这些网桥。"
+
+#: 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 ""
+"如果你确信这是 Tor Browser 的问题,请你报告给<mark><a "
+"href=\"https://trac.torproject.org/\">我们的 Bug 跟踪平台</a></mark>。"
+
+#: http//localhost/tbb/tbb-18/
+#: (content/tbb/tbb-18/contents+en.lrquestion.title)
+msgid "Is there support for *BSD?"
+msgstr "有对 *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 "无法连接 Tor,我的网络被审查了吗?"
+
+#: 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 "目前没有设置 Tor Browser 为默认浏览器的方法。"
+
+#: 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 "Windows 中的默认位置是桌面,macOS 中位于应用程序文件夹(你需要在安装完毕后把浏览器移动到应用程序文件夹来运行。)"
+
+#: 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 "我能将 Tor 的图标用于我的产品中吗?"
+
+#: 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 "如果你在 Tor 日志里看见这句话,这意味着 Tor 和目录服务器无法完成 TLS 握手。"
+
+#: 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 ""
+"关于网桥的更多信息请参阅 <mark><a href=\"https://tb-manual.torproject.org/en-"
+"US/bridges.html\">Tor Browser 用户手册</a></mark>。"
+
+#: 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 "我们认为 Flash 在任何浏览器上都是是极不安全的 —— 它可以轻易盗取你的个人信息或者给你安装恶意软件。"
+
+#: http//localhost/onionservices/onionservices-1/
+#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
+msgid "You can access these websites by using Tor Browser."
+msgstr "您可以用 Tor Browser 访问这些网站。"
+
+#: http//localhost/tormobile/tormobile-1/
+#: (content/tormobile/tormobile-1/contents+en.lrquestion.title)
+msgid "Can I run Tor on an Android device?"
+msgstr "我能在 Android 设备上使用 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-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 "#RelayBandwidthBurst 100 MBytes"
+
+#: 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 ""
+"在切换到<mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/doc/ReducedExitPolicy\">严格出口政策</a></mark>时请稍加考虑。"
+
+#: 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 "我能在使用 Tor Browser 时使用其它的浏览器吗(例如 Chrome 或 Firefox)?"
+
+#: http//localhost/tormobile/ (content/tormobile/contents+en.lrtopic.title)
+msgid "Tor Mobile"
+msgstr "在移动设备上使用 Tor"
+
+#: http//localhost/misc/misc-12/
+#: (content/misc/misc-12/contents+en.lrquestion.title)
+msgid "How can I share files anonymously through Tor?"
+msgstr "我如何使用 Tor 匿名的分享文件?"
+
+#: 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 "##### 常见错误 #4:时钟偏差"
+
+#: 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 "两个选项都在菜单中,你也可以从地址栏的网站信息菜单中选择“新的 Tor 线路”选项。"
+
+#: 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/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 them in the family"
+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 ""
+"您可以在<mark><a href=\"https://www.torproject.org/docs/trademark-"
+"faq.html\">商标问答界面</a></mark>了解一切有关我们商标的事情。"
+
+#: 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 "使用 Tor Browser 有时会比其他浏览器慢。"
+
+#: 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 "* 请确认你的时钟,日期和时区设置正确。你可以安装 ntp / openntpd 等软件来确保时间正确。"
+
+#: 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 "Tor Browser 支持哪些平台?"
+
+#: http//localhost/tormobile/tormobile-1/
+#: (content/tormobile/tormobile-1/contents+en.lrquestion.description)
+msgid "Tor on Android is provided by The Guardian Project."
+msgstr "Guardian Project 提供了 Android 上的 Tor。"
+
+#: 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 "如果你无法连接洋葱服务,请参阅 <a href=\"/#onionservices-3\">我无法访问 x.onion!</a>"
+
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.title)
+msgid "How do I run an exit relay on Debian?"
+msgstr "我如何在 Debian 上运行出口节点?"
+
+#: 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 "一些国家,包括中国和伊朗,已经发现了检测和屏蔽 Tor 网桥的方法。"
+
+#: 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 "然后粘贴 Tor 日志到文本文件或者其他文档格式中。"
+
+#: 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 ""
+"不过,为了用于提高网络的安全性,我们会存留一些关于网络功能的日志。您可以在 <mark><a "
+"href=\"https://metrics.torproject.org/\">Tor Metrics</a></mark> 中查看到。"
+
+#: 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 ""
+"请参阅 <mark><a href=\"https://www.eff.org/https-everywhere/faq\">HTTPS "
+"Everywhere 的常见问题 </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 "有人要求我下载 Tor Browser 来解锁我的文件"
+
+#: http//localhost/tormobile/tormobile-2/
+#: (content/tormobile/tormobile-2/contents+en.lrquestion.seo_slug)
+msgid "who-is-the-guardian-project"
+msgstr "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 "默认禁用 JavaScript 造成的不便过于严重,也许会让大多数用户直接放弃使用 Tor 。"
+
+#: 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 "如果您的系统不需要代理,或者您不敢肯定,请尝试直接连接 Tor 网络。"
+
+#: 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 "使用 Tor Browser 时,没人能看见你在浏览的网站。"
+
+#: 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 "Tor Browser 会让你的网络活动看起来像是来自于世界各个不同地区的网络连接。"
+
+#: 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 "* 请确认你的时钟,日期和时区设置正确。"
+
+#: http//localhost/tormessenger/tormessenger-1/
+#: (content/tormessenger/tormessenger-1/contents+en.lrquestion.title)
+msgid "Does Tor Project make an application for private chat?"
+msgstr "Tor Project 有开发私密聊天软件吗?"
+
+#: 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 ""
+"你可以点击<mark><a "
+"href=\"https://guardianproject.info/apps/orbot/\">Orbot</a></mark>和<mark><a "
+"href=\"https://guardianproject.info/apps/orfox/\">Orfox</a></mark>网页了解更多信息。"
+
+#: 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 ""
+"如果 Tor Browser 已开启,点击 TorButton (屏幕左上角的绿色洋葱图标),然后点击“打开网络设置” - “复制 Tor "
+"日志到剪贴板”。"
+
+#: 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 "我们强烈不推荐把 Tor 和 Tor Browser 以外的浏览器搭配使用。"
+
+#: 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 ""
+"了解关于 Tor 与 VPN 组合使用等更多信息,请访问<mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">我们的 "
+"wiki</a></mark>。"
+
+#: 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 ""
+"<h4 class=\"card-title\">这个可视化实例展示了窃听者在不同的情况(网站是否支持 HTTPS ,是否在使用 Tor "
+"Browser)时会看到哪些信息。</h4>"
+
+#: 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 ""
+"<mark><a href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-"
+"idea\">即使通过 Tor 网络,BitTorrent 也不是匿名的</a></mark>。"
+
+#: 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 "选择一个你能简单记住的目录,下载完成后你能在选择的目录中看到 Tor Browser 文件夹。"
+
+#: http//localhost/tbb/tbb-27/
+#: (content/tbb/tbb-27/contents+en.lrquestion.title)
+msgid "How do I update Tor Browser?"
+msgstr "我如何更新 Tor Browser?"
+
+#: 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 ""
+"查找 /var/log/syslog 中例如 \"Self-testing indicates your ORPort is reachable "
+"from the outside. Excellent.\" 这样的日志记录。"
+
+#: 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 "我如何在 FreeBSD 或 HardenedBSD 上运行中转或中间节点?"
+
+#: http//localhost/tbb/tbb-25/
+#: (content/tbb/tbb-25/contents+en.lrquestion.title)
+msgid "I'm having a problem with NoScript."
+msgstr "我遇到 NoScript 的使用问题。"
+
+#: http//localhost/tbb/tbb-34/
+#: (content/tbb/tbb-34/contents+en.lrquestion.title)
+msgid "Why does Tor Browser ship with Javascript enabled?"
+msgstr "为什么 Tor Browser 默认启用 JavaScript ?"
+
+#: 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 "Tor Browser 会安装更新。"
+
+#: 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 "* 不要使用 Ubuntu 仓库中的包,它们未得到可靠更新。 如果您使用它们,您可能会错过重要的稳定性和安全性修复。"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Português (pt-BR)"
+msgstr "* Português (葡萄牙语)"
+
+#: 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 "Tor Browser 有两种方法改变你的中继线路 —— “新身份”和“为该站点使用新 Tor 线路”。"
+
+#: 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 "我应该在家里运行 Tor 出口节点吗?"
+
+#: 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 ""
+"* 查阅我们的 <mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorExitGuidelines\">出口节点政策</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 "在其它浏览器中使用 Tor 可能会使你置于没有 Tor Browser 提供的隐私保护的风险中。"
+
+#: 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 ""
+"2017-10-29 09:23:40.800 [NOTICE] Opening Socks listener on 127.0.0.1:9150"
+
+#: 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 "请采取强硬立场支持数字隐私和互联网自由,以及允许 Tor 用户访问 xyz.com,谢谢。”"
+
+#: 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 "* 编辑 /etc/tor/torrc:"
+
+#: 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 "我用 Tor Browser 访问 Facebook、Twitter 之类的网站时遇到了问题。"
+
+#: 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 "如果您看见这些提示出现在您的日志里面,这意味着您连接 SOCKS 代理失败了。"
+
+#: 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 "为什么 Tor Browser 会提示“Firefox 没有响应“?"
+
+#: http//localhost/tbb/tbb-24/
+#: (content/tbb/tbb-24/contents+en.lrquestion.title)
+msgid "I'm having a problem with DuckDuckGo."
+msgstr "我使用 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 "我能用其他的浏览器使用 Tor 服务吗?"
+
+#: 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 ""
+"* 查找 /var/log/syslog 中例如 \"Self-testing indicates your ORPort is reachable "
+"from the outside. Excellent.\" 这样的日志记录。"
+
+#: 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 "也就是说, Tor 比以前快的多了,你未必会注意到和其它浏览器相比的速度变化。"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Türkçe (tr)"
+msgstr "* Türkçe (土耳其语)"
+
+#: 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 ""
+"11/1/2017 21:11:44 PM.500 [NOTICE] Bootstrapped 85%: Finishing handshake "
+"with first hop"
+
+#: http//localhost/connecting/
+#: (content/connecting/contents+en.lrtopic.seo_slug)
+msgid "connecting-to-tor"
+msgstr "connecting-to-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=\"New release alert\">"
+
+#: 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 "其余的中继会在你每次访问新网站时改变,这三个 Tor 中继会一起提供完整的隐私保护。"
+
+#: http//localhost/tbb/tbb-2/
+#: (content/tbb/tbb-2/contents+en.lrquestion.seo_slug)
+msgid "first-address-relay-circuit"
+msgstr "中转节点的地址"
+
+#: 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=\"为此站点使用新"
+" Tor 线路\">"
+
+#: 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 ""
+"在 Windows 系统中默认是在桌面;在 macOS 中则是应用程序文件夹;而在 GNU/Linux 系统中则没有默认路径,例如,如果你的 Tor "
+"Browser 是英文版的话,那目录的名称会是“tor-browser_en-US”。"
+
+#: http//localhost/misc/ (content/misc/contents+en.lrtopic.seo_slug)
+msgid "misc"
+msgstr "misc"
+
+#: 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 ""
+"Tor Browser 基于 <mark><a href=\"https://www.mozilla.org/en-"
+"US/firefox/organizations/\">Firefox ESR</a></mark> 开发,所以也许会遇到 Firefox 的错误。"
+
+#: 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 ""
+"如果你希望成为一个 Tor 中继,请参阅<mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
+"中继指南</a></mark>。"
+
+#: 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 "我可以设置 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 ""
+"Please make sure your clock is set accurately, including the correct "
+"timezone. Then restart Tor."
+msgstr "请确认您的时间设置是正确的,包括正确的时区。然后重新启动 Tor。"
+
+#: http//localhost/faq/faq-2/
+#: (content/faq/faq-2/contents+en.lrquestion.seo_slug)
+msgid "can-tor-help-users-access-website"
+msgstr "Tor 能否帮助用户访问网站"
+
+#: 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 ""
+"如果你的问题不在列表中,请提交一个你遇到的问题的 <mark><a href=\"https://trac.torproject.org\">bug "
+"报告</a></mark>。"
+
+#: 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 "我们能让网站解封 Tor 用户的最成功的手段是让用户直接联系网站管理员"
+
+#: 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 "Tor Browser 是否为每个网站使用不同的线路?"
+
+#: 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 "请注意 Kaspersky 一类的防病毒软件可能会在防火墙等级封锁 Tor。"
+
+#: http//localhost/gettor/gettor-3/
+#: (content/gettor/gettor-3/contents+en.lrquestion.title)
+msgid "To use GetTor via Twitter."
+msgstr "通过 Twitter 使用 GetTor。"
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "* Run \"service tor reload\" (as root)."
+msgstr "* 以 root 用户运行 \"service tor reload\""
+
+#: 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 "Tor Browser防止人们获知您访问过的网站。"
+
+#: 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 "如果你只想访问只在某些国家或地区提供的服务,你可能更应该去使用 VPN 而不是 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-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 MBytes"
+
+#: 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 "Tor Browser 做了很多工作,例如加入强化隐私和安全的补丁。"
+
+#: 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 ""
+"如果你平时只在某个特定的国家使用他们的服务,从其他国家进行访问时你的账号可能就会被冻结。如无法连接 onion 服务,请参阅 <a "
+"href=\"/#onionservices-3\">无法连接 x.onion!</a>"
+
+#: 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 "##### 常见错误 #1: 代理连接失败"
+
+#: 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 "目前没有设置 Tor Browser 为默认浏览器的方法。"
+
+#: 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 "Tor Project 并不是这个恶意软件的作者。不过恶意软件的作者希望你使用 Tor Browser 来匿名的联系他们来交付赎金。"
+
+#: 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 "当我使用 Tor Browser 时,其他人是否能知道我曾经访问过哪些网站?"
+
+#: 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 ""
+"运行此功能将会关闭所有已经打开的浏览器窗口及标签页,清除所有的浏览器 Cookie 与历史记录等个人信息,并且为后续所有的网络连接创建新的洋葱路由回路。"
+
+#: http//localhost/tbb/tbb-29/
+#: (content/tbb/tbb-29/contents+en.lrquestion.description)
+msgid "##### New Identity"
+msgstr "##### 新身份"
+
+#: 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 "使用 Tor Browser 能够保护我电脑上的其他应用吗?"
+
+#: 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 无响应"
+
+#: http//localhost/tbb/tbb-31/
+#: (content/tbb/tbb-31/contents+en.lrquestion.seo_slug)
+msgid "which-platform-tor-browser-available"
+msgstr "Tor Browser 可用于哪些平台"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* TorBrowser"
+msgstr "* Tor Browser"
+
+#: 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 "#Address noname.example.com"
+
+#: 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 "当新的 Tor Browser 稳定版本发布时,我们将会写一篇包括新的特性与已知问题的博文。"
+
+#: 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 "Tor 具有避免恶意用户破坏匿名性的保护措施,这些措施也阻止了我们追踪用户。"
+
+#: 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 "如果你遇到了连接问题,请选择 “复制 Tor 日志到剪贴板” 选项。"
+
+#: 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> 是 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:47.900 [NOTICE] Bootstrapped 5%: Connecting to directory "
+"server"
+msgstr ""
+"2017-10-29 09:23:47.900 [NOTICE] Bootstrapped 5%: Connecting to directory "
+"server"
+
+#: 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 "我了解到有些网站只能使用 Tor 访问。这些网站是什么?我该如何访问它们?"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* For Windows"
+msgstr "* Windows"
+
+#: http//localhost/tbb/tbb-26/
+#: (content/tbb/tbb-26/contents+en.lrquestion.title)
+msgid "I'm having a problem with HTTPS Everywhere."
+msgstr "我遇到 HTTPS Everywhere 的使用问题。"
+
+#: 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 "* Korean (韩语)"
+
+#: 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 ""
+"请访问 <mark><a href=\"https://duck.co/help\">DuckDuckGo 的支持网站</a></mark> "
+"了解详细信息。"
+
+#: 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 ""
+"2017-10-29 09:24:08.900 [WARN] Proxy Client: unable to connect "
+"toxx..xxx..xxx.xx:xxxxx (\"general SOCKS server failure\")"
+
+#: http//localhost/misc/misc-10/
+#: (content/misc/misc-10/contents+en.lrquestion.seo_slug)
+msgid "does-tor-project-offer-hosting"
+msgstr "Tor Project 是否提供虚拟主机服务"
+
+#: 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 ""
+"封锁 Tor "
+"用户意味着也可能封锁了希望在专制国家自由的浏览互联网的用户,希望隐藏自己避免被发现的研究人员、记者、举报人和社会活动家,或只是希望不被第三方跟踪的普通人。"
+
+#: 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 "我可以改变 Tor Browser 为我在某个网站分配的 IP 地址吗?"
+
+#: 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 ""
+"13-11-17 19:53:49.300 [WARN] 1 connections died in state connect()ing with "
+"SSL state (No SSL object)"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Italiano (it)"
+msgstr "* Italiano (意大利语)"
+
+#: 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 "目前路径的长度为 3 加上你的路径中敏感路径的数量。"
+
+#: 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 "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-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 "## 设置你的联系方式"
+
+#: 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 ""
+"请参见我们的<mark><a "
+"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">志愿者页面</a></mark>以了解参与项目的方法!"
+
+#: 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 "当我使用 Tor 时,窃听者能够获取我分享给网站的信息(登录信息或者其他以这种格式传递的信息)吗?"
+
+#: 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 "选择它会在新的 Tor 线路上加载当前标签页。"
+
+#: 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 "Tor 开发者没有追踪 Tor 用户的手段。"
+
+#: 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 "为什么 Tor Browser 是基于 Firefox 而不是其他的浏览器呢?"
+
+#: 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 "如果这是你第一次听说 Tor Browser,我们知道你可能会认为我们是坏人。"
+
+#: 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 ""
+"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."
+
+#: 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 "你的出口节点有一个独立的 IP 地址,而且不会传输你的流量。"
+
+#: 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 "13-11-17 19:53:49.300 [WARN] 10 connections have failed:"
+
+#: http//localhost/tormobile/tormobile-5/
+#: (content/tormobile/tormobile-5/contents+en.lrquestion.title)
+msgid "When is Tor Browser for Android being released?"
+msgstr "基于 Android 平台的 Tor 什么时候会发布呢?"
+
+#: 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 ""
+"您可以访问<mark><a href=\"https://donate.torproject.org/donor-"
+"faq\">捐款常见问题界面</a></mark>,以了解更多捐款方面的信息。"
+
+#: 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 "Vidalia 提供的许多功能已经整合进了 Tor Browser 中。"
+
+#: 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 "参阅 <mark><a href=\"#operators-6\">如何运行一个网桥</a></mark> 了解详细信息。"
+
+#: 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 ""
+"11/1/2017 21:11:45 PM.300 [WARN] Failed to find node for hop 0 of our path. "
+"Discarding this circuit."
+
+#: 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 ""
+"11/1/2017 21:11:43 PM.500 [NOTICE] Opening Socks listener on 127.0.0.1:9150"
+
+#: 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 "当你浏览洋葱服务网站时,Tor Browser 会在地址栏左侧以一个绿色的洋葱图标表示(使用洋葱服务的安全连接)。 "
+
+#: http//localhost/misc/misc-9/
+#: (content/misc/misc-9/contents+en.lrquestion.description)
+msgid "Vidalia is no longer maintained or supported."
+msgstr "Vidalia 已经不再维护和支持。"
+
+#: 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 ""
+"GetTor 是一项通过不同方式自动回复最新版 Tor Browser 下载链接的服务。这些链接由不同处所托管,例如 Dropbox 、Google "
+"Drive 和 GitHub."
+
+#: 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 "Tor Browser 的 Windows 安装程序默认会在桌面上创建一个快捷方式,也许你不小心取消选中了那个选项。"
+
+#: http//localhost/gettor/gettor-2/
+#: (content/gettor/gettor-2/contents+en.lrquestion.title)
+msgid "To use GetTor via email."
+msgstr "通过电子邮件使用 GetTor。"
+
+#: 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 "常见于最新稳定版本的 Tor Browser 的问题是什么?"
+
+#: 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 ""
+"不,在几次 beta 版之后,我们终止了 <a href=\"https://blog.torproject.org/sunsetting-tor-"
+"messenger\">Tor Messenger</a> 的支持。"
+
+#: 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 "即使现在没有那么多资源进行这项工作,我们依旧相信 Tor 可以和即时消息结合。"
+
+#: 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 "* 以 root 用户运行 \"apt-get install tor obfs4proxy\""
+
+#: 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 ""
+"在 iOS 上我们推荐 Onion Browser,它是开放源代码软件,使用 Tor 线路,而且由和 Tor Project 关系密切的人开发。"
+
+#: http//localhost/tbb/tbb-15/
+#: (content/tbb/tbb-15/contents+en.lrquestion.title)
+msgid "Can I download Tor Browser for ChromeOS?"
+msgstr "我能为 ChromeOS 下载 Tor Browser 吗?"
+
+#: http//localhost/tbb/tbb-2/
+#: (content/tbb/tbb-2/contents+en.lrquestion.description)
+msgid "That is normal Tor behavior."
+msgstr "这是 Tor 的正常行为。"
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "Removing Tor Browser from your system is simple:"
+msgstr "在您的系统上删除 Tor Browser 非常简单:"
+
+#: 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 "每当 Tor Browser有更新版被发布时,都会有提示自动出现。"
+
+#: 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 ""
+"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 Browser 已经默认安装了两个插件 —— <mark><a href=\"https://www.eff.org/https-"
+"everywhere\">HTTPS Everywhere</a></mark> 和 <mark><a "
+"href=\"https://noscript.net/\">NoScript</a></mark> —— 再安装别的插件将会让你降低(或失去)匿名性。"
+
+#: 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 "Tor Browser 做了大量工作使它和你的操作系统的其他部分相互隔离,以及设置为默认浏览器的过程并不可靠。"
+
+#: 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 ""
+"在 /var/log/tor/notices.log 中查找例如 \"Self-testing indicates your ORPort is "
+"reachable from the outside. Excellent.\" 这样的日志记录。"
+
+#: 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 协议传输的未加密的内容。"
+
+#: 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 ""
+"11/1/2017 21:11:44 PM.300 [NOTICE] Bootstrapped 80%: Connecting to the Tor "
+"network"
+
+#: 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 ""
+"有各种各样的洋葱服务网站,例如让记者和他的资料来源间无元数据的交谈和安全的传输文件的 <mark><a "
+"href=\"https://securedrop.org/\">SecureDrop</a></mark> 和 <mark><a "
+"href=\"https://onionshare.org/\">OnionShare</a>,安全的更新软件,以及以更安全的方式访问<mark><a "
+"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
+"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>一类的网站。"
+
+#: 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 ""
+"例如 DuckDuckGo 的洋葱服务: <a "
+"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+
+#: 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 "通常情况下,除非你知道如何把 VPN 和 Tor 在不侵犯你的隐私的情况下一起配置,我们不建议将这两者配合使用。"
+
+#: 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 "只能通过 Tor 访问的网站称作“洋葱服务”,它们以 .onion 结尾。"
+
+#: 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 ""
+"而且使用超过三个中继的线路会损害你的匿名性,首先这会让<mark><a "
+"href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">拒绝服务攻击</a></mark>更容易,其次如果只有很少的用户的中继长度和你一样的话,你会更容易被区分出来。"
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.title)
+msgid "How do I run a obfs4 bridge on Debian?"
+msgstr "我如何在 Debian 中搭建一个 obfs4 网桥?"
+
+#: 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 ""
+"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"
+
+#: 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 "有些网站因为他们无法分辨出普通 Tor 用户和机器人的区别而屏蔽了 Tor 用户的访问。"
+
+#: 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 "卸载 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 "Tor Browser 是为和 Tor 一起使用而定制的 Firefox 。"
+
+#: 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 "在信息正文中写出您的操作系统(如 Windows,macOS(OS X)或GNU/Linux(linux))并发送。"
+
+#: http//localhost/tbb/tbb-6/ (content/tbb/tbb-6/contents+en.lrquestion.title)
+msgid "Can I make Tor Browser my default browser?"
+msgstr "我能将 Tor Browser 作为我的默认浏览器吗?"
+
+#: 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 ""
+"请参阅<mark><a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
+"中继指南</a></mark>以了解关于运行一个 Tor 中继的更多信息。"
+
+#: 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 "##### 常见错误 #2: 无法连接到中继"
+
+#: 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 "需要一些额外软件和设置来运行 obfsproxy 网桥。"
+
+#: 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 "* 以 root 用户把下面的行添加到 /etc/apt/sources.list 中。用前一步你获得的版本号代替 <version>。"
+
+#: 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 "如果你正在通过 https 访问一个洋葱服务网站,你会在地址栏的左侧看到一个有绿色锁的洋葱图标。"
+
+#: 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 "<h4 class=\"card-title\">如果你正在使用 HTTPS ,你的 URL 会以 “https://” 开头。</h4>"
+
+#: 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 ""
+"<mark><a href=\"https://blog.torproject.org/tor-heart-onion-browser-and-"
+"more-ios-tor\">了解更多关于 Onion Browser 的信息</a></mark>。"
+
+#: 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 "Nickname ididnteditheconfig"
+
+#: 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 "谢谢你。\""
+
+#: 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 "##### 为此站点使用新 Tor 线路"
+
+#: 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 "Tor Browser 使用什么搜索引擎,它是如何保护我的隐私的?"
+
+#: 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 "你当然可以在使用 Tor Browser 时使用其它的浏览器。"
+
+#: 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 ""
+"如果无法访问您想访问的洋葱服务,请检查是否正确输入了洋葱地址的16个字符(或者新版地址的56个字符)。只要有一点点错误, Tor Browser "
+"就无法连接到网站。"
+
+#: http//localhost/censorship/
+#: (content/censorship/contents+en.lrtopic.seo_slug)
+msgid "censorship"
+msgstr "censorship"
+
+#: 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 "你们为什么不阻止那些心怀不轨的人用 Tor 做坏事呢?"
+
+#: 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 "Tor Project 没有支持也没有纵容以恶意的方式使用我们的软件。"
+
+#: http//localhost/operators/operators-4/
+#: (content/operators/operators-4/contents+en.lrquestion.description)
+msgid "* Determine your Ubuntu version by running the following command:"
+msgstr "* 运行下面的命令确定你 Ubuntu 的版本"
+
+#: 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 ""
+"Tor Browser 目前支持 <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\">GNU/Linux</a></mark> 和 <mark><a "
+"href=\"https://www.torproject.org/download/download-easy.html.en#mac\">macOS"
+" (OS X)</a></mark>操作系统。"
+
+#: 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 "最后,重新启动 Tor Browser。"
+
+#: http//localhost/connecting/ (content/connecting/contents+en.lrtopic.title)
+msgid "Connecting To Tor"
+msgstr "连接 Tor"
+
+#: 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 "ContactInfo 0xFFFFFFFF Random Person <nobody AT example dot com>"
+
+#: http//localhost/misc/misc-9/
+#: (content/misc/misc-9/contents+en.lrquestion.title)
+msgid "I'm having a problem updating or using Vidalia."
+msgstr "我在使用或是升级 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 "造成 Tor Browser 连接失败的最常见的问题之一是系统时间设置错误。"
+
+#: 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 "为什么我连接的中继回路,第一个 IP 地址总是相同的呢?"
+
+#: 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 "Guardian Project 维护在 Android 上使用 Tor 网络的应用程序 Orbot 和 Orfox。"
+
+#: 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 ""
+"19.11.2017 00:04:48.000 [NOTICE] Bootstrapped 5%: Connecting to direc Tor y "
+"server"
+
+#: 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 ""
+"如果这个问题还没有被解决,请查看位于 <mark><a href=\"https://tb-manual.torproject.org/en-"
+"US/troubleshooting.html\">Tor Browser 用户手册</a></mark>的故障排查界面。"
+
+#: 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 "如果你所使用服务的提供商支持比基于 IP 的验证更安全的双因素认证选项的话,你也许能规避这种场景。"
+
+#: 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 "一些反病毒程序和恶意程序防护软件禁止我使用 Tor Browser。"
+
+#: 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 (如果你使用网桥)"
+
+#: 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 "不过在切换浏览器时要多加小心,你也许会不小心在普通浏览器里执行要在 Tor Browser 中执行的操作。"
+
+#: 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 "哪些个人或者集团在资助 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 "我能同时运行多个 Tor Browser 吗?"
+
+#: 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 ""
+"请参阅 <mark><a href=\"https://noscript.net/faq\">NoScript 的常见问题 </a></mark>。"
+
+#: 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 "你应该复查你的防火墙设置,检查你在你的 torrc 中设置的用户名和端口是否正确。"
+
+#: 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 "我们正在进行和 Android 上的 Tor Browser 相关的工作,你也许会在接下来的几个月内发现预发行版本。"
+
+#: 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 "* 运行下面的命令来添加签名软件包的 gpg 公钥:"
+
+#: 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 "如果您看见这些提示出现在您的日志里面,这意味着您的 Tor 无法连接到 Tor 网络中的第一个节点。"
+
+#: 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 ""
+"你想这样做吗?<mark><a "
+"href=\"https://www.torproject.org/about/contact.html.en\">联系我们</a></mark>。"
+
+#: 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 ""
+"如果你在升级后使用 Tor Browser 时出现问题,请查阅 <mark><a "
+"href=\"https://blog.torproject.org\">blog.torproject.org</a></mark>。你的问题可能会被包含在我们发布的有关最新稳定版本"
+" Tor Browser 的博客中。"
+
+#: http//localhost/misc/ (content/misc/contents+en.lrtopic.title)
+msgid "Misc"
+msgstr "其它"
+
+#: http//localhost/tbb/tbb-10/
+#: (content/tbb/tbb-10/contents+en.lrquestion.description)
+msgid "* obfs4proxy.exe (if you use bridges)"
+msgstr "* obfs4proxy.exe (如果你使用网桥)"
+
+#: 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 ""
+"在几个小时后(传播需要足够的时间),你可以访问<mark><a "
+"href=\"https://metrics.torproject.org/rs.html#search\">Metrics</a></mark> "
+"来确认你的中继有没有注册到网路中。"
+
+#: 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 ""
+"GetTor 将会给你自动回复一封电子邮件给,信中会带有 Tor Browser 的下载链接、数字签名(用于<mark><a "
+"href=\"https://www.torproject.org/docs/verifying-"
+"signatures.html.en\">验证下载</a></mark>)、签名的指纹和文件的散列值。"
+
+#: 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 "我如何确定我正在 Ubuntu 上使用正确的软件包?"
+
+#: 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 ""
+"Guardian Project 在 Android 上维护 Tor (以及其他保护隐私的软件),你可以在<mark><a "
+"href=\"https://guardianproject.info/\">The Guardian Project "
+"的网站</a></mark>上获得更多信息。"
+
+#: 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 "推荐在支持 Tor 的商业实体(例如某些 VPS 服务商 —— 译者注)上搭建 Tor 的出口节点。"
+
+#: 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 "Orfox 用于浏览互联网,Orbot 可以让你的 Android 上的其它应用使用 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-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "If it hasn't, re-check firewalls, IP and ports again."
+msgstr "如果没有的话,请复查你的防火墙设置、IP 地址和端口。"
+
+#: 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 "Tor Browser 中停用了 Flash,我们也不建议你启用它。"
+
+#: 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 ""
+"如果无法访问您想访问的洋葱服务,请检查是否正确输入了洋葱地址的 16 个字符(或者新版地址的 56 个字符)。只要有一点点错误, Tor Browser"
+" 就无法连接到网站。"
+
+#: 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 ""
+"不过有一个非官方支持的 <mark><a href=\"https://www.torbsd.org/\">TorBSD 项目</a></mark>。"
+
+#: 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 "您需要什么帮助?"
+
+#: http//localhost/tbb/tbb-37/
+#: (content/tbb/tbb-37/contents+en.lrquestion.description)
+msgid "* Nederlands (nl)"
+msgstr "* Nederlands (荷兰语)"
+
+#: 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 ""
+"<mark><a "
+"href=\"https://www.torproject.org/projects/torbrowser/design/\">了解关于 Tor "
+"Browser 的设计的更多信息</a></mark>。"
+
+#: 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 ""
+"<mark><a href=\"https://www.torproject.org/projects/torbrowser.html.en\">Tor"
+" Browser</a></mark> 目前提供这些语言:"
+
+#: 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 "* Español (法语)"
+
+#: 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 "为何不阻止用 Tor Browser 作恶的人?"
+
+#: http//localhost/faq/ (content/faq/contents+en.lrtopic.title)
+msgid "Most Frequently Asked Questions"
+msgstr "常见问题"
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.title)
+msgid "How do I uninstall Tor Browser?"
+msgstr "我如何卸载 Tor Browser?"
+
+#: 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 "我在 Windows 上下载并安装了 Tor Browser 但是没办法找到它。"
+
+#: http//localhost/tbb/tbb-28/
+#: (content/tbb/tbb-28/contents+en.lrquestion.description)
+msgid "* Empty your Trash."
+msgstr "* 清空回收站。"
+
+#: http//localhost/tormobile/tormobile-3/
+#: (content/tormobile/tormobile-3/contents+en.lrquestion.title)
+msgid "Can I run Tor on an iOS device?"
+msgstr "我能在 iOS 设备上使用 Tor 吗?"
+
+#: 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 "我能在 Windows Phone 上使用 Tor 吗?"
+
+#: 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 "一个网站(银行,电子邮件等)封锁了我(即使我没再使用 Tor Browser),我该怎么办?"
+
+#: http//localhost/misc/misc-14/
+#: (content/misc/misc-14/contents+en.lrquestion.title)
+msgid "How do I volunteer with Tor Project?"
+msgstr "我如何作为一个志愿者参与 Tor Project?"
+
+#: 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 "不过你应该清楚其他浏览器不能提供和 Tor Browser 一样的隐私保护。"
+
+#: http//localhost/faq/faq-4/
+#: (content/faq/faq-4/contents+en.lrquestion.description)
+#: 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 "
+"<mark><a href=\"https://onionbrowser.com/\">Onion Browser</a></mark>."
+msgstr ""
+"目前尚未有官方版本的基于 iOS 平台的 Tor 软件。尽管如此,我们仍然推荐使用 <mark><a "
+"href=\"https://onionbrowser.com/\">Onion Browser</a></mark>。"
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "Enabling ntpd is suggested."
+msgstr "推荐使用 ntpd 。"
+
+#: 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 "* 运行下面的命令来检查签名并安装 tor:"
+
+#: 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 ""
+"2017-10-29 09:24:08.900 [WARN] Proxy Client: unable to connect to "
+"xx..xxx..xxx.xx:xxxxx (\"general SOCKS server failure\")"
+
+#: 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 "你也许需要选择“32 位”或“64 位”版本:这和你的电脑有关,你可能需要查阅你电脑的说明书或是和制造商联系来了解更多信息。"
+
+#: 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 ""
+"要了解中转节点如何工作,请参阅<mark><a href=\"https://blog.torproject.org/improving-tors-"
+"anonymity-changing-guard-parameters\">这篇博客文章</a></mark>和<mark><a "
+"href=\"https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf\">这篇论文</a></mark>。"
+
+#: 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 "我如何在 Debian 上运行中转或中间节点?"
+
+#: 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 ""
+"请参阅<mark><a href=\"http://support.torproject.org/#tbb-10\">我的防病毒软件 / "
+"反恶意软件工具阻止我使用 Tor Browser</a></mark>,这是这种问题产生的主要原因。"
+
+#: http//localhost/tbb/tbb-26/
+#: (content/tbb/tbb-26/contents+en.lrquestion.seo_slug)
+msgid "problem-with-https-everywhere"
+msgstr "我遇到了 HTTPS Everywhere 的问题"
+
+#: http//localhost/censorship/ (content/censorship/contents+en.lrtopic.title)
+msgid "Censorship"
+msgstr "审查"
+
+#: 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 "请采取强硬立场支持数字隐私和互联网自由,以及允许 Tor 用户访问 xyz.com。”"
+
+#: 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 "Tor Browser 没有连接上互联网,但这似乎并不是网络审查造成的问题。"
+
+#: 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 "如果你访问的网站使用了 HTTPS,你的流量在离开出口节点时是加密的,不会被窃听者看到。"
+
+#: 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 "什么是网桥?"
+
+#: 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 "你操作系统上的其他程序(包括其他的浏览器)的连接不会使用 Tor 网络,也不会被保护。"
+
+#: 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 "* 你应该会看到 \"Registered server transport 'obfs4'\" 消息表示 obfs4proxy 正常工作。"
+
+#: 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 "Tor 被设计成通过防止被各种人(甚至是我们)监控和审查来抵御人权和隐私。"
+
+#: 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 ""
+"<mark><a "
+"href=\"https://github.com/Yawning/obfs4/blob/master/doc/obfs4-spec.txt\">Obfsproxy</a></mark>"
+" 网桥通过增加一层混淆来解决这些问题。"
+
+#: 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 "有些机构,例如您的互联网服务提供商,也许会知道您正在使用 Tor 。不过他们将不会知晓您正在使用 Tor 做些什么。"
+
+#: 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 "有时重度依赖 JavaScript 的网站无法在 Tor Browser 中正确运作。"
+
+#: http//localhost/gettor/gettor-2/
+#: (content/gettor/gettor-2/contents+en.lrquestion.description)
+msgid "Send an email to gettor(a)torproject.org."
+msgstr "给 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 "只有 Tor Browser 的流量会通过 Tor 网络传输。"
+
+#: 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 "是的,通常是三个,但如果你访问洋葱服务或是 \".exit\" 地址时会增加。"
+
+#: 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 "* 以 root 用户运行 \"service tor reload\""
+
+#: 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 ""
+"<mark><a "
+"href=\"https://www.torproject.org/projects/projects.html.en\">我们的页面上</a></mark>有我们开发的软件的列表。"
+
+#: 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 "Tor Project 提供虚拟主机服务吗?"
+
+#: 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 "我能搭配 VPN 使用 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 "网桥是不在 Tor 公共目录里列出的中继节点。"
+
+#: 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 ""
+"你也可以通过连接 <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo "
+"的洋葱服务</a>确认你可以访问洋葱服务。"
+
+#: 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 "要获得 Tor Browser 的下载链接,你可以向 gettor(a)torproject.org 发送带有下面信息的电子邮件:"
+
+#: 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 "“嗨!我正在使用 Tor Browser 访问 xyz.com ,不过似乎你们并没有允许 Tor 用户访问。"
+
+#: 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 ""
+"要获得 Tor Browser 的下载链接,你可以向 <mark><a href=\"https://twitter.com/get_tor\"> "
+"@get_tor </a></mark>发送带有下列信息的私信(你不需要关注这个账号):"
+
+#: 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 "这意味着有些网站会在 Tor Browser 中打开,有些会在其他浏览器中打开,这种行为很危险而且会破坏匿名性。"
+
+#: 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 ""
+"原则上来说,我们不仅想让 Tor Browser 尽可能安全,还想让大多数人都可以使用。所以按照目前状态, Tor Browser 会继续默认启用 "
+"JavaScript。"
+
+#: 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 "幸运的是,大多数网站、设备,还有其它浏览器都正在淘汰 Flash。"
+
+#: 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 "#MyFamily $keyid,$keyid,..."
+
+#: 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 ""
+"## The IP address or hostname for incoming connections (leave commented and "
+"Tor will guess)"
+
+#: 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 ""
+"DuckDuckGo (声称)不会跟踪它的用户也不会储存用户搜索的信息,你可以阅读 <mark><a "
+"href=\"https://duckduckgo.com/privacy\">DuckDuckGo 的隐私政策 </a></mark>了解更多信息。"
+
+#: 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 ""
+"你也可以通过连接 <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo "
+"的洋葱服务</a>确认你可以访问其他的洋葱服务。"
+
+#: 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 "Tor Browser 会提示你所有的活动和下载会被终止,在你点击“新身份”时考虑这一点。"
+
+#: http//localhost/tbb/tbb-33/
+#: (content/tbb/tbb-33/contents+en.lrquestion.title)
+msgid "Does running Tor Browser make me a relay?"
+msgstr "运行 Tor Browser 让我成为一个中继吗?"
+
+#: 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 "网络管理员能发现我正在使用 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 ""
+"11/1/2017 21:11:44 PM.300 [WARN] Failed to find node for hop 0 of our path. "
+"Discarding this circuit."
+msgstr ""
+"11/1/2017 21:11:44 PM.300 [WARN] Failed to find node for hop 0 of our path. "
+"Discarding this circuit."
+
+#: 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 "让 Tor 选择路由会给你带来最高的安全性,修改中继节点可能会破坏你的匿名性。"
+
+#: 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 ""
+"请查看我们的 <mark><a href=\"https://blog.torproject.org\">博客</a></mark> "
+"获取关于将来这个项目的细节与公告。"
+
+#: 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 "torproject.org 被屏蔽了,怎么下载 Tor?"
+
+#: 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 ""
+"19.11.2017 00:04:47.400 [NOTICE] Opening Socks listener on 127.0.0.1:9150"
+
+#: http//localhost/tormobile/tormobile-4/
+#: (content/tormobile/tormobile-4/contents+en.lrquestion.seo_slug)
+msgid "run-tor-on-windows-phone"
+msgstr "在 Windows Phone 上运行 Tor"
+
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "Log notice file /var/log/tor/notices.log"
+msgstr "Log notice file /var/log/ Tor /notices.log"
+
+#: http//localhost/misc/misc-11/
+#: (content/misc/misc-11/contents+en.lrquestion.title)
+msgid "Can I change the number of hops Tor uses?"
+msgstr "我能修改 Tor 网络中的跳跃次数吗?"
+
+#: 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 "我可以选择出口节点的所在地吗?"
+
+#: 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 "Tor Browser 中,每一个新的羽毛会分配到一条独立的链路。"
+
+#: 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 "如何能使 Tor 运行得更快? Tor Browser 比其他的浏览器更慢吗?"
+
+#: 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 "你可以安装 ntp / openntpd (或类似的软件)来确保时间正确。"
+
+#: 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 "Torbutton 图标(浏览器左上角的洋葱图标)会显示一个黄色的三角形。"
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "ServerTransportPlugin obfs4 exec /usr/bin/obfs4proxy"
+msgstr "ServerTransportPlugin obfs4 exec /usr/bin/obfs4proxy"
+
+#: 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 "支持 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 ""
+"查找日志中例如 \"Self-testing indicates your ORPort is reachable from the outside. "
+"Excellent.\" 这样的日志记录。"
+
+#: 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 "为什么我的搜索引擎换成了 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 "如果你处于某个压迫政权中,或是担心被发现自己正在和 Tor 中继的 IP 地址连接,你可能需要使用网桥。"
+
+#: 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 ""
+"参阅 <mark><a href=\"https://tb-manual.torproject.org/en-US/\">Tor Browser "
+"用户手册</a></mark>关于<mark><a href=\"https://tb-manual.torproject.org/en-"
+"US/circumvention.html\">审查</a></mark>的章节获得更多信息。"
+
+#: 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 ""
+"如果这个问题还没有被解决,请查看位于<mark><a href=\"https://tb-manual.torproject.org/en-"
+"US/bridges.html\">Tor Browser 用户手册</a></mark>的故障排查界面。"
+
+#: 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 "Tor Project 提供邮件服务或者其他保护隐私的互联网服务吗?"
+
+#: 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 ""
+"如果您要确保所有流量都将通过 Tor 网络传输,请尝试能通过 USB 设备或 DVD 在几乎所有电脑上启动的 <mark><a "
+"href=\"https://tails.boum.org/\">Tails</a></mark> Live 操作系统。"
+
+#: http//localhost/tbb/ (content/tbb/contents+en.lrtopic.title)
+msgid "Tor Browser"
+msgstr "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 "##### Common log error #3: Failed to complete TLS handshake"
+msgstr "##### 常见错误 #3:无法完成 TLS 握手"
+
+#: 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 "我建议您重新考虑这个决定; Tor 被世界各地的人用来保护隐私和对抗审查。"
+
+#: 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 "我需要追查一个 Tor 用户,你们能帮助我吗?"
+
+#: 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 ""
+"13-11-17 19:52:24.300 [NOTICE] Bootstrapped 10%: Finishing handshake with "
+"direc Tor y server"
+
+#: 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 "十分不幸,有些网站要求 Tor 用户填写验证码,我们对此无能为力。"
+
+#: 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 "我可以在 Tor Browser上使用 Flash 吗?"
+
+#: 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 ""
+"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
+"/#identifier-linkability\">Tor Browser 的设计和实现 </a></mark>文档进一步解释了设计背后的思考。"
+
+#: 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 "当 Tor Browser 第一次连接到网络时,点击窗口下方的“复制 Tor 日志到剪贴板”按钮。"
+
+#: 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 "在 iOS 上运行 Tor"
+
+#: 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 "我无法访问 X.onion!"
+
+#: http//localhost/operators/operators-6/
+#: (content/operators/operators-6/contents+en.lrquestion.description)
+msgid "ExtORPort auto"
+msgstr "ExtORPort auto"
+
+#: 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 "我需要 Tor Browser 提供英语之外的语言。"
+
+#: 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 ""
+"## Set your bandwidth rate (leave commented and Tor will run without "
+"bandwidth caps)"
+
+#: 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 "Tor Browser 6.0.6 后使用 DuckDuckGo 作为内置搜索引擎。"
+
+#: 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 project.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 "我们不推荐同时运行多个 Tor Browser ,这种做法在许多平台上都可能会有无法预料的后果。"
+
+#: 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 "这意味着政府或 ISP 阻止 Tor 网络的尝试不能简单的封锁所有网桥。"
+
+#: 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 "我应该在 Tor Browser 中安装新的扩展程序吗, 例如 AdBlock Plus 或者 uBlock Origin ?"
+
+#: 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 "请注意,VPN 和 Tor 在隐私属性上是有区别的,但是 VPN 可以解决一些区域限制问题。"
+
+#: 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 "运行 Tor Browser 不会使你成为网络中的一个中继节点。"
+
+#: 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 "我们以前在 Tor Browser 使用的 Disconnect 已经不能再从 Google 获得搜索结果。"
+
+#: http//localhost/gettor/gettor-4/
+#: (content/gettor/gettor-4/contents+en.lrquestion.title)
+msgid "To use GetTor via XMPP (Jitsi, CoyIM)."
+msgstr "通过 XMPP(Jitsi,CoyM)使用 GetTor。"
+
+#: 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 "虽然你可以同时使用 Tor Browser 和其他的浏览器,但是同时使用其他浏览器会暴露你的身份信息。我们强烈建议您不要使用其他浏览器。"
+
+#: 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 ""
+"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."
+
+#: http//localhost/tbb/tbb-7/
+#: (content/tbb/tbb-7/contents+en.lrquestion.seo_slug)
+msgid "website-blocking-access-over-tor"
+msgstr "网站封锁了来自 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 "虽然我们仅需要增加一些软件后门就可以阻止某些人使用 Tor 网络,但是这会导致我们的用户遭更容易受到专制政权和其他组织的攻击。"
+
+#: templates/footer.html:5
+msgid "Our mission:"
+msgstr "我们的任务:"
+
+#: 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 "订阅我们的新闻"
+
+#: templates/footer.html:25
+msgid "Get monthly updates and opportunities from the Tor Project"
+msgstr "订阅我们每个月发布的消息"
+
+#: 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 Project | 支持"
+
+#: templates/navbar.html:4
+msgid "Tor Logo"
+msgstr "Tor 标志"
+
+#: templates/navbar.html:40
+msgid "Download Tor Browser"
+msgstr "下载 Tor Browser"
+
+#: templates/search.html:5
+msgid "Search"
+msgstr "搜索"
+
+#: templates/macros/question.html:11
+msgid "Permalink"
+msgstr "永久链接"
1
0