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

[tor/master] Light edits on changelog. mostly combining sections.
by nickm@torproject.org 17 Sep '18
by nickm@torproject.org 17 Sep '18
17 Sep '18
commit 765caaea7726d53164eadb5bc5efa25ae00caa19
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Mon Sep 17 15:37:35 2018 -0400
Light edits on changelog. mostly combining sections.
---
ChangeLog | 150 +++++++++++++++++++++++++++-----------------------------------
1 file changed, 65 insertions(+), 85 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 494a0403b..ad05b16fb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,35 +1,12 @@
Changes in version 0.3.5.1-alpha-2018-09-??
BLURB HERE. NOTE ABOUT NSS.
- o Major features (experimental, library support):
- - Tor now has _partial_ support for using the NSS cryptography
- library in place of OpenSSL. When Tor is configured with
- --enable-nss, it will use NSS for several (but not yet all) of its
- cryptography. (It still relies on OpenSSL for the rest.)
- Eventually, if all goes as planned, "--enable-nss" will produce a
- version of Tor that does not depend on OpenSSL. Implements ticket
- 26816. WARNING: This feature is experimental. Don't use it for
- real security yet, until the code has had much more review, and
- more bugs have been shaken out.
- - When built with --enable-nss, Tor now uses the NSS library for
- digests, AES, and pseudorandom numbers. Closes ticket 26815.
-
- o Major features (hidden service v3):
- - Implement client authorization at the descriptor level. A new
- torrc option was added to control this client side:
- ClientOnionAuthDir <path>. On the service side, if the
- "authorized_clients/" directory exists in the onion service
- directory path, client configuration are read from the files
- within. See the manpage for more details. Closes ticket 27547.
- Patch done by Suphanat Chunhapanya (haxxpop).
-
- o Major features (hidden service):
- - For a newly created hidden service, the default version is now 3.
- Tor still supports version 2 service but the operator now needs to
- specifically set "HiddenServiceVersion 2" in order to create a new
- service. For existing services, tor now learns the version by
- reading the key file so the HiddenServiceVersion is not mandatory
- in that case. Closes ticket 27215.
+ o Major features (bootstrap):
+ - Improve user experience by deferring directory progress reporting
+ until after a connection to a relay or bridge has succeeded. This
+ avoids reporting 80% progress based on cached directory
+ information when we can't even connect to a bridge or relay.
+ Closes ticket 27169.
o Major features (new code layout):
- Nearly all of Tor's source code has been moved around into more
@@ -44,13 +21,28 @@ Changes in version 0.3.5.1-alpha-2018-09-??
refactored to be acyclic, the main body of Tor is still too
interconnected. We will attempt to improve this in the future.
- o Major features (onion services):
+ o Major features (onion services v3):
+ - Implement client authorization at the descriptor level. A new
+ torrc option was added to control this client side:
+ ClientOnionAuthDir <path>. On the service side, if the
+ "authorized_clients/" directory exists in the onion service
+ directory path, client configuration are read from the files
+ within. See the manpage for more details. Closes ticket 27547.
+ Patch done by Suphanat Chunhapanya (haxxpop).
- Improve revision counter generation in next-gen onion services.
Onion services can now scale by hosting multiple instances on
different hosts without synchronization between them, which was
previously impossible because descriptors would get rejected by
HSDirs. Addresses ticket 25552.
+ o Major features (onion services):
+ - For a newly created onion service, the default version is now 3.
+ Tor still supports version 2 service but the operator now needs to
+ specifically set "HiddenServiceVersion 2" in order to create a new
+ service. For existing services, tor now learns the version by
+ reading the key file so the HiddenServiceVersion is not mandatory
+ in that case. Closes ticket 27215.
+
o Major features (portability, cryptography, experimental, TLS):
- Tor now has the option to compile with the NSS library instead of
OpenSSL. This feature is experimental, and we expect that bugs may
@@ -58,6 +50,19 @@ Changes in version 0.3.5.1-alpha-2018-09-??
performance is not CPU-bound, and where NSS is already known to be
installed. To try it out, configure Tor with the --enable-nss
flag. Closes ticket 26631.
+ - Tor now has _partial_ support for using the NSS cryptography and
+ TLS library in place of OpenSSL. When Tor is configured with
+ --enable-nss, it will use NSS for several (but not yet all) of its
+ cryptography. (It still relies on OpenSSL for the rest.)
+ Eventually, if all goes as planned, "--enable-nss" will produce a
+ version of Tor that does not depend on OpenSSL. Implements
+ ticket 26816.
+
+ WARNING: This feature is experimental. Don't use it for real
+ security yet, until the code has had much more review, and more
+ bugs have been shaken out.
+ - When built with --enable-nss, Tor now uses the NSS library for
+ digests, AES, and pseudorandom numbers. Closes ticket 26815.
o Major features (relay):
- Relays no longer run as exits by default. If the "ExitRelay"
@@ -77,15 +82,8 @@ Changes in version 0.3.5.1-alpha-2018-09-??
Fixes bug 27708; bugfix on 0.3.3.1-alpha.
o Minor features (admin tools):
- - Add new tool that prints expiration date of signing cert in
- ed25519_signing_cert. Resolves issue 19506.
-
- o Minor features (bootstrap):
- - Improve user experience by deferring directory progress reporting
- until after a connection to a relay or bridge has succeeded. This
- avoids reporting 80% progress based on cached directory
- information when we can't even connect to a bridge or relay.
- Closes ticket 27169.
+ - Add new tool that prints expiration date of th signing cert in an
+ ed25519_signing_cert file. Resolves issue 19506.
o Minor features (build):
- If you pass the "--enable-pic" option to configure, Tor will try
@@ -112,6 +110,10 @@ Changes in version 0.3.5.1-alpha-2018-09-??
default). Addresses part of ticket 20424. Based on a patch from
Alex Xu.
+ o Minor features (config):
+ - The "auto" keyword in torrc is now case insensitive. Closes
+ ticket 26663.
+
o Minor features (continuous integration):
- Don't do a distcheck with --disable-module-dirauth in Travis.
Implements ticket 27252.
@@ -157,8 +159,6 @@ Changes in version 0.3.5.1-alpha-2018-09-??
- When a bandwidth file is used to obtain the bandwidth measurements,
include this bandwidth file headers in the votes. Closes
ticket 3723.
-
- o Minor features (directory):
- Improved support for networks with only a single authority or a
single fallback directory. Patch from Gabriel Somlo. Closes
ticket 25928.
@@ -168,15 +168,13 @@ Changes in version 0.3.5.1-alpha-2018-09-??
a preconstructed owning controller FD, so that embedding
applications don't need to manage controller ports and
authentication. Closes ticket 24204.
+ - The tor_api now has a function that returns the name and version
+ of the backend implementing the API. Closes ticket 26947.
o Minor features (geoip):
- Update geoip and geoip6 to the September 6 2018 Maxmind GeoLite2
Country database. Closes ticket 27631.
- o Minor features (in-process API):
- - The tor_api now has a function that returns the name and version
- of the backend implementing the API. Closes ticket 26947.
-
o Minor features (memory management):
- Get libevent code to use the same memory allocator that Tor code
is using by calling event_set_mem_functions() during
@@ -187,12 +185,12 @@ Changes in version 0.3.5.1-alpha-2018-09-??
encoded format, rather than as expanded public keys. This should
save several megabytes on typical clients. Closes ticket 27246.
- o Minor features (openssl):
- - When possible, use RFC5869 HKDF implementation from OpenSSL.
- Resolves ticket 19979.
+ o Minor features (OpenSSL):
+ - When possible, use RFC5869 HKDF implementation from OpenSSL rather
+ than own own. Resolves ticket 19979.
o Minor features (rust, code quality):
- - Improve rust code quality in the Rust protover implementation by
+ - Improve rust code quality in the rust protover implementation by
making it more idiomatic. Includes changing an internal API to
take &str instead of &String. Closes ticket 26492.
@@ -209,21 +207,6 @@ Changes in version 0.3.5.1-alpha-2018-09-??
to provide more visibility about where Tor is reading from. Patch
from Unto Sten; closes ticket 27186.
- o Minor features(config):
- - The "auto" keyword in torrc is now case insensitive. Closes
- ticket 26663.
-
- o Minor bugfixes (security):
- - Refrain from potentially insecure usage of strncat() in
- configure_backtrace_handler(). Use snprintf() instead. Fixes bug
- 26522; bugfix on a969ce464dc23db39725a891d60537f3d3e51b50 (not in
- any tor release).
-
- o Minor bugfixes (appveyor ci):
- - Improve Appveyor CI IRC logging. Generate correct branches and
- URLs for pull requests and tags. Use unambiguous short commits.
- Fixes bug 26979; bugfix on master.
-
o Minor bugfixes (bootstrap):
- Try harder to get descriptors in non-exit test networks, by using
the mid weight for the third hop when there are no exits. Fixes
@@ -268,6 +251,9 @@ Changes in version 0.3.5.1-alpha-2018-09-??
27044; bugfix on 0.2.9.10.
o Minor bugfixes (continuous integration):
+ - Improve Appveyor CI IRC logging. Generate correct branches and
+ URLs for pull requests and tags. Use unambiguous short commits.
+ Fixes bug 26979; bugfix on master.
- Stop reinstalling identical packages in our Windows CI. Fixes bug
27464; bugfix on 0.3.4.1-alpha.
@@ -282,18 +268,6 @@ Changes in version 0.3.5.1-alpha-2018-09-??
- Avoid a double-close when shutting down a stalled directory
connection. Fixes bug 26896; bugfix on 0.3.4.1-alpha.
- o Minor bugfixes (hidden service v2):
- - Demote a log warning to info in case we do not have a consensus
- when a .onion request comes in. This can happen while bootstrapping
- for instance. The request will follow through after so we really
- don't need to warn the user loudly. Fixes bug 27040; bugfix
- on 0.2.8.2-alpha.
-
- o Minor bugfixes (hidden service v3):
- - In case the hidden service directory can't be created or has wrong
- permissions, do not BUG() on it which lead to a non fatal
- stacktrace. Fixes bug 27335; bugfix on 0.3.2.1.
-
o Minor bugfixes (HTTP tunnel):
- Fix a bug warning when closing an HTTP tunnel connection due to an
HTTP request we couldn't handle. Fixes bug 26470; bugfix
@@ -323,6 +297,18 @@ Changes in version 0.3.5.1-alpha-2018-09-??
- Ensure circuitmux queues are empty before scheduling or sending
padding. Fixes bug 25505; bugfix on 0.3.1.1-alpha.
+ o Minor bugfixes (onion service v2):
+ - Demote a log warning to info in case we do not have a consensus
+ when a .onion request comes in. This can happen while bootstrapping
+ for instance. The request will follow through after so we really
+ don't need to warn the user loudly. Fixes bug 27040; bugfix
+ on 0.2.8.2-alpha.
+
+ o Minor bugfixes (onion service v3):
+ - In case the onion service directory can't be created or has wrong
+ permissions, do not BUG() on it which lead to a non fatal
+ stacktrace. Fixes bug 27335; bugfix on 0.3.2.1.
+
o Minor bugfixes (OS compatibility):
- On Linux and Windows properly handle configuration change that
moves a listener to/from wildcard IP address. In case first
@@ -339,15 +325,13 @@ Changes in version 0.3.5.1-alpha-2018-09-??
is smaller than 24h in order to reduce the efficiency of guard
discovery attacks. Fixes bug 24104; bugfix on 0.1.1.6-alpha.
- o Minor bugfixes (relay):
+ o Minor bugfixes (relays):
- In frac_nodes_with_descriptors(), add for_direct_connect, and
replace node_has_any_descriptor() with
node_has_preferred_descriptor(). Also, if we are using bridges and
there is at least one bridge with a full descriptor, set f_guard
in compute_frac_paths_available() to 1.0. Fixes bug 25886; bugfix
on 0.3.5.1-alpha. Patch by Neel Chauhan.
-
- o Minor bugfixes (relays):
- Since 0.3.3.5-rc, authorities require DirCache (V2Dir) for the
Guard flag. Update the message logged on relays when DirCache is
disabled. Fixes bug 24312; bugfix on 0.3.3.5-rc.
@@ -371,6 +355,8 @@ Changes in version 0.3.5.1-alpha-2018-09-??
- When logging a version mismatch in our openssl_version tests,
report the actual offending version strings. Fixes bug 26152;
bugfix on 0.2.9.1-alpha.
+ - Fix forking tests on Windows when there is a space somewhere in
+ the path. Fixes bug 26437; bugfix on 0.2.2.4-alpha.
o Minor bugfixes (torrc):
- Tor now validates that the ContactInfo config option is valid UTF-
@@ -424,12 +410,6 @@ Changes in version 0.3.5.1-alpha-2018-09-??
- Tor no longer attempts to run on Windows environments without the
GetAdaptersAddresses() function. This function has existed since
Windows XP, which is itself already older than we support.
-
- o Testing:
- - Fix forking tests on Windows when there is a space somewhere in
- the path. Fixes bug 26437; bugfix on 0.2.2.4-alpha.
-
- o Removed features (hidden service, tor2web):
- Remove Tor2web functionalities. The Tor2webMode and
Tor2webRendezvousPoints options are now obsolete. Note that this
feature was never shipped in vanilla Tor and it was only possible
1
0

