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

[tor-browser/tor-browser-91.4.0esr-11.5-1] Revert "Bug 1724777, optimize suppressed MicroTask handling, r=mccr8 a=RyanVM"
by gk@torproject.org 07 Dec '21
by gk@torproject.org 07 Dec '21
07 Dec '21
commit 1542d19fd888586801eba130a6750ab0cbd93e9e
Author: Georg Koppen <gk(a)torproject.org>
Date: Tue Dec 7 16:19:15 2021 +0000
Revert "Bug 1724777, optimize suppressed MicroTask handling, r=mccr8 a=RyanVM"
This reverts commit 1eb1364357ac5bc2a4531337fb5416af39c3793f.
This fixes tor-browser#40721, tor-browser#40698, and tor-browser#40706.
---
dom/base/Document.cpp | 12 ------
dom/base/Document.h | 8 +++-
dom/base/test/mochitest.ini | 2 -
dom/base/test/test_suppressed_microtasks.html | 62 ---------------------------
dom/workers/RuntimeService.cpp | 4 +-
dom/workers/WorkerPrivate.cpp | 2 +-
dom/worklet/WorkletThread.cpp | 2 +-
xpcom/base/CycleCollectedJSContext.cpp | 51 ++++++----------------
xpcom/base/CycleCollectedJSContext.h | 29 +++----------
9 files changed, 28 insertions(+), 144 deletions(-)
diff --git a/dom/base/Document.cpp b/dom/base/Document.cpp
index 7e103e2705d1..2973457ec3de 100644
--- a/dom/base/Document.cpp
+++ b/dom/base/Document.cpp
@@ -15665,18 +15665,6 @@ nsAutoSyncOperation::~nsAutoSyncOperation() {
}
}
-void Document::SetIsInSyncOperation(bool aSync) {
- if (CycleCollectedJSContext* ccjs = CycleCollectedJSContext::Get()) {
- ccjs->UpdateMicroTaskSuppressionGeneration();
- }
-
- if (aSync) {
- ++mInSyncOperationCount;
- } else {
- --mInSyncOperationCount;
- }
-}
-
gfxUserFontSet* Document::GetUserFontSet() {
if (!mFontFaceSet) {
return nullptr;
diff --git a/dom/base/Document.h b/dom/base/Document.h
index c8de049526ea..7ef73651d47f 100644
--- a/dom/base/Document.h
+++ b/dom/base/Document.h
@@ -3214,7 +3214,13 @@ class Document : public nsINode,
bool IsInSyncOperation() { return mInSyncOperationCount != 0; }
- void SetIsInSyncOperation(bool aSync);
+ void SetIsInSyncOperation(bool aSync) {
+ if (aSync) {
+ ++mInSyncOperationCount;
+ } else {
+ --mInSyncOperationCount;
+ }
+ }
bool CreatingStaticClone() const { return mCreatingStaticClone; }
diff --git a/dom/base/test/mochitest.ini b/dom/base/test/mochitest.ini
index 06b5691422c5..e287a0d10ae8 100644
--- a/dom/base/test/mochitest.ini
+++ b/dom/base/test/mochitest.ini
@@ -769,8 +769,6 @@ skip-if = debug == false
[test_shared_compartment2.html]
[test_structuredclone_backref.html]
[test_style_cssText.html]
-[test_suppressed_microtasks.html]
-skip-if = debug || asan || verify || toolkit == 'android' # The test needs to run reasonably fast.
[test_text_wholeText.html]
[test_textnode_normalize_in_selection.html]
[test_textnode_split_in_selection.html]
diff --git a/dom/base/test/test_suppressed_microtasks.html b/dom/base/test/test_suppressed_microtasks.html
deleted file mode 100644
index f5d333638698..000000000000
--- a/dom/base/test/test_suppressed_microtasks.html
+++ /dev/null
@@ -1,62 +0,0 @@
-<!DOCTYPE HTML>
-<html>
-<head>
- <meta charset="utf-8">
- <title>Test microtask suppression</title>
- <script src="/tests/SimpleTest/SimpleTest.js"></script>
- <link rel="stylesheet" href="/tests/SimpleTest/test.css"/>
- <script>
- SimpleTest.waitForExplicitFinish();
-
- var previousTask = -1;
- function test() {
- let win = window.open("about:blank");
- win.onload = function() {
- win.onmessage = function() {
- win.start = win.performance.now();
- win.didRunMicrotask = false;
- win.onmessage = function() {
- ok(win.didRunMicrotask, "Should have run a microtask.");
- let period = win.performance.now() - win.start;
- win.opener.ok(
- period < 200,
- "Running a task should be fast. Took " + period + "ms.");
- win.onmessage = null;
- }
- win.queueMicrotask(function() { win.didRunMicrotask = true; });
- win.postMessage("measurementMessage", "*");
- }
- win.postMessage("initialMessage", "*");
-
- const last = 500000;
- for (let i = 0; i < last + 1; ++i) {
- window.queueMicrotask(function() {
- // Check that once microtasks are unsuppressed, they are handled in
- // the correct order.
- if (previousTask != i - 1) {
- // Explicitly optimize out cases which pass.
- ok(false, "Microtasks should be handled in order.");
- }
- previousTask = i;
- if (i == last) {
- win.close();
- SimpleTest.finish();
- }
- });
- }
-
- // Synchronous XMLHttpRequest suppresses microtasks.
- var xhr = new XMLHttpRequest();
- xhr.open("GET", "slow.sjs", false);
- xhr.send();
- is(previousTask, -1, "Shouldn't have run microtasks during a sync XHR.");
- }
- }
- </script>
-</head>
-<body onload="test()">
-<p id="display"></p>
-<div id="content" style="display: none"></div>
-<pre id="test"></pre>
-</body>
-</html>
diff --git a/dom/workers/RuntimeService.cpp b/dom/workers/RuntimeService.cpp
index c3e3f56834d7..3fda0a78fd23 100644
--- a/dom/workers/RuntimeService.cpp
+++ b/dom/workers/RuntimeService.cpp
@@ -931,7 +931,7 @@ class WorkerJSContext final : public mozilla::CycleCollectedJSContext {
MOZ_ASSERT(!NS_IsMainThread());
MOZ_ASSERT(runnable);
- std::deque<RefPtr<MicroTaskRunnable>>* microTaskQueue = nullptr;
+ std::queue<RefPtr<MicroTaskRunnable>>* microTaskQueue = nullptr;
JSContext* cx = Context();
NS_ASSERTION(cx, "This should never be null!");
@@ -953,7 +953,7 @@ class WorkerJSContext final : public mozilla::CycleCollectedJSContext {
}
JS::JobQueueMayNotBeEmpty(cx);
- microTaskQueue->push_back(std::move(runnable));
+ microTaskQueue->push(std::move(runnable));
}
bool IsSystemCaller() const override {
diff --git a/dom/workers/WorkerPrivate.cpp b/dom/workers/WorkerPrivate.cpp
index 10099edc933e..af627f33d86d 100644
--- a/dom/workers/WorkerPrivate.cpp
+++ b/dom/workers/WorkerPrivate.cpp
@@ -4313,7 +4313,7 @@ void WorkerPrivate::EnterDebuggerEventLoop() {
{
MutexAutoLock lock(mMutex);
- std::deque<RefPtr<MicroTaskRunnable>>& debuggerMtQueue =
+ std::queue<RefPtr<MicroTaskRunnable>>& debuggerMtQueue =
ccjscx->GetDebuggerMicroTaskQueue();
while (mControlQueue.IsEmpty() &&
!(debuggerRunnablesPending = !mDebuggerQueue.IsEmpty()) &&
diff --git a/dom/worklet/WorkletThread.cpp b/dom/worklet/WorkletThread.cpp
index fae1a1c550d1..c672dfb21b8b 100644
--- a/dom/worklet/WorkletThread.cpp
+++ b/dom/worklet/WorkletThread.cpp
@@ -159,7 +159,7 @@ class WorkletJSContext final : public CycleCollectedJSContext {
#endif
JS::JobQueueMayNotBeEmpty(cx);
- GetMicroTaskQueue().push_back(std::move(runnable));
+ GetMicroTaskQueue().push(std::move(runnable));
}
bool IsSystemCaller() const override {
diff --git a/xpcom/base/CycleCollectedJSContext.cpp b/xpcom/base/CycleCollectedJSContext.cpp
index 0a35a5cf5524..347f15c82322 100644
--- a/xpcom/base/CycleCollectedJSContext.cpp
+++ b/xpcom/base/CycleCollectedJSContext.cpp
@@ -61,7 +61,6 @@ CycleCollectedJSContext::CycleCollectedJSContext()
mDoingStableStates(false),
mTargetedMicroTaskRecursionDepth(0),
mMicroTaskLevel(0),
- mSuppressionGeneration(0),
mDebuggerRecursionDepth(0),
mMicroTaskRecursionDepth(0),
mFinalizationRegistryCleanup(this) {
@@ -292,7 +291,7 @@ class CycleCollectedJSContext::SavedMicroTaskQueue
private:
CycleCollectedJSContext* ccjs;
- std::deque<RefPtr<MicroTaskRunnable>> mQueue;
+ std::queue<RefPtr<MicroTaskRunnable>> mQueue;
};
js::UniquePtr<JS::JobQueue::SavedJobQueue>
@@ -380,13 +379,13 @@ void CycleCollectedJSContext::SetPendingException(Exception* aException) {
mPendingException = aException;
}
-std::deque<RefPtr<MicroTaskRunnable>>&
+std::queue<RefPtr<MicroTaskRunnable>>&
CycleCollectedJSContext::GetMicroTaskQueue() {
MOZ_ASSERT(mJSContext);
return mPendingMicroTaskRunnables;
}
-std::deque<RefPtr<MicroTaskRunnable>>&
+std::queue<RefPtr<MicroTaskRunnable>>&
CycleCollectedJSContext::GetDebuggerMicroTaskQueue() {
MOZ_ASSERT(mJSContext);
return mDebuggerMicroTaskQueue;
@@ -563,7 +562,7 @@ void CycleCollectedJSContext::DispatchToMicroTask(
JS::JobQueueMayNotBeEmpty(Context());
LogMicroTaskRunnable::LogDispatch(runnable.get());
- mPendingMicroTaskRunnables.push_back(std::move(runnable));
+ mPendingMicroTaskRunnables.push(std::move(runnable));
}
class AsyncMutationHandler final : public mozilla::Runnable {
@@ -582,25 +581,6 @@ class AsyncMutationHandler final : public mozilla::Runnable {
}
};
-SuppressedMicroTasks::SuppressedMicroTasks(CycleCollectedJSContext* aContext)
- : mContext(aContext),
- mSuppressionGeneration(aContext->mSuppressionGeneration) {}
-
-bool SuppressedMicroTasks::Suppressed() {
- if (mSuppressionGeneration == mContext->mSuppressionGeneration) {
- return true;
- }
-
- for (std::deque<RefPtr<MicroTaskRunnable>>::reverse_iterator it =
- mSuppressedMicroTaskRunnables.rbegin();
- it != mSuppressedMicroTaskRunnables.rend(); ++it) {
- mContext->GetMicroTaskQueue().push_front(*it);
- }
- mContext->mSuppressedMicroTasks = nullptr;
-
- return false;
-}
-
bool CycleCollectedJSContext::PerformMicroTaskCheckPoint(bool aForce) {
if (mPendingMicroTaskRunnables.empty() && mDebuggerMicroTaskQueue.empty()) {
AfterProcessMicrotasks();
@@ -636,14 +616,15 @@ bool CycleCollectedJSContext::PerformMicroTaskCheckPoint(bool aForce) {
bool didProcess = false;
AutoSlowOperation aso;
+ std::queue<RefPtr<MicroTaskRunnable>> suppressed;
for (;;) {
RefPtr<MicroTaskRunnable> runnable;
if (!mDebuggerMicroTaskQueue.empty()) {
runnable = std::move(mDebuggerMicroTaskQueue.front());
- mDebuggerMicroTaskQueue.pop_front();
+ mDebuggerMicroTaskQueue.pop();
} else if (!mPendingMicroTaskRunnables.empty()) {
runnable = std::move(mPendingMicroTaskRunnables.front());
- mPendingMicroTaskRunnables.pop_front();
+ mPendingMicroTaskRunnables.pop();
} else {
break;
}
@@ -654,16 +635,10 @@ bool CycleCollectedJSContext::PerformMicroTaskCheckPoint(bool aForce) {
// all suppressed tasks in mDebuggerMicroTaskQueue unexpectedly.
MOZ_ASSERT(NS_IsMainThread());
JS::JobQueueMayNotBeEmpty(Context());
- if (runnable != mSuppressedMicroTasks) {
- if (!mSuppressedMicroTasks) {
- mSuppressedMicroTasks = new SuppressedMicroTasks(this);
- }
- mSuppressedMicroTasks->mSuppressedMicroTaskRunnables.push_back(
- runnable);
- }
+ suppressed.push(runnable);
} else {
if (mPendingMicroTaskRunnables.empty() &&
- mDebuggerMicroTaskQueue.empty() && !mSuppressedMicroTasks) {
+ mDebuggerMicroTaskQueue.empty() && suppressed.empty()) {
JS::JobQueueIsEmpty(Context());
}
didProcess = true;
@@ -678,9 +653,7 @@ bool CycleCollectedJSContext::PerformMicroTaskCheckPoint(bool aForce) {
// Note, it is possible that we end up keeping these suppressed tasks around
// for some time, but no longer than spinning the event loop nestedly
// (sync XHR, alert, etc.)
- if (mSuppressedMicroTasks) {
- mPendingMicroTaskRunnables.push_back(mSuppressedMicroTasks);
- }
+ mPendingMicroTaskRunnables.swap(suppressed);
AfterProcessMicrotasks();
@@ -695,7 +668,7 @@ void CycleCollectedJSContext::PerformDebuggerMicroTaskCheckpoint() {
for (;;) {
// For a debugger microtask checkpoint, we always use the debugger microtask
// queue.
- std::deque<RefPtr<MicroTaskRunnable>>* microtaskQueue =
+ std::queue<RefPtr<MicroTaskRunnable>>* microtaskQueue =
&GetDebuggerMicroTaskQueue();
if (microtaskQueue->empty()) {
@@ -708,7 +681,7 @@ void CycleCollectedJSContext::PerformDebuggerMicroTaskCheckpoint() {
LogMicroTaskRunnable::Run log(runnable.get());
// This function can re-enter, so we remove the element before calling.
- microtaskQueue->pop_front();
+ microtaskQueue->pop();
if (mPendingMicroTaskRunnables.empty() && mDebuggerMicroTaskQueue.empty()) {
JS::JobQueueIsEmpty(Context());
diff --git a/xpcom/base/CycleCollectedJSContext.h b/xpcom/base/CycleCollectedJSContext.h
index 116bff1c90c8..769b000418ab 100644
--- a/xpcom/base/CycleCollectedJSContext.h
+++ b/xpcom/base/CycleCollectedJSContext.h
@@ -7,7 +7,7 @@
#ifndef mozilla_CycleCollectedJSContext_h
#define mozilla_CycleCollectedJSContext_h
-#include <deque>
+#include <queue>
#include "mozilla/Attributes.h"
#include "mozilla/MemoryReporting.h"
@@ -81,20 +81,6 @@ class MicroTaskRunnable {
virtual ~MicroTaskRunnable() = default;
};
-// Store the suppressed mictotasks in another microtask so that operations
-// for the microtask queue as a whole keep working.
-class SuppressedMicroTasks : public MicroTaskRunnable {
- public:
- explicit SuppressedMicroTasks(CycleCollectedJSContext* aContext);
-
- MOZ_CAN_RUN_SCRIPT_BOUNDARY void Run(AutoSlowOperation& aAso) final {}
- virtual bool Suppressed();
-
- CycleCollectedJSContext* mContext;
- uint64_t mSuppressionGeneration;
- std::deque<RefPtr<MicroTaskRunnable>> mSuppressedMicroTaskRunnables;
-};
-
// Support for JS FinalizationRegistry objects, which allow a JS callback to be
// registered that is called when objects die.
//
@@ -131,7 +117,6 @@ class FinalizationRegistryCleanup {
class CycleCollectedJSContext : dom::PerThreadAtomCache, private JS::JobQueue {
friend class CycleCollectedJSRuntime;
- friend class SuppressedMicroTasks;
protected:
CycleCollectedJSContext();
@@ -181,8 +166,8 @@ class CycleCollectedJSContext : dom::PerThreadAtomCache, private JS::JobQueue {
already_AddRefed<dom::Exception> GetPendingException() const;
void SetPendingException(dom::Exception* aException);
- std::deque<RefPtr<MicroTaskRunnable>>& GetMicroTaskQueue();
- std::deque<RefPtr<MicroTaskRunnable>>& GetDebuggerMicroTaskQueue();
+ std::queue<RefPtr<MicroTaskRunnable>>& GetMicroTaskQueue();
+ std::queue<RefPtr<MicroTaskRunnable>>& GetDebuggerMicroTaskQueue();
JSContext* Context() const {
MOZ_ASSERT(mJSContext);
@@ -198,8 +183,6 @@ class CycleCollectedJSContext : dom::PerThreadAtomCache, private JS::JobQueue {
mTargetedMicroTaskRecursionDepth = aDepth;
}
- void UpdateMicroTaskSuppressionGeneration() { ++mSuppressionGeneration; }
-
protected:
JSContext* MaybeContext() const { return mJSContext; }
@@ -333,10 +316,8 @@ class CycleCollectedJSContext : dom::PerThreadAtomCache, private JS::JobQueue {
uint32_t mMicroTaskLevel;
- std::deque<RefPtr<MicroTaskRunnable>> mPendingMicroTaskRunnables;
- std::deque<RefPtr<MicroTaskRunnable>> mDebuggerMicroTaskQueue;
- RefPtr<SuppressedMicroTasks> mSuppressedMicroTasks;
- uint64_t mSuppressionGeneration;
+ std::queue<RefPtr<MicroTaskRunnable>> mPendingMicroTaskRunnables;
+ std::queue<RefPtr<MicroTaskRunnable>> mDebuggerMicroTaskQueue;
// How many times the debugger has interrupted execution, possibly creating
// microtask checkpoints in places that they would not normally occur.
1
0

[tor-browser-build/master] Revert "Bug 40383: Workaround issue in https-e wasm"
by boklm@torproject.org 07 Dec '21
by boklm@torproject.org 07 Dec '21
07 Dec '21
commit f8a2f0ca796de7cc9a0deec2e1379bf8b7936075
Author: Georg Koppen <gk(a)torproject.org>
Date: Tue Dec 7 16:23:12 2021 +0000
Revert "Bug 40383: Workaround issue in https-e wasm"
This reverts commit 818acaeca3b3ecb2584c0bf1683d0b0d9a328e09.
Closes: #40389.
---
...01-Bug-40383-Disable-https-e-wasm-ruleset.patch | 26 ----------------------
projects/https-everywhere/build | 5 -----
projects/https-everywhere/config | 2 --
3 files changed, 33 deletions(-)
diff --git a/projects/https-everywhere/0001-Bug-40383-Disable-https-e-wasm-ruleset.patch b/projects/https-everywhere/0001-Bug-40383-Disable-https-e-wasm-ruleset.patch
deleted file mode 100644
index 87befad..0000000
--- a/projects/https-everywhere/0001-Bug-40383-Disable-https-e-wasm-ruleset.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From 647aa186351f7a6ee6050e0a3a2bde7ccf5a8192 Mon Sep 17 00:00:00 2001
-From: Matthew Finkel <sysrqb(a)torproject.org>
-Date: Wed, 10 Nov 2021 20:00:18 +0000
-Subject: [PATCH] Bug 40383: Disable https-e wasm ruleset
-
----
- chromium/background-scripts/rules.js | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/chromium/background-scripts/rules.js b/chromium/background-scripts/rules.js
-index 7f0a5b5506..55a3f75094 100644
---- a/chromium/background-scripts/rules.js
-+++ b/chromium/background-scripts/rules.js
-@@ -216,7 +216,8 @@ RuleSets.prototype = {
- this.store = store;
- this.ruleActiveStates = await this.store.get_promise('ruleActiveStates', {});
- try {
-- this.wasm_rs = wasm.RuleSets.new();
-+ // Bug 40383: Disable wasm ruleset for now.
-+ //this.wasm_rs = wasm.RuleSets.new();
- } catch(e) {
- util.log(util.WARN, 'Falling back to pure JS implementation: ' + e);
- }
---
-2.25.1
-
diff --git a/projects/https-everywhere/build b/projects/https-everywhere/build
index 4719fd6..10dd4bf 100644
--- a/projects/https-everywhere/build
+++ b/projects/https-everywhere/build
@@ -2,11 +2,6 @@
[% c("var/set_default_env") -%]
tar xf [% project %]-[% c('version') %].tar.gz
cd [% project %]-[% c('version') %]
-
-[% IF c("var/windows") %]
- patch -p1 < $rootdir/0001-Bug-40383-Disable-https-e-wasm-ruleset.patch
-[% END -%]
-
./make.sh
# Since 5.0.2 a .xpi for AMO is built, too. We don't need it.
rm pkg/*-amo.xpi
diff --git a/projects/https-everywhere/config b/projects/https-everywhere/config
index 012680a..9af5ff6 100644
--- a/projects/https-everywhere/config
+++ b/projects/https-everywhere/config
@@ -33,5 +33,3 @@ var:
input_files:
- project: container-image
- - filename: 0001-Bug-40383-Disable-https-e-wasm-ruleset.patch
- enable: '[% c("var/windows") %]'
1
0

[translation/torbutton-browseronboardingproperties_completed] new translations in torbutton-browseronboardingproperties_completed
by translation@torproject.org 07 Dec '21
by translation@torproject.org 07 Dec '21
07 Dec '21
commit f70b0a925f800fb197f40013073bdaaa395e760e
Author: Translation commit bot <translation(a)torproject.org>
Date: Tue Dec 7 16:17:59 2021 +0000
new translations in torbutton-browseronboardingproperties_completed
---
tr/browserOnboarding.properties | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tr/browserOnboarding.properties b/tr/browserOnboarding.properties
index 9168ba80a0..a0ef6b9581 100644
--- a/tr/browserOnboarding.properties
+++ b/tr/browserOnboarding.properties
@@ -21,7 +21,7 @@ onboarding.tour-tor-network.button=Devre görünümüne geç
onboarding.tour-tor-circuit-display=Devre görünümü
onboarding.tour-tor-circuit-display.title=Yolunuzu görün.
-onboarding.tour-tor-circuit-display.description=Ziyaret ettiğiniz her web sitesi için bağlantınız, dünya üzerindeki üç Tor aktarıcısından oluşan bir devre kurularak şifrelenir ve aktarılır. Hiç bir web sitesi sizin gerçekte nereden bağlandığınızı bilemez. Kullandığınız devreyi değiştirmek için Devre Görünümünde "Bu sitenin Tor devresini yenile" üzerine tıklayın.
+onboarding.tour-tor-circuit-display.description=Ziyaret ettiğiniz her web sitesi için bağlantınız, dünya üzerindeki üç Tor aktarıcısından oluşan bir devre kurularak şifrelenir ve aktarılır. Hiç bir web sitesi sizin gerçekte nereden bağlandığınızı bilemez. Kullandığınız devreyi değiştirmek için Devre Görünümünde "Sitenin devresini yenile" üzerine tıklayın.
onboarding.tour-tor-circuit-display.button=Yolumu göster
onboarding.tour-tor-circuit-display.next-button=Güvenlik
1
0

[translation/torbutton-browseronboardingproperties] new translations in torbutton-browseronboardingproperties
by translation@torproject.org 07 Dec '21
by translation@torproject.org 07 Dec '21
07 Dec '21
commit 617cc5bcb5e5368883ae1aec911a5aded23193b4
Author: Translation commit bot <translation(a)torproject.org>
Date: Tue Dec 7 16:17:56 2021 +0000
new translations in torbutton-browseronboardingproperties
---
tr/browserOnboarding.properties | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tr/browserOnboarding.properties b/tr/browserOnboarding.properties
index 9168ba80a0..a0ef6b9581 100644
--- a/tr/browserOnboarding.properties
+++ b/tr/browserOnboarding.properties
@@ -21,7 +21,7 @@ onboarding.tour-tor-network.button=Devre görünümüne geç
onboarding.tour-tor-circuit-display=Devre görünümü
onboarding.tour-tor-circuit-display.title=Yolunuzu görün.
-onboarding.tour-tor-circuit-display.description=Ziyaret ettiğiniz her web sitesi için bağlantınız, dünya üzerindeki üç Tor aktarıcısından oluşan bir devre kurularak şifrelenir ve aktarılır. Hiç bir web sitesi sizin gerçekte nereden bağlandığınızı bilemez. Kullandığınız devreyi değiştirmek için Devre Görünümünde "Bu sitenin Tor devresini yenile" üzerine tıklayın.
+onboarding.tour-tor-circuit-display.description=Ziyaret ettiğiniz her web sitesi için bağlantınız, dünya üzerindeki üç Tor aktarıcısından oluşan bir devre kurularak şifrelenir ve aktarılır. Hiç bir web sitesi sizin gerçekte nereden bağlandığınızı bilemez. Kullandığınız devreyi değiştirmek için Devre Görünümünde "Sitenin devresini yenile" üzerine tıklayın.
onboarding.tour-tor-circuit-display.button=Yolumu göster
onboarding.tour-tor-circuit-display.next-button=Güvenlik
1
0

[translation/torbutton-torbuttondtd_completed] new translations in torbutton-torbuttondtd_completed
by translation@torproject.org 07 Dec '21
by translation@torproject.org 07 Dec '21
07 Dec '21
commit 965601de58af115915607f42440798ee5b67dde4
Author: Translation commit bot <translation(a)torproject.org>
Date: Tue Dec 7 16:17:46 2021 +0000
new translations in torbutton-torbuttondtd_completed
---
tr/torbutton.dtd | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tr/torbutton.dtd b/tr/torbutton.dtd
index d72a124236..160d943b42 100644
--- a/tr/torbutton.dtd
+++ b/tr/torbutton.dtd
@@ -1,6 +1,6 @@
<!ENTITY torbutton.context_menu.new_identity "Kimliği yenile">
<!ENTITY torbutton.context_menu.new_identity_key "I">
-<!ENTITY torbutton.context_menu.new_circuit "Bu sitenin Tor devresini yenile">
+<!ENTITY torbutton.context_menu.new_circuit "Sitenin devresini yenile">
<!ENTITY torbutton.context_menu.new_circuit_key "C">
<!ENTITY torbutton.context_menu.networksettings "Tor ağı ayarları...">
<!ENTITY torbutton.context_menu.networksettings.key "N">
@@ -47,7 +47,7 @@
<!ENTITY torbutton.prefs.sec_advanced_security_settings "Gelişmiş güvenlik düzeyi ayarları…">
<!ENTITY torbutton.prefs.sec_change "Değiştir…">
<!ENTITY torbutton.circuit_display.title "Tor devresi">
-<!ENTITY torbutton.circuit_display.new_circuit "Bu sitenin devresini yenile">
+<!ENTITY torbutton.circuit_display.new_circuit "Sitenin devresini yenile">
<!-- Onion services strings. Strings are kept here for ease of translation. -->
<!ENTITY torbutton.onionServices.authPrompt.tooltip "Onion hizmeti istemi kimlik doğrulama penceresini aç">
1
0

[translation/torbutton-torbuttondtd] new translations in torbutton-torbuttondtd
by translation@torproject.org 07 Dec '21
by translation@torproject.org 07 Dec '21
07 Dec '21
commit bd26276f2782cf8554a115d82d28ba5a90bb5357
Author: Translation commit bot <translation(a)torproject.org>
Date: Tue Dec 7 16:17:41 2021 +0000
new translations in torbutton-torbuttondtd
---
tr/torbutton.dtd | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tr/torbutton.dtd b/tr/torbutton.dtd
index d72a124236..160d943b42 100644
--- a/tr/torbutton.dtd
+++ b/tr/torbutton.dtd
@@ -1,6 +1,6 @@
<!ENTITY torbutton.context_menu.new_identity "Kimliği yenile">
<!ENTITY torbutton.context_menu.new_identity_key "I">
-<!ENTITY torbutton.context_menu.new_circuit "Bu sitenin Tor devresini yenile">
+<!ENTITY torbutton.context_menu.new_circuit "Sitenin devresini yenile">
<!ENTITY torbutton.context_menu.new_circuit_key "C">
<!ENTITY torbutton.context_menu.networksettings "Tor ağı ayarları...">
<!ENTITY torbutton.context_menu.networksettings.key "N">
@@ -47,7 +47,7 @@
<!ENTITY torbutton.prefs.sec_advanced_security_settings "Gelişmiş güvenlik düzeyi ayarları…">
<!ENTITY torbutton.prefs.sec_change "Değiştir…">
<!ENTITY torbutton.circuit_display.title "Tor devresi">
-<!ENTITY torbutton.circuit_display.new_circuit "Bu sitenin devresini yenile">
+<!ENTITY torbutton.circuit_display.new_circuit "Sitenin devresini yenile">
<!-- Onion services strings. Strings are kept here for ease of translation. -->
<!ENTITY torbutton.onionServices.authPrompt.tooltip "Onion hizmeti istemi kimlik doğrulama penceresini aç">
1
0

[translation/support-portal_completed] new translations in support-portal_completed
by translation@torproject.org 07 Dec '21
by translation@torproject.org 07 Dec '21
07 Dec '21
commit e80e8582929b8136cdef22e4071ad63232d1976f
Author: Translation commit bot <translation(a)torproject.org>
Date: Tue Dec 7 15:18:15 2021 +0000
new translations in support-portal_completed
---
contents+tr.po | 380 +++++++++++++++++++++++++++------------------------------
1 file changed, 183 insertions(+), 197 deletions(-)
diff --git a/contents+tr.po b/contents+tr.po
index b3fc52ec74..0b1cc81d67 100644
--- a/contents+tr.po
+++ b/contents+tr.po
@@ -222,8 +222,8 @@ msgstr ""
#: https//support.torproject.org/glossary/app/
#: (content/glossary/app/contents+en.lrword.definition)
msgid ""
-"App can also refer to software that you install on mobile [operating "
-"systems](../operating-system-os)."
+"App can also refer to software that you install on mobile [operating systems"
+"](../operating-system-os)."
msgstr ""
"Uygulama ifadesi ayrıca mobil [işletim sistemleri](../operating-system-os) "
"üzerine kurulan yazılımlar için de kullanılır."
@@ -332,9 +332,8 @@ msgstr "tarama geçmişi"
#: https//support.torproject.org/glossary/browsing-history/
#: (content/glossary/browsing-history/contents+en.lrword.definition)
msgid ""
-"A browser history is a record of requests made while using a [web "
-"browser](../web-browser), and includes information like websites visited and"
-" when."
+"A browser history is a record of requests made while using a [web browser"
+"](../web-browser), and includes information like websites visited and when."
msgstr ""
"Tarama geçmişi, bir [web tarayıcı](../web-browser) kullanırken hangi web "
"sitelerinin ne zaman ziyaret edildiğinin kaydıdır."
@@ -409,22 +408,21 @@ msgid ""
"A path through the [Tor network](../tor-tor-network-core-tor) built by "
"[clients](../client) consisting of randomly selected nodes. The circuit "
"begins with either a [bridge](../bridge) or a [guard](../guard). Most "
-"circuits consist of three nodes - a guard or bridge, a [middle "
-"relay](../middle-relay), and an [exit](../exit). Most [onion "
-"services](../onion-services) use six hops in a circuit (with the exception "
-"of [single onion services](../single-onion-service)), and never an exit "
-"node. You can view your current Tor circuit by clicking on the [i] on the "
-"URL bar."
+"circuits consist of three nodes - a guard or bridge, a [middle relay"
+"](../middle-relay), and an [exit](../exit). Most [onion services](../onion-"
+"services) use six hops in a circuit (with the exception of [single onion "
+"services](../single-onion-service)), and never an exit node. You can view "
+"your current Tor circuit by clicking on the [i] on the URL bar."
msgstr ""
"[Tor ağı](../tor-tor-network-core-tor) üzerinde rastgele seçilen duraklardan"
" oluşan [istemciler](../client) tarafından oluşturulan yol. Devre bir "
"[köprü](../bridge) ya da bir [koruyucu](../guard) ile başlar. Çoğu devre bir"
" koruma ya da köprü, bir [orta aktarıcı](../middle-relay) ve bir "
-"[çıkış](../exit) olmak üzere üç duraktan oluşur. Çoğu [onion "
-"hizmetinde](../onion-services) bir devrede altı durak kullanılır ([tekli "
-"onion hizmeti](../single-onion-service) dışında) ve asla bir çıkış durağı "
-"kullanılmaz. Adres çubuğundaki [i] üzerine tıklayarak kullanmakta olduğunuz "
-"Tor devresini görebilirsiniz."
+"[çıkış](../exit) olmak üzere üç duraktan oluşur. Çoğu [onion hizmetinde"
+"](../onion-services) bir devrede altı durak kullanılır ([tekli onion hizmeti"
+"](../single-onion-service) dışında) ve asla bir çıkış durağı kullanılmaz. "
+"Adres çubuğundaki [i] üzerine tıklayarak kullanmakta olduğunuz Tor devresini"
+" görebilirsiniz."
#: https//support.torproject.org/glossary/client/
#: (content/glossary/client/contents+en.lrword.term)
@@ -788,9 +786,9 @@ msgstr ""
#: https//support.torproject.org/glossary/firefox/
#: (content/glossary/firefox/contents+en.lrword.definition)
msgid ""
-"Firefox is available for Windows, macOS and Linux [operating "
-"systems](../operating-system-os), with its mobile version available for "
-"Android and iOS."
+"Firefox is available for Windows, macOS and Linux [operating systems"
+"](../operating-system-os), with its mobile version available for Android and"
+" iOS."
msgstr ""
"Firefox, Windows, macOS ve Linux [işletim sistemleri](../operating-system-"
"os) sürümleri ve Android ve iOS mobil sürümleriyle kullanılabilir."
@@ -817,8 +815,8 @@ msgstr ""
" göre süzer. Bir güvenlik duvarı genellikle güvenilen ve korunan bir iç ağ "
"ile bir dış ağ arasında bir engel oluşturur. Ancak [sansür](../network-"
"cencorship) uygulamak amacıyla içerikleri süzmek için de kullanılabilir. "
-"Bazen insanlar güvenlik duvarları Tor bağlantılarını engellediği için "
-"[Tor](../tor-tor-network/-core-tor) bağlantısı kurmakta sorun yaşarlar. Bu "
+"Bazen insanlar güvenlik duvarları Tor bağlantılarını engellediği için [Tor"
+"](../tor-tor-network/-core-tor) bağlantısı kurmakta sorun yaşarlar. Bu "
"sorunu çözmek için güvenlik duvarınızı yeniden yapılandırabilir ya da devre "
"dışı bırakabilirsiniz."
@@ -1039,9 +1037,9 @@ msgstr "HTTPS Everywhere"
#: https//support.torproject.org/glossary/https-everywhere/
#: (content/glossary/https-everywhere/contents+en.lrword.definition)
msgid ""
-"HTTPS Everywhere is a [Firefox](../firefox), Chrome, and Opera "
-"[extension](../add-on-extension-or-plugin) that makes [HTTPS](../https) the "
-"default on websites that have set up HTTPS but have not made it the default."
+"HTTPS Everywhere is a [Firefox](../firefox), Chrome, and Opera [extension"
+"](../add-on-extension-or-plugin) that makes [HTTPS](../https) the default on"
+" websites that have set up HTTPS but have not made it the default."
msgstr ""
"HTTPS Everywhere, [Firefox](../firefox), Chrome ve Opera üzerinde çalışan "
"bir [tarayıcı eklentisidir](../add-on-extension-or-plugin). HTTPS "
@@ -1133,9 +1131,9 @@ msgid ""
"[Tor Browser](../tor-browser) can be used to manage JavaScript on different "
"websites."
msgstr ""
-"[Tor Browser](../tor-browser) üzerindeki [NoScript](../noscript) "
-"[eklentisi](../add-on-extension-or-plugin) farklı web sitelerindeki "
-"JavaScript betiklerini yönetmek için kullanılabilir."
+"[Tor Browser](../tor-browser) üzerindeki [NoScript](../noscript) [eklentisi"
+"](../add-on-extension-or-plugin) farklı web sitelerindeki JavaScript "
+"betiklerini yönetmek için kullanılabilir."
#: https//support.torproject.org/glossary/little-t-tor/
#: (content/glossary/little-t-tor/contents+en.lrword.term)
@@ -1396,9 +1394,9 @@ msgstr "obfs3"
#: https//support.torproject.org/glossary/obfs3/
#: (content/glossary/obfs3/contents+en.lrword.definition)
msgid ""
-"Obfs3 is a [pluggable transport](../pluggable-transports) that makes "
-"[Tor](../tor-tor-network-core-tor) [traffic](../traffic) look random, so "
-"that it does not look like Tor or any other protocol."
+"Obfs3 is a [pluggable transport](../pluggable-transports) that makes [Tor"
+"](../tor-tor-network-core-tor) [traffic](../traffic) look random, so that it"
+" does not look like Tor or any other protocol."
msgstr ""
"Obfs3, [Tor](../tor-tor-network-core-tor) [traffiğinin](../traffic) rastgele"
" görünmesini sağlayan bir [değiştirilebilir taşıyıcıdır](../pluggable-"
@@ -1418,10 +1416,10 @@ msgstr "obfs4"
#: https//support.torproject.org/glossary/obfs4/
#: (content/glossary/obfs4/contents+en.lrword.definition)
msgid ""
-"Obfs4 is a [pluggable transport](../pluggable-transports) that makes "
-"[Tor](../tor-tor-network-core-tor) [traffic](../traffic) look random like "
-"obfs3, and also prevents censors from finding bridges by Internet scanning. "
-"Obfs4 bridges are less likely to be blocked than obfs3 [bridges](../bridge)."
+"Obfs4 is a [pluggable transport](../pluggable-transports) that makes [Tor"
+"](../tor-tor-network-core-tor) [traffic](../traffic) look random like obfs3,"
+" and also prevents censors from finding bridges by Internet scanning. Obfs4 "
+"bridges are less likely to be blocked than obfs3 [bridges](../bridge)."
msgstr ""
"Obfs4 [değiştirilebilir taşıyıcısı](../pluggable-transports), obfs3 gibi "
"[Tor](../tor-tor-network-core-tor) [trafiğinin](../traffic) rastgele "
@@ -1664,9 +1662,9 @@ msgstr ""
#: https//support.torproject.org/glossary/pluggable-transports/
#: (content/glossary/pluggable-transports/contents+en.lrword.definition)
msgid ""
-"This can be useful in situations where an [Internet Service Provider "
-"(ISP)](../internet-service-provider-isp) or other authority is actively "
-"blocking connections to the [Tor network](../tor-tor-network-core-tor)."
+"This can be useful in situations where an [Internet Service Provider (ISP"
+")](../internet-service-provider-isp) or other authority is actively blocking"
+" connections to the [Tor network](../tor-tor-network-core-tor)."
msgstr ""
"[İnternet Hizmeti Sağlayıcısı (ISP)](../internet-service-provider-isp) ya da"
" diğer otoritelerin [Tor ağına](../tor-tor-network-core-tor) olan "
@@ -1700,8 +1698,8 @@ msgstr "vekil sunucu"
#: https//support.torproject.org/glossary/proxy/
#: (content/glossary/proxy/contents+en.lrword.definition)
msgid ""
-"A proxy is a middle man between a [client](../client) (like a [web "
-"browser](../web-browser)) and a service (like a [web server](../server))."
+"A proxy is a middle man between a [client](../client) (like a [web browser"
+"](../web-browser)) and a service (like a [web server](../server))."
msgstr ""
"Bir vekil sunucu, bir [istemci](../client) (bir [web tarayıcı](../web-"
"browser) gibi) ile bir hizmet (bir [web sunucusu](../server) gibi) "
@@ -1776,9 +1774,9 @@ msgstr ""
#: https//support.torproject.org/glossary/public-key-cryptography/
#: (content/glossary/public-key-cryptography/contents+en.lrword.definition)
msgid ""
-"Additionally, the private key can be used to create a "
-"[signature](../cryptographic-signature) to prove the identity of the creator"
-" of a message or other files."
+"Additionally, the private key can be used to create a [signature"
+"](../cryptographic-signature) to prove the identity of the creator of a "
+"message or other files."
msgstr ""
"Ayrıca kişisel anahtar, bir ileti ya da başka dosyalar oluşturan bir kişinin"
" kimliğini doğrulayacak bir [imza](../cryptographic-signature) oluşturmak "
@@ -1834,8 +1832,8 @@ msgid ""
"browsers that allows you to download several security and privacy programs, "
"including [Tor Browser](../tor-browser), from different sources."
msgstr ""
-"Chrome ya da Chromium tarayıcıları için farklı kaynaklardan [Tor "
-"Browser](../tor-browser) dahil olmak üzere, çeşitli güvenlik ve gizlilik "
+"Chrome ya da Chromium tarayıcıları için farklı kaynaklardan [Tor Browser"
+"](../tor-browser) dahil olmak üzere, çeşitli güvenlik ve gizlilik "
"uygulamalarının indirilmesini sağlayan bir [eklentidir](../add-on-extension-"
"or-plugin)."
@@ -1875,8 +1873,8 @@ msgstr "kendi kimliğini doğrulayan adres"
msgid ""
"The specialized address format of [onion addresses](../onion-address) is "
"self-authenticating. The format automatically guarantees that the onion "
-"address is bound to the key used to protect connections to the [onion "
-"site](../onion-site). Ordinary internet domain names require site owners to "
+"address is bound to the key used to protect connections to the [onion site"
+"](../onion-site). Ordinary internet domain names require site owners to "
"trust and be approved by a Certificate Authority (CA) for this binding, and "
"they are subject to hijack by the CA and typically by many other parties as "
"well."
@@ -2051,9 +2049,9 @@ msgstr "Stem"
#: https//support.torproject.org/glossary/stem/
#: (content/glossary/stem/contents+en.lrword.definition)
msgid ""
-"Stem is a Python (programming language) controller library for core "
-"[Tor](../tor-tor-network-core-tor). If you want to control core Tor with "
-"python, this is for you."
+"Stem is a Python (programming language) controller library for core [Tor"
+"](../tor-tor-network-core-tor). If you want to control core Tor with python,"
+" this is for you."
msgstr ""
"Stem Python (programlama dili) için çekirdek [Tor](../tor-tor-network-core-"
"tor) özelliklerini yönetmeye yarayan bir denetleyici kitaplığıdır. Tor "
@@ -2188,9 +2186,9 @@ msgstr ""
#: (content/glossary/tor-browser/contents+en.lrword.definition)
msgid ""
"Your internet activity, including the names and addresses of the websites "
-"you visit, will be hidden from your [Internet Service Provider "
-"(ISP)](../internet-service-provider-isp) and anyone watching your connection"
-" locally."
+"you visit, will be hidden from your [Internet Service Provider (ISP"
+")](../internet-service-provider-isp) and anyone watching your connection "
+"locally."
msgstr ""
"Ziyaret ettiğiniz web sitelerinin ad ve adresleri de dahil olmak üzere tüm "
"İnternet işlemleriniz [İnternet Hizmet Sağlayıcınızdan (ISP)](../internet-"
@@ -2227,8 +2225,8 @@ msgid ""
"By default, Tor Browser does not keep any [browsing history](../browsing-"
"history)."
msgstr ""
-"Varsayılan olarak Tor Browser üzerinde herhangi bir [tarayıcı "
-"geçmişi](../browsing-history) tutulmaz."
+"Varsayılan olarak Tor Browser üzerinde herhangi bir [tarayıcı geçmişi"
+"](../browsing-history) tutulmaz."
#: https//support.torproject.org/glossary/tor-browser/
#: (content/glossary/tor-browser/contents+en.lrword.definition)
@@ -2337,9 +2335,9 @@ msgstr ""
#: (content/glossary/tor-log/contents+en.lrword.definition)
msgid ""
"If you don't see this option and you have [Tor Browser](../tor-browser) "
-"open, you can navigate to the [hamburger menu "
-"(\"≡\")](../glossary/hamburger-menu), then click on \"Preferences\", and "
-"finally on \"Tor\" in the side bar."
+"open, you can navigate to the [hamburger menu (\"≡\")](../glossary"
+"/hamburger-menu), then click on \"Preferences\", and finally on \"Tor\" in "
+"the side bar."
msgstr ""
"Bu seçeneği görmüyorsanız ve [Tor Browser](../tor-browser) açık ise, "
"[hamburger menüsünden (\"≡\")](../glossary/hamburger-menu) \"Seçenekler\" "
@@ -2476,8 +2474,8 @@ msgid ""
"core-tor)-related protections the [client](../client) would otherwise have."
msgstr ""
"NOT: Bu seçenek [onion hizmetlerine](../onion-services) Tor Browser "
-"kullanarak bağlanmak kadar güvenli değildir ve [istemciye](../client) "
-"[Tor](../tor-tor-network-core-tor) gibi koruma sağlamaz."
+"kullanarak bağlanmak kadar güvenli değildir ve [istemciye](../client) [Tor"
+"](../tor-tor-network-core-tor) gibi koruma sağlamaz."
#: https//support.torproject.org/glossary/torbirdy/
#: (content/glossary/torbirdy/contents+en.lrword.term)
@@ -2490,9 +2488,8 @@ msgid ""
"This [extension](../add-on-extension-or-plugin) configures Thunderbird to "
"make connections over [Tor](../tor-tor-network-core-tor)."
msgstr ""
-"Bu [eklenti](../add-on-extension-or-plugin) Thunderbird uygulamasını "
-"[Tor](../tor-tor-network-core-tor) üzerinden bağlanacak şekilde "
-"yapılandırır."
+"Bu [eklenti](../add-on-extension-or-plugin) Thunderbird uygulamasını [Tor"
+"](../tor-tor-network-core-tor) üzerinden bağlanacak şekilde yapılandırır."
#: https//support.torproject.org/glossary/torrc/
#: (content/glossary/torrc/contents+en.lrword.term)
@@ -2512,8 +2509,8 @@ msgstr "Torsocks"
#: https//support.torproject.org/glossary/torsocks/
#: (content/glossary/torsocks/contents+en.lrword.definition)
msgid ""
-"Torsocks allows you to use many applications in a safer way with "
-"[Tor](../tor-tor-network-core-tor)."
+"Torsocks allows you to use many applications in a safer way with [Tor"
+"](../tor-tor-network-core-tor)."
msgstr ""
"Torsocks pek çok uygulamayı [Tor](../tor-tor-network-core-tor) üzerinden "
"daha güvenli bir şekilde kullanmanızı sağlar."
@@ -2656,8 +2653,8 @@ msgid ""
msgstr ""
"Tabi ki! Bağışlarınızı Tor ağına hız ve anonimlik sağlamaktan mutluluk duyan"
" [Tor aktarıcıları işleten kuruluşların "
-"listesi](https://community.torproject.org/tr/relay/community-"
-"resources/relay-associations/) size yardımcı olur."
+"listesi](https://community.torproject.org/tr/relay/community-resources"
+"/relay-associations/) size yardımcı olur."
#: https//support.torproject.org/faq/relay-donations/
#: (content/faq/relay-donations/contents+en.lrquestion.description)
@@ -4051,8 +4048,8 @@ msgstr ""
#: https//support.torproject.org/about/key-management/
#: (content/about/key-management/contents+en.lrquestion.description)
msgid ""
-"See the [instructions on how to check Tor Browser's "
-"signature](../../tbb/how-to-verify-signature/)."
+"See the [instructions on how to check Tor Browser's signature](../../tbb"
+"/how-to-verify-signature/)."
msgstr ""
"[Tor Browser imzasını denetleme yönergeleri](../../tbb/how-to-verify-"
"signature/) bölümüne bakabilirsiniz."
@@ -4291,8 +4288,8 @@ msgstr ""
#: (content/about/protections/contents+en.lrquestion.description)
msgid ""
"Because these relays are run by different individuals or organizations, "
-"distributing trust provides more security than the old [one hop "
-"proxy](../how-is-tor-different-from-other-proxies/) approach."
+"distributing trust provides more security than the old [one hop proxy"
+"](../how-is-tor-different-from-other-proxies/) approach."
msgstr ""
"Bu aktarıcılar farklı kişiler veya kuruluşlar tarafından işletildiğinden, "
"güvenlik altyapısını dağıtmak eski [tek duraklı vekil sunucu](../../how-is-"
@@ -4303,8 +4300,8 @@ msgstr ""
#: (content/about/protections/contents+en.lrquestion.description)
msgid ""
"Note, however, that there are situations where Tor fails to solve these "
-"privacy problems entirely: see the entry below on [remaining "
-"attacks](../attacks-on-onion-routing/)."
+"privacy problems entirely: see the entry below on [remaining attacks"
+"](../attacks-on-onion-routing/)."
msgstr ""
"Ancak, Tor ağının bu kişisel gizlilik sorunlarını tamamen çözemediği "
"durumların da bulunduğunu unutmayın: [Kalan saldırılar](../attacks-on-onion-"
@@ -4455,9 +4452,9 @@ msgid ""
msgstr ""
"Tor Browser uygulamasını [web "
"sayfamızdan](https://www.torproject.org/download/) indirdiyseniz ya da "
-"[GetTor](https://gettor.torproject.org/) ile alarak "
-"[doğruladıysanız](../how-to-verify-signature/), bu uyarılar hatalıdır ve "
-"endişelenmeniz gerekmez."
+"[GetTor](https://gettor.torproject.org/) ile alarak [doğruladıysanız"
+"](../how-to-verify-signature/), bu uyarılar hatalıdır ve endişelenmeniz "
+"gerekmez."
#: https//support.torproject.org/tbb/antivirus-false-positive/
#: (content/tbb/antivirus-false-positive/contents+en.lrquestion.description)
@@ -4660,8 +4657,8 @@ msgid ""
"backup-or-transfer) or JSON file."
msgstr ""
"> Yer imleri Firefox üzerinden Tor Browser içine aktarılabilir. Bu işlem iki"
-" şekilde yapılabilir: [HTML dosyası](https://support.mozilla.org/en-"
-"US/kb/export-firefox-bookmarks-to-backup-or-transfer) ya da JSON dosyası."
+" şekilde yapılabilir: [HTML dosyası](https://support.mozilla.org/en-US/kb"
+"/export-firefox-bookmarks-to-backup-or-transfer) ya da JSON dosyası."
#: https//support.torproject.org/tbb/export-and-import-bookmarks/
#: (content/tbb/export-and-import-bookmarks/contents+en.lrquestion.description)
@@ -5262,14 +5259,14 @@ msgid ""
"Tor Browser Developers key is also available on "
"[keys.openpgp.org](https://keys.openpgp.org/) and can be downloaded from "
"[https://keys.openpgp.org/vks/v1/by-"
-"fingerprint/EF6E286DDA85EA2A4BA7DE684E2C6E8793298290](https://keys.openpgp.…"
-"fingerprint/EF6E286DDA85EA2A4BA7DE684E2C6E8793298290)."
+"fingerprint/EF6E286DDA85EA2A4BA7DE684E2C6E8793298290](https://keys.openpgp.…"
+"/by-fingerprint/EF6E286DDA85EA2A4BA7DE684E2C6E8793298290)."
msgstr ""
"Tor Browser geliştiricilerinin anahtarı "
"[keys.openpgp.org](https://keys.openpgp.org/) üzerinde de bulunabilir ve "
"[https://keys.openpgp.org/vks/v1/by-"
-"fingerprint/EF6E286DDA85EA2A4BA7DE684E2C6E8793298290](https://keys.openpgp.…"
-"fingerprint/EF6E286DDA85EA2A4BA7DE684E2C6E8793298290) adresinden "
+"fingerprint/EF6E286DDA85EA2A4BA7DE684E2C6E8793298290](https://keys.openpgp.…"
+"/by-fingerprint/EF6E286DDA85EA2A4BA7DE684E2C6E8793298290) adresinden "
"indirilebilir."
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -6205,8 +6202,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
msgid ""
-"Both options are located in the [hamburger menu "
-"(\"≡\")](../../glossary/hamburger-menu)."
+"Both options are located in the [hamburger menu (\"≡\")](../../glossary"
+"/hamburger-menu)."
msgstr ""
"İki seçenek de [hamburger menüsünde \"(≡)\"](../../glossary/hamburger-menu) "
"bulunur."
@@ -6620,9 +6617,8 @@ msgstr ""
"istiyoruz. Tor Browser bugün [36 farklı dilde "
"sunuluyor](https://www.torproject.org/tr/download/languages/) ve daha "
"fazlasını eklemek için çalışıyoruz. Çevirilere yardımcı olmak isterseniz "
-"[buraya "
-"bakabilirsiniz](https://community.torproject.org/tr/localization/becoming-"
-"tor-translator/)"
+"[buraya bakabilirsiniz](https://community.torproject.org/tr/localization"
+"/becoming-tor-translator/)"
#: https//support.torproject.org/tbb/tbb-37/
#: (content/tbb/tbb-37/contents+en.lrquestion.description)
@@ -6754,8 +6750,8 @@ msgid ""
"linkability) document further explains the thinking behind this design."
msgstr ""
"Bu konuyla ilgili ayrıntılı bilgi almak için [Tor Browser Tasarımı ve "
-"Uygulaması](https://www.torproject.org/projects/torbrowser/design/#identifi…"
-"linkability) bölümüne bakabilirsiniz."
+"Uygulaması](https://www.torproject.org/projects/torbrowser/design"
+"/#identifier-linkability) bölümüne bakabilirsiniz."
#: https//support.torproject.org/tbb/tbb-41/
#: (content/tbb/tbb-41/contents+en.lrquestion.title)
@@ -7061,9 +7057,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-45/
#: (content/tbb/tbb-45/contents+en.lrquestion.description)
msgid ""
-"In practice, alas, it's [way more complex than "
-"that](https://fscked.org/blog/fully-automated-active-https-cookie-"
-"hijacking)."
+"In practice, alas, it's [way more complex than that](https://fscked.org/blog"
+"/fully-automated-active-https-cookie-hijacking)."
msgstr ""
"Ancak pratikte [durum bundan daha karışıktır](https://fscked.org/blog/fully-"
"automated-active-https-cookie-hijacking)."
@@ -7924,18 +7919,17 @@ msgid ""
"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
"onion-browser-and-more-ios-tor)."
msgstr ""
-"[Onion Browser hakkında ayrıntılı bilgi "
-"alın](https://blog.torproject.org/tor-heart-onion-browser-and-more-ios-tor)."
+"[Onion Browser hakkında ayrıntılı bilgi alın](https://blog.torproject.org"
+"/tor-heart-onion-browser-and-more-ios-tor)."
#: https//support.torproject.org/tormobile/tormobile-3/
#: (content/tormobile/tormobile-3/contents+en.lrquestion.description)
msgid ""
-"Download Onion Browser from the [App "
-"Store](https://itunes.apple.com/us/app/onion-browser/id519296448)."
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
msgstr ""
-"Onion Browser uygulamasını [App "
-"Store](https://itunes.apple.com/us/app/onion-browser/id519296448) üzerinden "
-"indirebilirsiniz."
+"Onion Browser uygulamasını [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448) üzerinden indirebilirsiniz."
#: https//support.torproject.org/tormobile/tormobile-4/
#: (content/tormobile/tormobile-4/contents+en.lrquestion.title)
@@ -7947,8 +7941,8 @@ msgstr "Windows Phone üzerinde Tor Browser kullanabilir miyim?"
msgid ""
"There is currently no supported method for running Tor Browser on older "
"Windows Phones but in case of the newer Microsoft-branded/promoted phones, "
-"same steps as in [Tor Browser for Android](https://tb-"
-"manual.torproject.org/mobile-tor/#tor-browser-for-android) can be followed."
+"same steps as in [Tor Browser for Android](https://tb-manual.torproject.org"
+"/mobile-tor/#tor-browser-for-android) can be followed."
msgstr ""
"Şu anda eski Windows telefonlarda Tor Browser çalıştırmak için desteklenen "
"bir yöntem yok. Ancak daha yeni Microsoft markalı ya da destekli telefonlar "
@@ -8053,8 +8047,8 @@ msgstr ""
#: https//support.torproject.org/tormobile/tormobile-7/
#: (content/tormobile/tormobile-7/contents+en.lrquestion.description)
msgid ""
-"[Learn how to add a repository to "
-"F-Droid](https://f-droid.org/en/tutorials/add-repo/)."
+"[Learn how to add a repository to F-Droid](https://f-droid.org/en/tutorials"
+"/add-repo/)."
msgstr ""
"[F-Droid üzerine bir deponun nasıl ekleneceğini "
"öğrenin](https://f-droid.org/en/tutorials/add-repo/)."
@@ -8495,8 +8489,8 @@ msgstr ""
#: (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 [pluggable "
-"transports](https://tb-manual.torproject.org/transports/)."
+"circumvention options available, including [pluggable transports](https"
+"://tb-manual.torproject.org/transports/)."
msgstr ""
"Ağır sansür uygulanan yerlerde engellemeyi aşmak için [Değiştirilebilir "
"Taşıyıcılar](https://tb-manual.torproject.org/tr/transports/) gibi çeşitli "
@@ -8560,8 +8554,8 @@ msgid ""
"From the dropdown, select whichever [pluggable transport](https://tb-"
"manual.torproject.org/transports/) you'd like to use."
msgstr ""
-"Açılan kutudan kullanmak istediğiniz [değiştirilebilir "
-"taşıyıcıyı](https://tb-manual.torproject.org/tr/transports/) seçin."
+"Açılan kutudan kullanmak istediğiniz [değiştirilebilir taşıyıcıyı](https"
+"://tb-manual.torproject.org/tr/transports/) seçin."
#: https//support.torproject.org/censorship/censorship-4/
#: (content/censorship/censorship-4/contents+en.lrquestion.description)
@@ -8614,8 +8608,8 @@ msgid ""
"For more information about bridges, see the [Tor Browser manual](https://tb-"
"manual.torproject.org/bridges)"
msgstr ""
-"Köprüler hakkında ayrıntılı bilgi almak için [Tor Browser "
-"belgelerine](https://tb-manual.torproject.org/tr/bridges) bakabilirsiniz."
+"Köprüler hakkında ayrıntılı bilgi almak için [Tor Browser belgelerine](https"
+"://tb-manual.torproject.org/tr/bridges) bakabilirsiniz."
#: https//support.torproject.org/censorship/censorship-7/
#: (content/censorship/censorship-7/contents+en.lrquestion.title)
@@ -8776,8 +8770,8 @@ msgstr "Kararlı Tor Browser sürümlerinde (Masaüstü ve Android) bulunur."
#: https//support.torproject.org/censorship/connecting-from-china/
#: (content/censorship/connecting-from-china/contents+en.lrquestion.description)
msgid ""
-"You can select Snowflake from Tor Browser's [built-in bridge "
-"dropdown](../how-can-i-use-snowflake/)."
+"You can select Snowflake from Tor Browser's [built-in bridge dropdown"
+"](../how-can-i-use-snowflake/)."
msgstr ""
"Tor Browser [hazır köprüler bölümünden](../how-can-i-use-snowflake/) "
"Snowflake olarak seçebilirsiniz."
@@ -8977,9 +8971,8 @@ msgid ""
"You can also use Snowflake with [Onion "
"Browser](https://apps.apple.com/us/app/onion-browser/id519296448) on iOS."
msgstr ""
-"Ayrıca Snowflake iOS üzerinde [Onion "
-"Browser](https://apps.apple.com/us/app/onion-browser/id519296448) ile de "
-"kullanılabilir."
+"Ayrıca Snowflake iOS üzerinde [Onion Browser](https://apps.apple.com/us/app"
+"/onion-browser/id519296448) ile de kullanılabilir."
#: https//support.torproject.org/censorship/how-can-i-use-snowflake/
#: (content/censorship/how-can-i-use-snowflake/contents+en.lrquestion.description)
@@ -9283,8 +9276,8 @@ msgstr ""
#: https//support.torproject.org/https/https-2/
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
-"You can [read more about HTTPS here](https://tb-"
-"manual.torproject.org/secure-connections/)"
+"You can [read more about HTTPS here](https://tb-manual.torproject.org"
+"/secure-connections/)."
msgstr ""
"[Buraya tıklayarak HTTPS hakkında ayrıntılı bilgi](https://tb-"
"manual.torproject.org/tr/secure-connections/) alabilirsiniz."
@@ -9415,14 +9408,13 @@ msgstr ""
#: https//support.torproject.org/relay-operators/bandwidth-shaping/
#: (content/relay-operators/bandwidth-shaping/contents+en.lrquestion.description)
msgid ""
-"A [script to do "
-"this](https://gitweb.torproject.org/tor.git/plain/contrib/operator-"
-"tools/linux-tor-prio.sh?h=maint-0.3.5) can be found in the Tor source "
-"distribution's contrib directory."
+"A [script to do this](https://gitweb.torproject.org/tor.git/plain/contrib"
+"/operator-tools/linux-tor-prio.sh?h=maint-0.3.5) can be found in the Tor "
+"source distribution's contrib directory."
msgstr ""
"Tor kaynak dağıtımındaki contrib klasörü altında [bunu sağlayacak bir "
-"betik](https://gitweb.torproject.org/tor.git/plain/contrib/operator-"
-"tools/linux-tor-prio.sh?h=maint-0.3.5) bulabilirsiniz."
+"betik](https://gitweb.torproject.org/tor.git/plain/contrib/operator-tools"
+"/linux-tor-prio.sh?h=maint-0.3.5) bulabilirsiniz."
#: https//support.torproject.org/relay-operators/bandwidth-shaping/
#: (content/relay-operators/bandwidth-shaping/contents+en.lrquestion.description)
@@ -10075,14 +10067,14 @@ msgstr "Aktarıcım üzerinde IPv6 kullanabilir miyim?"
#: https//support.torproject.org/relay-operators/ipv6-relay/
#: (content/relay-operators/ipv6-relay/contents+en.lrquestion.description)
msgid ""
-"Tor [has partial support for IPv6](https://blog.torproject.org/state-of-"
-"ipv6-support-tor-network) and we encourage every relay operator to [enable "
-"IPv6 functionality](https://community.torproject.org/relay/setup/post-"
-"install/) in their [torrc](../../tbb/tbb-editing-torrc/) configuration files"
-" when IPv6 connectivity is available."
+"Tor [has partial support for IPv6](https://blog.torproject.org/state-of-ipv6"
+"-support-tor-network) and we encourage every relay operator to [enable IPv6 "
+"functionality](https://community.torproject.org/relay/setup/post-install/) "
+"in their [torrc](../../tbb/tbb-editing-torrc/) configuration files when IPv6"
+" connectivity is available."
msgstr ""
-"Tor [IPv6 desteği sınırlıdır](https://blog.torproject.org/state-of-"
-"ipv6-support-tor-network). IPv6 bağlantısı kullanabilen her aktarıcı "
+"Tor [IPv6 desteği sınırlıdır](https://blog.torproject.org/state-of-ipv6"
+"-support-tor-network). IPv6 bağlantısı kullanabilen her aktarıcı "
"işletmecisinin [torrc](../../tbb/tbb-editing-torrc/) yapılandırma dosyasını "
"güncelleyerek [IPv6 özelliğini "
"etkinleştirmesini](https://community.torproject.org/tr/relay/setup/post-"
@@ -10348,10 +10340,9 @@ msgstr ""
#: https//support.torproject.org/relay-operators/my-relay-got-guard-flag-traffic-dropped/
#: (content/relay-operators/my-relay-got-guard-flag-traffic-dropped/contents+en.lrquestion.description)
msgid ""
-"Read more details in this [blog "
-"post](https://blog.torproject.org/blog/lifecycle-of-a-new-relay) or in "
-"[Changing of the Guards: A Framework for Understanding and Improving Entry "
-"Guard Selection in "
+"Read more details in this [blog post](https://blog.torproject.org/blog"
+"/lifecycle-of-a-new-relay) or in [Changing of the Guards: A Framework for "
+"Understanding and Improving Entry Guard Selection in "
"Tor](https://www.freehaven.net/anonbib/cache/wpes12-cogs.pdf)."
msgstr ""
"Ayrıntılı bilgi almak için [şu günlük "
@@ -10743,8 +10734,8 @@ msgid ""
"relays/) flag once detected."
msgstr ""
"Trafiği süzdüğü anlaşılan çıkış aktarıcıları [Kötü Çıkış "
-"(BadExit)](https://community.torproject.org/tr/relay/community-"
-"resources/bad-relays/) aktarıcısı olarak işaretlenir."
+"(BadExit)](https://community.torproject.org/tr/relay/community-resources"
+"/bad-relays/) aktarıcısı olarak işaretlenir."
#: https//support.torproject.org/relay-operators/packaged-tor/
#: (content/relay-operators/packaged-tor/contents+en.lrquestion.title)
@@ -11569,8 +11560,8 @@ msgid ""
msgstr ""
"Tor işleminin bellek sızdırdığını fark ederseniz, lütfen sorunu [Tor "
"GitLab](https://gitlab.torproject.org) üzerinden bildirin veya [tor-relays "
-"e-posta listesine](https://lists.torproject.org/cgi-"
-"bin/mailman/listinfo/tor-relays) bir e-posta gönderin."
+"e-posta listesine](https://lists.torproject.org/cgi-bin/mailman/listinfo"
+"/tor-relays) bir e-posta gönderin."
#: https//support.torproject.org/relay-operators/relay-bridge-overloaded/
#: (content/relay-operators/relay-bridge-overloaded/contents+en.lrquestion.description)
@@ -12028,8 +12019,8 @@ msgid ""
"<https://community.torproject.org/relay/setup/guard/windows/>"
msgstr ""
"- Windows üzerinde bir [koruma "
-"aktarıcısı](https://community.torproject.org/tr/relay/types-of-"
-"relays/#guard-and-middle-relay) işletmek için şu bölümü okuyabilirsiniz: "
+"aktarıcısı](https://community.torproject.org/tr/relay/types-of-relays"
+"/#guard-and-middle-relay) işletmek için şu bölümü okuyabilirsiniz: "
"<https://community.torproject.org/tr/relay/setup/guard/windows/>"
#: https//support.torproject.org/relay-operators/run-relay-in-windows/
@@ -12735,8 +12726,8 @@ msgid ""
"bin/mailman/listinfo/tor-relays/)."
msgstr ""
"Aktarıcınız bir süredir çalıştığı halde hala sorun yaşıyorsanız, durumu [tor"
-" aktarıcıları listesi](https://lists.torproject.org/cgi-"
-"bin/mailman/listinfo/tor-relays/) posta grubuna yazmayı deneyin"
+" aktarıcıları listesi](https://lists.torproject.org/cgi-bin/mailman/listinfo"
+"/tor-relays/) posta grubuna yazmayı deneyin"
#: https//support.torproject.org/relay-operators/wrong-ip/
#: (content/relay-operators/wrong-ip/contents+en.lrquestion.title)
@@ -12831,8 +12822,8 @@ msgid ""
msgstr ""
"İstemci kimliği doğrulaması kullanan bir onion hizmeti oluşturmak "
"istiyorsanız, Topluluk portalindeki [İstemci Kimliğini "
-"Doğrulamak](https://community.torproject.org/tr/onion-"
-"services/advanced/client-auth) bölümüne bakabilirsiniz."
+"Doğrulamak](https://community.torproject.org/tr/onion-services/advanced"
+"/client-auth) bölümüne bakabilirsiniz."
#: https//support.torproject.org/onionservices/onion-location/
#: (content/onionservices/onion-location/contents+en.lrquestion.title)
@@ -12879,8 +12870,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onion-location/
#: (content/onionservices/onion-location/contents+en.lrquestion.description)
msgid ""
-"You can learn more about Onion-Location in the [Tor Browser "
-"Manual](https://tb-manual.torproject.org/onion-services/)."
+"You can learn more about Onion-Location in the [Tor Browser Manual](https"
+"://tb-manual.torproject.org/onion-services/)."
msgstr ""
"Onion-Location hakkında ayrıntılı bilgi almak için [Tor Browser "
"belgelerine](https://tb-manual.torproject.org/tr/onion-services/) "
@@ -12894,8 +12885,8 @@ msgid ""
"location) in your onion site."
msgstr ""
"Bir onion hizmeti işletiyorsanız, onion siteniz için [Onion-Location "
-"yapılandırması](https://community.torproject.org/tr/onion-"
-"services/advanced/onion-location) hakkında ayrıntılı bilgi alın."
+"yapılandırması](https://community.torproject.org/tr/onion-services/advanced"
+"/onion-location) hakkında ayrıntılı bilgi alın."
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.title)
@@ -13424,20 +13415,19 @@ msgstr ""
#: (content/onionservices/v2-deprecation/contents+en.lrquestion.description)
msgid ""
"Some of the work we have in our roadmap is [ESTABLISH_INTRO Cell DoS Defense"
-" "
-"Extension](https://gitweb.torproject.org/torspec.git/tree/proposals/305-est…"
-"intro-dos-defense-extention.txt), [Res tokens: Anonymous Credentials for "
-"Onion Service DoS "
-"Resilience](https://gitweb.torproject.org/torspec.git/tree/proposals/331-re…"
-"tokens-for-anti-dos.md), and [A First Take at PoW Over Introduction "
+" Extension](https://gitweb.torproject.org/torspec.git/tree/proposals/305"
+"-establish-intro-dos-defense-extention.txt), [Res tokens: Anonymous "
+"Credentials for Onion Service DoS "
+"Resilience](https://gitweb.torproject.org/torspec.git/tree/proposals/331"
+"-res-tokens-for-anti-dos.md), and [A First Take at PoW Over Introduction "
"Circuits](https://gitweb.torproject.org/torspec.git/tree/proposals/327-pow-"
"over-intro.txt)."
msgstr ""
"Yol haritamızda yaptığımız çalışmalardan bazıları [ESTABLISH_INTRO Cell DoS "
"Savunması "
-"Geliştirme](https://gitweb.torproject.org/torspec.git/tree/proposals/305-in…"
-"intro-dos-defense-extention.txt) , [Res belirteçleri: Onion Service DoS "
-"Esnekliği için Anonim Kimlik "
+"Geliştirme](https://gitweb.torproject.org/torspec.git/tree/proposals/305"
+"-install-intro-dos-defense-extention.txt) , [Res belirteçleri: Onion Service"
+" DoS Esnekliği için Anonim Kimlik "
"Bilgileri](https://gitweb.torproject.org/torspec.git/tree/proposals/331-res-"
"tokens-for-anti-dos.md) ve [A PoW Üzerinden Giriş Devrelerine "
"Bakış](https://gitweb.torproject.org/torspec.git/tree/proposals/327-pow-"
@@ -13598,14 +13588,14 @@ msgstr ""
#: (content/misc/bug-or-feedback/contents+en.lrquestion.description)
msgid ""
"To create a new issue, please [request a new "
-"account](https://gitlab.torproject.org/users/sign_in?redirect_to_referer=ye…"
-"pane) to access Tor Project's GitLab instance and [find the right "
+"account](https://gitlab.torproject.org/users/sign_in?redirect_to_referer=yes"
+"#register-pane) to access Tor Project's GitLab instance and [find the right "
"repository](https://gitlab.torproject.org/tpo) to report your issue."
msgstr ""
"Yeni bir sorun bildiriminde bulunmak istiyorsanız, Tor Projesi GitLab "
"kopyasına erişmek için [yeni bir hesap isteğinde "
-"bulunun](https://gitlab.torproject.org/users/sign_in?redirect_to_referer=ye…"
-"pane) ve sorunu bildirmek için [doğru depoyu "
+"bulunun](https://gitlab.torproject.org/users/sign_in?redirect_to_referer=yes"
+"#register-pane) ve sorunu bildirmek için [doğru depoyu "
"seçin](https://gitlab.torproject.org/tpo)."
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -13773,8 +13763,8 @@ msgid ""
"For feedback or issues related to our websites: "
"[ux](https://lists.torproject.org/cgi-bin/mailman/listinfo/ux)"
msgstr ""
-"Web sitelerimiz ile ilgili konular için: "
-"[ux](https://lists.torproject.org/cgi-bin/mailman/listinfo/ux)"
+"Web sitelerimiz ile ilgili konular için: [ux](https://lists.torproject.org"
+"/cgi-bin/mailman/listinfo/ux)"
#: https//support.torproject.org/misc/bug-or-feedback/
#: (content/misc/bug-or-feedback/contents+en.lrquestion.description)
@@ -13789,8 +13779,8 @@ msgstr ""
#: (content/misc/bug-or-feedback/contents+en.lrquestion.description)
msgid ""
"For feedback on content related to Tor Browser Manual or Support website: "
-"[tor-community-team](https://lists.torproject.org/cgi-"
-"bin/mailman/listinfo/tor-community-team)"
+"[tor-community-team](https://lists.torproject.org/cgi-bin/mailman/listinfo"
+"/tor-community-team)"
msgstr ""
"Tor Browser belgeleri ya da Destek web sitesi ile ilgili konular için: [tor-"
"community-team](https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-"
@@ -13823,8 +13813,8 @@ msgstr ""
#: (content/misc/bug-or-feedback/contents+en.lrquestion.description)
msgid ""
"If you want to encrypt your mail, you can get the GPG public key for the "
-"list by contacting tor-security-sendkey(a)lists.torproject.org or from "
-"pool.sks-keyservers.net. Here is the fingerprint:"
+"list by contacting tor-security-sendkey(a)lists.torproject.org or from pool"
+".sks-keyservers.net. Here is the fingerprint:"
msgstr ""
"E-postanızı şifrelemek istiyorsanız, bu listenin herkese açık GPG anahtarını"
" tor-security-sendkey(a)lists.torproject.org ya da pool.sks-keyservers.net "
@@ -15050,15 +15040,14 @@ msgstr ""
msgid ""
"> **Note on Raspbian:** The package repository does not offer 32-bit ARM "
"architecture (`armhf`) images. You should either [build Tor from "
-"source](https://community.torproject.org/onion-"
-"services/setup/install/#installing-tor-from-source), or install the version "
-"Debian offers."
+"source](https://community.torproject.org/onion-services/setup/install"
+"/#installing-tor-from-source), or install the version Debian offers."
msgstr ""
"> **Raspbian için not:** Paket deposunda 32-bit ARM mimarisinin (`armhf`) "
"kalıpları bulunmaz. [Tor kaynak kodundan "
-"derlemeyi](https://community.torproject.org/tr/onion-"
-"services/setup/install/#installing-tor-from-source) ya da Debian tarafından "
-"sunulan sürümü kurmayı seçebilirsiniz."
+"derlemeyi](https://community.torproject.org/tr/onion-services/setup/install"
+"/#installing-tor-from-source) ya da Debian tarafından sunulan sürümü kurmayı"
+" seçebilirsiniz."
#: https//support.torproject.org/apt/tor-deb-repo/
#: (content/apt/tor-deb-repo/contents+en.lrquestion.description)
@@ -15725,8 +15714,8 @@ msgstr "Tor bu bağlamda AOL kullanmaktan farklı değildir."
#: https//support.torproject.org/abuse/i-want-to-ban-tor/
#: (content/abuse/ban-tor/contents+en.lrquestion.description)
msgid ""
-"Lastly, please remember that Tor relays have [individual exit "
-"policies](../../relay-operators/exit-policies/)."
+"Lastly, please remember that Tor relays have [individual exit policies"
+"](../../relay-operators/exit-policies/)."
msgstr ""
"Son olarak, Tor aktarıcılarının [bağımsız çıkış ilkeleri](../../relay-"
"operators/exit-policies/) olduğunu unutmayın."
@@ -15943,14 +15932,12 @@ msgstr ""
#: (content/abuse/exit-relay-expectations/contents+en.lrquestion.description)
msgid ""
"For a complete set of template responses to different abuse complaint types,"
-" see the [collection of "
-"templates](https://community.torproject.org/relay/community-resources/tor-"
-"abuse-templates/)."
+" see the [collection of templates](https://community.torproject.org/relay"
+"/community-resources/tor-abuse-templates/)."
msgstr ""
"Farklı kötüye kullanım şikayeti türlerine yönelik eksiksiz bir kalıp yanıt "
-"seti için [kalıp "
-"derlemesine](https://community.torproject.org/tr/relay/community-"
-"resources/tor-abuse-templates/) bakabilirsiniz."
+"seti için [kalıp derlemesine](https://community.torproject.org/tr/relay"
+"/community-resources/tor-abuse-templates/) bakabilirsiniz."
#: https//support.torproject.org/abuse/exit-relay-expectations/
#: (content/abuse/exit-relay-expectations/contents+en.lrquestion.description)
@@ -16046,10 +16033,10 @@ msgstr ""
#: https//support.torproject.org/abuse/help-trace-tor-user/
#: (content/abuse/help-trace-tor-user/contents+en.lrquestion.description)
msgid ""
-"Second, the [bad people aren't going to get caught by this "
-"anyway](/abuse/what-about-criminals/), since they will use other means to "
-"ensure their anonymity (identity theft, compromising computers and using "
-"them as bounce points, etc)."
+"Second, the [bad people aren't going to get caught by this anyway](/abuse"
+"/what-about-criminals/), since they will use other means to ensure their "
+"anonymity (identity theft, compromising computers and using them as bounce "
+"points, etc)."
msgstr ""
"İkincisi, [kötü insanlar buna zaten yakalanmayacaklar](/abuse/what-about-"
"criminals/), çünkü anonim olmalarını sağlamak için başka yöntemler "
@@ -16163,9 +16150,9 @@ msgstr ""
#: https//support.torproject.org/abuse/does-tor-get-much-abuse/
#: (content/abuse/how-much-abuse/contents+en.lrquestion.description)
msgid ""
-"Since Tor has [many good uses as "
-"well](https://community.torproject.org/user-research/persona/), we feel that"
-" we're doing pretty well at striking a balance currently."
+"Since Tor has [many good uses as well](https://community.torproject.org"
+"/user-research/persona/), we feel that we're doing pretty well at striking a"
+" balance currently."
msgstr ""
"Tor ağının [iyi amaçla birçok kullanımı "
"olduğundan](https://community.torproject.org/tr/user-research/persona/), şu "
@@ -16595,8 +16582,8 @@ msgid ""
"templates/)."
msgstr ""
"İnternet Hizmeti Sağlayıcılarına doğru şekilde yanıt vermek için bir [kalıp "
-"derlemesi](https://community.torproject.org/tr/relay/community-"
-"resources/tor-abuse-templates/) hazırlanmıştır."
+"derlemesi](https://community.torproject.org/tr/relay/community-resources"
+"/tor-abuse-templates/) hazırlanmıştır."
#: https//support.torproject.org/abuse/what-about-criminals/
#: (content/abuse/what-about-criminals/contents+en.lrquestion.title)
@@ -17397,13 +17384,13 @@ msgid ""
"Nick Mathewson key is also available on "
"[keys.openpgp.org](https://keys.openpgp.org/) and can be downloaded from "
"[https://keys.openpgp.org/vks/v1/by-"
-"fingerprint/2133BC600AB133E1D826D173FE43009C4607B1FB](https://keys.openpgp.…"
-"fingerprint/2133BC600AB133E1D826D173FE43009C4607B1FB)."
+"fingerprint/2133BC600AB133E1D826D173FE43009C4607B1FB](https://keys.openpgp.…"
+"/by-fingerprint/2133BC600AB133E1D826D173FE43009C4607B1FB)."
msgstr ""
"Nick Mathewson anahtarı ayrıca [keys.openpgp.org](https://keys.openpgp.org/)"
" adresinde bulunabilir ve [https://keys.openpgp.org/vks/v1/by-"
-"fingerprint/2133BC600AB133E1D826D173FE43009C4607B1FB](https://keys.openpgp.…"
-"fingerprint/2133BC600AB133E1D826D173FE43009C4607B1FB) adresinden "
+"fingerprint/2133BC600AB133E1D826D173FE43009C4607B1FB](https://keys.openpgp.…"
+"/by-fingerprint/2133BC600AB133E1D826D173FE43009C4607B1FB) adresinden "
"indirilebilir."
#: https//support.torproject.org/little-t-tor/verify-little-t-tor/
@@ -17525,8 +17512,8 @@ msgstr "Her Tor kullanıcısını bir aktarıcı yapmalısınız."
#: (content/alternate-designs/make-every-user-a-relay/contents+en.lrquestion.description)
msgid ""
"Requiring every Tor user to be a relay would help with scaling the network "
-"to handle all our users, and [running a Tor relay may help your "
-"anonymity](../../relay-operators/better-anonymity)."
+"to handle all our users, and [running a Tor relay may help your anonymity"
+"](../../relay-operators/better-anonymity)."
msgstr ""
"Her Tor kullanıcısının aktarıcı olmasını zorunlu kılmak, ağın tüm "
"kullanıcılarımızı idare edecek şekilde ölçeklendirilmesine yardımcı olur ve "
@@ -17626,9 +17613,8 @@ msgstr ""
#: https//support.torproject.org/alternate-designs/make-every-user-a-relay/
#: (content/alternate-designs/make-every-user-a-relay/contents+en.lrquestion.description)
msgid ""
-"See Section 5 of the "
-"[Challenges](https://svn.torproject.org/svn/projects/design-"
-"paper/challenges.pdf) paper for details."
+"See Section 5 of the [Challenges](https://svn.torproject.org/svn/projects"
+"/design-paper/challenges.pdf) paper for details."
msgstr ""
"Ayrıntılı bilgi almak için "
"[zorluklar](https://svn.torproject.org/svn/projects/design-"
1
0

[translation/tpo-web_completed] new translations in tpo-web_completed
by translation@torproject.org 07 Dec '21
by translation@torproject.org 07 Dec '21
07 Dec '21
commit 3370e0a2f33bda30db863001c6965bc2106c430c
Author: Translation commit bot <translation(a)torproject.org>
Date: Tue Dec 7 15:18:10 2021 +0000
new translations in tpo-web_completed
---
contents+es.po | 18 ++++++++----------
contents+pt-BR.po | 8 ++++----
contents+tr.po | 19 +++++++++----------
3 files changed, 21 insertions(+), 24 deletions(-)
diff --git a/contents+es.po b/contents+es.po
index d01a5e667b..a727c598b1 100644
--- a/contents+es.po
+++ b/contents+es.po
@@ -462,8 +462,8 @@ msgstr "programa de bug bounty"
#: (dynamic)
msgid ""
"If you want to encrypt your mail, you can get the GPG public key for the "
-"list by contacting tor-security-sendkey(a)lists.torproject.org or from "
-"pool.sks-keyservers.net. Here is the fingerprint:"
+"list by contacting tor-security-sendkey(a)lists.torproject.org or from pool"
+".sks-keyservers.net. Here is the fingerprint:"
msgstr ""
"Si quieres cifrar tu correo electrónico, puedes obtener la llave pública GPG"
" para la lista contactando tor-security-sendkey(a)lists.torproject.org o desde"
@@ -879,8 +879,8 @@ msgstr ""
#: (content/releases/tor-browser-10-5/contents+en.lrpage.body)
msgid ""
"During Q1 this year, [the UX team ran a survey on Tor Browser Alpha to "
-"better understand Snowflake’s user "
-"experience](https://blog.torproject.org/snowflake-in-tor-browser-stable)."
+"better understand Snowflake’s user experience](https://blog.torproject.org"
+"/snowflake-in-tor-browser-stable)."
msgstr ""
"Durante el primer trimestre de este año, [el equipo de experiencia de "
"usuario llevó a cabo una encuesta sobre el Navegador Tor Alpha para tener un"
@@ -2428,9 +2428,8 @@ msgid ""
msgstr ""
"La necesidad de herramientas de protección contra la vigilancia masiva se "
"convirtió en una preocupación fundamental gracias a las [revelaciones de "
-"Snowden en "
-"2013](https://www.theguardian.com/world/interactive/2013/nov/01/snowden-nsa-"
-"files-surveillance-revelations-decoded#section/1)."
+"Snowden en 2013](https://www.theguardian.com/world/interactive/2013/nov/01"
+"/snowden-nsa-files-surveillance-revelations-decoded#section/1)."
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.body)
@@ -2488,9 +2487,8 @@ msgid ""
msgstr ""
"Pero Tor es más que simple software. Es un trabajo de amor producido por una"
" comunidad internacional de personas dedicadas a los derechos humanos. El "
-"Proyecto Tor está [profundamente "
-"comprometido](https://blog.torproject.org/tor-social-contract) con la "
-"transparencia y la seguridad de sus usuarios."
+"Proyecto Tor está [profundamente comprometido](https://blog.torproject.org"
+"/tor-social-contract) con la transparencia y la seguridad de sus usuarios."
#: (dynamic)
msgid "Board of Directors"
diff --git a/contents+pt-BR.po b/contents+pt-BR.po
index 5200a490d4..03d0917b6f 100644
--- a/contents+pt-BR.po
+++ b/contents+pt-BR.po
@@ -451,8 +451,8 @@ msgstr ""
#: (dynamic)
msgid ""
"If you want to encrypt your mail, you can get the GPG public key for the "
-"list by contacting tor-security-sendkey(a)lists.torproject.org or from "
-"pool.sks-keyservers.net. Here is the fingerprint:"
+"list by contacting tor-security-sendkey(a)lists.torproject.org or from pool"
+".sks-keyservers.net. Here is the fingerprint:"
msgstr ""
"Se você quiser criptografar seu e-mail, poderá obter a chave pública GPG da "
"lista entrando em contato tor-security-sendkey(a)lists.torproject.org ou em "
@@ -841,8 +841,8 @@ msgstr ""
#: (content/releases/tor-browser-10-5/contents+en.lrpage.body)
msgid ""
"During Q1 this year, [the UX team ran a survey on Tor Browser Alpha to "
-"better understand Snowflake’s user "
-"experience](https://blog.torproject.org/snowflake-in-tor-browser-stable)."
+"better understand Snowflake’s user experience](https://blog.torproject.org"
+"/snowflake-in-tor-browser-stable)."
msgstr ""
#: https//www.torproject.org/releases/tor-browser-10-5/
diff --git a/contents+tr.po b/contents+tr.po
index 1159958247..4dc76cd569 100644
--- a/contents+tr.po
+++ b/contents+tr.po
@@ -464,8 +464,8 @@ msgstr "ödüllü sorun bulma programımıza bildirmekten çekinmeyin."
#: (dynamic)
msgid ""
"If you want to encrypt your mail, you can get the GPG public key for the "
-"list by contacting tor-security-sendkey(a)lists.torproject.org or from "
-"pool.sks-keyservers.net. Here is the fingerprint:"
+"list by contacting tor-security-sendkey(a)lists.torproject.org or from pool"
+".sks-keyservers.net. Here is the fingerprint:"
msgstr ""
"E-postanızı şifrelemek istiyorsanız, bu listenin herkese açık GPG anahtarını"
" tor-security-sendkey(a)lists.torproject.org ya da pool.sks-keyservers.net "
@@ -881,8 +881,8 @@ msgstr ""
#: (content/releases/tor-browser-10-5/contents+en.lrpage.body)
msgid ""
"During Q1 this year, [the UX team ran a survey on Tor Browser Alpha to "
-"better understand Snowflake’s user "
-"experience](https://blog.torproject.org/snowflake-in-tor-browser-stable)."
+"better understand Snowflake’s user experience](https://blog.torproject.org"
+"/snowflake-in-tor-browser-stable)."
msgstr ""
"Bu yılın ilk üç ayında, [kullanıcı deneyimi ekibi, Tor Browser Alpha sürümü "
"üzerinde Snowflake kullanıcı deneyimini daha iyi anlamak için bir anket "
@@ -1469,9 +1469,8 @@ msgid ""
"This release includes important [security updates to "
"Firefox](https://www.mozilla.org/en-US/security/advisories/mfsa2020-43/)."
msgstr ""
-"Bu sürümde önemli [Firefox güvenlik "
-"güncellemeleri](https://www.mozilla.org/en-"
-"US/security/advisories/mfsa2020-43/) bulunuyor."
+"Bu sürümde önemli [Firefox güvenlik güncellemeleri](https://www.mozilla.org"
+"/en-US/security/advisories/mfsa2020-43/) bulunuyor."
#: https//www.torproject.org/releases/tor-browser-10-0/
#: (content/releases/tor-browser-10-0/contents+en.lrpage.body)
@@ -2417,9 +2416,9 @@ msgid ""
msgstr ""
"Kitlesel gözetlemeye karşı koruma sağlayan araçlara duyulan gereksinim [2013"
" yılındaki Snowden "
-"sızıntıları](https://www.theguardian.com/world/interactive/2013/nov/01/snow…"
-"nsa-files-surveillance-revelations-decoded#section/1) üzerine önemli bir "
-"gündem maddesi haline geldi."
+"sızıntıları](https://www.theguardian.com/world/interactive/2013/nov/01"
+"/snowden-nsa-files-surveillance-revelations-decoded#section/1) üzerine "
+"önemli bir gündem maddesi haline geldi."
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.body)
1
0

[translation/tbmanual-contentspot_completed] new translations in tbmanual-contentspot_completed
by translation@torproject.org 07 Dec '21
by translation@torproject.org 07 Dec '21
07 Dec '21
commit 2c0ca1a771a43e44392f77a1b3e8cfc713029079
Author: Translation commit bot <translation(a)torproject.org>
Date: Tue Dec 7 15:17:17 2021 +0000
new translations in tbmanual-contentspot_completed
---
contents+en.po | 252 ++++++++++++++++++++++++++---------------------------
contents+es.po | 267 +++++++++++++++++++++++++++-----------------------------
contents+hu.po | 264 +++++++++++++++++++++++++++----------------------------
contents+tr.po | 270 +++++++++++++++++++++++++++------------------------------
4 files changed, 509 insertions(+), 544 deletions(-)
diff --git a/contents+en.po b/contents+en.po
index d4f12c1992..46ac975cb5 100644
--- a/contents+en.po
+++ b/contents+en.po
@@ -334,12 +334,12 @@ msgstr ""
#: (content/about/contents+en.lrtopic.body)
msgid ""
"By default, Tor Browser does not keep any browsing history. Cookies are only"
-" valid for a single session (until Tor Browser is exited or a [New "
-"Identity](/managing-identities/#new-identity) is requested)."
+" valid for a single session (until Tor Browser is exited or a [New Identity"
+"](/managing-identities/#new-identity) is requested)."
msgstr ""
"By default, Tor Browser does not keep any browsing history. Cookies are only"
-" valid for a single session (until Tor Browser is exited or a [New "
-"Identity](/managing-identities/#new-identity) is requested)."
+" valid for a single session (until Tor Browser is exited or a [New Identity"
+"](/managing-identities/#new-identity) is requested)."
#: https//tb-manual.torproject.org/about/
#: (content/about/contents+en.lrtopic.body)
@@ -644,13 +644,13 @@ msgstr "Double-click the icon to start up Tor Browser for the first time."
#: https//tb-manual.torproject.org/installation/
#: (content/installation/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:50%\" class=\"col-md-6\" "
-"src=\"../../static/images/linux-make-desktop-file-executable.png\" "
-"alt=\"Make the .desktop file executable in Linux\">"
+"<img style=\"max-width:50%\" class=\"col-md-6\" src=\"../../static/images"
+"/linux-make-desktop-file-executable.png\" alt=\"Make the .desktop file "
+"executable in Linux\">"
msgstr ""
-"<img style=\"max-width:50%\" class=\"col-md-6\" "
-"src=\"../../static/images/linux-make-desktop-file-executable.png\" "
-"alt=\"Make the .desktop file executable in Linux\">"
+"<img style=\"max-width:50%\" class=\"col-md-6\" src=\"../../static/images"
+"/linux-make-desktop-file-executable.png\" alt=\"Make the .desktop file "
+"executable in Linux\">"
#: https//tb-manual.torproject.org/installation/
#: (content/installation/contents+en.lrtopic.body)
@@ -698,13 +698,13 @@ msgstr ""
#: https//tb-manual.torproject.org/installation/
#: (content/installation/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:50%\" class=\"col-md-6\" "
-"src=\"../../static/images/linux-change-behavior-executable-files.png\" "
-"alt=\"Change behavior of executable text file to always run in Linux\">"
+"<img style=\"max-width:50%\" class=\"col-md-6\" src=\"../../static/images"
+"/linux-change-behavior-executable-files.png\" alt=\"Change behavior of "
+"executable text file to always run in Linux\">"
msgstr ""
-"<img style=\"max-width:50%\" class=\"col-md-6\" "
-"src=\"../../static/images/linux-change-behavior-executable-files.png\" "
-"alt=\"Change behavior of executable text file to always run in Linux\">"
+"<img style=\"max-width:50%\" class=\"col-md-6\" src=\"../../static/images"
+"/linux-change-behavior-executable-files.png\" alt=\"Change behavior of "
+"executable text file to always run in Linux\">"
#: https//tb-manual.torproject.org/installation/
#: (content/installation/contents+en.lrtopic.body)
@@ -1851,11 +1851,11 @@ msgstr ""
#: https//tb-manual.torproject.org/onion-services/
#: (content/onion-services/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:100%\" class=\"col-md-6\" "
-"src=\"../../static/images/onion-location.png\" alt=\"Onion-Location\">"
+"<img style=\"max-width:100%\" class=\"col-md-6\" src=\"../../static/images"
+"/onion-location.png\" alt=\"Onion-Location\">"
msgstr ""
-"<img style=\"max-width:100%\" class=\"col-md-6\" "
-"src=\"../../static/images/onion-location.png\" alt=\"Onion-Location\">"
+"<img style=\"max-width:100%\" class=\"col-md-6\" src=\"../../static/images"
+"/onion-location.png\" alt=\"Onion-Location\">"
#: https//tb-manual.torproject.org/onion-services/
#: (content/onion-services/contents+en.lrtopic.body)
@@ -2306,13 +2306,13 @@ msgstr ""
#: https//tb-manual.torproject.org/security-settings/
#: (content/security-settings/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:100%\" class=\"col-lg-6\" "
-"src=\"../../static/images/security-settings-anim.gif\" alt=\"Click on "
-"'Advanced Security Settings' under the shield menu.\">"
+"<img style=\"max-width:100%\" class=\"col-lg-6\" src=\"../../static/images"
+"/security-settings-anim.gif\" alt=\"Click on 'Advanced Security Settings' "
+"under the shield menu.\">"
msgstr ""
-"<img style=\"max-width:100%\" class=\"col-lg-6\" "
-"src=\"../../static/images/security-settings-anim.gif\" alt=\"Click on "
-"'Advanced Security Settings' under the shield menu.\">"
+"<img style=\"max-width:100%\" class=\"col-lg-6\" src=\"../../static/images"
+"/security-settings-anim.gif\" alt=\"Click on 'Advanced Security Settings' "
+"under the shield menu.\">"
#: https//tb-manual.torproject.org/security-settings/
#: (content/security-settings/contents+en.lrtopic.body)
@@ -2342,13 +2342,13 @@ msgstr ""
#: https//tb-manual.torproject.org/security-settings/
#: (content/security-settings/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:100%\" class=\"col-lg-6\" "
-"src=\"../../static/images/security-settings-safest.png\" alt=\"Security "
-"Level is currently set to Standard.\">"
+"<img style=\"max-width:100%\" class=\"col-lg-6\" src=\"../../static/images"
+"/security-settings-safest.png\" alt=\"Security Level is currently set to "
+"Standard.\">"
msgstr ""
-"<img style=\"max-width:100%\" class=\"col-lg-6\" "
-"src=\"../../static/images/security-settings-safest.png\" alt=\"Security "
-"Level is currently set to Standard.\">"
+"<img style=\"max-width:100%\" class=\"col-lg-6\" src=\"../../static/images"
+"/security-settings-safest.png\" alt=\"Security Level is currently set to "
+"Standard.\">"
#: https//tb-manual.torproject.org/security-settings/
#: (content/security-settings/contents+en.lrtopic.body)
@@ -3201,11 +3201,11 @@ msgstr ""
#: https//tb-manual.torproject.org/known-issues/
#: (content/known-issues/contents+en.lrtopic.body)
msgid ""
-"* BitTorrent [is not anonymous over "
-"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+"* BitTorrent [is not anonymous over Tor](https://blog.torproject.org"
+"/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"* BitTorrent [is not anonymous over "
-"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+"* BitTorrent [is not anonymous over Tor](https://blog.torproject.org"
+"/bittorrent-over-tor-isnt-good-idea)."
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.title)
@@ -3430,13 +3430,11 @@ msgstr "#### Connect"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-connect.png\" alt=\"Connect to Tor Browser"
-" for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-connect.png\" alt=\"Connect to Tor Browser"
-" for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3466,13 +3464,11 @@ msgstr "#### Configure"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-configure.png\" alt=\"Configure Tor "
-"Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-configure.png\" alt=\"Configure Tor "
-"Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3558,13 +3554,13 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-censored.png\" alt=\"Censored internet on "
-"Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-censored.png\" alt=\"Censored internet on "
-"Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3587,24 +3583,24 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-select-a-bridge.png\" alt=\"Select a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-select-a-bridge.png\" alt=\"Select a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-selected-a-bridge.png\" alt=\"Selected a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-selected-a-bridge.png\" alt=\"Selected a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3618,24 +3614,24 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-provide-a-bridge.png\" alt=\"Provide a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-provide-a-bridge.png\" alt=\"Provide a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-provided-a-bridge.png\" alt=\"Provide "
-"brigde addresses on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-provided-a-bridge.png\" alt=\"Provide "
-"brigde addresses on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3650,13 +3646,11 @@ msgstr "#### New Identity"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-new-identity.png\" alt=\"New Identity on "
-"Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-new-identity.png\" alt=\"New Identity on "
-"Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3696,13 +3690,13 @@ msgstr "### SECURITY SETTINGS"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-security-settings.gif\" alt=\"Security "
-"settings and security slider on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-security-settings.gif\" alt=\"Security "
-"settings and security slider on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3774,13 +3768,13 @@ msgstr "##### Google Play"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-update-google-play.png\" alt=\"Updating "
-"Tor Browser for Android on Google Play\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-update-google-play.png\" alt=\"Updating "
-"Tor Browser for Android on Google Play\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3808,13 +3802,13 @@ msgstr "##### F-Droid"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-update-f-droid.png\" alt=\"Updating Tor "
-"Browser for Android on F-Droid\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-Droid\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-update-f-droid.png\" alt=\"Updating Tor "
-"Browser for Android on F-Droid\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-Droid\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3903,13 +3897,13 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-google-play.png\" "
-"alt=\"Uninstalling Tor Browser for Android on Google Play\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-google-play.png\" "
-"alt=\"Uninstalling Tor Browser for Android on Google Play\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3932,13 +3926,13 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-f-droid.png\" alt=\"Uninstalling"
-" Tor Browser for Android on F-Droid\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-Droid\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-f-droid.png\" alt=\"Uninstalling"
-" Tor Browser for Android on F-Droid\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-Droid\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3957,13 +3951,13 @@ msgstr "#### Mobile device app settings"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-device-settings.png\" "
-"alt=\"Uninstalling Tor Browser for Android using device app settings\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-device-settings.png\" "
-"alt=\"Uninstalling Tor Browser for Android using device app settings\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3982,13 +3976,11 @@ msgstr "#### View Tor Logs"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"img-fluid\" "
-"src=\"../../static/images/android-view-logs.gif\" alt=\"View Tor logs on Tor"
-" Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"img-fluid\" src=\"../../static/images"
+"/android-view-logs.gif\" alt=\"View Tor logs on Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"img-fluid\" "
-"src=\"../../static/images/android-view-logs.gif\" alt=\"View Tor logs on Tor"
-" Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"img-fluid\" src=\"../../static/images"
+"/android-view-logs.gif\" alt=\"View Tor logs on Tor Browser for Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -4217,11 +4209,11 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"Download Onion Browser from the [App "
-"Store](https://itunes.apple.com/us/app/onion-browser/id519296448)."
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
msgstr ""
-"Download Onion Browser from the [App "
-"Store](https://itunes.apple.com/us/app/onion-browser/id519296448)."
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
diff --git a/contents+es.po b/contents+es.po
index 079cd729b3..6a358c4eea 100644
--- a/contents+es.po
+++ b/contents+es.po
@@ -354,8 +354,8 @@ msgstr ""
#: (content/about/contents+en.lrtopic.body)
msgid ""
"By default, Tor Browser does not keep any browsing history. Cookies are only"
-" valid for a single session (until Tor Browser is exited or a [New "
-"Identity](/managing-identities/#new-identity) is requested)."
+" valid for a single session (until Tor Browser is exited or a [New Identity"
+"](/managing-identities/#new-identity) is requested)."
msgstr ""
"De forma predeterminada, el Navegador Tor no conserva ningún historial de "
"navegación. Las cookies sólo son válidas durante una sola sesión (hasta que "
@@ -667,13 +667,13 @@ msgstr "Doble clic en el icono para iniciar el Navegador Tor por primera vez."
#: https//tb-manual.torproject.org/installation/
#: (content/installation/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:50%\" class=\"col-md-6\" "
-"src=\"../../static/images/linux-make-desktop-file-executable.png\" "
-"alt=\"Make the .desktop file executable in Linux\">"
+"<img style=\"max-width:50%\" class=\"col-md-6\" src=\"../../static/images"
+"/linux-make-desktop-file-executable.png\" alt=\"Make the .desktop file "
+"executable in Linux\">"
msgstr ""
-"<img style=\"max-width:50%\" class=\"col-md-6\" "
-"src=\"../../static/images/linux-make-desktop-file-executable.png\" alt=\"Haz"
-" ejecutable el archivo .desktop en Linux\">"
+"<img style=\"max-width:50%\" class=\"col-md-6\" src=\"../../static/images"
+"/linux-make-desktop-file-executable.png\" alt=\"Haz ejecutable el archivo "
+".desktop en Linux\">"
#: https//tb-manual.torproject.org/installation/
#: (content/installation/contents+en.lrtopic.body)
@@ -725,14 +725,13 @@ msgstr ""
#: https//tb-manual.torproject.org/installation/
#: (content/installation/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:50%\" class=\"col-md-6\" "
-"src=\"../../static/images/linux-change-behavior-executable-files.png\" "
-"alt=\"Change behavior of executable text file to always run in Linux\">"
+"<img style=\"max-width:50%\" class=\"col-md-6\" src=\"../../static/images"
+"/linux-change-behavior-executable-files.png\" alt=\"Change behavior of "
+"executable text file to always run in Linux\">"
msgstr ""
-"<img style=\"max-width:50%\" class=\"col-md-6\" "
-"src=\"../../static/images/linux-change-behavior-executable-files.png\" "
-"alt=\"Cambia el comportamiento de un archivo de texto para ejecutarse "
-"siempre en Linux\">"
+"<img style=\"max-width:50%\" class=\"col-md-6\" src=\"../../static/images"
+"/linux-change-behavior-executable-files.png\" alt=\"Cambia el comportamiento"
+" de un archivo de texto para ejecutarse siempre en Linux\">"
#: https//tb-manual.torproject.org/installation/
#: (content/installation/contents+en.lrtopic.body)
@@ -1903,11 +1902,11 @@ msgstr ""
#: https//tb-manual.torproject.org/onion-services/
#: (content/onion-services/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:100%\" class=\"col-md-6\" "
-"src=\"../../static/images/onion-location.png\" alt=\"Onion-Location\">"
+"<img style=\"max-width:100%\" class=\"col-md-6\" src=\"../../static/images"
+"/onion-location.png\" alt=\"Onion-Location\">"
msgstr ""
-"<img style=\"max-width:100%\" class=\"col-md-6\" "
-"src=\"../../static/images/onion-location.png\" alt=\"Onion-Location\">"
+"<img style=\"max-width:100%\" class=\"col-md-6\" src=\"../../static/images"
+"/onion-location.png\" alt=\"Onion-Location\">"
#: https//tb-manual.torproject.org/onion-services/
#: (content/onion-services/contents+en.lrtopic.body)
@@ -2373,13 +2372,13 @@ msgstr ""
#: https//tb-manual.torproject.org/security-settings/
#: (content/security-settings/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:100%\" class=\"col-lg-6\" "
-"src=\"../../static/images/security-settings-anim.gif\" alt=\"Click on "
-"'Advanced Security Settings' under the shield menu.\">"
+"<img style=\"max-width:100%\" class=\"col-lg-6\" src=\"../../static/images"
+"/security-settings-anim.gif\" alt=\"Click on 'Advanced Security Settings' "
+"under the shield menu.\">"
msgstr ""
-"<img style=\"max-width:100%\" class=\"col-lg-6\" "
-"src=\"../../static/images/security-settings-anim.gif\" alt=\"Clic en "
-"'Ajustes de seguridad avanzados' bajo el menú del escudo\">"
+"<img style=\"max-width:100%\" class=\"col-lg-6\" src=\"../../static/images"
+"/security-settings-anim.gif\" alt=\"Clic en 'Ajustes de seguridad avanzados'"
+" bajo el menú del escudo\">"
#: https//tb-manual.torproject.org/security-settings/
#: (content/security-settings/contents+en.lrtopic.body)
@@ -2409,13 +2408,13 @@ msgstr ""
#: https//tb-manual.torproject.org/security-settings/
#: (content/security-settings/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:100%\" class=\"col-lg-6\" "
-"src=\"../../static/images/security-settings-safest.png\" alt=\"Security "
-"Level is currently set to Standard.\">"
+"<img style=\"max-width:100%\" class=\"col-lg-6\" src=\"../../static/images"
+"/security-settings-safest.png\" alt=\"Security Level is currently set to "
+"Standard.\">"
msgstr ""
-"<img style=\"max-width:100%\" class=\"col-lg-6\" "
-"src=\"../../static/images/security-settings-safest.png\" alt=\"El nivel de "
-"seguridad está ajustado a estándar\">"
+"<img style=\"max-width:100%\" class=\"col-lg-6\" src=\"../../static/images"
+"/security-settings-safest.png\" alt=\"El nivel de seguridad está ajustado a "
+"estándar\">"
#: https//tb-manual.torproject.org/security-settings/
#: (content/security-settings/contents+en.lrtopic.body)
@@ -2449,10 +2448,9 @@ msgid ""
" fonts and math symbols are disabled; audio and video (HTML5 media) are "
"click-to-play."
msgstr ""
-"* JavaScript está desactivado en todos los sitios que no sean "
-"[HTTPS](/es/secure-connections); algunas fuentes y símbolos matemáticos "
-"están desactivados; el audio y el vídeo (formato HTML5) se reproducen con un"
-" clic."
+"* JavaScript está desactivado en todos los sitios que no sean [HTTPS](/es"
+"/secure-connections); algunas fuentes y símbolos matemáticos están "
+"desactivados; el audio y el vídeo (formato HTML5) se reproducen con un clic."
#: https//tb-manual.torproject.org/security-settings/
#: (content/security-settings/contents+en.lrtopic.body)
@@ -3298,11 +3296,11 @@ msgstr ""
#: https//tb-manual.torproject.org/known-issues/
#: (content/known-issues/contents+en.lrtopic.body)
msgid ""
-"* BitTorrent [is not anonymous over "
-"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+"* BitTorrent [is not anonymous over Tor](https://blog.torproject.org"
+"/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"* BitTorrent [no es anónimo sobre "
-"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+"* BitTorrent [no es anónimo sobre Tor](https://blog.torproject.org"
+"/bittorrent-over-tor-isnt-good-idea)."
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.title)
@@ -3527,13 +3525,11 @@ msgstr "#### Conectar"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-connect.png\" alt=\"Connect to Tor Browser"
-" for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-connect.png\" alt=\"Conectar a Tor Browser"
-" para Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Conectar a Tor Browser para Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3564,13 +3560,11 @@ msgstr "#### Configurar"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-configure.png\" alt=\"Configure Tor "
-"Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-configure.png\" alt=\"Configurar Tor "
-"Browser para Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configurar Tor Browser para Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3657,13 +3651,13 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-censored.png\" alt=\"Censored internet on "
-"Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-censored.png\" alt=\"Internet censurado en"
-" el Navegador Tor para Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Internet censurado en el Navegador Tor para "
+"Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3686,24 +3680,24 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-select-a-bridge.png\" alt=\"Select a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-select-a-bridge.png\" alt=\"Seleccionar un"
-" puente en el Navegador Tor para Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Seleccionar un puente en el Navegador "
+"Tor para Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-selected-a-bridge.png\" alt=\"Selected a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-selected-a-bridge.png\" alt=\"Seleccionado"
-" un puente en el Navegador Tor para Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Seleccionado un puente en el "
+"Navegador Tor para Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3717,24 +3711,24 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-provide-a-bridge.png\" alt=\"Provide a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-provide-a-bridge.png\" alt=\"Proporcionar "
-"un puente en el Navegador Tor para Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Proporcionar un puente en el Navegador"
+" Tor para Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-provided-a-bridge.png\" alt=\"Provide "
-"brigde addresses on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-provided-a-bridge.png\" alt=\"Proporcionar"
-" direcciones puente en el Navegador Tor para Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Proporcionar direcciones puente en el"
+" Navegador Tor para Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3749,13 +3743,12 @@ msgstr "#### Nueva Identidad"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-new-identity.png\" alt=\"New Identity on "
-"Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-new-identity.png\" alt=\"Nueva Identidad "
-"en el Navegador Tor para Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"Nueva Identidad en el Navegador Tor para "
+"Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3796,13 +3789,13 @@ msgstr "### CONFIGURACIÓN DE SEGURIDAD"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-security-settings.gif\" alt=\"Security "
-"settings and security slider on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-security-settings.gif\" alt=\"Ajustes de "
-"seguridad y control de seguridad en el Navegador Tor para Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Ajustes de seguridad y control de "
+"seguridad en el Navegador Tor para Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3877,13 +3870,13 @@ msgstr "##### Google Play"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-update-google-play.png\" alt=\"Updating "
-"Tor Browser for Android on Google Play\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-update-google-play.png\" alt=\"Actualizar "
-"Navegador Tor para Android en Google Play\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Actualizar Navegador Tor para "
+"Android en Google Play\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3911,13 +3904,13 @@ msgstr "##### F-Droid"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-update-f-droid.png\" alt=\"Updating Tor "
-"Browser for Android on F-Droid\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-Droid\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-update-f-droid.png\" alt=\"Actualizando el"
-" Navegador Tor para Android en F-Droid\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Actualizando el Navegador Tor para "
+"Android en F-Droid\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3950,8 +3943,8 @@ msgid ""
msgstr ""
"Visita el [sitio web del Tor "
"Project](https://www.torproject.org/download/#android) y descarga una copia "
-"de la versión más reciente del Navegador Tor, luego [instálalo](/mobile-"
-"tor/#downloading-and-installation) como antes."
+"de la versión más reciente del Navegador Tor, luego [instálalo](/mobile-tor"
+"/#downloading-and-installation) como antes."
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -4011,13 +4004,13 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-google-play.png\" "
-"alt=\"Uninstalling Tor Browser for Android on Google Play\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-google-play.png\" "
-"alt=\"Desinstalar el Navegador Tor para Android en Google Play\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Desinstalar el Navegador Tor para"
+" Android en Google Play\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -4040,13 +4033,13 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-f-droid.png\" alt=\"Uninstalling"
-" Tor Browser for Android on F-Droid\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-Droid\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-f-droid.png\" alt=\"Desinstalar "
-"el Navegador Tor para Android en F-Droid\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Desinstalar el Navegador Tor para "
+"Android en F-Droid\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -4065,14 +4058,13 @@ msgstr "#### Configuración de aplicaciones del dispositivo móvil"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-device-settings.png\" "
-"alt=\"Uninstalling Tor Browser for Android using device app settings\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-device-settings.png\" "
-"alt=\"Desinstalando el Navegador Tor para Android utilizando los ajustes de "
-"app del dispositivo\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Desinstalando el Navegador "
+"Tor para Android utilizando los ajustes de app del dispositivo\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -4091,13 +4083,12 @@ msgstr "#### Ver los registros de Tor"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"img-fluid\" "
-"src=\"../../static/images/android-view-logs.gif\" alt=\"View Tor logs on Tor"
-" Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"img-fluid\" src=\"../../static/images"
+"/android-view-logs.gif\" alt=\"View Tor logs on Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"img-fluid\" "
-"src=\"../../static/images/android-view-logs.gif\" alt=\"Ver el registro en "
-"Tor Browser para Android\"/>"
+"<img style=\"max-width:300px\" class=\"img-fluid\" src=\"../../static/images"
+"/android-view-logs.gif\" alt=\"Ver el registro en Tor Browser para "
+"Android\"/>"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -4329,11 +4320,11 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"Download Onion Browser from the [App "
-"Store](https://itunes.apple.com/us/app/onion-browser/id519296448)."
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
msgstr ""
-"Descarga Onion Browser desde la [App "
-"Store](https://itunes.apple.com/us/app/onion-browser/id519296448)."
+"Descarga Onion Browser desde la [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -4349,8 +4340,8 @@ msgid ""
msgstr ""
"Actualmente no existe un método compatible para ejecutar Tor en teléfonos "
"Windows más antiguos, pero en el caso de los teléfonos de marca Microsoft "
-"más nuevos, se pueden seguir los mismos pasos en [Navegador Tor en "
-"Android](#tor-browser-for-android)."
+"más nuevos, se pueden seguir los mismos pasos en [Navegador Tor en Android"
+"](#tor-browser-for-android)."
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
diff --git a/contents+hu.po b/contents+hu.po
index a7f0854a55..e028537dc1 100644
--- a/contents+hu.po
+++ b/contents+hu.po
@@ -349,8 +349,8 @@ msgstr ""
#: (content/about/contents+en.lrtopic.body)
msgid ""
"By default, Tor Browser does not keep any browsing history. Cookies are only"
-" valid for a single session (until Tor Browser is exited or a [New "
-"Identity](/managing-identities/#new-identity) is requested)."
+" valid for a single session (until Tor Browser is exited or a [New Identity"
+"](/managing-identities/#new-identity) is requested)."
msgstr ""
"Alapból a Tor Böngésző nem rögzít semmilyen böngészési előzményt. A cookie-k"
" csak egyetlen munkamenet erejéig érvényesek (tehát amíg a Tor Böngésző be "
@@ -664,13 +664,13 @@ msgstr ""
#: https//tb-manual.torproject.org/installation/
#: (content/installation/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:50%\" class=\"col-md-6\" "
-"src=\"../../static/images/linux-make-desktop-file-executable.png\" "
-"alt=\"Make the .desktop file executable in Linux\">"
+"<img style=\"max-width:50%\" class=\"col-md-6\" src=\"../../static/images"
+"/linux-make-desktop-file-executable.png\" alt=\"Make the .desktop file "
+"executable in Linux\">"
msgstr ""
-"<img style=\"max-width:50%\" class=\"col-md-6\" "
-"src=\"../../static/images/linux-make-desktop-file-executable.png\" alt=\"A "
-".desktop fájl futtathatóvá tétele Linux-on\"/>"
+"<img style=\"max-width:50%\" class=\"col-md-6\" src=\"../../static/images"
+"/linux-make-desktop-file-executable.png\" alt=\"A .desktop fájl futtathatóvá"
+" tétele Linux-on\"/>"
#: https//tb-manual.torproject.org/installation/
#: (content/installation/contents+en.lrtopic.body)
@@ -722,14 +722,13 @@ msgstr ""
#: https//tb-manual.torproject.org/installation/
#: (content/installation/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:50%\" class=\"col-md-6\" "
-"src=\"../../static/images/linux-change-behavior-executable-files.png\" "
-"alt=\"Change behavior of executable text file to always run in Linux\">"
+"<img style=\"max-width:50%\" class=\"col-md-6\" src=\"../../static/images"
+"/linux-change-behavior-executable-files.png\" alt=\"Change behavior of "
+"executable text file to always run in Linux\">"
msgstr ""
-"<img style=\"max-width:50%\" class=\"col-md-6\" "
-"src=\"../../static/images/linux-change-behavior-executable-files.png\" "
-"alt=\"A futtatható szöveg fájlok működésének módosítása mindig fut-ra Linux-"
-"on\"/>"
+"<img style=\"max-width:50%\" class=\"col-md-6\" src=\"../../static/images"
+"/linux-change-behavior-executable-files.png\" alt=\"A futtatható szöveg "
+"fájlok működésének módosítása mindig fut-ra Linux-on\"/>"
#: https//tb-manual.torproject.org/installation/
#: (content/installation/contents+en.lrtopic.body)
@@ -1731,14 +1730,14 @@ msgid ""
" does not clear any private information or unlink your activity, nor does it"
" affect your current connections to other websites."
msgstr ""
-"Ez az opció akkor hasznos, ha az Ön által használt [kimeneti "
-"relé](/hu/about/#how-tor-works) nem tud kapcsolódni a kívánt website-hoz, "
-"vagy nem töltődik be megfelelően. Az opció kiválasztásával a jelenleg aktív "
-"böngésző lap vagy ablak újratöltődik egy új Tor áramkörrel. A többi nyitott "
-"lap vagy ablak ugyanennél a website-nál szintén az új áramkört fogja "
-"használni az újratöltődés után. Az opció kiválasztásával nem töltődnek a "
-"privát információk és nem fogja leválasztani az Ön aktivítását, illetve nem "
-"fogja befolyásolni az Ön kapcsolatait más website-okkal sem."
+"Ez az opció akkor hasznos, ha az Ön által használt [kimeneti relé](/hu/about"
+"/#how-tor-works) nem tud kapcsolódni a kívánt website-hoz, vagy nem töltődik"
+" be megfelelően. Az opció kiválasztásával a jelenleg aktív böngésző lap vagy"
+" ablak újratöltődik egy új Tor áramkörrel. A többi nyitott lap vagy ablak "
+"ugyanennél a website-nál szintén az új áramkört fogja használni az "
+"újratöltődés után. Az opció kiválasztásával nem töltődnek a privát "
+"információk és nem fogja leválasztani az Ön aktivítását, illetve nem fogja "
+"befolyásolni az Ön kapcsolatait más website-okkal sem."
#: https//tb-manual.torproject.org/managing-identities/
#: (content/managing-identities/contents+en.lrtopic.body)
@@ -1889,11 +1888,11 @@ msgstr ""
#: https//tb-manual.torproject.org/onion-services/
#: (content/onion-services/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:100%\" class=\"col-md-6\" "
-"src=\"../../static/images/onion-location.png\" alt=\"Onion-Location\">"
+"<img style=\"max-width:100%\" class=\"col-md-6\" src=\"../../static/images"
+"/onion-location.png\" alt=\"Onion-Location\">"
msgstr ""
-"<img style=\"max-width:100%\" class=\"col-md-6\" "
-"src=\"../../static/images/onion-location.png\" alt=\"Onion hely\"/>"
+"<img style=\"max-width:100%\" class=\"col-md-6\" src=\"../../static/images"
+"/onion-location.png\" alt=\"Onion hely\"/>"
#: https//tb-manual.torproject.org/onion-services/
#: (content/onion-services/contents+en.lrtopic.body)
@@ -2357,13 +2356,13 @@ msgstr ""
#: https//tb-manual.torproject.org/security-settings/
#: (content/security-settings/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:100%\" class=\"col-lg-6\" "
-"src=\"../../static/images/security-settings-anim.gif\" alt=\"Click on "
-"'Advanced Security Settings' under the shield menu.\">"
+"<img style=\"max-width:100%\" class=\"col-lg-6\" src=\"../../static/images"
+"/security-settings-anim.gif\" alt=\"Click on 'Advanced Security Settings' "
+"under the shield menu.\">"
msgstr ""
-"<img style=\"max-width:100%\" class=\"col-lg-6\" "
-"src=\"../../static/images/security-settings-anim.gif\" alt=\"Kattintson a "
-"'Speciális biztonsági beállítások"-on a pajzs menüben.\"/>"
+"<img style=\"max-width:100%\" class=\"col-lg-6\" src=\"../../static/images"
+"/security-settings-anim.gif\" alt=\"Kattintson a 'Speciális biztonsági "
+"beállítások"-on a pajzs menüben.\"/>"
#: https//tb-manual.torproject.org/security-settings/
#: (content/security-settings/contents+en.lrtopic.body)
@@ -2393,13 +2392,13 @@ msgstr ""
#: https//tb-manual.torproject.org/security-settings/
#: (content/security-settings/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:100%\" class=\"col-lg-6\" "
-"src=\"../../static/images/security-settings-safest.png\" alt=\"Security "
-"Level is currently set to Standard.\">"
+"<img style=\"max-width:100%\" class=\"col-lg-6\" src=\"../../static/images"
+"/security-settings-safest.png\" alt=\"Security Level is currently set to "
+"Standard.\">"
msgstr ""
-"<img style=\"max-width:100%\" class=\"col-lg-6\" "
-"src=\"../../static/images/security-settings-safest.png\" alt=\"A biztonsági "
-"szint jelenleg Standard-ra állított.\"/>"
+"<img style=\"max-width:100%\" class=\"col-lg-6\" src=\"../../static/images"
+"/security-settings-safest.png\" alt=\"A biztonsági szint jelenleg Standard-"
+"ra állított.\"/>"
#: https//tb-manual.torproject.org/security-settings/
#: (content/security-settings/contents+en.lrtopic.body)
@@ -2925,8 +2924,8 @@ msgid ""
"websites to run scripts in \"Standard\" mode."
msgstr ""
"Azoknak a felhasználálóknak, akik számára fontos a magas szintű biztonság "
-"böngészéskor, érdemes beállítani a Tor Böngészőben a [Biztonsági "
-"szint](../security-settings/)-et \"Biztonságosabb\"-ra. Ez a beállítás "
+"böngészéskor, érdemes beállítani a Tor Böngészőben a [Biztonsági szint"
+"](../security-settings/)-et \"Biztonságosabb\"-ra. Ez a beállítás "
"kikapcsolja a JavaScriptet a nem HTTPS-es webstite-ok esetében. Másik jó "
"választás lehet a \"Legbiztonságosabb\", amely minden website-nál "
"kikapcsolja a JavaScriptet. Mindazonáltal a JavaScript kikapcsolásával "
@@ -3277,8 +3276,8 @@ msgstr ""
#: https//tb-manual.torproject.org/known-issues/
#: (content/known-issues/contents+en.lrtopic.body)
msgid ""
-"* BitTorrent [is not anonymous over "
-"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+"* BitTorrent [is not anonymous over Tor](https://blog.torproject.org"
+"/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
"* A BitTorrent [nem biztosít anonimítást Tor-on "
"keresztül](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
@@ -3510,13 +3509,11 @@ msgstr "#### Csatlakozás"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-connect.png\" alt=\"Connect to Tor Browser"
-" for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-connect.png\" alt=\"Csatlakozás a Tor "
-"Browser for Android-ban\"/>"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Csatlakozás a Tor Browser for Android-ban\"/>"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3546,13 +3543,11 @@ msgstr "#### Konfigurálás"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-configure.png\" alt=\"Configure Tor "
-"Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-configure.png\" alt=\"A Tor Browser for "
-"Android konfigurálása\"/>"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"A Tor Browser for Android konfigurálása\"/>"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3639,13 +3634,13 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-censored.png\" alt=\"Censored internet on "
-"Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-censored.png\" alt=\"Cenzúrázott internet "
-"a Tor Browser for Android-on\"/>"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Cenzúrázott internet a Tor Browser for "
+"Android-on\"/>"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3668,24 +3663,24 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-select-a-bridge.png\" alt=\"Select a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-select-a-bridge.png\" alt=\"Híd "
-"kiválasztása a Tor Browser for Android-ban\"/>"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Híd kiválasztása a Tor Browser for "
+"Android-ban\"/>"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-selected-a-bridge.png\" alt=\"Selected a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-selected-a-bridge.png\" alt=\"Kiválasztott"
-" híd a Tor Browser for Android-ban\"/>"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Kiválasztott híd a Tor Browser for "
+"Android-ban\"/>"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3699,24 +3694,24 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-provide-a-bridge.png\" alt=\"Provide a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-provide-a-bridge.png\" alt=\"Híd "
-"biztosítása a Tor Browser for Andoid-ban\"/>"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Híd biztosítása a Tor Browser for "
+"Andoid-ban\"/>"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-provided-a-bridge.png\" alt=\"Provide "
-"brigde addresses on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-provided-a-bridge.png\" alt=\"Híd címek "
-"megadása a Tor Browser for Android-ban\"/>"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Híd címek megadása a Tor Browser for "
+"Android-ban\"/>"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3731,13 +3726,12 @@ msgstr "#### Új identitás"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-new-identity.png\" alt=\"New Identity on "
-"Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-new-identity.png\" alt=\"Új identitás a "
-"Tor Browser for Android-ban\"/>"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"Új identitás a Tor Browser for Android-"
+"ban\"/>"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3777,13 +3771,13 @@ msgstr "### BIZTONSÁGI BEÁLLÍTÁSOK"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-security-settings.gif\" alt=\"Security "
-"settings and security slider on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-security-settings.gif\" alt=\"Biztonsági "
-"beállítások és biztonság csúszka a Tor Browser for Android-ban\"/>"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Biztonsági beállítások és biztonság "
+"csúszka a Tor Browser for Android-ban\"/>"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3858,13 +3852,13 @@ msgstr "##### Google Play"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-update-google-play.png\" alt=\"Updating "
-"Tor Browser for Android on Google Play\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-update-google-play.png\" alt=\"A Tor "
-"Browser for Android frissítése Google Play-jel\"/>"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"A Tor Browser for Android frissítése"
+" Google Play-jel\"/>"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3892,13 +3886,13 @@ msgstr "##### F-Droid"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-update-f-droid.png\" alt=\"Updating Tor "
-"Browser for Android on F-Droid\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-Droid\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-update-f-droid.png\" alt=\"A Tor Browser "
-"for Android frissítése F-Droid-dal\"/>"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"A Tor Browser for Android frissítése F"
+"-Droid-dal\"/>"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3991,13 +3985,13 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-google-play.png\" "
-"alt=\"Uninstalling Tor Browser for Android on Google Play\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-google-play.png\" alt=\"A Tor "
-"Browser for Android eltávolítása Google Play-jel\"/>"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"A Tor Browser for Android "
+"eltávolítása Google Play-jel\"/>"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -4020,13 +4014,13 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-f-droid.png\" alt=\"Uninstalling"
-" Tor Browser for Android on F-Droid\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-Droid\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-f-droid.png\" alt=\"A Tor "
-"Browser for Android eltávolítása F-Droid-dal\"/>"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"A Tor Browser for Android "
+"eltávolítása F-Droid-dal\"/>"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -4045,14 +4039,13 @@ msgstr "#### Mobil eszköz app beállítások"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-device-settings.png\" "
-"alt=\"Uninstalling Tor Browser for Android using device app settings\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-device-settings.png\" alt=\"A "
-"Tor Browser for Android eltávolítása az Android eszköz alkalmazás "
-"beállításaival\"/>"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"A Tor Browser for Android "
+"eltávolítása az Android eszköz alkalmazás beállításaival\"/>"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -4072,13 +4065,12 @@ msgstr "#### A Tor logok megtekintése"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"img-fluid\" "
-"src=\"../../static/images/android-view-logs.gif\" alt=\"View Tor logs on Tor"
-" Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"img-fluid\" src=\"../../static/images"
+"/android-view-logs.gif\" alt=\"View Tor logs on Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"img-fluid\" "
-"src=\"../../static/images/android-view-logs.gif\" alt=\"A Tor logok "
-"megtekintése Tor Browser for Android-on\"/>"
+"<img style=\"max-width:300px\" class=\"img-fluid\" src=\"../../static/images"
+"/android-view-logs.gif\" alt=\"A Tor logok megtekintése Tor Browser for "
+"Android-on\"/>"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -4313,8 +4305,8 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"Download Onion Browser from the [App "
-"Store](https://itunes.apple.com/us/app/onion-browser/id519296448)."
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
msgstr ""
"Töltse le az Onion Browser-t [az App Store-"
"ból](https://itunes.apple.com/us/app/onion-browser/id519296448)."
diff --git a/contents+tr.po b/contents+tr.po
index a48a40283a..e92251081d 100644
--- a/contents+tr.po
+++ b/contents+tr.po
@@ -348,8 +348,8 @@ msgstr ""
#: (content/about/contents+en.lrtopic.body)
msgid ""
"By default, Tor Browser does not keep any browsing history. Cookies are only"
-" valid for a single session (until Tor Browser is exited or a [New "
-"Identity](/managing-identities/#new-identity) is requested)."
+" valid for a single session (until Tor Browser is exited or a [New Identity"
+"](/managing-identities/#new-identity) is requested)."
msgstr ""
"Varsayılan olarak Tor Browser tarama geçmişini kaydetmez. Çerezler yalnız "
"tek bir oturum için geçerlidir (Tor Browser kapatılana ya da [Yeni "
@@ -663,13 +663,13 @@ msgstr ""
#: https//tb-manual.torproject.org/installation/
#: (content/installation/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:50%\" class=\"col-md-6\" "
-"src=\"../../static/images/linux-make-desktop-file-executable.png\" "
-"alt=\"Make the .desktop file executable in Linux\">"
+"<img style=\"max-width:50%\" class=\"col-md-6\" src=\"../../static/images"
+"/linux-make-desktop-file-executable.png\" alt=\"Make the .desktop file "
+"executable in Linux\">"
msgstr ""
-"<img style=\"max-width:50%\" class=\"col-md-6\" "
-"src=\"../../static/images/linux-make-desktop-file-executable.png\" "
-"alt=\"Make the .desktop file executable in Linux\">"
+"<img style=\"max-width:50%\" class=\"col-md-6\" src=\"../../static/images"
+"/linux-make-desktop-file-executable.png\" alt=\"Make the .desktop file "
+"executable in Linux\">"
#: https//tb-manual.torproject.org/installation/
#: (content/installation/contents+en.lrtopic.body)
@@ -721,13 +721,13 @@ msgstr ""
#: https//tb-manual.torproject.org/installation/
#: (content/installation/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:50%\" class=\"col-md-6\" "
-"src=\"../../static/images/linux-change-behavior-executable-files.png\" "
-"alt=\"Change behavior of executable text file to always run in Linux\">"
+"<img style=\"max-width:50%\" class=\"col-md-6\" src=\"../../static/images"
+"/linux-change-behavior-executable-files.png\" alt=\"Change behavior of "
+"executable text file to always run in Linux\">"
msgstr ""
-"<img style=\"max-width:50%\" class=\"col-md-6\" "
-"src=\"../../static/images/linux-change-behavior-executable-files.png\" "
-"alt=\"Change behavior of executable text file to always run in Linux\">"
+"<img style=\"max-width:50%\" class=\"col-md-6\" src=\"../../static/images"
+"/linux-change-behavior-executable-files.png\" alt=\"Change behavior of "
+"executable text file to always run in Linux\">"
#: https//tb-manual.torproject.org/installation/
#: (content/installation/contents+en.lrtopic.body)
@@ -1891,11 +1891,11 @@ msgstr ""
#: https//tb-manual.torproject.org/onion-services/
#: (content/onion-services/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:100%\" class=\"col-md-6\" "
-"src=\"../../static/images/onion-location.png\" alt=\"Onion-Location\">"
+"<img style=\"max-width:100%\" class=\"col-md-6\" src=\"../../static/images"
+"/onion-location.png\" alt=\"Onion-Location\">"
msgstr ""
-"<img style=\"max-width:100%\" class=\"col-md-6\" "
-"src=\"../../static/images/onion-location.png\" alt=\"Onion-Location\">"
+"<img style=\"max-width:100%\" class=\"col-md-6\" src=\"../../static/images"
+"/onion-location.png\" alt=\"Onion-Location\">"
#: https//tb-manual.torproject.org/onion-services/
#: (content/onion-services/contents+en.lrtopic.body)
@@ -2355,13 +2355,13 @@ msgstr ""
#: https//tb-manual.torproject.org/security-settings/
#: (content/security-settings/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:100%\" class=\"col-lg-6\" "
-"src=\"../../static/images/security-settings-anim.gif\" alt=\"Click on "
-"'Advanced Security Settings' under the shield menu.\">"
+"<img style=\"max-width:100%\" class=\"col-lg-6\" src=\"../../static/images"
+"/security-settings-anim.gif\" alt=\"Click on 'Advanced Security Settings' "
+"under the shield menu.\">"
msgstr ""
-"<img style=\"max-width:100%\" class=\"col-lg-6\" "
-"src=\"../../static/images/security-settings-anim.gif\" alt=\"Click on "
-"'Advanced Security Settings' under the shield menu.\">"
+"<img style=\"max-width:100%\" class=\"col-lg-6\" src=\"../../static/images"
+"/security-settings-anim.gif\" alt=\"Click on 'Advanced Security Settings' "
+"under the shield menu.\">"
#: https//tb-manual.torproject.org/security-settings/
#: (content/security-settings/contents+en.lrtopic.body)
@@ -2391,13 +2391,13 @@ msgstr ""
#: https//tb-manual.torproject.org/security-settings/
#: (content/security-settings/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:100%\" class=\"col-lg-6\" "
-"src=\"../../static/images/security-settings-safest.png\" alt=\"Security "
-"Level is currently set to Standard.\">"
+"<img style=\"max-width:100%\" class=\"col-lg-6\" src=\"../../static/images"
+"/security-settings-safest.png\" alt=\"Security Level is currently set to "
+"Standard.\">"
msgstr ""
-"<img style=\"max-width:100%\" class=\"col-lg-6\" "
-"src=\"../../static/images/security-settings-safest.png\" alt=\"Security "
-"Level is currently set to Standard.\">"
+"<img style=\"max-width:100%\" class=\"col-lg-6\" src=\"../../static/images"
+"/security-settings-safest.png\" alt=\"Security Level is currently set to "
+"Standard.\">"
#: https//tb-manual.torproject.org/security-settings/
#: (content/security-settings/contents+en.lrtopic.body)
@@ -2910,13 +2910,12 @@ msgid ""
"individual web pages, or block it entirely."
msgstr ""
"Tor Browser üzerinde NoScript adında bir eklenti bulunur. Erişmek için "
-"[hamburger menüsünden "
-"(≡)](https://support.torproject.org/tr/glossary/hamburger-menu/) "
-"\"Tercihler\" (Windows üzerinde \"Seçenekler\") bölümüne gidin, 'Özelleştir'"
-" üzerine tıklayın ve \"S\" simgesini sürükleyip pencerenin sağ üst köşesine "
-"bırakın. NoScript her bir web sayfasındaki JavaScript betiklerinin (ve diğer"
-" betiklerin) kullanımını kontrol altında tutmanızı ya da tamamen "
-"engellemenizi sağlar."
+"[hamburger menüsünden (≡)](https://support.torproject.org/tr/glossary"
+"/hamburger-menu/) \"Tercihler\" (Windows üzerinde \"Seçenekler\") bölümüne "
+"gidin, 'Özelleştir' üzerine tıklayın ve \"S\" simgesini sürükleyip "
+"pencerenin sağ üst köşesine bırakın. NoScript her bir web sayfasındaki "
+"JavaScript betiklerinin (ve diğer betiklerin) kullanımını kontrol altında "
+"tutmanızı ya da tamamen engellemenizi sağlar."
#: https//tb-manual.torproject.org/plugins/
#: (content/plugins/contents+en.lrtopic.body)
@@ -3280,11 +3279,11 @@ msgstr ""
#: https//tb-manual.torproject.org/known-issues/
#: (content/known-issues/contents+en.lrtopic.body)
msgid ""
-"* BitTorrent [is not anonymous over "
-"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+"* BitTorrent [is not anonymous over Tor](https://blog.torproject.org"
+"/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"* BitTorrent [Tor üzerinde anonim "
-"değildir](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+"* BitTorrent [Tor üzerinde anonim değildir](https://blog.torproject.org"
+"/bittorrent-over-tor-isnt-good-idea)."
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.title)
@@ -3509,13 +3508,11 @@ msgstr "#### Bağlanma"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-connect.png\" alt=\"Connect to Tor Browser"
-" for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-connect.png\" alt=\"Connect to Tor Browser"
-" for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3545,13 +3542,11 @@ msgstr "#### Yapılandırma"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-configure.png\" alt=\"Configure Tor "
-"Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-configure.png\" alt=\"Configure Tor "
-"Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3638,13 +3633,13 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-censored.png\" alt=\"Censored internet on "
-"Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-censored.png\" alt=\"Censored internet on "
-"Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3666,24 +3661,24 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-select-a-bridge.png\" alt=\"Select a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-select-a-bridge.png\" alt=\"Select a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-selected-a-bridge.png\" alt=\"Selected a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-selected-a-bridge.png\" alt=\"Selected a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3697,24 +3692,24 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-provide-a-bridge.png\" alt=\"Provide a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-provide-a-bridge.png\" alt=\"Provide a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-provided-a-bridge.png\" alt=\"Provide "
-"brigde addresses on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-provided-a-bridge.png\" alt=\"Provide "
-"brigde addresses on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3729,13 +3724,11 @@ msgstr "#### Kimliği Yenilemek"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-new-identity.png\" alt=\"New Identity on "
-"Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-new-identity.png\" alt=\"New Identity on "
-"Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3776,13 +3769,13 @@ msgstr "### GÜVENLİK AYARLARI"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-security-settings.gif\" alt=\"Security "
-"settings and security slider on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-security-settings.gif\" alt=\"Security "
-"settings and security slider on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3859,13 +3852,13 @@ msgstr "##### Google Play"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-update-google-play.png\" alt=\"Updating "
-"Tor Browser for Android on Google Play\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-update-google-play.png\" alt=\"Updating "
-"Tor Browser for Android on Google Play\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3893,13 +3886,13 @@ msgstr "##### F-Droid"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-update-f-droid.png\" alt=\"Updating Tor "
-"Browser for Android on F-Droid\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-Droid\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-update-f-droid.png\" alt=\"Updating Tor "
-"Browser for Android on F-Droid\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-Droid\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3928,8 +3921,8 @@ msgid ""
"and-installation) it as before."
msgstr ""
"[Tor Projesi web sitesine](https://www.torproject.org/download/#android) "
-"giderek son Tor Browser sürümünü indirin. Ardından önceki gibi "
-"[kurun](/mobile-tor/#downloading-and-installation)."
+"giderek son Tor Browser sürümünü indirin. Ardından önceki gibi [kurun"
+"](/mobile-tor/#downloading-and-installation)."
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3986,13 +3979,13 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-google-play.png\" "
-"alt=\"Uninstalling Tor Browser for Android on Google Play\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-google-play.png\" "
-"alt=\"Uninstalling Tor Browser for Android on Google Play\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -4015,13 +4008,13 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-f-droid.png\" alt=\"Uninstalling"
-" Tor Browser for Android on F-Droid\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-Droid\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-f-droid.png\" alt=\"Uninstalling"
-" Tor Browser for Android on F-Droid\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-Droid\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -4039,13 +4032,13 @@ msgstr "#### Mobil aygıt uygulama ayarları"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-device-settings.png\" "
-"alt=\"Uninstalling Tor Browser for Android using device app settings\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-device-settings.png\" "
-"alt=\"Uninstalling Tor Browser for Android using device app settings\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -4064,13 +4057,11 @@ msgstr "#### Tor günlüklerine bakmak"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"img-fluid\" "
-"src=\"../../static/images/android-view-logs.gif\" alt=\"View Tor logs on Tor"
-" Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"img-fluid\" src=\"../../static/images"
+"/android-view-logs.gif\" alt=\"View Tor logs on Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"img-fluid\" "
-"src=\"../../static/images/android-view-logs.gif\" alt=\"View Tor logs on Tor"
-" Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"img-fluid\" src=\"../../static/images"
+"/android-view-logs.gif\" alt=\"View Tor logs on Tor Browser for Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -4299,18 +4290,17 @@ msgid ""
"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
"onion-browser-and-more-ios-tor)."
msgstr ""
-"[Onion Browser hakkında ayrıntılı bilgi "
-"alın](https://blog.torproject.org/tor-heart-onion-browser-and-more-ios-tor)."
+"[Onion Browser hakkında ayrıntılı bilgi alın](https://blog.torproject.org"
+"/tor-heart-onion-browser-and-more-ios-tor)."
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"Download Onion Browser from the [App "
-"Store](https://itunes.apple.com/us/app/onion-browser/id519296448)."
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
msgstr ""
-"Onion Browser uygulamasını [App "
-"Store](https://itunes.apple.com/us/app/onion-browser/id519296448) üzerinden "
-"indirebilirsiniz."
+"Onion Browser uygulamasını [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448) üzerinden indirebilirsiniz."
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
1
0

[translation/tbmanual-contentspot] new translations in tbmanual-contentspot
by translation@torproject.org 07 Dec '21
by translation@torproject.org 07 Dec '21
07 Dec '21
commit 4d6d9f1ccb50540ba4ed1eba03ba102fb1f27691
Author: Translation commit bot <translation(a)torproject.org>
Date: Tue Dec 7 15:17:11 2021 +0000
new translations in tbmanual-contentspot
---
contents+en.po | 252 ++++++++++++++++++++++++++++-----------------------------
contents+hr.po | 203 ++++++++++++++++++++++------------------------
2 files changed, 220 insertions(+), 235 deletions(-)
diff --git a/contents+en.po b/contents+en.po
index d4f12c1992..46ac975cb5 100644
--- a/contents+en.po
+++ b/contents+en.po
@@ -334,12 +334,12 @@ msgstr ""
#: (content/about/contents+en.lrtopic.body)
msgid ""
"By default, Tor Browser does not keep any browsing history. Cookies are only"
-" valid for a single session (until Tor Browser is exited or a [New "
-"Identity](/managing-identities/#new-identity) is requested)."
+" valid for a single session (until Tor Browser is exited or a [New Identity"
+"](/managing-identities/#new-identity) is requested)."
msgstr ""
"By default, Tor Browser does not keep any browsing history. Cookies are only"
-" valid for a single session (until Tor Browser is exited or a [New "
-"Identity](/managing-identities/#new-identity) is requested)."
+" valid for a single session (until Tor Browser is exited or a [New Identity"
+"](/managing-identities/#new-identity) is requested)."
#: https//tb-manual.torproject.org/about/
#: (content/about/contents+en.lrtopic.body)
@@ -644,13 +644,13 @@ msgstr "Double-click the icon to start up Tor Browser for the first time."
#: https//tb-manual.torproject.org/installation/
#: (content/installation/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:50%\" class=\"col-md-6\" "
-"src=\"../../static/images/linux-make-desktop-file-executable.png\" "
-"alt=\"Make the .desktop file executable in Linux\">"
+"<img style=\"max-width:50%\" class=\"col-md-6\" src=\"../../static/images"
+"/linux-make-desktop-file-executable.png\" alt=\"Make the .desktop file "
+"executable in Linux\">"
msgstr ""
-"<img style=\"max-width:50%\" class=\"col-md-6\" "
-"src=\"../../static/images/linux-make-desktop-file-executable.png\" "
-"alt=\"Make the .desktop file executable in Linux\">"
+"<img style=\"max-width:50%\" class=\"col-md-6\" src=\"../../static/images"
+"/linux-make-desktop-file-executable.png\" alt=\"Make the .desktop file "
+"executable in Linux\">"
#: https//tb-manual.torproject.org/installation/
#: (content/installation/contents+en.lrtopic.body)
@@ -698,13 +698,13 @@ msgstr ""
#: https//tb-manual.torproject.org/installation/
#: (content/installation/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:50%\" class=\"col-md-6\" "
-"src=\"../../static/images/linux-change-behavior-executable-files.png\" "
-"alt=\"Change behavior of executable text file to always run in Linux\">"
+"<img style=\"max-width:50%\" class=\"col-md-6\" src=\"../../static/images"
+"/linux-change-behavior-executable-files.png\" alt=\"Change behavior of "
+"executable text file to always run in Linux\">"
msgstr ""
-"<img style=\"max-width:50%\" class=\"col-md-6\" "
-"src=\"../../static/images/linux-change-behavior-executable-files.png\" "
-"alt=\"Change behavior of executable text file to always run in Linux\">"
+"<img style=\"max-width:50%\" class=\"col-md-6\" src=\"../../static/images"
+"/linux-change-behavior-executable-files.png\" alt=\"Change behavior of "
+"executable text file to always run in Linux\">"
#: https//tb-manual.torproject.org/installation/
#: (content/installation/contents+en.lrtopic.body)
@@ -1851,11 +1851,11 @@ msgstr ""
#: https//tb-manual.torproject.org/onion-services/
#: (content/onion-services/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:100%\" class=\"col-md-6\" "
-"src=\"../../static/images/onion-location.png\" alt=\"Onion-Location\">"
+"<img style=\"max-width:100%\" class=\"col-md-6\" src=\"../../static/images"
+"/onion-location.png\" alt=\"Onion-Location\">"
msgstr ""
-"<img style=\"max-width:100%\" class=\"col-md-6\" "
-"src=\"../../static/images/onion-location.png\" alt=\"Onion-Location\">"
+"<img style=\"max-width:100%\" class=\"col-md-6\" src=\"../../static/images"
+"/onion-location.png\" alt=\"Onion-Location\">"
#: https//tb-manual.torproject.org/onion-services/
#: (content/onion-services/contents+en.lrtopic.body)
@@ -2306,13 +2306,13 @@ msgstr ""
#: https//tb-manual.torproject.org/security-settings/
#: (content/security-settings/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:100%\" class=\"col-lg-6\" "
-"src=\"../../static/images/security-settings-anim.gif\" alt=\"Click on "
-"'Advanced Security Settings' under the shield menu.\">"
+"<img style=\"max-width:100%\" class=\"col-lg-6\" src=\"../../static/images"
+"/security-settings-anim.gif\" alt=\"Click on 'Advanced Security Settings' "
+"under the shield menu.\">"
msgstr ""
-"<img style=\"max-width:100%\" class=\"col-lg-6\" "
-"src=\"../../static/images/security-settings-anim.gif\" alt=\"Click on "
-"'Advanced Security Settings' under the shield menu.\">"
+"<img style=\"max-width:100%\" class=\"col-lg-6\" src=\"../../static/images"
+"/security-settings-anim.gif\" alt=\"Click on 'Advanced Security Settings' "
+"under the shield menu.\">"
#: https//tb-manual.torproject.org/security-settings/
#: (content/security-settings/contents+en.lrtopic.body)
@@ -2342,13 +2342,13 @@ msgstr ""
#: https//tb-manual.torproject.org/security-settings/
#: (content/security-settings/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:100%\" class=\"col-lg-6\" "
-"src=\"../../static/images/security-settings-safest.png\" alt=\"Security "
-"Level is currently set to Standard.\">"
+"<img style=\"max-width:100%\" class=\"col-lg-6\" src=\"../../static/images"
+"/security-settings-safest.png\" alt=\"Security Level is currently set to "
+"Standard.\">"
msgstr ""
-"<img style=\"max-width:100%\" class=\"col-lg-6\" "
-"src=\"../../static/images/security-settings-safest.png\" alt=\"Security "
-"Level is currently set to Standard.\">"
+"<img style=\"max-width:100%\" class=\"col-lg-6\" src=\"../../static/images"
+"/security-settings-safest.png\" alt=\"Security Level is currently set to "
+"Standard.\">"
#: https//tb-manual.torproject.org/security-settings/
#: (content/security-settings/contents+en.lrtopic.body)
@@ -3201,11 +3201,11 @@ msgstr ""
#: https//tb-manual.torproject.org/known-issues/
#: (content/known-issues/contents+en.lrtopic.body)
msgid ""
-"* BitTorrent [is not anonymous over "
-"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+"* BitTorrent [is not anonymous over Tor](https://blog.torproject.org"
+"/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"* BitTorrent [is not anonymous over "
-"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+"* BitTorrent [is not anonymous over Tor](https://blog.torproject.org"
+"/bittorrent-over-tor-isnt-good-idea)."
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.title)
@@ -3430,13 +3430,11 @@ msgstr "#### Connect"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-connect.png\" alt=\"Connect to Tor Browser"
-" for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-connect.png\" alt=\"Connect to Tor Browser"
-" for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3466,13 +3464,11 @@ msgstr "#### Configure"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-configure.png\" alt=\"Configure Tor "
-"Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-configure.png\" alt=\"Configure Tor "
-"Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3558,13 +3554,13 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-censored.png\" alt=\"Censored internet on "
-"Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-censored.png\" alt=\"Censored internet on "
-"Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3587,24 +3583,24 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-select-a-bridge.png\" alt=\"Select a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-select-a-bridge.png\" alt=\"Select a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-selected-a-bridge.png\" alt=\"Selected a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-selected-a-bridge.png\" alt=\"Selected a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3618,24 +3614,24 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-provide-a-bridge.png\" alt=\"Provide a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-provide-a-bridge.png\" alt=\"Provide a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-provided-a-bridge.png\" alt=\"Provide "
-"brigde addresses on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-provided-a-bridge.png\" alt=\"Provide "
-"brigde addresses on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3650,13 +3646,11 @@ msgstr "#### New Identity"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-new-identity.png\" alt=\"New Identity on "
-"Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-new-identity.png\" alt=\"New Identity on "
-"Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3696,13 +3690,13 @@ msgstr "### SECURITY SETTINGS"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-security-settings.gif\" alt=\"Security "
-"settings and security slider on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-security-settings.gif\" alt=\"Security "
-"settings and security slider on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3774,13 +3768,13 @@ msgstr "##### Google Play"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-update-google-play.png\" alt=\"Updating "
-"Tor Browser for Android on Google Play\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-update-google-play.png\" alt=\"Updating "
-"Tor Browser for Android on Google Play\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3808,13 +3802,13 @@ msgstr "##### F-Droid"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-update-f-droid.png\" alt=\"Updating Tor "
-"Browser for Android on F-Droid\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-Droid\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-update-f-droid.png\" alt=\"Updating Tor "
-"Browser for Android on F-Droid\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-Droid\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3903,13 +3897,13 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-google-play.png\" "
-"alt=\"Uninstalling Tor Browser for Android on Google Play\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-google-play.png\" "
-"alt=\"Uninstalling Tor Browser for Android on Google Play\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3932,13 +3926,13 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-f-droid.png\" alt=\"Uninstalling"
-" Tor Browser for Android on F-Droid\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-Droid\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-f-droid.png\" alt=\"Uninstalling"
-" Tor Browser for Android on F-Droid\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-Droid\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3957,13 +3951,13 @@ msgstr "#### Mobile device app settings"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-device-settings.png\" "
-"alt=\"Uninstalling Tor Browser for Android using device app settings\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-device-settings.png\" "
-"alt=\"Uninstalling Tor Browser for Android using device app settings\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3982,13 +3976,11 @@ msgstr "#### View Tor Logs"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"img-fluid\" "
-"src=\"../../static/images/android-view-logs.gif\" alt=\"View Tor logs on Tor"
-" Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"img-fluid\" src=\"../../static/images"
+"/android-view-logs.gif\" alt=\"View Tor logs on Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"img-fluid\" "
-"src=\"../../static/images/android-view-logs.gif\" alt=\"View Tor logs on Tor"
-" Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"img-fluid\" src=\"../../static/images"
+"/android-view-logs.gif\" alt=\"View Tor logs on Tor Browser for Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -4217,11 +4209,11 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"Download Onion Browser from the [App "
-"Store](https://itunes.apple.com/us/app/onion-browser/id519296448)."
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
msgstr ""
-"Download Onion Browser from the [App "
-"Store](https://itunes.apple.com/us/app/onion-browser/id519296448)."
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
diff --git a/contents+hr.po b/contents+hr.po
index 9a83057ab5..257c8a2b9d 100644
--- a/contents+hr.po
+++ b/contents+hr.po
@@ -342,8 +342,8 @@ msgstr ""
#: (content/about/contents+en.lrtopic.body)
msgid ""
"By default, Tor Browser does not keep any browsing history. Cookies are only"
-" valid for a single session (until Tor Browser is exited or a [New "
-"Identity](/managing-identities/#new-identity) is requested)."
+" valid for a single session (until Tor Browser is exited or a [New Identity"
+"](/managing-identities/#new-identity) is requested)."
msgstr ""
"Tor preglednik standardno ne čuva povijest pregledavanja. Kolačići vrijede "
"samo za jednu sesiju (sve dok ne zatvoriš Tor preglednik ili zatražiš [novi "
@@ -639,9 +639,9 @@ msgstr "Za prvo pokretanje Tor preglednika, dvaput pritisni njegovu ikonu."
#: https//tb-manual.torproject.org/installation/
#: (content/installation/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:50%\" class=\"col-md-6\" "
-"src=\"../../static/images/linux-make-desktop-file-executable.png\" "
-"alt=\"Make the .desktop file executable in Linux\">"
+"<img style=\"max-width:50%\" class=\"col-md-6\" src=\"../../static/images"
+"/linux-make-desktop-file-executable.png\" alt=\"Make the .desktop file "
+"executable in Linux\">"
msgstr ""
#: https//tb-manual.torproject.org/installation/
@@ -686,9 +686,9 @@ msgstr ""
#: https//tb-manual.torproject.org/installation/
#: (content/installation/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:50%\" class=\"col-md-6\" "
-"src=\"../../static/images/linux-change-behavior-executable-files.png\" "
-"alt=\"Change behavior of executable text file to always run in Linux\">"
+"<img style=\"max-width:50%\" class=\"col-md-6\" src=\"../../static/images"
+"/linux-change-behavior-executable-files.png\" alt=\"Change behavior of "
+"executable text file to always run in Linux\">"
msgstr ""
#: https//tb-manual.torproject.org/installation/
@@ -1735,8 +1735,8 @@ msgstr ""
#: https//tb-manual.torproject.org/onion-services/
#: (content/onion-services/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:100%\" class=\"col-md-6\" "
-"src=\"../../static/images/onion-location.png\" alt=\"Onion-Location\">"
+"<img style=\"max-width:100%\" class=\"col-md-6\" src=\"../../static/images"
+"/onion-location.png\" alt=\"Onion-Location\">"
msgstr ""
#: https//tb-manual.torproject.org/onion-services/
@@ -2132,9 +2132,9 @@ msgstr ""
#: https//tb-manual.torproject.org/security-settings/
#: (content/security-settings/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:100%\" class=\"col-lg-6\" "
-"src=\"../../static/images/security-settings-anim.gif\" alt=\"Click on "
-"'Advanced Security Settings' under the shield menu.\">"
+"<img style=\"max-width:100%\" class=\"col-lg-6\" src=\"../../static/images"
+"/security-settings-anim.gif\" alt=\"Click on 'Advanced Security Settings' "
+"under the shield menu.\">"
msgstr ""
#: https//tb-manual.torproject.org/security-settings/
@@ -2165,9 +2165,9 @@ msgstr ""
#: https//tb-manual.torproject.org/security-settings/
#: (content/security-settings/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:100%\" class=\"col-lg-6\" "
-"src=\"../../static/images/security-settings-safest.png\" alt=\"Security "
-"Level is currently set to Standard.\">"
+"<img style=\"max-width:100%\" class=\"col-lg-6\" src=\"../../static/images"
+"/security-settings-safest.png\" alt=\"Security Level is currently set to "
+"Standard.\">"
msgstr ""
#: https//tb-manual.torproject.org/security-settings/
@@ -2958,8 +2958,8 @@ msgstr ""
#: https//tb-manual.torproject.org/known-issues/
#: (content/known-issues/contents+en.lrtopic.body)
msgid ""
-"* BitTorrent [is not anonymous over "
-"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+"* BitTorrent [is not anonymous over Tor](https://blog.torproject.org"
+"/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
@@ -3172,13 +3172,11 @@ msgstr "#### Poveži se"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-connect.png\" alt=\"Connect to Tor Browser"
-" for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-connect.png\" alt=\"Connect to Tor Browser"
-" for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3203,13 +3201,11 @@ msgstr "#### Konfiguriraj"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-configure.png\" alt=\"Configure Tor "
-"Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-configure.png\" alt=\"Configure Tor "
-"Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3280,13 +3276,13 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-censored.png\" alt=\"Censored internet on "
-"Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-censored.png\" alt=\"Censored internet on "
-"Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3306,24 +3302,24 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-select-a-bridge.png\" alt=\"Select a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-select-a-bridge.png\" alt=\"Select a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-selected-a-bridge.png\" alt=\"Selected a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-selected-a-bridge.png\" alt=\"Selected a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3335,24 +3331,24 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-provide-a-bridge.png\" alt=\"Provide a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-provide-a-bridge.png\" alt=\"Provide a "
-"bridge on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-provided-a-bridge.png\" alt=\"Provide "
-"brigde addresses on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-provided-a-bridge.png\" alt=\"Provide "
-"brigde addresses on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3367,13 +3363,11 @@ msgstr "#### Novi identitet"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-new-identity.png\" alt=\"New Identity on "
-"Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-new-identity.png\" alt=\"New Identity on "
-"Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3411,13 +3405,13 @@ msgstr "### SIGURNOSNE POSTAVKE"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-security-settings.gif\" alt=\"Security "
-"settings and security slider on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-security-settings.gif\" alt=\"Security "
-"settings and security slider on Tor Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3485,13 +3479,13 @@ msgstr "##### Google Play"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-update-google-play.png\" alt=\"Updating "
-"Tor Browser for Android on Google Play\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-update-google-play.png\" alt=\"Updating "
-"Tor Browser for Android on Google Play\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3515,9 +3509,9 @@ msgstr "##### F-Droid"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-update-f-droid.png\" alt=\"Updating Tor "
-"Browser for Android on F-Droid\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-Droid\">"
msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
@@ -3547,8 +3541,8 @@ msgid ""
msgstr ""
"Posjeti [Tor Project web-"
"stranicu](https://www.torproject.org/download/#android) i preuzmi kopiju "
-"najnovijeg izdanja Tor preglednika, te ga [instaliraj](/mobile-"
-"tor/#downloading-and-installation) kao i prije."
+"najnovijeg izdanja Tor preglednika, te ga [instaliraj](/mobile-tor"
+"/#downloading-and-installation) kao i prije."
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3600,13 +3594,13 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-google-play.png\" "
-"alt=\"Uninstalling Tor Browser for Android on Google Play\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-google-play.png\" "
-"alt=\"Uninstalling Tor Browser for Android on Google Play\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3627,9 +3621,9 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-f-droid.png\" alt=\"Uninstalling"
-" Tor Browser for Android on F-Droid\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-Droid\">"
msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
@@ -3647,13 +3641,13 @@ msgstr "#### Postavke programa mobilnog uređaja"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-device-settings.png\" "
-"alt=\"Uninstalling Tor Browser for Android using device app settings\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
msgstr ""
-"<img style=\"max-width:300px\" class=\"col-md-6\" "
-"src=\"../../static/images/android-uninstall-device-settings.png\" "
-"alt=\"Uninstalling Tor Browser for Android using device app settings\">"
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3670,9 +3664,8 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"<img style=\"max-width:300px\" class=\"img-fluid\" "
-"src=\"../../static/images/android-view-logs.gif\" alt=\"View Tor logs on Tor"
-" Browser for Android\">"
+"<img style=\"max-width:300px\" class=\"img-fluid\" src=\"../../static/images"
+"/android-view-logs.gif\" alt=\"View Tor logs on Tor Browser for Android\">"
msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
@@ -3874,11 +3867,11 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
-"Download Onion Browser from the [App "
-"Store](https://itunes.apple.com/us/app/onion-browser/id519296448)."
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
msgstr ""
-"Preuzmi Onion preglednik s [App "
-"Storea](https://itunes.apple.com/us/app/onion-browser/id519296448)."
+"Preuzmi Onion preglednik s [App Storea](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
1
0