[torbutton/master] Bug 26555: Don't show IP address for meek or snowflake
by gk@torproject.org 17 Sep '18
by gk@torproject.org 17 Sep '18
17 Sep '18
commit 51c3b458ef0d9bf4a0df42410a4d02e6c49c97d4
Author: Arthur Edelstein <arthuredelstein(a)gmail.com>
Date: Mon Sep 17 09:53:40 2018 -0700
Bug 26555: Don't show IP address for meek or snowflake
(the IP address for these PTs looks like 0.x.x.x)
Also, we remove some dead code that implemented
part of the old circuit display.
---
src/chrome/content/tor-circuit-display.js | 34 ++-----------------------------
1 file changed, 2 insertions(+), 32 deletions(-)
diff --git a/src/chrome/content/tor-circuit-display.js b/src/chrome/content/tor-circuit-display.js
index bbabe1c8..6105fea1 100644
--- a/src/chrome/content/tor-circuit-display.js
+++ b/src/chrome/content/tor-circuit-display.js
@@ -229,36 +229,6 @@ let showCircuitDisplay = function (show) {
'block' : 'none';
};
-// __nodeLines(nodeData)__.
-// Takes a nodeData array of node items, each like
-// `{ ip : "12.34.56.78", country : "fr" }`
-// and converts each node data to text, as
-// `"France (12.34.56.78)"`.
-let nodeLines = function (nodeData) {
- let result = [];
- for (let {ip, countryCode, type, bridgeType} of nodeData) {
- let bridge = type === "bridge",
- country = countryCode ? localizedCountryNameFromCode(countryCode) : null;
- result.push(
- bridge ?
- // As we have a bridge, don't show the IP address
- // but show the bridge type.
- (uiString("tor_bridge") +
- ((bridgeType !== "vanilla") ? (": " + bridgeType) : "") +
- (country ? " (" + country + ")" : ""))
- :
- // For each non-bridge relay, show its host country and IP.
- country +
- // As we don't have a bridge, show the IP address
- // of the node. Use unicode escapes to ensure that
- // parentheses behave properly in both left-to-right
- // and right-to-left languages.
- " ‭ (" + (ip || uiString("ip_unknown")) + ")‬"
- );
- }
- return result;
-};
-
// __xmlTree(ns, data)__.
// Takes an xml namespace, ns, and a
// data structure representing xml elements like
@@ -324,8 +294,8 @@ let updateCircuitDisplay = function () {
} else {
relayText = localizedCountryNameFromCode(nodeData[i].countryCode);
}
- li(relayText, " ",
- ["span", { class: "circuit-ip-address" }, nodeData[i].ip], " ",
+ let ip = nodeData[i].ip.startsWith("0.") ? "" : nodeData[i].ip;
+ li(relayText, " ", ["span", { class: "circuit-ip-address" }, ip], " ",
(i === 0 && nodeData[0].type !== "bridge") ?
["span", { class: "circuit-guard-info" }, uiString("guard")] : null);
}
1
0

[translation/tor-browser-manual] Update translations for tor-browser-manual
by translation@torproject.org 17 Sep '18
by translation@torproject.org 17 Sep '18
17 Sep '18
commit a82cbf483ca7a1218e1e1eca54cb210079d65119
Author: Translation commit bot <translation(a)torproject.org>
Date: Mon Sep 17 19:47:18 2018 +0000
Update translations for tor-browser-manual
---
pt_BR/pt_BR.po | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/pt_BR/pt_BR.po b/pt_BR/pt_BR.po
index e874a502f..437bc3d2e 100644
--- a/pt_BR/pt_BR.po
+++ b/pt_BR/pt_BR.po
@@ -5,12 +5,13 @@
# Helder, 2018
# Jose Victor <josevictor(a)riseup.net>, 2018
# Reurison Silva Rodrigues, 2018
+# Malkon F <malkon.inf(a)gmail.com>, 2018
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2018-09-07 16:48-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Reurison Silva Rodrigues, 2018\n"
+"Last-Translator: Malkon F <malkon.inf(a)gmail.com>, 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"
@@ -1455,6 +1456,11 @@ msgid ""
" third-party that faciliates our translations. Below is an outline of how to"
" sign up and begin."
msgstr ""
+"Se você estiver interessado em ajudar o projeto traduzindo o manual ou o "
+"Navegador Tor para o seu idioma, sua ajuda será muito apreciada! Para "
+"começar a contribuir, você terá que se inscrever no Transifex, um terceiro "
+"que facilita nossas traduções. Abaixo está um resumo de como se inscrever e "
+"começar."
#: translate.page:21
msgid "Signing up on Transifex"
1
0
commit b55672f07a24e5611510840012a32108553cf413
Author: Arthur Edelstein <arthuredelstein(a)gmail.com>
Date: Mon Aug 27 16:32:20 2018 -0700
Bug 27097: Tor News signup banner
The banner disappears permanently:
* if the user clicks a small "X" on the right
* if the user clicks the "Sign Up" link
* if the banner has already been shown 4 times
---
src/chrome/content/aboutTor/aboutTor-content.js | 20 +++++++
src/chrome/content/aboutTor/aboutTor.xhtml | 13 +++++
src/chrome/content/torbutton.js | 17 ++++++
src/chrome/skin/aboutTor.css | 72 ++++++++++++++++++++++++
src/chrome/skin/newsletter_3x.png | Bin 0 -> 6735 bytes
src/defaults/preferences/preferences.js | 1 +
6 files changed, 123 insertions(+)
diff --git a/src/chrome/content/aboutTor/aboutTor-content.js b/src/chrome/content/aboutTor/aboutTor-content.js
index ae20505e..ac552e21 100644
--- a/src/chrome/content/aboutTor/aboutTor-content.js
+++ b/src/chrome/content/aboutTor/aboutTor-content.js
@@ -24,6 +24,7 @@ let { bindPrefAndInit, show_torbrowser_manual } = Cu.import("resource://torbutto
var AboutTorListener = {
kAboutTorLoadedMessage: "AboutTor:Loaded",
kAboutTorChromeDataMessage: "AboutTor:ChromeData",
+ kAboutTorHideTorNewsBanner: "AboutTor:HideTorNewsBanner",
get isAboutTor() {
return content.document.documentURI.toLowerCase() == "about:tor";
@@ -58,6 +59,23 @@ var AboutTorListener = {
}
},
+ setupBannerClosing: function () {
+ let closer = content.document.getElementById("tornews-banner-closer");
+ closer.addEventListener("click", function () {
+ sendAsyncMessage(this.kAboutTorHideTorNewsBanner);
+ });
+ let link = content.document.querySelector("#tornews-banner-message a");
+ link.addEventListener("click", function () {
+ // Wait until page unloads so we don't hide banner before that.
+ content.addEventListener("unload", function () {
+ sendAsyncMessage(this.kAboutTorHideTorNewsBanner);
+ });
+ });
+ bindPrefAndInit("extensions.torbutton.tornews_banner_countdown",
+ countdown => content.document.body.setAttribute(
+ "show-tornews-banner", countdown > 0));
+ },
+
onPageLoad: function() {
// Arrange to update localized text and links.
bindPrefAndInit("intl.locale.requested", aNewVal => {
@@ -66,6 +84,8 @@ var AboutTorListener = {
}
});
+ this.setupBannerClosing();
+
// Add message and event listeners.
addMessageListener(this.kAboutTorChromeDataMessage, this);
addEventListener("pagehide", this, false);
diff --git a/src/chrome/content/aboutTor/aboutTor.xhtml b/src/chrome/content/aboutTor/aboutTor.xhtml
index ecdd0f85..87fe8307 100644
--- a/src/chrome/content/aboutTor/aboutTor.xhtml
+++ b/src/chrome/content/aboutTor/aboutTor.xhtml
@@ -31,6 +31,19 @@ window.addEventListener("pageshow", function() {
</script>
</head>
<body dir="&locale.dir;">
+ <div id="tornews-banner">
+ <div><!--EMPTY SPACER DIV--></div>
+ <div id="tornews-banner-message">
+ <div id="tornews-banner-icon"></div>
+ <div>&aboutTor.newsletter.tagline;
+ <a href="https://newsletter.torproject.org">
+ &aboutTor.newsletter.link_text;
+ </a>
+ </div>
+ </div>
+ <div id="tornews-banner-closer">×</div>
+ </div>
+
<div class="torcontent-container">
<div id="torstatus-version"/>
<div id="torstatus" class="top">
diff --git a/src/chrome/content/torbutton.js b/src/chrome/content/torbutton.js
index 9f6ba898..03dc3563 100644
--- a/src/chrome/content/torbutton.js
+++ b/src/chrome/content/torbutton.js
@@ -19,6 +19,7 @@ const k_tb_last_browser_version_pref = "extensions.torbutton.lastBrowserVersion"
const k_tb_browser_update_needed_pref = "extensions.torbutton.updateNeeded";
const k_tb_last_update_check_pref = "extensions.torbutton.lastUpdateCheck";
const k_tb_tor_check_failed_topic = "Torbutton:TorCheckFailed";
+const k_tb_tornews_banner_countdown = "extensions.torbutton.tornews_banner_countdown";
var m_tb_prefs = Services.prefs;
@@ -231,6 +232,14 @@ function torbutton_init_toolbutton()
}
}
+// Show the Sign Up for Tor News banner a finite number of times.
+function torbutton_tornews_banner_countdown() {
+ let count = m_tb_prefs.getIntPref(k_tb_tornews_banner_countdown, 0);
+ if (count > 0) {
+ m_tb_prefs.setIntPref(k_tb_tornews_banner_countdown, count - 1);
+ }
+}
+
// Bug 1506 P2-P4: This code sets some version variables that are irrelevant.
// It does read out some important environment variables, though. It is
// called once per browser window.. This might belong in a component.
@@ -339,6 +348,10 @@ function torbutton_init() {
// Add about:tor IPC message listener.
window.messageManager.addMessageListener("AboutTor:Loaded",
torbutton_abouttor_message_handler);
+ window.messageManager.addMessageListener("AboutTor:HideTorNewsBanner",
+ torbutton_abouttor_message_handler);
+
+ torbutton_tornews_banner_countdown();
setupPreferencesForMobile();
@@ -418,6 +431,10 @@ var torbutton_abouttor_message_handler = {
aMessage.target.messageManager.sendAsyncMessage("AboutTor:ChromeData",
this.chromeData);
break;
+ case "AboutTor:HideTorNewsBanner":
+ torbutton_log(5, "message AboutTor:HideTorNewsBanner received");
+ m_tb_prefs.setIntPref(k_tb_tornews_banner_countdown, 0);
+ break;
}
},
diff --git a/src/chrome/skin/aboutTor.css b/src/chrome/skin/aboutTor.css
index 2e6bab75..ce0a2f29 100644
--- a/src/chrome/skin/aboutTor.css
+++ b/src/chrome/skin/aboutTor.css
@@ -271,3 +271,75 @@ body:not([showmanual]) .showForManual {
height: 50px;
border-radius: 50px 50px 0 0;
}
+
+/* Tor News Signup Banner
+ * While this banner is present, we need to
+ * offset the elements normally at the top of
+ * the window.
+ */
+
+#tornews-banner {
+ display: flex;
+ align-items: center;
+ background-color: white;
+ color: var(--abouttor-bg-toron-color);
+ font-size: 16px;
+ height: 60px;
+ justify-content: space-between;
+ left: 0px;
+ right: 0px;
+ top: 0px;
+ transform: translateY(-60px);
+ transition: transform 200ms;
+}
+
+body[show-tornews-banner="true"] #tornews-banner {
+ transform: translateY(0px);
+ transition: transform 0ms;
+}
+
+#tornews-banner-message {
+ align-items: center;
+ display: flex;
+ justify-content: center;
+}
+
+#tornews-banner-message a {
+ color: var(--abouttor-bg-toron-color);
+}
+
+#tornews-banner-icon {
+ background: url('chrome://torbutton/skin/newsletter_3x.png') no-repeat center center;
+ background-size: cover;
+ height: 32px;
+ margin: 0px 16px;
+ width: 32px;
+}
+
+#tornews-banner-closer {
+ display: flex;
+ align-items: center;
+ font-size: 20px;
+ height: 22px;
+ justify-content: center;
+ margin: 4px 20px;
+ padding: 4px;
+ width: 22px;
+ -moz-user-select: none;
+}
+
+#tornews-banner-closer:hover {
+ background-color: gray;
+ cursor: pointer;
+}
+
+body[show-tornews-banner="false"] #torstatus-version,
+body[show-tornews-banner="false"] #onboarding-overlay-button {
+ transition: transform 200ms;
+}
+
+body[show-tornews-banner="true"] #torstatus-version,
+body[show-tornews-banner="true"] #onboarding-overlay-button {
+ transform: translateY(60px);
+ transition: transform 0ms;
+}
diff --git a/src/chrome/skin/newsletter_3x.png b/src/chrome/skin/newsletter_3x.png
new file mode 100644
index 00000000..821572fa
Binary files /dev/null and b/src/chrome/skin/newsletter_3x.png differ
diff --git a/src/defaults/preferences/preferences.js b/src/defaults/preferences/preferences.js
index 92d1c106..fecf0e69 100644
--- a/src/defaults/preferences/preferences.js
+++ b/src/defaults/preferences/preferences.js
@@ -6,6 +6,7 @@ pref("extensions.torbutton.logmethod",1); // 0=stdout, 1=errorconsole, 2=debuglo
pref("extensions.torbutton.display_circuit", true);
pref("extensions.torbutton(a)torproject.org.description", "chrome://torbutton/locale/torbutton.properties");
pref("extensions.torbutton.updateNeeded", false);
+pref("extensions.torbutton.tornews_banner_countdown", 4);
// Tor check and proxy prefs
pref("extensions.torbutton.test_enabled",true);
1
0

[translation/support-portal_completed] Update translations for support-portal_completed
by translation@torproject.org 17 Sep '18
by translation@torproject.org 17 Sep '18
17 Sep '18
commit 55d8b1e03632d1bda79b5ac460246bf3c47d43f6
Author: Translation commit bot <translation(a)torproject.org>
Date: Mon Sep 17 18:48:54 2018 +0000
Update translations for support-portal_completed
---
contents+pt_BR.po | 4605 +++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 4605 insertions(+)
diff --git a/contents+pt_BR.po b/contents+pt_BR.po
new file mode 100644
index 000000000..f598fa2f9
--- /dev/null
+++ b/contents+pt_BR.po
@@ -0,0 +1,4605 @@
+# Translators:
+# Danton Medrado, 2018
+# Communia <ameaneantie(a)riseup.net>, 2018
+# carlo giusepe tadei valente sasaki <carlo.gt.valente(a)gmail.com>, 2018
+# Helder, 2018
+# Eduardo Riva, 2018
+# wasabicake, 2018
+# ascjell sweet <rossijonas(a)protonmail.com>, 2018
+# Bruna Klöppel <brune.uc(a)gmail.com>, 2018
+# Eduardo Bonsi, 2018
+# Diego Santos <diegospsi(a)opmbx.org>, 2018
+# Reurison Silva Rodrigues, 2018
+# Giovana Morais <giovana.vmorais(a)gmail.com>, 2018
+# 74c798a685868ccead99f49515d3cab8, 2018
+# Mauro Hemerly Gazzani <mauro.hemerly(a)gmail.com>, 2018
+# nilson t. c., 2018
+# Flávio Veras <flaviove(a)gmail.com>, 2018
+# Renato dos Santos <shazaum(a)me.com>, 2018
+# Isa Silveira <isabella.silveira.souza(a)gmail.com>, 2018
+# Alexei Gonçalves de Oliveira <alexis(a)gessicahellmann.com>, 2018
+# Emma Peel, 2018
+# dark crystal <darc.krystal(a)insicuri.net>, 2018
+# Anna e só <contraexemplos(a)gmail.com>, 2018
+# Eduardo Addad de Oliveira <eduardoaddad(a)hotmail.com>, 2018
+# Malkon F <malkon.inf(a)gmail.com>, 2018
+# Thiago Dantas <dantasthiago(a)protonmail.com>, 2018
+# Kordycepts, The Night City <kordycepts(a)protonmail.com>, 2018
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-09-14 21:15+CET\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Kordycepts, The Night City <kordycepts(a)protonmail.com>, 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 seus circuitos é altamente 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, se atente ao fato de que seu outro navegador não está mantendo 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ão recomendados utilizar o Tor com 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 pode 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 bloqueio "
+"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á conectando de um "
+"retransmissor de saída em outro lado do mundo, 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 "Tor protege de bisbilhoteiros de 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 busca meta 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-1/
+#: (content/operators/operators-1/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-2/
+#: (content/operators/operators-2/contents+en.lrquestion.description)
+#: http//localhost/operators/operators-3/
+#: (content/operators/operators-3/contents+en.lrquestion.description)
+msgid "## If you control multiple relays, include then in the family"
+msgstr ""
+"## Se você controla múltiplos retransmissores, incluam eles na família."
+
+#: 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 pouco mais de "
+"6000 relays apenas para encaminhar todo esse tráfego, e a carga em cada "
+"servidor as 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 Javascript, mas os níveis médio e alto "
+"ambos bloqueiam 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 pode resolver:"
+
+#: http//localhost/tbb/tbb-14/
+#: (content/tbb/tbb-14/contents+en.lrquestion.seo_slug)
+msgid "installing-add-on-extensions-tor-browser"
+msgstr "instalacao-extensoes-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á acontecendo de 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 relay normal com um 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. O Navegador Tor pode ajudar as "
+"pessoas que desejam acessar 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 que"
+" seu usuário tenha 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 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/tbb/tbb-31/
+#: (content/tbb/tbb-31/contents+en.lrquestion.description)
+msgid ""
+"There is no official version of Tor for iOS yet, though we recommend Onion "
+"Browser."
+msgstr ""
+"Ainda não há versão oficial do Tor para iOS. Assim, nós recomendamos o Onion"
+" Browser"
+
+#: 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/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/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/connecting/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/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/tbb/tbb-14/
+#: (content/tbb/tbb-14/contents+en.lrquestion.description)
+msgid ""
+"Tor Browser already comes installed with two add-ons — HTTPS Everywhere and "
+"NoScript — and adding anything else could deanonymize you."
+msgstr ""
+"O Navegador Tor já vem instalado com dois add-ons — HTTPS Everywhere e "
+"NoScript — e adicionar qualquer outra coisa poderia comprometer seu "
+"anonimato."
+
+#: 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)
+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)
+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/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/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"
1
0

[translation/support-portal] Update translations for support-portal
by translation@torproject.org 17 Sep '18
by translation@torproject.org 17 Sep '18
17 Sep '18
commit 8649b0c329f58c7c3ec85a582675af5e157dcdeb
Author: Translation commit bot <translation(a)torproject.org>
Date: Mon Sep 17 18:48:49 2018 +0000
Update translations for support-portal
---
contents+pt_BR.po | 45 ++++++++++++++++++++++++++++++++++++---------
1 file changed, 36 insertions(+), 9 deletions(-)
diff --git a/contents+pt_BR.po b/contents+pt_BR.po
index 390b00689..f598fa2f9 100644
--- a/contents+pt_BR.po
+++ b/contents+pt_BR.po
@@ -2439,7 +2439,7 @@ 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 ""
+msgstr "minha-rede-esta-censurada"
#: http//localhost/tormobile/tormobile-3/
#: (content/tormobile/tormobile-3/contents+en.lrquestion.description)
@@ -2625,7 +2625,7 @@ 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 ""
+msgstr "website-bloqueia-acesso-torbrowser"
#: http//localhost/gettor/gettor-3/
#: (content/gettor/gettor-3/contents+en.lrquestion.description)
@@ -2719,6 +2719,8 @@ msgstr ""
#: (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)
@@ -2726,6 +2728,8 @@ 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)
@@ -2742,6 +2746,8 @@ 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)
@@ -2826,6 +2832,10 @@ msgid ""
"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)
@@ -2865,11 +2875,18 @@ msgid ""
"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 ""
+msgstr "nosso-website-esta-bloqueado-por-um-censor"
#: http//localhost/tbb/tbb-10/
#: (content/tbb/tbb-10/contents+en.lrquestion.description)
@@ -3041,7 +3058,7 @@ 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 ""
+msgstr "nao-consigo-acessar-x-onion"
#: http//localhost/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.title)
@@ -3099,7 +3116,7 @@ msgstr ""
#: http//localhost/tbb/tbb-37/
#: (content/tbb/tbb-37/contents+en.lrquestion.seo_slug)
msgid "need-tor-browser-language-not-english"
-msgstr ""
+msgstr "preciso-tor-browser-idioma-nao-ingles"
#: http//localhost/tormobile/tormobile-5/
#: (content/tormobile/tormobile-5/contents+en.lrquestion.description)
@@ -3149,6 +3166,9 @@ msgid ""
"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)
@@ -3250,7 +3270,7 @@ msgstr "</div>"
#: http//localhost/tormessenger/tormessenger-1/
#: (content/tormessenger/tormessenger-1/contents+en.lrquestion.seo_slug)
msgid "tor-project-app-for-private-chat"
-msgstr ""
+msgstr "app-para-chat-privado-do-projeto-tor"
#: http//localhost/operators/operators-7/
#: (content/operators/operators-7/contents+en.lrquestion.description)
@@ -3284,7 +3304,7 @@ msgstr ""
#: 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 ""
+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)
@@ -3319,7 +3339,7 @@ msgstr ""
#: http//localhost/operators/operators-2/
#: (content/operators/operators-2/contents+en.lrquestion.seo_slug)
msgid "how-do-i-run-an-exit"
-msgstr ""
+msgstr "como-rodar-um-nodo-de-saida"
#: http//localhost/ (content/contents+en.lrshowcase.title)
msgid "How can we help?"
@@ -3573,6 +3593,8 @@ 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)
@@ -3600,6 +3622,8 @@ 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)
@@ -3679,6 +3703,9 @@ msgid ""
"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)
@@ -4244,7 +4271,7 @@ msgstr ""
#: http//localhost/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
-msgstr ""
+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)
1
0

[translation/torbutton-browseronboardingproperties_completed] Update translations for torbutton-browseronboardingproperties_completed
by translation@torproject.org 17 Sep '18
by translation@torproject.org 17 Sep '18
17 Sep '18
commit 366b9653038c187705c9613d97fecd9231490878
Author: Translation commit bot <translation(a)torproject.org>
Date: Mon Sep 17 18:48:12 2018 +0000
Update translations for torbutton-browseronboardingproperties_completed
---
pt_BR/browserOnboarding.properties | 54 ++++++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+)
diff --git a/pt_BR/browserOnboarding.properties b/pt_BR/browserOnboarding.properties
new file mode 100644
index 000000000..b4d4fc8cd
--- /dev/null
+++ b/pt_BR/browserOnboarding.properties
@@ -0,0 +1,54 @@
+# Copyright (c) 2018, The Tor Project, Inc.
+# See LICENSE for licensing information.
+# vim: set sw=2 sts=2 ts=8 et:
+
+onboarding.tour-tor-welcome=Bem Vindo
+onboarding.tour-tor-welcome.title=Você está pronto.
+onboarding.tour-tor-welcome.description=O Tor Browser oferece o mais elevado padrão de privacidade e segurança para navegação na web. Você, agora, está protegido contra rastreamento, vigilância e censura. Esta rápida abordagem mostrará como ele faz isso.
+onboarding.tour-tor-welcome.button=Comece agora.
+
+onboarding.tour-tor-privacy=Privacidade
+onboarding.tour-tor-privacy.title=Despiste rastreadores e xeretas.
+onboarding.tour-tor-privacy.description=O navegador Tor isola cookies e deleta o histórico de navegação do browser depois de finalizada sua seção. Estas modificações garantem que sua privacidade e segurança estão protegidas no browser. Clique em 'Rede Tor' para aprender como nós lhe protegemos ao nível de rede.
+onboarding.tour-tor-privacy.button=Vá para a Rede Tor.
+
+onboarding.tour-tor-network=Rede Tor
+onboarding.tour-tor-network.title=Viaje por uma rede descentralizada.
+onboarding.tour-tor-network.description=O Tor Browser conecta você à rede Tor, composta por milhares de voluntários ao redor do mundo. Diferente de uma VPN, não há uma entidade ou ponto de falha central em que você precisa confiar para desfrutar da internet com privacidade.
+onboarding.tour-tor-network.button=Vá para a Exibição de Circuitos
+
+onboarding.tour-tor-circuit-display=Exibição de Circuitos
+onboarding.tour-tor-circuit-display.title=Veja o seu caminho.
+onboarding.tour-tor-circuit-display.description=A cada domínio que você visita, o seu tráfego de internet é retransmitido e criptografado através de três retransmissores Tor em diversas partes do mundo. Nenhum website saberá a partir de onde você se conectou a ele. Você pode solicitar um novo circuito a qualquer momento clicando em "Novo Circuito para este Site" em nossa Exibição de Circuitos.
+onboarding.tour-tor-circuit-display.button=Ver Meu Caminho
+
+onboarding.tour-tor-security=Segurança
+onboarding.tour-tor-security.title=Escolha sua experiência.
+onboarding.tour-tor-security.description=Nós também fornecemos a você configurações adicionais para aumentar a segurança do seu browser. Nossas Configurações de Segurança permitem você bloquear elementos que podem ser utilizados para atacar o seu computador. Clique abaixo para ver o que as diferentes opções fazem.
+onboarding.tour-tor-security.button=Reveja Configurações
+
+onboarding.tour-tor-expect-differences=Dicas de Experiência
+onboarding.tour-tor-expect-differences.title=Espere algumas diferenças.
+onboarding.tour-tor-expect-differences.description=Com toda segurança e funcionalidades de privacidade fornecidos pelo Tor, sua experiência na utilização da internet pode ser um pouco diferente. As coisas podem ficar um pouco mais devagar, e dependendo do seu nível de segurança alguns elementos podem não funcionar ou serem carregados. Você também poderá ser questionado a provar que é um humano e não um robô.
+onboarding.tour-tor-expect-differences.button=Veja FAQs
+
+onboarding.tour-tor-onion-services=Serviços Onion
+onboarding.tour-tor-onion-services.title=Fique extra protegido.
+onboarding.tour-tor-onion-services.description=Serviços Onion são sites que terminam com .onion e que fornecem proteções extras para editores e visitantes, incluindo proteções adicionais contra censura. Serviços Onion permitem que qualquer um forneça conteúdo e serviços anonimamente. Clique abaixo para visitar o site onion DuckDuckGo.
+onboarding.tour-tor-onion-services.button=Visitar um endereço Onion
+
+# Circuit Display onboarding.
+onboarding.tor-circuit-display.next=Próximo
+onboarding.tor-circuit-display.done=Feito
+onboarding.tor-circuit-display.one-of-three=1 de 3
+onboarding.tor-circuit-display.two-of-three=2 de 3
+onboarding.tor-circuit-display.three-of-three=3 de 3
+
+onboarding.tor-circuit-display.intro.title=Como circuitos funcionam ?
+onboarding.tor-circuit-display.intro.msg=Circuitos são compostos de relés designados aleatoriamente, que são computadores ao redor do mundo, configurados para encaminhar o tráfico Tor. Circuitos permitem que você navegue privadamente e se conecte a serviços onion.
+
+onboarding.tor-circuit-display.diagram.title=Exibição de Circuitos
+onboarding.tor-circuit-display.diagram.msg=Este diagrama mostra os retransmissores que compõem o circuito para este website. Para evitar a correlação de atividade entre sites diferentes, cada website recebe um novo circuito diferente do anterior.
+
+onboarding.tor-circuit-display.new-circuit.title=Você precisa de um novo circuito ?
+onboarding.tor-circuit-display.new-circuit.msg=Se você estiver impossibilitado de conectar-se ao site que está tentando visitar ou este não está sendo carregado corretamente, então você pode utilizar este botão para recarregar o site em um novo circuito.
1
0

[translation/torbutton-browseronboardingproperties] Update translations for torbutton-browseronboardingproperties
by translation@torproject.org 17 Sep '18
by translation@torproject.org 17 Sep '18
17 Sep '18
commit b24d195688291c12f0949b80c6422e4729e359f3
Author: Translation commit bot <translation(a)torproject.org>
Date: Mon Sep 17 18:48:06 2018 +0000
Update translations for torbutton-browseronboardingproperties
---
pt_BR/browserOnboarding.properties | 26 +++++++++++++-------------
1 file changed, 13 insertions(+), 13 deletions(-)
diff --git a/pt_BR/browserOnboarding.properties b/pt_BR/browserOnboarding.properties
index aeab9639d..b4d4fc8cd 100644
--- a/pt_BR/browserOnboarding.properties
+++ b/pt_BR/browserOnboarding.properties
@@ -4,23 +4,23 @@
onboarding.tour-tor-welcome=Bem Vindo
onboarding.tour-tor-welcome.title=Você está pronto.
-onboarding.tour-tor-welcome.description=Tor Browser offers the highest standard of privacy and security while browsing the web. You’re now protected against tracking, surveillance, and censorship. This quick onboarding will show you how.
+onboarding.tour-tor-welcome.description=O Tor Browser oferece o mais elevado padrão de privacidade e segurança para navegação na web. Você, agora, está protegido contra rastreamento, vigilância e censura. Esta rápida abordagem mostrará como ele faz isso.
onboarding.tour-tor-welcome.button=Comece agora.
onboarding.tour-tor-privacy=Privacidade
-onboarding.tour-tor-privacy.title=Snub trackers and snoopers.
+onboarding.tour-tor-privacy.title=Despiste rastreadores e xeretas.
onboarding.tour-tor-privacy.description=O navegador Tor isola cookies e deleta o histórico de navegação do browser depois de finalizada sua seção. Estas modificações garantem que sua privacidade e segurança estão protegidas no browser. Clique em 'Rede Tor' para aprender como nós lhe protegemos ao nível de rede.
-onboarding.tour-tor-privacy.button=Go to Tor Network
+onboarding.tour-tor-privacy.button=Vá para a Rede Tor.
onboarding.tour-tor-network=Rede Tor
-onboarding.tour-tor-network.title=Travel a decentralized network.
-onboarding.tour-tor-network.description=Tor Browser connects you to the Tor network run by thousands of volunteers around the world. Unlike a VPN, there’s no one point of failure or centralized entity you need to trust in order to enjoy the internet privately.
-onboarding.tour-tor-network.button=Go to Circuit Display
+onboarding.tour-tor-network.title=Viaje por uma rede descentralizada.
+onboarding.tour-tor-network.description=O Tor Browser conecta você à rede Tor, composta por milhares de voluntários ao redor do mundo. Diferente de uma VPN, não há uma entidade ou ponto de falha central em que você precisa confiar para desfrutar da internet com privacidade.
+onboarding.tour-tor-network.button=Vá para a Exibição de Circuitos
-onboarding.tour-tor-circuit-display=Circuit Display
-onboarding.tour-tor-circuit-display.title=See your path.
-onboarding.tour-tor-circuit-display.description=For each domain you visit, your traffic is relayed and encrypted in a circuit across three Tor relays around the world. No website knows where you are connecting from. You can request a new circuit by clicking ‘New Circuit for this Site’ on our Circuit Display.
-onboarding.tour-tor-circuit-display.button=See My Path
+onboarding.tour-tor-circuit-display=Exibição de Circuitos
+onboarding.tour-tor-circuit-display.title=Veja o seu caminho.
+onboarding.tour-tor-circuit-display.description=A cada domínio que você visita, o seu tráfego de internet é retransmitido e criptografado através de três retransmissores Tor em diversas partes do mundo. Nenhum website saberá a partir de onde você se conectou a ele. Você pode solicitar um novo circuito a qualquer momento clicando em "Novo Circuito para este Site" em nossa Exibição de Circuitos.
+onboarding.tour-tor-circuit-display.button=Ver Meu Caminho
onboarding.tour-tor-security=Segurança
onboarding.tour-tor-security.title=Escolha sua experiência.
@@ -35,7 +35,7 @@ onboarding.tour-tor-expect-differences.button=Veja FAQs
onboarding.tour-tor-onion-services=Serviços Onion
onboarding.tour-tor-onion-services.title=Fique extra protegido.
onboarding.tour-tor-onion-services.description=Serviços Onion são sites que terminam com .onion e que fornecem proteções extras para editores e visitantes, incluindo proteções adicionais contra censura. Serviços Onion permitem que qualquer um forneça conteúdo e serviços anonimamente. Clique abaixo para visitar o site onion DuckDuckGo.
-onboarding.tour-tor-onion-services.button=Visit an Onion
+onboarding.tour-tor-onion-services.button=Visitar um endereço Onion
# Circuit Display onboarding.
onboarding.tor-circuit-display.next=Próximo
@@ -47,8 +47,8 @@ onboarding.tor-circuit-display.three-of-three=3 de 3
onboarding.tor-circuit-display.intro.title=Como circuitos funcionam ?
onboarding.tor-circuit-display.intro.msg=Circuitos são compostos de relés designados aleatoriamente, que são computadores ao redor do mundo, configurados para encaminhar o tráfico Tor. Circuitos permitem que você navegue privadamente e se conecte a serviços onion.
-onboarding.tor-circuit-display.diagram.title=Circuit Display
-onboarding.tor-circuit-display.diagram.msg=This diagram shows the relays that make up the circuit for this website. To prevent linking of activity across different sites, each website gets a different circuit.
+onboarding.tor-circuit-display.diagram.title=Exibição de Circuitos
+onboarding.tor-circuit-display.diagram.msg=Este diagrama mostra os retransmissores que compõem o circuito para este website. Para evitar a correlação de atividade entre sites diferentes, cada website recebe um novo circuito diferente do anterior.
onboarding.tor-circuit-display.new-circuit.title=Você precisa de um novo circuito ?
onboarding.tor-circuit-display.new-circuit.msg=Se você estiver impossibilitado de conectar-se ao site que está tentando visitar ou este não está sendo carregado corretamente, então você pode utilizar este botão para recarregar o site em um novo circuito.
1
0

[translation/tails-misc_completed] Update translations for tails-misc_completed
by translation@torproject.org 17 Sep '18
by translation@torproject.org 17 Sep '18
17 Sep '18
commit 4e4149078f3517026d93c23ba737e4794098fd4d
Author: Translation commit bot <translation(a)torproject.org>
Date: Mon Sep 17 18:15:58 2018 +0000
Update translations for tails-misc_completed
---
pt_BR.po | 442 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------
1 file changed, 395 insertions(+), 47 deletions(-)
diff --git a/pt_BR.po b/pt_BR.po
index 411adf2b0..b5d508382 100644
--- a/pt_BR.po
+++ b/pt_BR.po
@@ -3,9 +3,11 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# Alexei Gonçalves de Oliveira <alexis(a)gessicahellmann.com>, 2018
# Communia <ameaneantie(a)riseup.net>, 2013-2018
# carlo giusepe tadei valente sasaki <carlo.gt.valente(a)gmail.com>, 2014
# Danton Medrado, 2015
+# Eduardo Addad de Oliveira <eduardoaddad(a)hotmail.com>, 2018
# Eduardo Bonsi, 2013-2014
# Eduardo Luis Voltolini Tafner, 2013
# Gilberto José Souza Coutinho <gilberto.jsc(a)gmail.com>, 2015
@@ -14,18 +16,20 @@
# Leonardo Vieira de Souza <leonardo.v.souza(a)gmail.com>, 2016
# Lucas Possatti, 2014
# Luciana Dark Blue <lucianadarkblue(a)gmail.com>, 2015
+# Malkon F <malkon.inf(a)gmail.com>, 2018
# Matheus Boni Vicari <matheus_boni_vicari(a)hotmail.com>, 2014
# Matheus Gaboardi Tralli <matheusgtralli(a)live.com>, 2016
# Matheus Martins, 2013
# Renato dos Santos <shazaum(a)me.com>, 2018
+# Reurison Silva Rodrigues, 2018
# Wagner Marques <wagnermarques00(a)hotmail.com>, 2016
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-24 08:44+0800\n"
-"PO-Revision-Date: 2018-08-05 19:28+0000\n"
-"Last-Translator: Communia <ameaneantie(a)riseup.net>\n"
+"POT-Creation-Date: 2018-09-04 11:37+0200\n"
+"PO-Revision-Date: 2018-09-17 17:59+0000\n"
+"Last-Translator: Alexei Gonçalves de Oliveira <alexis(a)gessicahellmann.com>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/otf/torproject/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -41,7 +45,7 @@ msgstr "O Tor está pronto"
msgid "You can now access the Internet."
msgstr "A partir de agora você pode acessar a Internet."
-#: config/chroot_local-includes/etc/whisperback/config.py:66
+#: config/chroot_local-includes/etc/whisperback/config.py:69
#, python-format
msgid ""
"<h1>Help us fix your bug!</h1>\n"
@@ -58,6 +62,30 @@ msgid ""
"</p>\n"
msgstr "<h1>Ajude a consertar o erro que você encontrou!</h1>\n<p>Leia <a href=\"%s\">as instruções de relatórios de erros</a>.</p>\n<p><strong>Não inclua informações pessoais além do necessário!</strong></p>\n<h2>Sobre como nos informar um endereço de e-mail</h2>\n<p>\nSe você informar seu e-mail, podemos fentrar em contato para esclarecer o problema. Isso é necessário na grande maioria dos relatórios que recebemos (muitos deles nos chegam sem informações de contato e são inúteis). No entanto, com um endereço de e-mail, alguém que tenha acesso às suas nformações, como o seu provedor de e-mail ou de Internet, poderá confirmar que você está usando Tails. </p>\n"
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:51
+msgid ""
+"You can install additional software automatically from your persistent "
+"storage when starting Tails."
+msgstr "Você pode adicionar programas automaticamente de seu armazenamento permanente quando iniciar o Tails."
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:77
+msgid ""
+"The following software is installed automatically from your persistent "
+"storage when starting Tails."
+msgstr "O seguinte programa é instalado automaticamente do seu armazenamento permanente quando o Tails está iniciando."
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+msgid ""
+"To add more, install some software using <a "
+"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
+"href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
+msgstr "Para adicionar outros, instale software usando <a href=\"synaptic.desktop\">Gerenciador de Pacotes Synaptic</a> ou o <a href=\"org.gnome.Terminal.desktop\">APT na linha de comandos</a>."
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+msgid "_Create persistent storage"
+msgstr "_Crie armazenamento persistente"
+
#: config/chroot_local-includes/usr/local/bin/electrum:57
msgid "Persistence is disabled for Electrum"
msgstr "O volume persistente está desabilitado para usar Electrum"
@@ -136,50 +164,195 @@ msgstr "Compilar informação:\n%s"
msgid "not available"
msgstr "não disponível"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:170
-msgid "Your additional software installation failed"
-msgstr "A instalação dos programas adicionais falhou"
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#, python-brace-format
+msgid ""
+"{details} Please check your list of additional software or read the system "
+"log to understand the problem."
+msgstr "{detalhes} Por favor verifique sua lista de programas adicionais ou leia o registro do sistema para entender o problema."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+msgid ""
+"Please check your list of additional software or read the system log to "
+"understand the problem."
+msgstr "Por favor verifique sua lista de programas adicionais ou leia o registro do sistema para entender o problema."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+msgid "Show Log"
+msgstr "Exibir registro"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+msgid "Configure"
+msgstr "Configurar"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#, python-brace-format
+msgid "{beginning} and {last}"
+msgstr "{beginning} e {last}"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+msgid ", "
+msgstr ", "
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#, python-brace-format
+msgid "Add {packages} to your additional software?"
+msgstr "Adcionar {packages} ao seus softwares adicionais?"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+msgid ""
+"To install it automatically from your persistent storage when starting "
+"Tails."
+msgstr "Para instalá-lo automaticamente a partir de seu armazenamento persistente ao iniciar o Tails."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+msgid "Install Every Time"
+msgstr "Instalar todas as vezes"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+msgid "Install Only Once"
+msgstr "Instale Somente Uma Vez"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+msgid "The configuration of your additional software failed."
+msgstr "A configuração do seu software adicional falhou."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+msgid ""
+"To install it automatically when starting Tails, you can create a persistent"
+" storage and activate the <b>Additional Software</b> feature."
+msgstr "Para instalá-lo automaticamente ao iniciar o Tails, você pode criar um armazenamento persistente e ativar o recurso <b>Software Adicional</b>."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+msgid "Create Persistent Storage"
+msgstr "Crie armazenamento persistente"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+msgid "Creating your persistent storage failed."
+msgstr "Criando seu armazenamento persistente falhou."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#, python-brace-format
+msgid "You could install {packages} automatically when starting Tails"
+msgstr "Você pode instalar {packages} automaticamente ao iniciar o Tails."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+msgid ""
+"To do so, you need to run Tails from a USB stick installed using <i>Tails "
+"Installer</i>."
+msgstr "Para fazê-lo, você precisa executar o Tails a partir de um drive USB instalado com o uso do <i>Instalador do Tails</i>."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#, python-brace-format
+msgid "Remove {packages} from your additional software?"
+msgstr "Remover {packages} de seus softwares adicionais?"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#, python-brace-format
+msgid "This will stop installing {packages} automatically."
+msgstr "Isto interromperá a instalação automática de {packages}."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:171
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+msgid "Remove"
+msgstr "Remover"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+msgid "Installing your additional software from persistent storage..."
+msgstr "Instalando seu software adicional a partir do armazenamento persistente..."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+msgid "This can take several minutes."
+msgstr "Isto pode levar vários minutos"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+msgid "The installation of your additional software failed"
+msgstr "A instalação do seu software adicional falhou"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+msgid "Additional software installed successfully"
+msgstr "Software adicional instalado com sucesso"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+msgid "The check for upgrades of your additional software failed"
+msgstr "A verificação de atualizações do seu software adicional falhou"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+msgid ""
+"Please check your network connection, restart Tails, or read the system log "
+"to understand the problem."
+msgstr "Por favor verifique sua conexão de rede, reinicie o Tails ou leia os logs do sistema para entender o problema."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+msgid "The upgrade of your additional software failed"
+msgstr "Falha no upgrade de seu software adicional."
+
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+msgid "Documentation"
+msgstr "Documentação"
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#, python-brace-format
msgid ""
-"The installation failed. Please check your additional software "
-"configuration, or read the system log to understand better the problem."
-msgstr "A instalação falhou. Por favor, verifique as configurações dos seus programas adicionais ou leia o log do sistema para entender melhor o problema."
+"Remove {package} from your additional software? This will stop installing "
+"the package automatically."
+msgstr "Remover {package} de seus softwares adicionais? Isto interromperá automaticamente a instalação do pacote."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:177
-msgid "Your additional software are installed"
-msgstr "Os seus programas adicionais foram instalados"
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#, python-brace-format
+msgid "Failed to remove {pkg}"
+msgstr "Não foi possível remover {pkg}"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:178
-msgid "Your additional software are ready to use."
-msgstr "Os seus programas adicionais estão prontos para serem usados. "
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+msgid "Failed to read additional software configuration"
+msgstr "Falha na leitura da configuração do software adicional."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:194
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:204
-msgid "Your additional software upgrade failed"
-msgstr "A atualização dos seus programas adicionais falhou"
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#, python-brace-format
+msgid "Stop installing {package} automatically"
+msgstr "Pare de instalar {packages} automaticamente"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
msgid ""
-"The check for upgrades failed. This might be due to a network problem. "
-"Please check your network connection, try to restart Tails, or read the "
-"system log to understand better the problem."
-msgstr "A procura por atualizações falhou, talvez devido a um problema de rede. Por favor, verifique a sua conexão de internet, tente reiniciar Tails ou leia o log de sistema para entender melhor o problema."
+"To do so, install some software using <a href=\"synaptic.desktop\">Synaptic "
+"Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the "
+"command line</a>."
+msgstr "Para fazê-lo, instale software usando o <a href=\"synaptic.desktop\">Gerenciador de Pacotes Synaptic</a> ou o <a href=\"org.gnome.Terminal.desktop\">APT na linha de comandos</a>."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:201
-msgid "Your additional software are up to date"
-msgstr "Os seus programas adicionais foram atualizados"
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+msgid ""
+"To do so, unlock your persistent storage when starting Tails and install "
+"some software using <a href=\"synaptic.desktop\">Synaptic Package "
+"Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command "
+"line</a>."
+msgstr "Para fazê-lo, destrave o armazenamento persistente ao iniciar o Tails e instale software usando o <a href=\"synaptic.desktop\">Gerenciador de Pacotes Synaptic</a> ou o <a href=\"org.gnome.Terminal.desktop\">APT na linha de comandos</a>."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:202
-msgid "The upgrade was successful."
-msgstr "A atualização foi bem-sucedida."
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+msgid ""
+"To do so, create a persistent storage and install some software using <a "
+"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
+"href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
+msgstr "Para fazê-lo, crie um armazenamento persistente e instale software usando o <a href=\"synaptic.desktop\">Gerenciador de Pacotes Synaptic</a> ou o <a href=\"org.gnome.Terminal.desktop\">APT na linha de comandos</a>."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:205
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
msgid ""
-"The upgrade failed. This might be due to a network problem. Please check "
-"your network connection, try to restart Tails, or read the system log to "
-"understand better the problem."
-msgstr "A atualização falhou. Isso pode ser devido a um problema de rede. Por favor, verifique a sua conexão de rede, tente reiniciar Tails ou leia o registro do sistema para compreender melhor o problema."
+"To do so, install Tails on a USB stick using <a href=\"tails-"
+"installer.desktop\">Tails Installer</a> and create a persistent storage."
+msgstr "Para fazê-lo, instale o Tails em um drive USB usando o <a href=\"tails-installer.desktop\">Instalador do Tails</a> e crie um armazenamento persistente."
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+msgid "[package not available]"
+msgstr "[pacote não disponível]"
#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:52
msgid "Synchronizing the system's clock"
@@ -230,11 +403,6 @@ msgstr "A máscara de identidade MAC falhou para a placa de rede ${nic_name} (${
msgid "Lock Screen"
msgstr "Bloquear a tela"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Cancelar"
-
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:124
msgid "Screen Locker"
msgstr "Bloqueador de Tela"
@@ -312,6 +480,14 @@ msgstr "O Tor não está pronto. Iniciar o Navegador Tor assim mesmo?"
msgid "Start Tor Browser"
msgstr "Iniciar o Navegador Tor"
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:40
+msgid "Tor"
+msgstr "Tor"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:55
+msgid "Open Onion Circuits"
+msgstr "Abrir Circuitos Onion"
+
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
msgid "Do you really want to launch the Unsafe Browser?"
msgstr "Você realmente deseja iniciar o Navegador não-confiável?"
@@ -350,30 +526,140 @@ msgstr "Falha ao reiniciar o Tor."
msgid "Unsafe Browser"
msgstr "Navegador não-confiável"
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:92
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:91
msgid ""
"Another Unsafe Browser is currently running, or being cleaned up. Please "
"retry in a while."
msgstr "Um outro Navegador não-confiável está atualmente em execução ou sendo limpo. Por favor, tente novamente mais tarde."
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:100
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:99
msgid "Failed to setup chroot."
msgstr "Falha ao configurar chroot."
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:105
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:104
msgid "Failed to configure browser."
msgstr "Falha ao configurar o navegador."
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:111
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:110
msgid ""
"No DNS server was obtained through DHCP or manually configured in "
"NetworkManager."
msgstr "Nenhum provedor de DNS foi obtido através de DHCP ou configurado manualmente no Gerenciamento de Rede."
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:121
msgid "Failed to run browser."
msgstr "Falha ao executar o navegador."
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#, python-brace-format
+msgid "{volume_label} ({volume_size})"
+msgstr "{volume_label} ({volume_size})"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#, python-brace-format
+msgid "{partition_name} ({partition_size})"
+msgstr "{partition_name} ({partition_size})"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#, python-brace-format
+msgid "{volume_size} Volume"
+msgstr "{volume_size} Volume"
+
+#. Translators: Don't translate {volume_name}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#, python-brace-format
+msgid "{volume_name} (Read-Only)"
+msgstr "{volume_name} (Read-Only)"
+
+#. Translators: Don't translate {partition_name} and {container_path}, they
+#. are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#, python-brace-format
+msgid "{partition_name} in {container_path}"
+msgstr "{partition_name} em {container_path}"
+
+#. Translators: Don't translate {volume_name} and {path_to_file_container},
+#. they are placeholders and will be replaced. You should only have to
+#. translate
+#. this string if it makes sense to reverse the order of the placeholders.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#, python-brace-format
+msgid "{volume_name} – {path_to_file_container}"
+msgstr "{volume_name} – {path_to_file_container}"
+
+#. Translators: Don't translate {partition_name} and {drive_name}, they
+#. are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#, python-brace-format
+msgid "{partition_name} on {drive_name}"
+msgstr "{partition_name} em {drive_name}"
+
+#. Translators: Don't translate {volume_name} and {drive_name},
+#. they are placeholders and will be replaced. You should only have to
+#. translate
+#. this string if it makes sense to reverse the order of the placeholders.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#, python-brace-format
+msgid "{volume_name} – {drive_name}"
+msgstr "{volume_name} – {drive_name}"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
+msgid "No file containers added"
+msgstr "Nenhum volume de armazenagem de arquivos detectado."
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:98
+msgid "No VeraCrypt devices detected"
+msgstr "Dispositivos VeraCrpyt não detectados"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:114
+msgid "Container already added"
+msgstr "Volume já adicionado."
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:115
+#, python-format
+msgid "The file container %s should already be listed."
+msgstr "O volume de armazenagem de arquivos %s já está na lista."
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:131
+msgid "Container opened read-only"
+msgstr "Volume aberto em modo somente leitura."
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#, python-brace-format
+msgid ""
+"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
+"{error_message}"
+msgstr "Não foi possível abrir o volume de armazenagem de arquivos {path} com permissão de escrita. Em vez disso, foi aberto em modo somente leitura. Você não poderá modificar o conteúdo do volume \n{error_message}"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+msgid "Error opening file"
+msgstr "Error na abertura de arquivo"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+msgid "Not a VeraCrypt container"
+msgstr "Não é um volume VeraCrypt."
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#, python-format
+msgid "The file %s does not seem to be a VeraCrypt container."
+msgstr "O arquivo %s não parece ser um volume VeraCrypt."
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+msgid "Failed to add container"
+msgstr "Falhou ao adcionar container"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#, python-format
+msgid ""
+"Could not add file container %s: Timeout while waiting for loop setup.Please"
+" try using the <i>Disks</i> application instead."
+msgstr "Não foi possível adicionar o volume de armazenagem de arquivos %s: Tempo de espera esgotado ao aguardar o loop de configuração. Por favor, experimente usar, em vez disso, o aplicativo <i>Discos</i>."
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+msgid "Choose File Container"
+msgstr "Escolha um Volume de Armazenagem de Arquivos"
+
#: ../config/chroot_local-includes/etc/skel/Desktop/Report_an_error.desktop.in.h:1
msgid "Report an error"
msgstr "Relatar um erro"
@@ -407,6 +693,24 @@ msgstr "Navegar pela World Wide Web sem anonimato"
msgid "Unsafe Web Browser"
msgstr "Navegador não-confiável"
+#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:1
+msgid "Unlock VeraCrypt Volumes"
+msgstr "Desbloquear Volumes VeraCrypt"
+
+#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:2
+msgid "Mount VeraCrypt encrypted file containers and devices"
+msgstr "Montar volumes e dispositivos VeraCrypt de armazenagem de arquivos."
+
+#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
+msgid "Additional Software"
+msgstr "Software Adicional"
+
+#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:2
+msgid ""
+"Configure the additional software installed from your persistent storage "
+"when starting Tails"
+msgstr "Configure o software adicional instalado a partir de seu armazenamento permanente ao iniciar o Tails."
+
#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:2
msgid "Tails specific tools"
msgstr "Ferramentas específicas do Tails"
@@ -414,3 +718,47 @@ msgstr "Ferramentas específicas do Tails"
#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.root-terminal.policy.in.h:1
msgid "To start a Root Terminal, you need to authenticate."
msgstr "Para iniciar o terminal root, é preciso autenticar-se."
+
+#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:1
+msgid "Remove an additional software package"
+msgstr "Remover um pacote de software adicional"
+
+#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:2
+msgid ""
+"Authentication is required to remove a package from your additional software"
+" ($(command_line))"
+msgstr "Autenticação é necessária para remover um pacote de seus softwares adicionais ($(command_line))"
+
+#: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/main.ui.in:61
+msgid "File Containers"
+msgstr "Volumes para Armazenagem de Arquivos"
+
+#: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/main.ui.in:80
+msgid "_Add"
+msgstr "_Adicionar"
+
+#: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/main.ui.in:86
+msgid "Add a file container"
+msgstr "Adicione um volume para armazenar arquivos."
+
+#: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/main.ui.in:103
+msgid "Partitions and Drives"
+msgstr "Partições e Unidades"
+
+#: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/main.ui.in:121
+msgid ""
+"This application is not affiliated with or endorsed by the VeraCrypt project"
+" or IDRIX."
+msgstr "Este aplicativo não é afiliado nem endossado pelo Projeto VeraCrypt ou pela IDRIX."
+
+#: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/volume.ui.in:38
+msgid "Lock this volume"
+msgstr "Bloquear este volume"
+
+#: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/volume.ui.in:61
+msgid "Detach this volume"
+msgstr "Desmonte este volume"
+
+#: ../config/chroot_local-includes/usr/local/share/mime/packages/unlock-veracrypt-volumes.xml.in.h:1
+msgid "TrueCrypt/VeraCrypt container"
+msgstr "Volume TrueCrypt/VeraCrypt"
1
0

[translation/tails-misc] Update translations for tails-misc
by translation@torproject.org 17 Sep '18
by translation@torproject.org 17 Sep '18
17 Sep '18
commit e834f7b8748ef0c534dff982773ba00bedf97a75
Author: Translation commit bot <translation(a)torproject.org>
Date: Mon Sep 17 18:15:53 2018 +0000
Update translations for tails-misc
---
pt_BR.po | 62 +++++++++++++++++++++++++++++++-------------------------------
1 file changed, 31 insertions(+), 31 deletions(-)
diff --git a/pt_BR.po b/pt_BR.po
index 8e7eb3f6f..b5d508382 100644
--- a/pt_BR.po
+++ b/pt_BR.po
@@ -28,7 +28,7 @@ msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-17 17:45+0000\n"
+"PO-Revision-Date: 2018-09-17 17:59+0000\n"
"Last-Translator: Alexei Gonçalves de Oliveira <alexis(a)gessicahellmann.com>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/otf/torproject/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
@@ -198,7 +198,7 @@ msgstr ", "
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
#, python-brace-format
msgid "Add {packages} to your additional software?"
-msgstr "Adcionar {pacotes} ao seus softwares adicionais?"
+msgstr "Adcionar {packages} ao seus softwares adicionais?"
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
msgid ""
@@ -238,7 +238,7 @@ msgstr "Criando seu armazenamento persistente falhou."
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
-msgstr "Você pode instalar {pacotes} automaticamente ao iniciar o Tails."
+msgstr "Você pode instalar {packages} automaticamente ao iniciar o Tails."
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
msgid ""
@@ -249,12 +249,12 @@ msgstr "Para fazê-lo, você precisa executar o Tails a partir de um drive USB i
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
#, python-brace-format
msgid "Remove {packages} from your additional software?"
-msgstr "Remover {pacotes} de seus softwares adicionais?"
+msgstr "Remover {packages} de seus softwares adicionais?"
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
#, python-brace-format
msgid "This will stop installing {packages} automatically."
-msgstr "Isto interromperá a instalação automática de {pacotes}."
+msgstr "Isto interromperá a instalação automática de {packages}."
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
msgid "Remove"
@@ -306,7 +306,7 @@ msgstr "Documentação"
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
-msgstr "Remover {pacote} de seus softwares adicionais? Isto interromperá automaticamente a instalação do pacote."
+msgstr "Remover {package} de seus softwares adicionais? Isto interromperá automaticamente a instalação do pacote."
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
#, python-brace-format
@@ -320,7 +320,7 @@ msgstr "Falha na leitura da configuração do software adicional."
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
#, python-brace-format
msgid "Stop installing {package} automatically"
-msgstr "Pare de instalar {pacotes} automaticamente"
+msgstr "Pare de instalar {packages} automaticamente"
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
msgid ""
@@ -486,7 +486,7 @@ msgstr "Tor"
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:55
msgid "Open Onion Circuits"
-msgstr ""
+msgstr "Abrir Circuitos Onion"
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
msgid "Do you really want to launch the Unsafe Browser?"
@@ -553,31 +553,31 @@ msgstr "Falha ao executar o navegador."
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
#, python-brace-format
msgid "{volume_label} ({volume_size})"
-msgstr ""
+msgstr "{volume_label} ({volume_size})"
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
#, python-brace-format
msgid "{partition_name} ({partition_size})"
-msgstr ""
+msgstr "{partition_name} ({partition_size})"
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
#, python-brace-format
msgid "{volume_size} Volume"
-msgstr ""
+msgstr "{volume_size} Volume"
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
#, python-brace-format
msgid "{volume_name} (Read-Only)"
-msgstr ""
+msgstr "{volume_name} (Read-Only)"
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
#, python-brace-format
msgid "{partition_name} in {container_path}"
-msgstr ""
+msgstr "{partition_name} em {container_path}"
#. Translators: Don't translate {volume_name} and {path_to_file_container},
#. they are placeholders and will be replaced. You should only have to
@@ -586,14 +586,14 @@ msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
-msgstr ""
+msgstr "{volume_name} – {path_to_file_container}"
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{partition_name} on {drive_name}"
-msgstr ""
+msgstr "{partition_name} em {drive_name}"
#. Translators: Don't translate {volume_name} and {drive_name},
#. they are placeholders and will be replaced. You should only have to
@@ -602,11 +602,11 @@ msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
#, python-brace-format
msgid "{volume_name} – {drive_name}"
-msgstr ""
+msgstr "{volume_name} – {drive_name}"
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
-msgstr ""
+msgstr "Nenhum volume de armazenagem de arquivos detectado."
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:98
msgid "No VeraCrypt devices detected"
@@ -614,23 +614,23 @@ msgstr "Dispositivos VeraCrpyt não detectados"
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:114
msgid "Container already added"
-msgstr ""
+msgstr "Volume já adicionado."
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:115
#, python-format
msgid "The file container %s should already be listed."
-msgstr ""
+msgstr "O volume de armazenagem de arquivos %s já está na lista."
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:131
msgid "Container opened read-only"
-msgstr ""
+msgstr "Volume aberto em modo somente leitura."
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
-msgstr ""
+msgstr "Não foi possível abrir o volume de armazenagem de arquivos {path} com permissão de escrita. Em vez disso, foi aberto em modo somente leitura. Você não poderá modificar o conteúdo do volume \n{error_message}"
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
msgid "Error opening file"
@@ -638,12 +638,12 @@ msgstr "Error na abertura de arquivo"
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
msgid "Not a VeraCrypt container"
-msgstr ""
+msgstr "Não é um volume VeraCrypt."
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
-msgstr ""
+msgstr "O arquivo %s não parece ser um volume VeraCrypt."
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
msgid "Failed to add container"
@@ -654,11 +654,11 @@ msgstr "Falhou ao adcionar container"
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
-msgstr ""
+msgstr "Não foi possível adicionar o volume de armazenagem de arquivos %s: Tempo de espera esgotado ao aguardar o loop de configuração. Por favor, experimente usar, em vez disso, o aplicativo <i>Discos</i>."
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
msgid "Choose File Container"
-msgstr ""
+msgstr "Escolha um Volume de Armazenagem de Arquivos"
#: ../config/chroot_local-includes/etc/skel/Desktop/Report_an_error.desktop.in.h:1
msgid "Report an error"
@@ -695,11 +695,11 @@ msgstr "Navegador não-confiável"
#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:1
msgid "Unlock VeraCrypt Volumes"
-msgstr ""
+msgstr "Desbloquear Volumes VeraCrypt"
#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:2
msgid "Mount VeraCrypt encrypted file containers and devices"
-msgstr ""
+msgstr "Montar volumes e dispositivos VeraCrypt de armazenagem de arquivos."
#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
msgid "Additional Software"
@@ -709,7 +709,7 @@ msgstr "Software Adicional"
msgid ""
"Configure the additional software installed from your persistent storage "
"when starting Tails"
-msgstr ""
+msgstr "Configure o software adicional instalado a partir de seu armazenamento permanente ao iniciar o Tails."
#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:2
msgid "Tails specific tools"
@@ -721,17 +721,17 @@ msgstr "Para iniciar o terminal root, é preciso autenticar-se."
#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:1
msgid "Remove an additional software package"
-msgstr ""
+msgstr "Remover um pacote de software adicional"
#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:2
msgid ""
"Authentication is required to remove a package from your additional software"
" ($(command_line))"
-msgstr ""
+msgstr "Autenticação é necessária para remover um pacote de seus softwares adicionais ($(command_line))"
#: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/main.ui.in:61
msgid "File Containers"
-msgstr ""
+msgstr "Volumes para Armazenagem de Arquivos"
#: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/main.ui.in:80
msgid "_Add"
1
0