[tor-commits] [tor-browser/tor-browser-83.0b1-10.0-1] Revert "Bug 40171: Make WebRequest and GeckoWebExecutor First-Party aware"

2020-11-04 Thread sysrqb
commit d5a27eba08000d62b712149ed5809f91f1eb8ab6
Author: Matthew Finkel 
Date:   Thu Nov 5 01:52:53 2020 +

Revert "Bug 40171: Make WebRequest and GeckoWebExecutor First-Party aware"

This reverts commit 49685688c006f3050f64c091563eded4466ef9ad.
---
 .../main/java/org/mozilla/geckoview/WebRequest.java| 18 --
 widget/android/WebExecutorSupport.cpp  | 10 --
 2 files changed, 28 deletions(-)

diff --git 
a/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/WebRequest.java 
b/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/WebRequest.java
index 18f56abeec43..7e3aa285c5be 100644
--- 
a/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/WebRequest.java
+++ 
b/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/WebRequest.java
@@ -49,11 +49,6 @@ public class WebRequest extends WebMessage {
  */
 public final @Nullable String referrer;
 
-/**
- * The value of the origin of this request.
- */
-public final @Nullable String origin;
-
 @Retention(RetentionPolicy.SOURCE)
 @IntDef({CACHE_MODE_DEFAULT, CACHE_MODE_NO_STORE,
 CACHE_MODE_RELOAD, CACHE_MODE_NO_CACHE,
@@ -115,7 +110,6 @@ public class WebRequest extends WebMessage {
 method = builder.mMethod;
 cacheMode = builder.mCacheMode;
 referrer = builder.mReferrer;
-origin = builder.mOrigin;
 
 if (builder.mBody != null) {
 body = builder.mBody.asReadOnlyBuffer();
@@ -132,7 +126,6 @@ public class WebRequest extends WebMessage {
 /* package */ String mMethod = "GET";
 /* package */ int mCacheMode = CACHE_MODE_DEFAULT;
 /* package */ String mReferrer;
-/* package */ String mOrigin;
 
 /**
  * Construct a Builder instance with the specified URI.
@@ -212,17 +205,6 @@ public class WebRequest extends WebMessage {
 return this;
 }
 
-/**
- * Set the origin URI.
- *
- * @param origin A URI String
- * @return This Builder instance.
- */
-public @NonNull Builder origin(final @Nullable String origin) {
-mOrigin = origin;
-return this;
-}
-
 /**
  * @return A {@link WebRequest} constructed with the values from this 
Builder instance.
  */
diff --git a/widget/android/WebExecutorSupport.cpp 
b/widget/android/WebExecutorSupport.cpp
index bb639740f013..f9f4262fb50c 100644
--- a/widget/android/WebExecutorSupport.cpp
+++ b/widget/android/WebExecutorSupport.cpp
@@ -390,16 +390,6 @@ nsresult WebExecutorSupport::CreateStreamLoader(
   MOZ_ASSERT(cookieJarSettings);
 
   nsCOMPtr loadInfo = channel->LoadInfo();
-
-  RefPtr originUri;
-  const auto origin = req->Origin();
-  if (origin) {
-rv = NS_NewURI(getter_AddRefs(originUri), origin->ToString());
-NS_ENSURE_SUCCESS(rv, NS_ERROR_MALFORMED_URI);
-OriginAttributes attrs = loadInfo->GetOriginAttributes();
-attrs.SetFirstPartyDomain(true, originUri);
-loadInfo->SetOriginAttributes(attrs);
-  }
   loadInfo->SetCookieJarSettings(cookieJarSettings);
 
   // setup http/https specific things

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/android-components][android-components-60.0.5-10.0-1] Revert "Merge remote-tracking branch 'acatgl/34439' into android-components-60.0.5-10.0-1"

2020-11-04 Thread Matthew Finkel


Matthew Finkel pushed to branch android-components-60.0.5-10.0-1 at The Tor 
Project / Applications / android-components


Commits:
f66e0b39 by Matthew Finkel at 2020-11-05T01:39:20+00:00
Revert Merge remote-tracking branch acatgl/34439 into 
android-components-60.0.5-10.0-1

This reverts commit 8dff84319a18189e6b4bcca5ce78beed9aba984b, reversing
changes made to c2d4d9840a0f8e789e091bc693d01f2995fb5fc5.

- - - - -


3 changed files:

- 
components/browser/engine-gecko-beta/src/main/java/mozilla/components/browser/engine/gecko/fetch/GeckoViewFetchClient.kt
- 
components/browser/icons/src/main/java/mozilla/components/browser/icons/loader/HttpIconLoader.kt
- 
components/concept/fetch/src/main/java/mozilla/components/concept/fetch/Request.kt


Changes:

=
components/browser/engine-gecko-beta/src/main/java/mozilla/components/browser/engine/gecko/fetch/GeckoViewFetchClient.kt
=
@@ -80,7 +80,6 @@ private fun Request.toWebRequest(): WebRequest = 
WebRequest.Builder(url)
 .addHeadersFrom(this)
 .addBodyFrom(this)
 .cacheMode(if (useCaches) CACHE_MODE_DEFAULT else CACHE_MODE_RELOAD)
-.origin(origin)
 .build()
 
 private fun WebRequest.Builder.addHeadersFrom(request: Request): 
WebRequest.Builder {


=
components/browser/icons/src/main/java/mozilla/components/browser/icons/loader/HttpIconLoader.kt
=
@@ -51,8 +51,7 @@ class HttpIconLoader(
 connectTimeout = Pair(CONNECT_TIMEOUT, TimeUnit.SECONDS),
 readTimeout = Pair(READ_TIMEOUT, TimeUnit.SECONDS),
 redirect = Request.Redirect.FOLLOW,
-useCaches = true,
-origin = request.url)
+useCaches = true)
 
 return try {
 val response = httpClient.fetch(downloadRequest)


=
components/concept/fetch/src/main/java/mozilla/components/concept/fetch/Request.kt
=
@@ -46,8 +46,7 @@ data class Request(
 val body: Body? = null,
 val redirect: Redirect = Redirect.FOLLOW,
 val cookiePolicy: CookiePolicy = CookiePolicy.INCLUDE,
-val useCaches: Boolean = true,
-val origin: String? = null
+val useCaches: Boolean = true
 ) {
 /**
  * A [Body] to be send with the [Request].



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/android-components/-/commit/f66e0b39c817da2ee18a7f74b77f317f01d9

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/android-components/-/commit/f66e0b39c817da2ee18a7f74b77f317f01d9
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/android-components] Pushed new branch android-components-60.0.5-10.5-1

2020-11-04 Thread Matthew Finkel


Matthew Finkel pushed new branch android-components-60.0.5-10.5-1 at The Tor 
Project / Applications / android-components

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/android-components/-/tree/android-components-60.0.5-10.5-1
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/android-components] Pushed new branch android-components-63.0.1-10.5-1

2020-11-04 Thread Matthew Finkel


Matthew Finkel pushed new branch android-components-63.0.1-10.5-1 at The Tor 
Project / Applications / android-components

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/android-components/-/tree/android-components-63.0.1-10.5-1
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/android-components] Pushed new branch android-components-63.0.1-10.0-1

2020-11-04 Thread Matthew Finkel


Matthew Finkel pushed new branch android-components-63.0.1-10.0-1 at The Tor 
Project / Applications / android-components

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/android-components/-/tree/android-components-63.0.1-10.0-1
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/torbutton-torbuttonproperties] https://gitweb.torproject.org/translation.git/commit/?h=torbutton-torbuttonproperties

2020-11-04 Thread translation
commit f1e317ed4034c916a6a6690e5aaa2773bc53f5b2
Author: Translation commit bot 
Date:   Thu Nov 5 00:47:15 2020 +


https://gitweb.torproject.org/translation.git/commit/?h=torbutton-torbuttonproperties
---
 nb-NO/torbutton.properties | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/nb-NO/torbutton.properties b/nb-NO/torbutton.properties
index 529f3ee3c1..990db74261 100644
--- a/nb-NO/torbutton.properties
+++ b/nb-NO/torbutton.properties
@@ -90,7 +90,7 @@ onionServices.rendezvousFailed.header=Unable to Connect to 
Onionsite
 onionServices.rendezvousFailed=The onionsite is busy or the Tor network is 
overloaded. Try again later.
 onionServices.rendezvousFailed.longDescription=Details: %S — The client 
failed to rendezvous with the service, which means that the client was unable 
to finalize the connection.
 # Tor SOCKS error 0xF4:
-onionServices.clientAuthMissing.pageTitle=Authorization Required
+onionServices.clientAuthMissing.pageTitle=Autorisasjon kreves
 onionServices.clientAuthMissing.header=Onionsite Requires Authentication
 onionServices.clientAuthMissing=Access to the onionsite requires a key but 
none was provided.
 onionServices.clientAuthMissing.longDescription=Details: %S — The client 
downloaded the requested onion service descriptor but was unable to decrypt its 
content because client authorization information is missing.
@@ -126,7 +126,7 @@ onionServices.authPreferences.onionSite=Løk-side
 onionServices.authPreferences.onionKey=Nøkkel
 onionServices.authPreferences.remove=Fjern
 onionServices.authPreferences.removeAll=Fjern Alle
-onionServices.authPreferences.failedToGetKeys=Unable to retrieve keys from tor
+onionServices.authPreferences.failedToGetKeys=Kan ikke hente nøklene fra tor
 onionServices.authPreferences.failedToRemoveKey=75%match\nKunne ikke fjerne 
nøkkel
 
 # Onion-Location strings.
@@ -138,7 +138,7 @@ onionLocation.description=There's a more private and secure 
version of this site
 onionLocation.tryThis=Try Onion Services
 onionLocation.onionAvailable=.onion available
 onionLocation.learnMore=Lær mer...
-onionLocation.always=Always
-onionLocation.askEverytime=Ask every time
-onionLocation.prioritizeOnionsDescription=Prioritize .onion sites when known.
+onionLocation.always=Altid
+onionLocation.askEverytime=Spør hver gang
+onionLocation.prioritizeOnionsDescription=Prioriter. .onion sider når kjent
 onionLocation.onionServicesTitle=Løk-tjenester

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [tor-browser/tor-browser-83.0b1-10.0-1] fixup! Bug 10760: Integrate TorButton to TorBrowser core

2020-11-04 Thread sysrqb
commit 3e7aa3bb2ceac256a2ad55938dc5b2dad028dbc2
Author: Matthew Finkel 
Date:   Thu Nov 5 00:42:48 2020 +

fixup! Bug 10760: Integrate TorButton to TorBrowser core
---
 toolkit/torproject/torbutton | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/toolkit/torproject/torbutton b/toolkit/torproject/torbutton
index 65b6f322d5cf..b0739b02caac 16
--- a/toolkit/torproject/torbutton
+++ b/toolkit/torproject/torbutton
@@ -1 +1 @@
-Subproject commit 65b6f322d5cf0b0bce51228ee0af8ee48384d5cc
+Subproject commit b0739b02caacea311d54192d22005aaa88505b11

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/torbutton-torbuttonproperties] https://gitweb.torproject.org/translation.git/commit/?h=torbutton-torbuttonproperties

2020-11-04 Thread translation
commit 874605ea3abde08cfe75abdcf215f8d675a08ad4
Author: Translation commit bot 
Date:   Thu Nov 5 00:17:21 2020 +


https://gitweb.torproject.org/translation.git/commit/?h=torbutton-torbuttonproperties
---
 nb-NO/torbutton.properties | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/nb-NO/torbutton.properties b/nb-NO/torbutton.properties
index 1a1cf7ebb0..529f3ee3c1 100644
--- a/nb-NO/torbutton.properties
+++ b/nb-NO/torbutton.properties
@@ -119,15 +119,15 @@ onionServices.authPrompt.invalidKey=Please enter a valid 
key (52 base32 characte
 onionServices.authPrompt.failedToSetKey=Kan ikke konfigurere Tor med nøkkelen 
din
 onionServices.authPreferences.header=Onion Services Authentication
 onionServices.authPreferences.overview=Some onion services require that you 
identify yourself with a key (a kind of password) before you can access them.
-onionServices.authPreferences.savedKeys=Saved Keys…
+onionServices.authPreferences.savedKeys=Lagrede Nøkler...
 onionServices.authPreferences.dialogTitle=Onion Service Keys
 onionServices.authPreferences.dialogIntro=Keys for the following onionsites 
are stored on your computer
 onionServices.authPreferences.onionSite=Løk-side
 onionServices.authPreferences.onionKey=Nøkkel
 onionServices.authPreferences.remove=Fjern
-onionServices.authPreferences.removeAll=Remove All
+onionServices.authPreferences.removeAll=Fjern Alle
 onionServices.authPreferences.failedToGetKeys=Unable to retrieve keys from tor
-onionServices.authPreferences.failedToRemoveKey=Unable to remove key
+onionServices.authPreferences.failedToRemoveKey=75%match\nKunne ikke fjerne 
nøkkel
 
 # Onion-Location strings.
 onionLocation.alwaysPrioritize=Always Prioritize Onions
@@ -137,7 +137,7 @@ onionLocation.notNowAccessKey=n
 onionLocation.description=There's a more private and secure version of this 
site available over the Tor network via onion services. Onion services help 
website publishers and their visitors defeat surveillance and censorship.
 onionLocation.tryThis=Try Onion Services
 onionLocation.onionAvailable=.onion available
-onionLocation.learnMore=Learn more…
+onionLocation.learnMore=Lær mer...
 onionLocation.always=Always
 onionLocation.askEverytime=Ask every time
 onionLocation.prioritizeOnionsDescription=Prioritize .onion sites when known.

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/donatepages-messagespot] https://gitweb.torproject.org/translation.git/commit/?h=donatepages-messagespot

2020-11-04 Thread translation
commit 7758b48bc266155723c40ea125b92c80a3824548
Author: Translation commit bot 
Date:   Thu Nov 5 00:15:14 2020 +


https://gitweb.torproject.org/translation.git/commit/?h=donatepages-messagespot
---
 locale/nb/LC_MESSAGES/messages.po | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/locale/nb/LC_MESSAGES/messages.po 
b/locale/nb/LC_MESSAGES/messages.po
index d16272c327..0f80889d42 100644
--- a/locale/nb/LC_MESSAGES/messages.po
+++ b/locale/nb/LC_MESSAGES/messages.po
@@ -3,14 +3,14 @@
 # Allan Nordhøy , 2018
 # 4ea9f8151a43bd83aa50e2a598f30349, 2019
 # a356f726dcd9c475642ac26af10009cc, 2019
-# Jørgen Moen Isaksen , 2019
 # erinm, 2019
 # eab1793e5400043c122a2435c33fe68d, 2019
 # LarsMagnusHerland , 2020
+# Jørgen Moen Isaksen , 2020
 # 
 msgid ""
 msgstr ""
-"Last-Translator: LarsMagnusHerland , 2020\n"
+"Last-Translator: Jørgen Moen Isaksen , 2020\n"
 "Language-Team: Norwegian Bokmål 
(https://www.transifex.com/otf/teams/1519/nb/)\n"
 "Language: nb\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -47,7 +47,7 @@ msgstr ""
 #: 
tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:62
 #: 
tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:500
 msgid "Slim"
-msgstr ""
+msgstr "Liten"
 
 #: 
tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:66
 #: 
tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:496
@@ -96,7 +96,7 @@ msgstr ""
 #: 
tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:49
 #: 
tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:72
 msgid "Donate to the Tor Project."
-msgstr ""
+msgstr "Doner til Tor Project"
 
 #: 
tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:58
 msgid "summary_large_image"

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [tor-browser/tor-browser-83.0b1-10.0-1] Merge remote-tracking branch 'acatgl/40206' into tor-browser-83.0b1-10.0-1

2020-11-04 Thread sysrqb
commit 1092ec6dd4abc593a7ab2d1d71e5ab8f639a8654
Merge: 49685688c006 6e9dc7442f46
Author: Matthew Finkel 
Date:   Wed Nov 4 21:57:02 2020 +

Merge remote-tracking branch 'acatgl/40206' into tor-browser-83.0b1-10.0-1

 browser/app/profile/000-tor-browser.js | 3 +++
 1 file changed, 3 insertions(+)

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [tor-browser/tor-browser-83.0b1-10.0-1] fixup! TB4: Tor Browser's Firefox preference overrides.

2020-11-04 Thread sysrqb
commit 6e9dc7442f467104029d2f72d8fa8910a4b22561
Author: Alex Catarineu 
Date:   Thu Oct 29 23:03:57 2020 +0100

fixup! TB4: Tor Browser's Firefox preference overrides.

Fixes #40206: Disable the /etc/hosts parser
---
 browser/app/profile/000-tor-browser.js | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/browser/app/profile/000-tor-browser.js 
b/browser/app/profile/000-tor-browser.js
index 8bd05987c681..19991a801fcd 100644
--- a/browser/app/profile/000-tor-browser.js
+++ b/browser/app/profile/000-tor-browser.js
@@ -135,6 +135,9 @@ pref("trailhead.firstrun.branches", "");
 // Clear the list of trusted recursive resolver services
 pref("network.trr.resolvers", "");
 
+// Disable the /etc/hosts parser
+pref("network.trr.exclude-etc-hosts", false);
+
 // Disable crlite
 pref("security.pki.crlite_mode", 0);
 



___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/android-components][android-components-60.0.5-10.0-1] 2 commits: Bug 34439: Isolate Icon loader on Android

2020-11-04 Thread Matthew Finkel


Matthew Finkel pushed to branch android-components-60.0.5-10.0-1 at The Tor 
Project / Applications / android-components


Commits:
698c81b9 by Alex Catarineu at 2020-11-04T15:51:00+01:00
Bug 34439: Isolate Icon loader on Android

- - - - -
8dff8431 by Matthew Finkel at 2020-11-04T21:55:08+00:00
Merge remote-tracking branch acatgl/34439 into 
android-components-60.0.5-10.0-1

- - - - -


3 changed files:

- 
components/browser/engine-gecko-beta/src/main/java/mozilla/components/browser/engine/gecko/fetch/GeckoViewFetchClient.kt
- 
components/browser/icons/src/main/java/mozilla/components/browser/icons/loader/HttpIconLoader.kt
- 
components/concept/fetch/src/main/java/mozilla/components/concept/fetch/Request.kt


Changes:

=
components/browser/engine-gecko-beta/src/main/java/mozilla/components/browser/engine/gecko/fetch/GeckoViewFetchClient.kt
=
@@ -80,6 +80,7 @@ private fun Request.toWebRequest(): WebRequest = 
WebRequest.Builder(url)
 .addHeadersFrom(this)
 .addBodyFrom(this)
 .cacheMode(if (useCaches) CACHE_MODE_DEFAULT else CACHE_MODE_RELOAD)
+.origin(origin)
 .build()
 
 private fun WebRequest.Builder.addHeadersFrom(request: Request): 
WebRequest.Builder {


=
components/browser/icons/src/main/java/mozilla/components/browser/icons/loader/HttpIconLoader.kt
=
@@ -51,7 +51,8 @@ class HttpIconLoader(
 connectTimeout = Pair(CONNECT_TIMEOUT, TimeUnit.SECONDS),
 readTimeout = Pair(READ_TIMEOUT, TimeUnit.SECONDS),
 redirect = Request.Redirect.FOLLOW,
-useCaches = true)
+useCaches = true,
+origin = request.url)
 
 return try {
 val response = httpClient.fetch(downloadRequest)


=
components/concept/fetch/src/main/java/mozilla/components/concept/fetch/Request.kt
=
@@ -46,7 +46,8 @@ data class Request(
 val body: Body? = null,
 val redirect: Redirect = Redirect.FOLLOW,
 val cookiePolicy: CookiePolicy = CookiePolicy.INCLUDE,
-val useCaches: Boolean = true
+val useCaches: Boolean = true,
+val origin: String? = null
 ) {
 /**
  * A [Body] to be send with the [Request].



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/android-components/-/compare/c2d4d9840a0f8e789e091bc693d01f2995fb5fc5...8dff84319a18189e6b4bcca5ce78beed9aba984b

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/android-components/-/compare/c2d4d9840a0f8e789e091bc693d01f2995fb5fc5...8dff84319a18189e6b4bcca5ce78beed9aba984b
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/abouttor-homepage_completed] https://gitweb.torproject.org/translation.git/commit/?h=abouttor-homepage_completed

2020-11-04 Thread translation
commit d8dfc22814973a22d29892638c84f2d24e774e1b
Author: Translation commit bot 
Date:   Wed Nov 4 21:45:06 2020 +


https://gitweb.torproject.org/translation.git/commit/?h=abouttor-homepage_completed
---
 id/aboutTor.dtd | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/id/aboutTor.dtd b/id/aboutTor.dtd
index 65be25adf6..bbe8a56057 100644
--- a/id/aboutTor.dtd
+++ b/id/aboutTor.dtd
@@ -27,10 +27,10 @@
 
 
 
-
+
 
 
 
-
-
-
+
+
+

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/abouttor-homepage] https://gitweb.torproject.org/translation.git/commit/?h=abouttor-homepage

2020-11-04 Thread translation
commit 4e2035cefd693fbaf4283d9065d4d2549bdc8350
Author: Translation commit bot 
Date:   Wed Nov 4 21:45:03 2020 +

https://gitweb.torproject.org/translation.git/commit/?h=abouttor-homepage
---
 id/aboutTor.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/id/aboutTor.dtd b/id/aboutTor.dtd
index 5083edbe36..bbe8a56057 100644
--- a/id/aboutTor.dtd
+++ b/id/aboutTor.dtd
@@ -33,4 +33,4 @@
 
 
 
-
+

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [tor-browser/tor-browser-83.0b1-10.0-1] Bug 40171: Make WebRequest and GeckoWebExecutor First-Party aware

2020-11-04 Thread sysrqb
commit 49685688c006f3050f64c091563eded4466ef9ad
Author: Alex Catarineu 
Date:   Wed Nov 4 15:58:22 2020 +0100

Bug 40171: Make WebRequest and GeckoWebExecutor First-Party aware
---
 .../main/java/org/mozilla/geckoview/WebRequest.java| 18 ++
 widget/android/WebExecutorSupport.cpp  | 10 ++
 2 files changed, 28 insertions(+)

diff --git 
a/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/WebRequest.java 
b/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/WebRequest.java
index 7e3aa285c5be..18f56abeec43 100644
--- 
a/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/WebRequest.java
+++ 
b/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/WebRequest.java
@@ -49,6 +49,11 @@ public class WebRequest extends WebMessage {
  */
 public final @Nullable String referrer;
 
+/**
+ * The value of the origin of this request.
+ */
+public final @Nullable String origin;
+
 @Retention(RetentionPolicy.SOURCE)
 @IntDef({CACHE_MODE_DEFAULT, CACHE_MODE_NO_STORE,
 CACHE_MODE_RELOAD, CACHE_MODE_NO_CACHE,
@@ -110,6 +115,7 @@ public class WebRequest extends WebMessage {
 method = builder.mMethod;
 cacheMode = builder.mCacheMode;
 referrer = builder.mReferrer;
+origin = builder.mOrigin;
 
 if (builder.mBody != null) {
 body = builder.mBody.asReadOnlyBuffer();
@@ -126,6 +132,7 @@ public class WebRequest extends WebMessage {
 /* package */ String mMethod = "GET";
 /* package */ int mCacheMode = CACHE_MODE_DEFAULT;
 /* package */ String mReferrer;
+/* package */ String mOrigin;
 
 /**
  * Construct a Builder instance with the specified URI.
@@ -205,6 +212,17 @@ public class WebRequest extends WebMessage {
 return this;
 }
 
+/**
+ * Set the origin URI.
+ *
+ * @param origin A URI String
+ * @return This Builder instance.
+ */
+public @NonNull Builder origin(final @Nullable String origin) {
+mOrigin = origin;
+return this;
+}
+
 /**
  * @return A {@link WebRequest} constructed with the values from this 
Builder instance.
  */
diff --git a/widget/android/WebExecutorSupport.cpp 
b/widget/android/WebExecutorSupport.cpp
index f9f4262fb50c..bb639740f013 100644
--- a/widget/android/WebExecutorSupport.cpp
+++ b/widget/android/WebExecutorSupport.cpp
@@ -390,6 +390,16 @@ nsresult WebExecutorSupport::CreateStreamLoader(
   MOZ_ASSERT(cookieJarSettings);
 
   nsCOMPtr loadInfo = channel->LoadInfo();
+
+  RefPtr originUri;
+  const auto origin = req->Origin();
+  if (origin) {
+rv = NS_NewURI(getter_AddRefs(originUri), origin->ToString());
+NS_ENSURE_SUCCESS(rv, NS_ERROR_MALFORMED_URI);
+OriginAttributes attrs = loadInfo->GetOriginAttributes();
+attrs.SetFirstPartyDomain(true, originUri);
+loadInfo->SetOriginAttributes(attrs);
+  }
   loadInfo->SetCookieJarSettings(cookieJarSettings);
 
   // setup http/https specific things

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [tor-browser/tor-browser-82.0-10.0-1] Bug 40171: Make WebRequest and GeckoWebExecutor First-Party aware

2020-11-04 Thread sysrqb
commit 9d609e98a6ea20a3a4f01c86ee3a53a2a7f33f47
Author: Alex Catarineu 
Date:   Wed Nov 4 15:58:22 2020 +0100

Bug 40171: Make WebRequest and GeckoWebExecutor First-Party aware
---
 .../main/java/org/mozilla/geckoview/WebRequest.java| 18 ++
 widget/android/WebExecutorSupport.cpp  | 10 ++
 2 files changed, 28 insertions(+)

diff --git 
a/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/WebRequest.java 
b/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/WebRequest.java
index 7e3aa285c5be..18f56abeec43 100644
--- 
a/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/WebRequest.java
+++ 
b/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/WebRequest.java
@@ -49,6 +49,11 @@ public class WebRequest extends WebMessage {
  */
 public final @Nullable String referrer;
 
+/**
+ * The value of the origin of this request.
+ */
+public final @Nullable String origin;
+
 @Retention(RetentionPolicy.SOURCE)
 @IntDef({CACHE_MODE_DEFAULT, CACHE_MODE_NO_STORE,
 CACHE_MODE_RELOAD, CACHE_MODE_NO_CACHE,
@@ -110,6 +115,7 @@ public class WebRequest extends WebMessage {
 method = builder.mMethod;
 cacheMode = builder.mCacheMode;
 referrer = builder.mReferrer;
+origin = builder.mOrigin;
 
 if (builder.mBody != null) {
 body = builder.mBody.asReadOnlyBuffer();
@@ -126,6 +132,7 @@ public class WebRequest extends WebMessage {
 /* package */ String mMethod = "GET";
 /* package */ int mCacheMode = CACHE_MODE_DEFAULT;
 /* package */ String mReferrer;
+/* package */ String mOrigin;
 
 /**
  * Construct a Builder instance with the specified URI.
@@ -205,6 +212,17 @@ public class WebRequest extends WebMessage {
 return this;
 }
 
+/**
+ * Set the origin URI.
+ *
+ * @param origin A URI String
+ * @return This Builder instance.
+ */
+public @NonNull Builder origin(final @Nullable String origin) {
+mOrigin = origin;
+return this;
+}
+
 /**
  * @return A {@link WebRequest} constructed with the values from this 
Builder instance.
  */
diff --git a/widget/android/WebExecutorSupport.cpp 
b/widget/android/WebExecutorSupport.cpp
index dc428e34c10c..60ab02c03354 100644
--- a/widget/android/WebExecutorSupport.cpp
+++ b/widget/android/WebExecutorSupport.cpp
@@ -383,6 +383,16 @@ nsresult WebExecutorSupport::CreateStreamLoader(
   MOZ_ASSERT(cookieJarSettings);
 
   nsCOMPtr loadInfo = channel->LoadInfo();
+
+  RefPtr originUri;
+  const auto origin = req->Origin();
+  if (origin) {
+rv = NS_NewURI(getter_AddRefs(originUri), origin->ToString());
+NS_ENSURE_SUCCESS(rv, NS_ERROR_MALFORMED_URI);
+OriginAttributes attrs = loadInfo->GetOriginAttributes();
+attrs.SetFirstPartyDomain(true, originUri);
+loadInfo->SetOriginAttributes(attrs);
+  }
   loadInfo->SetCookieJarSettings(cookieJarSettings);
 
   // setup http/https specific things



___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [tor-browser/tor-browser-82.0-10.0-1] Merge remote-tracking branch 'acatgl/40171' into tor-browser-82.0-10.0-1

2020-11-04 Thread sysrqb
commit fb38615ac2ab7345dffba2b3ecef110ba47fba7c
Merge: 9f748e44a9d2 9d609e98a6ea
Author: Matthew Finkel 
Date:   Wed Nov 4 21:40:47 2020 +

Merge remote-tracking branch 'acatgl/40171' into tor-browser-82.0-10.0-1

 .../main/java/org/mozilla/geckoview/WebRequest.java| 18 ++
 widget/android/WebExecutorSupport.cpp  | 10 ++
 2 files changed, 28 insertions(+)

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [tor-browser/tor-browser-83.0b1-10.0-1] fixup! Bug 40091: Load HTTPS Everywhere as a builtin addon in desktop

2020-11-04 Thread sysrqb
commit 49173da07b4f36b503fb1203c0dfb701e44cf376
Author: Matthew Finkel 
Date:   Wed Nov 4 20:57:18 2020 +

fixup! Bug 40091: Load HTTPS Everywhere as a builtin addon in desktop

Fixes #40137: Built-in https-everywhere storage is not migrated to idb
---
 toolkit/components/extensions/Extension.jsm | 10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/toolkit/components/extensions/Extension.jsm 
b/toolkit/components/extensions/Extension.jsm
index 54c8478a686b..8c5b79055186 100644
--- a/toolkit/components/extensions/Extension.jsm
+++ b/toolkit/components/extensions/Extension.jsm
@@ -212,6 +212,7 @@ const LOGGER_ID_BASE = "addons.webextension.";
 const UUID_MAP_PREF = "extensions.webextensions.uuids";
 const LEAVE_STORAGE_PREF = "extensions.webextensions.keepStorageOnUninstall";
 const LEAVE_UUID_PREF = "extensions.webextensions.keepUuidOnUninstall";
+const PERSISTENT_EXTENSIONS = new Set(["https-everywhere-...@eff.org"]);
 
 const COMMENT_REGEXP = new RegExp(
   String.raw`
@@ -358,7 +359,8 @@ var ExtensionAddonObserver = {
   );
 }
 
-if (!Services.prefs.getBoolPref(LEAVE_STORAGE_PREF, false)) {
+if (!Services.prefs.getBoolPref(LEAVE_STORAGE_PREF, false) &&
+  !PERSISTENT_EXTENSIONS.has(addon.id)) {
   // Clear browser.storage.local backends.
   AsyncShutdown.profileChangeTeardown.addBlocker(
 `Clear Extension Storage ${addon.id} (File Backend)`,
@@ -406,7 +408,8 @@ var ExtensionAddonObserver = {
 
 ExtensionPermissions.removeAll(addon.id);
 
-if (!Services.prefs.getBoolPref(LEAVE_UUID_PREF, false)) {
+if (!Services.prefs.getBoolPref(LEAVE_UUID_PREF, false) &&
+  !PERSISTENT_EXTENSIONS.has(addon.id)) {
   // Clear the entry in the UUID map
   UUIDMap.remove(addon.id);
 }
@@ -2516,7 +2519,8 @@ class Extension extends ExtensionData {
   );
 } else if (
   this.startupReason === "ADDON_INSTALL" &&
-  !Services.prefs.getBoolPref(LEAVE_STORAGE_PREF, false)
+  !Services.prefs.getBoolPref(LEAVE_STORAGE_PREF, false) &&
+  !PERSISTENT_EXTENSIONS.has(this.id)
 ) {
   // If the extension has been just installed, set it as migrated,
   // because there will not be any data to migrate.

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [tor-browser/tor-browser-78.4.0esr-10.5-1] Merge remote-tracking branch 'acatgl/40137' into tor-browser-78.4.0esr-10.5-1

2020-11-04 Thread sysrqb
commit 0f1ea47ff08d81d50195b509aabaea0fc9188e51
Merge: f5157a69e88c fe77759e2e32
Author: Matthew Finkel 
Date:   Wed Nov 4 20:57:18 2020 +

Merge remote-tracking branch 'acatgl/40137' into 
tor-browser-78.4.0esr-10.5-1

 toolkit/components/extensions/Extension.jsm | 14 +++---
 1 file changed, 11 insertions(+), 3 deletions(-)

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [tor-browser/tor-browser-78.4.0esr-10.5-1] fixup! Bug 40091: Load HTTPS Everywhere as a builtin addon in desktop

2020-11-04 Thread sysrqb
commit fe77759e2e3227344bb7dec64cf58fccd596c497
Author: Alex Catarineu 
Date:   Thu Oct 29 22:03:28 2020 +0100

fixup! Bug 40091: Load HTTPS Everywhere as a builtin addon in desktop

Fixes #40137: Built-in https-everywhere storage is not migrated to idb
---
 toolkit/components/extensions/Extension.jsm | 14 +++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/toolkit/components/extensions/Extension.jsm 
b/toolkit/components/extensions/Extension.jsm
index 876e636be3db..7dbd888b1710 100644
--- a/toolkit/components/extensions/Extension.jsm
+++ b/toolkit/components/extensions/Extension.jsm
@@ -211,6 +211,7 @@ const LOGGER_ID_BASE = "addons.webextension.";
 const UUID_MAP_PREF = "extensions.webextensions.uuids";
 const LEAVE_STORAGE_PREF = "extensions.webextensions.keepStorageOnUninstall";
 const LEAVE_UUID_PREF = "extensions.webextensions.keepUuidOnUninstall";
+const PERSISTENT_EXTENSIONS = new Set(["https-everywhere-...@eff.org"]);
 
 const COMMENT_REGEXP = new RegExp(
   String.raw`
@@ -331,7 +332,10 @@ var ExtensionAddonObserver = {
   return;
 }
 
-if (!Services.prefs.getBoolPref(LEAVE_STORAGE_PREF, false)) {
+if (
+  !Services.prefs.getBoolPref(LEAVE_STORAGE_PREF, false) &&
+  !PERSISTENT_EXTENSIONS.has(addon.id)
+) {
   // Clear browser.storage.local backends.
   AsyncShutdown.profileChangeTeardown.addBlocker(
 `Clear Extension Storage ${addon.id} (File Backend)`,
@@ -384,7 +388,10 @@ var ExtensionAddonObserver = {
 
 ExtensionPermissions.removeAll(addon.id);
 
-if (!Services.prefs.getBoolPref(LEAVE_UUID_PREF, false)) {
+if (
+  !Services.prefs.getBoolPref(LEAVE_UUID_PREF, false) &&
+  !PERSISTENT_EXTENSIONS.has(addon.id)
+) {
   // Clear the entry in the UUID map
   UUIDMap.remove(addon.id);
 }
@@ -2474,7 +2481,8 @@ class Extension extends ExtensionData {
   );
 } else if (
   this.startupReason === "ADDON_INSTALL" &&
-  !Services.prefs.getBoolPref(LEAVE_STORAGE_PREF, false)
+  !Services.prefs.getBoolPref(LEAVE_STORAGE_PREF, false) &&
+  !PERSISTENT_EXTENSIONS.has(this.id)
 ) {
   // If the extension has been just installed, set it as migrated,
   // because there will not be any data to migrate.



___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [torbutton/master] Merge remote-tracking branch 'acatgl/40022+1'

2020-11-04 Thread sysrqb
commit b0739b02caacea311d54192d22005aaa88505b11
Merge: 86c73f63 983c073b
Author: Matthew Finkel 
Date:   Wed Nov 4 20:23:06 2020 +

Merge remote-tracking branch 'acatgl/40022+1'

 chrome/content/aboutTor/aboutTor.xhtml |  1 +
 chrome/skin/aboutTor.css   | 31 +--
 2 files changed, 30 insertions(+), 2 deletions(-)

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [torbutton/master] fixup! Bug 40013: End of year 2020 Fundraising campaign

2020-11-04 Thread sysrqb
commit 983c073b337eac1bbdcaac7134811f93a5d97daa
Author: Alex Catarineu 
Date:   Fri Oct 30 12:53:08 2020 +0100

fixup! Bug 40013: End of year 2020 Fundraising campaign
---
 chrome/content/aboutTor/aboutTor.xhtml |  1 +
 chrome/skin/aboutTor.css   | 31 +--
 2 files changed, 30 insertions(+), 2 deletions(-)

diff --git a/chrome/content/aboutTor/aboutTor.xhtml 
b/chrome/content/aboutTor/aboutTor.xhtml
index 3a242a36..25267fc3 100644
--- a/chrome/content/aboutTor/aboutTor.xhtml
+++ b/chrome/content/aboutTor/aboutTor.xhtml
@@ -49,6 +49,7 @@
   
   
 
+https://blog.torproject.org/friends-of-tor-match-2020;>
   
   
 https://www.torproject.org/donate/donate-usetor-default;>
diff --git a/chrome/skin/aboutTor.css b/chrome/skin/aboutTor.css
index 223a5c73..e6f5c4ee 100644
--- a/chrome/skin/aboutTor.css
+++ b/chrome/skin/aboutTor.css
@@ -362,6 +362,11 @@ body[eoy2020] .torcontent-logo {
   display: none!important;
 }
 
+#eoy2020_1 {
+  width: 70%;
+  background: #000;
+}
+
 #eoy2020_3 {
   padding-top: 10px;
   padding-bottom: 30px;
@@ -376,14 +381,36 @@ body[eoy2020] .torcontent-logo {
   text-align: left;
   color: white;
   font-family: "TerminalGrotesque", monospace;
-  font-size: 25px;
-  width: 70%;
+  font-size: 27px;
+  padding: 9px 0;
 }
 
 #eoy2020_resist:dir(rtl) {
   text-align: right;
 }
 
+#eoy2020_match {
+  font-size: 16px;
+  padding: 0 0 20px 0;
+  font-family: "Courier New", monospace;
+  font-weight: bold;
+  text-align: left;
+}
+
+#eoy2020_match a {
+  color: #9D4AE8;
+  text-decoration: unset;
+}
+
+#eoy2020_match a:hover {
+  color: #4DFB00;
+  text-decoration: unset;
+}
+
+#eoy2020_match:dir(rtl) {
+  text-align: right;
+}
+
 #eoy2020_useamask {
   line-height: 53px;
   text-align: left;



___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [community/master] Fix grammar. Thanks @BlueMona.

2020-11-04 Thread gus
commit e38beeea0b7f154579ce4fb3ebca2406bc764053
Author: gus 
Date:   Wed Nov 4 14:51:28 2020 -0500

Fix grammar. Thanks @BlueMona.
---
 .../tor-abuse-templates/contents.lr| 38 +
 .../tor-exit-guidelines/contents.lr| 49 ++
 .../bridge/centos-rhel-opensuse/contents.lr|  2 +-
 .../bridge/debian-ubuntu/contents.lr   |  2 +-
 .../technical-setup/bridge/docker/contents.lr  |  2 +-
 .../technical-setup/bridge/fedora/contents.lr  |  2 +-
 .../technical-setup/bridge/freebsd/contents.lr |  2 +-
 .../technical-setup/bridge/openbsd/contents.lr |  2 +-
 .../relay-operations/technical-setup/contents.lr   |  2 +-
 .../technical-setup/exit/contents.lr   | 12 +++---
 .../technical-setup/guard/centosrhel/contents.lr   | 10 +++--
 .../technical-setup/guard/debianubuntu/contents.lr |  6 ++-
 .../technical-setup/guard/dragonflybsd/contents.lr |  6 ++-
 .../technical-setup/guard/fedora/contents.lr   |  6 +--
 .../technical-setup/guard/freebsd/contents.lr  | 12 --
 .../technical-setup/guard/openbsd/contents.lr  |  2 +-
 .../technical-setup/post-install/contents.lr   | 31 +++---
 .../relay-operations/types-of-relays/contents.lr   | 10 ++---
 content/training/checklist/contents.lr |  8 ++--
 content/training/risks/contents.lr | 10 ++---
 content/user-research/guidelines/contents.lr   | 20 +
 21 files changed, 132 insertions(+), 102 deletions(-)

diff --git 
a/content/relay-operations/community-resources/tor-abuse-templates/contents.lr 
b/content/relay-operations/community-resources/tor-abuse-templates/contents.lr
index 007e0d2..a590159 100644
--- 
a/content/relay-operations/community-resources/tor-abuse-templates/contents.lr
+++ 
b/content/relay-operations/community-resources/tor-abuse-templates/contents.lr
@@ -15,7 +15,7 @@ Below are a collection of letters you can use to respond to 
your ISP about their
 
 ## Format and Philosophy of Templates
 
-The general format of these templates is to inform the complaintant about Tor, 
to help them to find a solution to their particular issue that works in general 
for the Internet at large (open wifi, open proxies, botnets, etc), and barring 
all else, how to block Tor.
+The general format of these templates is to inform the complainant about Tor, 
to help them to find a solution to their particular issue that works in general 
for the Internet at large (open wifi, open proxies, botnets, etc), and barring 
all else, how to block Tor.
 The philosophy of the Tor Project is that abuse should be handled proactively 
by the site administrators, rather than wasting effort and resources on seeking 
vengeance and chasing ghosts.
 
 The difference between the proactive approach and the reactive approach to 
abuse is the difference between decentralized fault-tolerant Internet freedom, 
and fragile, corruptible totalitarian control.
@@ -45,7 +45,7 @@ Unfortunately, some people misuse the network. However, 
compared to the rate of
 ## Abuse Scenarios
 
 The following scenario-specific paragraphs should be appended to the Common 
Boilerplate paragraphs above.
-The common boilerplate should be abridged or be omitted if the abuse 
complaintant is already familiar with Tor.
+The common boilerplate should be abridged or be omitted if the abuse 
complainant is already familiar with Tor.
 
 ## Comment/Forum Spam
 
@@ -185,29 +185,33 @@ So it is even possible this is a legitimate order, but 
was flagged as fraud sole
 
 ## Threats of Violence (Advice for Real-Time Discussion)
 
-If a serious abuse complaint not covered by this template set arrives, the 
best answer is to follow a pattern with the complaining party.  This is not 
legal advice.  This was not written or reviewed by a lawyer.  It was written by 
someone with experience in working with various ISPs who had issues with a Tor 
exit node on their network.  It has also been reviewed by someone who works in 
Abuse at a major ISP.
+If a serious abuse complaint not covered by this template set arrives, the 
best answer is to follow a pattern with the complaining party.
+This is not legal advice.
+This was not written or reviewed by a lawyer.
+It was written by someone with experience working with various ISPs who had 
issues with a Tor exit node on their network.
+It has also been reviewed by someone who works in Abuse at a major ISP.
 
- * Read the [Tor 
Overview](https://2019.www.torproject.org/about/overview.html.en).  Be prepared 
to summarize and answer basic questions.  Assume the person with which you're 
going to converse knows nothing about Tor.  Assume this same person isn't going 
to trust anything you say.
+ * Read the [Tor 
Overview](https://2019.www.torproject.org/about/overview.html.en). Be prepared 
to summarize and answer basic questions. Assume the person with whom you're 
going to converse knows nothing about Tor. Assume this same person isn't 

[tor-commits] [translation/tails-misc_release] https://gitweb.torproject.org/translation.git/commit/?h=tails-misc_release

2020-11-04 Thread translation
commit 8a7e75b478e9e06113d4b9fcd3ac1a0491c807b9
Author: Translation commit bot 
Date:   Wed Nov 4 18:16:29 2020 +

https://gitweb.torproject.org/translation.git/commit/?h=tails-misc_release
---
 lt.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lt.po b/lt.po
index d25471de05..1b7ef2b825 100644
--- a/lt.po
+++ b/lt.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-10-27 19:02+0100\n"
-"PO-Revision-Date: 2020-11-04 17:45+\n"
+"PO-Revision-Date: 2020-11-04 17:46+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/otf/torproject/language/lt/)\n"
 "MIME-Version: 1.0\n"

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/tails-misc] https://gitweb.torproject.org/translation.git/commit/?h=tails-misc

2020-11-04 Thread translation
commit 9653d21df7dc854427c0cb4f9c3e07fba6543393
Author: Translation commit bot 
Date:   Wed Nov 4 18:15:47 2020 +

https://gitweb.torproject.org/translation.git/commit/?h=tails-misc
---
 lt.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lt.po b/lt.po
index 96cb260e89..199717234e 100644
--- a/lt.po
+++ b/lt.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-10-27 19:02+0100\n"
-"PO-Revision-Date: 2020-11-04 17:45+\n"
+"PO-Revision-Date: 2020-11-04 17:46+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/otf/torproject/language/lt/)\n"
 "MIME-Version: 1.0\n"
@@ -1037,7 +1037,7 @@ msgstr "Jūsų ilgalaikiai duomenys bus ištrinti."
 msgid ""
 "The persistent volume {partition} ({size}), on the {vendor} {model} "
 "device, will be deleted."
-msgstr ""
+msgstr "{partition} ({size}) ilgalaikis tomas, esantis įrenginyje {vendor} 
{model}, bus ištrintas."
 
 #: 
config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:64
 msgid "Delete"

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/torbutton-torbuttonproperties] https://gitweb.torproject.org/translation.git/commit/?h=torbutton-torbuttonproperties

2020-11-04 Thread translation
commit bc46794172046ba4bb8c89eccecacba99227b701
Author: Translation commit bot 
Date:   Wed Nov 4 17:47:30 2020 +


https://gitweb.torproject.org/translation.git/commit/?h=torbutton-torbuttonproperties
---
 lt/torbutton.properties | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lt/torbutton.properties b/lt/torbutton.properties
index 4d012386d6..23fa7d4aa0 100644
--- a/lt/torbutton.properties
+++ b/lt/torbutton.properties
@@ -60,7 +60,7 @@ updateDownloadingPanelUILabel=Atsisiunčiamas %S atnaujinimas
 # .Onion Page Info prompt.  Strings are kept here for ease of translation.
 pageInfo_OnionEncryptionWithBitsAndProtocol=Šifruotas ryšys (Onion paslauga, 
%1$S, %2$S bitų raktai, %3$S)
 pageInfo_OnionEncryption=Šifruotas ryšys (Onion paslauga)
-pageInfo_OnionName=Onion Name:
+pageInfo_OnionName=Onion pavadinimas:
 
 # Onion services strings.  Strings are kept here for ease of translation.
 onionServices.learnMore=Sužinoti daugiau
@@ -111,7 +111,7 @@ onionServices.introTimedOut=Nepavyko prisijungti prie onion 
svetainės, galbūt
 onionServices.introTimedOut.longDescription=Details: %S — The connection to 
the requested onion service timed out while trying to build the rendezvous 
circuit.
 #
 # LOCALIZATION NOTE: %S will be replaced with the .onion address.
-onionServices.authPrompt.description2=%S is requesting that you authenticate.
+onionServices.authPrompt.description2=%S prašo, kad nustatytumėte savo 
tapatybę.
 onionServices.authPrompt.keyPlaceholder=Įveskite savo privatųjį, šiai 
onion paslaugai skirtą, raktą
 onionServices.authPrompt.done=Atlikta
 onionServices.authPrompt.doneAccessKey=u

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/tails-misc_release] https://gitweb.torproject.org/translation.git/commit/?h=tails-misc_release

2020-11-04 Thread translation
commit 4bb0061f7aa5cef7422af061a7a7bce8d65f027f
Author: Translation commit bot 
Date:   Wed Nov 4 17:46:42 2020 +

https://gitweb.torproject.org/translation.git/commit/?h=tails-misc_release
---
 cs.po | 5 +++--
 lt.po | 2 +-
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/cs.po b/cs.po
index f528ecf442..c29b11b3f1 100644
--- a/cs.po
+++ b/cs.po
@@ -7,6 +7,7 @@
 # Adam Slovacek , 2013
 # David Nowak , 2020
 # Filip Hruska , 2014
+# Fourdee Foureight , 2020
 # Pivoj, 2015
 # Jiří Vírava , 2013-2014
 # trendspotter, 2019
@@ -23,8 +24,8 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-10-27 19:02+0100\n"
-"PO-Revision-Date: 2020-10-30 00:13+\n"
-"Last-Translator: Transifex Bot <>\n"
+"PO-Revision-Date: 2020-11-04 17:36+\n"
+"Last-Translator: Fourdee Foureight \n"
 "Language-Team: Czech (http://www.transifex.com/otf/torproject/language/cs/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/lt.po b/lt.po
index 5b95f36ec9..d25471de05 100644
--- a/lt.po
+++ b/lt.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-10-27 19:02+0100\n"
-"PO-Revision-Date: 2020-10-30 17:04+\n"
+"PO-Revision-Date: 2020-11-04 17:45+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/otf/torproject/language/lt/)\n"
 "MIME-Version: 1.0\n"

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/fenix-torbrowserstringsxml] https://gitweb.torproject.org/translation.git/commit/?h=fenix-torbrowserstringsxml

2020-11-04 Thread translation
commit 153dd7efb5caa78f6872d0bf485207f464c141f9
Author: Translation commit bot 
Date:   Wed Nov 4 17:45:20 2020 +


https://gitweb.torproject.org/translation.git/commit/?h=fenix-torbrowserstringsxml
---
 lt/torbrowser_strings.xml | 13 +
 1 file changed, 13 insertions(+)

diff --git a/lt/torbrowser_strings.xml b/lt/torbrowser_strings.xml
index 59a626c892..ea584e6d11 100644
--- a/lt/torbrowser_strings.xml
+++ b/lt/torbrowser_strings.xml
@@ -2,12 +2,17 @@
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
 
+
+Leisti tik privataus 
naršymo veikseną
 
 Leisti ekrano kopijas
 
 Prisijungti
 Jungiamasi
 Perbraukite kairėn norėdami 
matyti Tor žurnalus
+Inicijuojamas Tor žurnalas
+
+Dabartinis 
saugumo lygmuo: %s
 Atverti saugumo 
nustatymus
 Tor yra nemokamas naudoti 
dėl paaukojimų iš tokių žmonių kaip jūs.
 Paaukokite dabar
@@ -27,6 +32,8 @@
 Jungiamasi
 Prisijungta
 Paleidžiama 
iš naujo
+Tinklų 
tiltai yra įjungti: %s
+
 
 Saugumo 
nustatymai
 Saugumo 
lygmuo
@@ -35,7 +42,13 @@
 Standartinis
 Visos Tor 
Naršyklės ir internetinių svetainių ypatybės yra įjungtos.
 Saugesnis
+IÅ¡jungti tas 
internetinių svetainių ypatybes, kurios, dažnai, būna pavojingos, dėl to, 
kai kurios svetainės gali prarasti funkcionalumą.
 Saugiausias
+Leisti tik tas 
internetinių svetainių ypatybes, kurios yra reikalingos statinėms 
svetainėms bei pagrindinėms paslaugoms. Šie pakeitimai paveikia paveikslus, 
mediją ir scenarijus.
+
+
+Padidintam privatumui, prašyti, kad 
internetinės svetainės būtų įkeliamos anglų kalba
+
 Dėvėkite kaukę, naudokite 
Tor.
 Pasipriešinkite sekimo 
pandemijai.
 

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/tails-misc] https://gitweb.torproject.org/translation.git/commit/?h=tails-misc

2020-11-04 Thread translation
commit 0fbacbefcc807578ce044cb4b8466da60d915551
Author: Translation commit bot 
Date:   Wed Nov 4 17:45:53 2020 +

https://gitweb.torproject.org/translation.git/commit/?h=tails-misc
---
 cs.po |  9 +
 lt.po | 34 +-
 2 files changed, 22 insertions(+), 21 deletions(-)

diff --git a/cs.po b/cs.po
index 863f2d97de..bb50ec1346 100644
--- a/cs.po
+++ b/cs.po
@@ -7,9 +7,10 @@
 # Adam Slovacek , 2013
 # David Nowak , 2020
 # Filip Hruska , 2014
+# Fourdee Foureight , 2020
 # Pivoj, 2015
 # Jiří Vírava , 2013-2014
-# Jiří Podhorecký, 2019
+# trendspotter, 2019
 # Plarome, 2019
 # Michal Stanke , 2019
 # Michal Vašíček , 2017
@@ -23,8 +24,8 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-10-27 19:02+0100\n"
-"PO-Revision-Date: 2020-10-30 00:13+\n"
-"Last-Translator: Transifex Bot <>\n"
+"PO-Revision-Date: 2020-11-04 17:36+\n"
+"Last-Translator: Fourdee Foureight \n"
 "Language-Team: Czech (http://www.transifex.com/otf/torproject/language/cs/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -130,7 +131,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:268
 msgid "Error while updating the signing key"
-msgstr ""
+msgstr "Chyba při aktualizaci podpisového klíče"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:295
 msgid "Error while checking for upgrades"
diff --git a/lt.po b/lt.po
index b2f04aefe0..96cb260e89 100644
--- a/lt.po
+++ b/lt.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-10-27 19:02+0100\n"
-"PO-Revision-Date: 2020-10-30 17:04+\n"
+"PO-Revision-Date: 2020-11-04 17:45+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/otf/torproject/language/lt/)\n"
 "MIME-Version: 1.0\n"
@@ -241,7 +241,7 @@ msgstr "Atsiunčiamas naujinimas"
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:554
 #, perl-brace-format
 msgid "Downloading the upgrade to {name} {version}..."
-msgstr ""
+msgstr "Atsiunčiamas naujinimas į {name} {version}..."
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:614
 msgid ""
@@ -261,7 +261,7 @@ msgstr "Klaida, atsiunčiant naujinimą"
 msgid ""
 "Output file '{output_file}' does not exist, but tails-iuk-get-target-file "
 "did not complain. Please report a bug."
-msgstr ""
+msgstr "Išvesties failo „{output_file}“ nėra, tačiau 
tails-iuk-get-target-file nesiskundė. Prašome pranešti apie klaidą."
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:651
 msgid "Error while creating temporary downloading directory"
@@ -343,7 +343,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:751
 msgid "Failed to cancel the upgrade download"
-msgstr ""
+msgstr "Nepavyko atsisakyti naujinimo atsisiuntimo"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:757
 msgid "Upgrading the system"
@@ -519,7 +519,7 @@ msgstr "Atsirado problemų, vykdant šią komandą: 
\"%(command)s\".\nIÅ¡samesni
 msgid ""
 "Not enough free space on device.\n"
 "%(iso_size)dMB ISO + %(overlay_size)dMB overlay > %(free_space)dMB free space"
-msgstr ""
+msgstr "Įrenginyje nepakanka laisvos vietos.\n%(iso_size)dMB ISO + 
%(overlay_size)dMB perdanga > %(free_space)dMB laisvos vietos"
 
 #: 
config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:301
 #, python-format
@@ -847,7 +847,7 @@ msgstr "Pasirinktas %(filename)s"
 
 #: 
config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/source.py:28
 msgid "Unable to find Tails on ISO"
-msgstr ""
+msgstr "Nepavyko ISO atvaizdyje rasti Tails"
 
 #: 
config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/source.py:34
 #, python-format
@@ -860,7 +860,7 @@ msgid ""
 "There was a problem executing `%(cmd)s`.\n"
 "%(out)s\n"
 "%(err)s"
-msgstr ""
+msgstr "Vykdant „%(cmd)s“, atsirado problema.\n%(out)s\n%(err)s"
 
 #: 
config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/source.py:60
 #, python-format
@@ -882,7 +882,7 @@ msgstr "Praleidžiama \"%(filename)s\""
 msgid ""
 "There was a problem executing `%(cmd)s`.%(out)s\n"
 "%(err)s"
-msgstr ""
+msgstr "Vykdant „%(cmd)s“, atsirado problema.%(out)s\n%(err)s"
 
 #: 
config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/utils.py:134
 msgid "Could not open device for writing."
@@ -924,7 +924,7 @@ msgid ""
 "A {size} persistent volume will be created on the {vendor} {model} "
 "device. Data on this volume will be stored in an encrypted form protected by"
 " a passphrase."
-msgstr ""
+msgstr "{vendor} {model} įrenginyje bus sukurtas {size} ilgalaikis 
tomas. Duomenys Å¡iame tome bus saugomi slaptafraze apsaugotu Å¡ifruotu 
pavidalu."
 
 #: 

[tor-commits] [translation/abouttor-homepage] https://gitweb.torproject.org/translation.git/commit/?h=abouttor-homepage

2020-11-04 Thread translation
commit c502676f3093e2cb1ed62797c60503ccfa98c70d
Author: Translation commit bot 
Date:   Wed Nov 4 17:45:03 2020 +

https://gitweb.torproject.org/translation.git/commit/?h=abouttor-homepage
---
 lt/aboutTor.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lt/aboutTor.dtd b/lt/aboutTor.dtd
index 68e972fa77..fac86b990d 100644
--- a/lt/aboutTor.dtd
+++ b/lt/aboutTor.dtd
@@ -33,4 +33,4 @@
 
 
 
-
+

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/abouttor-homepage_completed] https://gitweb.torproject.org/translation.git/commit/?h=abouttor-homepage_completed

2020-11-04 Thread translation
commit 072a6a637a07e53cab8f1bcf6d56aec77741694a
Author: Translation commit bot 
Date:   Wed Nov 4 15:45:07 2020 +


https://gitweb.torproject.org/translation.git/commit/?h=abouttor-homepage_completed
---
 fr/aboutTor.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fr/aboutTor.dtd b/fr/aboutTor.dtd
index 067fdc5792..7af3a19e1b 100644
--- a/fr/aboutTor.dtd
+++ b/fr/aboutTor.dtd
@@ -33,4 +33,4 @@
 
 
 
-
+

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/abouttor-homepage] https://gitweb.torproject.org/translation.git/commit/?h=abouttor-homepage

2020-11-04 Thread translation
commit 57d35b822198f21d0728d9e7fe9213fb96256ede
Author: Translation commit bot 
Date:   Wed Nov 4 15:45:02 2020 +

https://gitweb.torproject.org/translation.git/commit/?h=abouttor-homepage
---
 fr/aboutTor.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fr/aboutTor.dtd b/fr/aboutTor.dtd
index 00a44660b9..7af3a19e1b 100644
--- a/fr/aboutTor.dtd
+++ b/fr/aboutTor.dtd
@@ -33,4 +33,4 @@
 
 
 
-
+

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/communitytpo-contentspot] https://gitweb.torproject.org/translation.git/commit/?h=communitytpo-contentspot

2020-11-04 Thread translation
commit 656a06f862f25ce0e28b5df456dc6eb8e618078d
Author: Translation commit bot 
Date:   Wed Nov 4 11:45:11 2020 +


https://gitweb.torproject.org/translation.git/commit/?h=communitytpo-contentspot
---
 contents+ja.po | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/contents+ja.po b/contents+ja.po
index cecebdeeec..0d783877fa 100644
--- a/contents+ja.po
+++ b/contents+ja.po
@@ -229,9 +229,7 @@ msgstr "翻訳"
 msgid ""
 "We want Tor to work for everyone in the world, which means our software must"
 " be translated into a lot of languages."
-msgstr ""
-"Torは世界中のすべての人のために機能することを望んでいます。\n"
-"つまり、ソフトウェアを多くの言語に翻訳する必
要があります。"
+msgstr "私たちは、Tor 
を世界中のすべての人に使ってもらいたいと思っています。そのために、ソフトウェアを多くの言語に翻訳するå¿
…要があります。"
 
 #: https//community.torproject.org/localization/
 #: (content/localization/contents+en.lrpage.cta)

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal

2020-11-04 Thread translation
commit 65e46d53d7c455decb70b3b6498c153456cec511
Author: Translation commit bot 
Date:   Wed Nov 4 11:18:47 2020 +

https://gitweb.torproject.org/translation.git/commit/?h=support-portal
---
 contents+ja.po | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/contents+ja.po b/contents+ja.po
index 057b756a05..4738c858c8 100644
--- a/contents+ja.po
+++ b/contents+ja.po
@@ -5478,6 +5478,8 @@ msgid ""
 "choosing \"configure\" (then following the prompts) in the Tor Launcher "
 "window that pops up when you open Tor Browser for the first time."
 msgstr ""
+"Tor Browser にはいくつかの Bridge が組み込まれており、Tor 
Browser を初めて開いたときに表示される Tor "
+"Launcher ウィンドウで「設定」を選択して、(手é 
†ã«å¾“って)それらの Bridge を使用することができます。"
 
 #: https//support.torproject.org/censorship/censorship-4/
 #: (content/censorship/censorship-4/contents+en.lrquestion.description)

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/tpo-web] https://gitweb.torproject.org/translation.git/commit/?h=tpo-web

2020-11-04 Thread translation
commit bf3416b123eee048cae682346edb338176bea820
Author: Translation commit bot 
Date:   Wed Nov 4 11:18:38 2020 +

https://gitweb.torproject.org/translation.git/commit/?h=tpo-web
---
 contents+ja.po | 38 +-
 1 file changed, 21 insertions(+), 17 deletions(-)

diff --git a/contents+ja.po b/contents+ja.po
index adea324302..31c97c22f0 100644
--- a/contents+ja.po
+++ b/contents+ja.po
@@ -12,6 +12,7 @@
 # Naofumi , 2020
 # 323484, 2020
 # Gus, 2020
+# Kaede, 2020
 # 
 msgid ""
 msgstr ""
@@ -19,7 +20,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-02-24 13:39+CET\n"
 "PO-Revision-Date: 2019-03-09 10:41+\n"
-"Last-Translator: Gus, 2020\n"
+"Last-Translator: Kaede, 2020\n"
 "Language-Team: Japanese (https://www.transifex.com/otf/teams/1519/ja/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -508,7 +509,9 @@ msgid ""
 " use, so starting in 2005, development of tools beyond just the Tor proxy "
 "began."
 msgstr ""
-"Torは、プライバシーに興味を持つ活動家や技術に精通したユーザーの間で人気を集め始めましたが、技術的に精通していない人ã€
…
が使用することは依然として困難でsした。そのため、2005年からTorプロキシ単体をè¶
…えたツールの開発が始まりました。"
+"Tor "
+"は、プライバシーに興味を持つ活動家や技術に精通したユーザーの間で人気を集め始めましたが、技術的に精通していない人ã€
…
が使用することは依然として困難でした。そのため、2005年から"
+" Tor プロキシ単体を超えたツールの開発が始まりました。"
 
 #: https//www.torproject.org/about/history/
 #: (content/about/history/contents+en.lrpage.body)
@@ -542,8 +545,9 @@ msgid ""
 "2013](https://www.theguardian.com/world/interactive/2013/nov/01/snowden-nsa-;
 "files-surveillance-revelations-decoded#section/1)."
 msgstr ""
-"[2013年のスノーデンの告発]のおかげで、大規模監視から保護するツールへの感心が高まりました。(https://www.theguardian.com/world/interactive/2013/nov/01;
-"/snowden-nsa-files-surveillance-revelations-decoded#section/1)."
+"[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)
@@ -552,8 +556,8 @@ msgid ""
 "the documents also upheld assurances that, at that time, [Tor could not be "
 "cracked](https://www.wired.com/story/the-grand-tor/)."
 msgstr ""
-"TorはSnowden氏の内部告発に役立っただけでなく、å…
¬é–‹ã•ã‚ŒãŸæ–‡æ›¸ã®å†…
容も、その時点では[Torをクラックできない]という保証をさらに確かなものにしました。\n"
-"(https://www.wired.com/story/the-grand-tor/)."
+"Tor はスノーデン氏の内部告発に役立っただけでなく、å…
¬é–‹ã•ã‚ŒãŸæ–‡æ›¸ã®å†…容も、少なくともその時点では [Tor "
+"をクラックできない](https://www.wired.com/story/the-grand-tor/) 
という保証をさらに確かなものにしました。"
 
 #: https//www.torproject.org/about/history/
 #: (content/about/history/contents+en.lrpage.body)
@@ -672,9 +676,9 @@ msgid ""
 "alpha\">Tor Browser Project page and also from our distribution directory."
 msgstr ""
-"Tor Browser 8.5a10は、https://www.torproject.org/projects/torbrowser.html.en#downloads-;
-"alpha\">Tor BrowserプロジェクトページおよびTor Browser プロジェクトページおよび配布ディレクトリからå…
¥æ‰‹ã§ãã‚‹ã‚ˆã†ã«ãªã‚Šã¾ã—た。"
 
 #: https//www.torproject.org/about/trademark/trademark-faq/
@@ -702,7 +706,7 @@ msgstr "寄付する"
 
 #: lego/templates/banner.html:37 templates/banner.html:37
 msgid "Give today, and Mozilla will match your donation."
-msgstr 
"寄付をお願いします。Mozillaはあなたの寄付に裏切りません。"
+msgstr "寄付をお願いします。Mozilla 
はあなたの寄付に裏切りません。"
 
 #: lego/templates/footer.html:13 lego/templates/footer.html:22
 #: lego/templates/navbar.html:83 templates/footer.html:13
@@ -767,23 +771,23 @@ msgstr "検索"
 msgid ""
 "The following visualization shows what information is visible to "
 "eavesdroppers with and without Tor Browser and HTTPS encryption:"
-msgstr "次の視覚化した情報は、Tor 
BrowserとHTTPS暗号化の有無にかかわらず、盗聴者に見える情å 
±ã‚’示しています。"
+msgstr "次の視覚化した情報は、Tor Browser と HTTPS 
暗号化の有無にかかわらず、盗聴者に見える情å 
±ã‚’示しています。"
 
 #: lego/templates/secure-connections.html:4
 msgid ""
 "Click the “Tor” button to see what data is visible to observers when 

[tor-commits] [translation/communitytpo-contentspot] https://gitweb.torproject.org/translation.git/commit/?h=communitytpo-contentspot

2020-11-04 Thread translation
commit 988ebcae5a87b03d11522052ec41e67d6ef21399
Author: Translation commit bot 
Date:   Wed Nov 4 11:15:14 2020 +


https://gitweb.torproject.org/translation.git/commit/?h=communitytpo-contentspot
---
 contents+ja.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/contents+ja.po b/contents+ja.po
index dad83a60fe..cecebdeeec 100644
--- a/contents+ja.po
+++ b/contents+ja.po
@@ -222,7 +222,7 @@ msgstr ""
 #: https//community.torproject.org/localization/
 #: (content/localization/contents+en.lrpage.title)
 msgid "Localization"
-msgstr 
"ローカリゼーション、Torの現地語環境への適応化、Torの翻訳"
+msgstr "翻訳"
 
 #: https//community.torproject.org/localization/
 #: (content/localization/contents+en.lrpage.subtitle)
@@ -241,7 +241,7 @@ msgstr "翻訳を手伝ってください"
 #: https//community.torproject.org/localization/
 #: (content/localization/contents+en.lrpage.body)
 msgid "##Localization is how we reach a global community."
-msgstr 
"##ローカライズは、Torをグローバルコミュニティに発展させ、到達させる方法です。"
+msgstr "## 
ローカライゼーションは、私たちがグローバルなコミュニティになるための方法です。"
 
 #: https//community.torproject.org/localization/
 #: (content/localization/contents+en.lrpage.body)

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal

2020-11-04 Thread translation
commit ab7159103d869ceabdff75033df8b3bfbd8a8685
Author: Translation commit bot 
Date:   Wed Nov 4 10:48:58 2020 +

https://gitweb.torproject.org/translation.git/commit/?h=support-portal
---
 contents+ja.po | 14 ++
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/contents+ja.po b/contents+ja.po
index e63db95cc7..057b756a05 100644
--- a/contents+ja.po
+++ b/contents+ja.po
@@ -5463,13 +5463,13 @@ msgstr ""
 #: https//support.torproject.org/censorship/censorship-4/
 #: (content/censorship/censorship-4/contents+en.lrquestion.title)
 msgid "I can’t connect to Tor Browser, is my network censored?"
-msgstr "Tor 
Browserに接続できません。私のネットワークは検閲されていますか?"
+msgstr "Tor Browser 
がネットワークに接続できません。私のネットワークは検閲されていますか?"
 
 #: https//support.torproject.org/censorship/censorship-4/
 #: (content/censorship/censorship-4/contents+en.lrquestion.description)
 msgid ""
 "You might be on a censored network, and so you should try using bridges."
-msgstr 
"検閲されている恐れがあります。bridgeを試してみてくだ
さい。"
+msgstr 
"あなたのネットワークは検閲されている恐れがあります。Bridge
 を試してみてください。"
 
 #: https//support.torproject.org/censorship/censorship-4/
 #: (content/censorship/censorship-4/contents+en.lrquestion.description)
@@ -5539,13 +5539,15 @@ msgid ""
 "bridge](https://community.torproject.org/relay/setup/bridge/) for "
 "instructions."
 msgstr ""
+"構成手順については、[Bridge "
+"の運用方法](https://community.torproject.org/relay/setup/bridge/)をご覧くã
 ã•ã„。"
 
 #: https//support.torproject.org/censorship/censorship-7/
 #: (content/censorship/censorship-7/contents+en.lrquestion.description)
 msgid ""
 "Several countries, including China and Iran, have found ways to detect and "
 "block connections to Tor bridges."
-msgstr ""
+msgstr "中国やイランを含むいくつかの国が、Tor Bridge 
への接続を検出してブロックする方法を開発しています。"
 
 #: https//support.torproject.org/censorship/censorship-7/
 #: (content/censorship/censorship-7/contents+en.lrquestion.description)
@@ -5553,13 +,15 @@ msgid ""
 "[Obfsproxy](https://github.com/Yawning/obfs4/blob/master/doc/obfs4-spec.txt)"
 " bridges address this by adding another layer of obfuscation."
 msgstr ""
+"[Obfsproxy](https://github.com/Yawning/obfs4/blob/master/doc/obfs4-spec.txt)"
+" Bridge は、難読化を行う別の層を追加
することでこれに対処します。"
 
 #: https//support.torproject.org/censorship/censorship-7/
 #: (content/censorship/censorship-7/contents+en.lrquestion.description)
 msgid ""
 "Setting up an obfsproxy bridge requires an additional software package and "
 "additional configurations."
-msgstr ""
+msgstr "Obfsproxy Bridge を設定するには、追加
のソフトウェアパッケージと追加の設定が必要です。"
 
 #: https//support.torproject.org/censorship/censorship-7/
 #: (content/censorship/censorship-7/contents+en.lrquestion.description)
@@ -5567,6 +5571,8 @@ msgid ""
 "See our page on [pluggable transports](https://www.torproject.org/docs;
 "/pluggable-transports.html.en) for more info."
 msgstr ""
+"詳細は、[プラガブルトランスポート](https://www.torproject.org/docs/pluggable-;
+"transports.html.en)のページをご覧ください。"
 
 #: https//support.torproject.org/https/https-1/
 #: (content/https/https-1/contents+en.lrquestion.title)

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/tor-launcher-properties] https://gitweb.torproject.org/translation.git/commit/?h=tor-launcher-properties

2020-11-04 Thread translation
commit 0e1bbc423c0ef1cc689f7b2ab20fc3033fe2793f
Author: Translation commit bot 
Date:   Wed Nov 4 10:48:39 2020 +


https://gitweb.torproject.org/translation.git/commit/?h=tor-launcher-properties
---
 ja/torlauncher.properties | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ja/torlauncher.properties b/ja/torlauncher.properties
index 3be4b943e3..f882ff9df0 100644
--- a/ja/torlauncher.properties
+++ b/ja/torlauncher.properties
@@ -4,8 +4,8 @@
 torlauncher.error_title=Tor Launcher
 
 torlauncher.tor_exited_during_startup=Tor 
が起動中に終了しました。これは、torrc 
ファイルの誤りや、Tor または他のプログラム
のバグ、もしくはハードウェアの故障に起因
しているかもしれません。問題を解決して Tor 
を再起動するまで、Tor Browser は起動されません。
-torlauncher.tor_exited=Tor が突然終了しました。原因はおそらく 
Tor 自体のバグか、他の常駐プログラム
か、あるいはハードウェアーが問題です。Tor 
を再起動するまで、 Tor Browser 
はウェブサイトに一切接続できません。再起動しても解決されないå
 ´åˆã€Tor ログファイルをサポートチームに送信してくだ
さい。
-torlauncher.tor_exited2=Tor 
を再起動しても、あなたのブラウザータブはそのまま残ります。
+torlauncher.tor_exited=Tor が突然終了しました。原因はおそらく 
Tor 自体のバグか、他の常駐プログラム
か、あるいはハードウェアが問題です。Tor 
を再起動するまで、 Tor Browser 
はウェブサイトに一切接続できません。再起動しても解決されないå
 ´åˆã€Tor ログファイルをサポートチームに送信してくだ
さい。
+torlauncher.tor_exited2=Tor 
を再起動しても、あなたのブラウザタブはそのまま残ります。
 
torlauncher.tor_controlconn_failed=Torのコントロールポートに接続出来ませんでした。
 torlauncher.tor_failed_to_start=Torは開始出来ませんでした。
 torlauncher.tor_control_failed=Tor の制御に失敗しました。

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/communitytpo-contentspot] https://gitweb.torproject.org/translation.git/commit/?h=communitytpo-contentspot

2020-11-04 Thread translation
commit 5bb826c9c39714f14fbeabcd40ceb64df3fc0521
Author: Translation commit bot 
Date:   Wed Nov 4 10:45:12 2020 +


https://gitweb.torproject.org/translation.git/commit/?h=communitytpo-contentspot
---
 contents+ja.po | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/contents+ja.po b/contents+ja.po
index 52a5d23fbb..dad83a60fe 100644
--- a/contents+ja.po
+++ b/contents+ja.po
@@ -12,6 +12,7 @@
 # Suzuki Smith, 2020
 # h345u37g3 h345u37g3, 2020
 # Ito Takeshi, 2020
+# Kaede, 2020
 # 
 msgid ""
 msgstr ""
@@ -19,7 +20,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-12-11 12:15+CET\n"
 "PO-Revision-Date: 2019-12-11 10:50+\n"
-"Last-Translator: Ito Takeshi, 2020\n"
+"Last-Translator: Kaede, 2020\n"
 "Language-Team: Japanese (https://www.transifex.com/otf/teams/1519/ja/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -955,7 +956,7 @@ msgstr ""
 msgid ""
 "Several countries, including China and Iran, have found ways to detect and "
 "block connections to Tor bridges."
-msgstr ""
+msgstr "中国やイランを含むいくつかの国が、Tor Bridge 
への接続を検出してブロックする方法を開発しています。"
 
 #: https//community.torproject.org/relay/types-of-relays/
 #: (content/relay-operations/types-of-relays/contents+en.lrpage.body)

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal

2020-11-04 Thread translation
commit e91128ce663cb175ae2698a5c1c559c67927268f
Author: Translation commit bot 
Date:   Wed Nov 4 10:19:43 2020 +

https://gitweb.torproject.org/translation.git/commit/?h=support-portal
---
 contents+ja.po | 23 ++-
 1 file changed, 14 insertions(+), 9 deletions(-)

diff --git a/contents+ja.po b/contents+ja.po
index bcc445fb70..e63db95cc7 100644
--- a/contents+ja.po
+++ b/contents+ja.po
@@ -5051,19 +5051,19 @@ msgstr "* Windows"
 msgid ""
 "Tor Browser won't connect, but it doesn’t seem to be an issue with "
 "censorship."
-msgstr "Tor 
Browserが接続出来ませんが、検閲の問題ではないようです。"
+msgstr "検閲以外の理由で Tor Browser 
がネットワークに接続出来ません。"
 
 #: https//support.torproject.org/connecting/connecting-1/
 #: (content/connecting/connecting-1/contents+en.lrquestion.description)
 msgid ""
 "One of the most common issues that causes connection errors in Tor Browser "
 "is an incorrect system clock."
-msgstr ""
+msgstr "Tor Browser の接続エラーのよくある原因は、システム
の日時が正しく設定されていないことです。"
 
 #: https//support.torproject.org/connecting/connecting-1/
 #: (content/connecting/connecting-1/contents+en.lrquestion.description)
 msgid "Please make sure your system clock and timezone are set accurately."
-msgstr "システムクロックとタイム
ゾーンが正しく設定されていることを確認してください。"
+msgstr "システムの日時とタイム
ゾーンが正しく設定されていることをご確認ください。"
 
 #: https//support.torproject.org/connecting/connecting-1/
 #: (content/connecting/connecting-1/contents+en.lrquestion.description)
@@ -5071,8 +5071,8 @@ msgid ""
 "If this doesn't fix the problem, see the Troubleshooting page on the [Tor "
 "Browser manual](https://tb-manual.torproject.org/en-US/troubleshooting)."
 msgstr ""
-"問題が解決しない場合、[Tor Browser 
manual](https://tb-manual.torproject.org/en-;
-"US/troubleshooting)のトラブルシューティングページをご覧くã
 ã•ã„。"
+"それでも問題が解決しない場合、[Tor Browser 
manual](https://tb-manual.torproject.org/en-;
+"US/troubleshooting) 
のトラブルシューティングページをご覧ください。"
 
 #: https//support.torproject.org/connecting/connecting-2/
 #: (content/connecting/connecting-2/contents+en.lrquestion.title)
@@ -5499,14 +5499,14 @@ msgstr ""
 #: https//support.torproject.org/censorship/censorship-7/
 #: (content/censorship/censorship-7/contents+en.lrquestion.title)
 msgid "What is a bridge?"
-msgstr "bridgeとは?"
+msgstr "Bridge とは?"
 
 #: https//support.torproject.org/censorship/censorship-7/
 #: (content/censorship/censorship-7/contents+en.lrquestion.description)
 msgid ""
 "Bridge relays are Tor relays that are not listed in the public Tor "
 "directory."
-msgstr ""
+msgstr "Bridge リレーは、公開 Tor 
ディレクトリに掲載されない Tor リレーです。"
 
 #: https//support.torproject.org/censorship/censorship-7/
 #: (content/censorship/censorship-7/contents+en.lrquestion.description)
@@ -5514,6 +5514,7 @@ msgid ""
 "That means that ISPs or governments trying to block access to the Tor "
 "network can't simply block all bridges."
 msgstr ""
+"これにより、Tor 
ネットワークへのアクセスを検閲しようとしている ISP 
や政府は、簡単にすべての Bridge 
をブロックすることは出来ません。"
 
 #: https//support.torproject.org/censorship/censorship-7/
 #: (content/censorship/censorship-7/contents+en.lrquestion.description)
@@ -5522,12 +5523,14 @@ msgid ""
 "who want an extra layer of security because they're worried somebody will "
 "recognize that they are contacting a public Tor relay IP address."
 msgstr ""
+"Bridge は、抑圧的な体制下にある Tor ユーザーや、公開 Tor 
リレーの IP "
+"アドレスと通信していることを第三者
に知られたくないユーザーが、さらにセキュリティを強化したいå
 ´åˆã«ä¾¿åˆ©ã§ã™ã€‚"
 
 #: https//support.torproject.org/censorship/censorship-7/
 #: (content/censorship/censorship-7/contents+en.lrquestion.description)
 msgid ""
 "A bridge is just a normal relay with a slightly different configuration."
-msgstr ""
+msgstr "Bridge は通常のリレーの構成を少し変えただ
けのものです。"
 
 #: https//support.torproject.org/censorship/censorship-7/
 #: (content/censorship/censorship-7/contents+en.lrquestion.description)
@@ -7496,7 +7499,7 @@ msgstr "正しくå…
¥åŠ›ã—ているにもかかわらず、オニオンサービ
 msgid ""
 "There may be a temporary connection issue, or the site operators may have "
 "allowed it to go offline without warning."
-msgstr ""
+msgstr 
"一時的に接続に問題が発生していたり、サイト運営者

[tor-commits] [translation/torbutton-torbuttonproperties] https://gitweb.torproject.org/translation.git/commit/?h=torbutton-torbuttonproperties

2020-11-04 Thread translation
commit 3e6bb1dabee25664587589d35eb80467b20cd397
Author: Translation commit bot 
Date:   Wed Nov 4 10:18:50 2020 +


https://gitweb.torproject.org/translation.git/commit/?h=torbutton-torbuttonproperties
---
 sw/torbutton.properties | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sw/torbutton.properties b/sw/torbutton.properties
index 0764a28249..c6a6737310 100644
--- a/sw/torbutton.properties
+++ b/sw/torbutton.properties
@@ -72,8 +72,8 @@ onionServices.errorPage.onionSite=Tovuti ya Onion
 # Tor SOCKS error 0xF0:
 onionServices.descNotFound.pageTitle=Tatizo la upakiaji kwenye tovuti ya onion
 onionServices.descNotFound.header=Tovuti ya Onion haijapatikana
-onionServices.descNotFound=The most likely cause is that the onionsite is 
offline. Contact the onionsite administrator.
-onionServices.descNotFound.longDescription=Details: %S — The requested onion 
service descriptor can't be found on the hashring and therefore the service is 
not reachable by the client.
+onionServices.descNotFound=Kinachopendwa sana ni tovuti ya onion ipo nje ya 
mtandao. Wasiliana kwa tovuti ya onion iliyoandikwa.
+onionServices.descNotFound.longDescription=Maelezo: %S — Maombi ya huduma ya 
maelezo ya onion hayawezi kufanya kazi kwenye hashring na kwa ujumla huduma 
haipatikani kwa wateja. 
 # Tor SOCKS error 0xF1:
 onionServices.descInvalid.pageTitle=Tatizo la upakiaji kwenye tovuti ya onion
 onionServices.descInvalid.header=Tovuti ya onion haijaweza Kufikiwa
@@ -82,7 +82,7 @@ onionServices.descInvalid.longDescription=Maelezo: %S — 
Maobi ya huduma ya oni
 # Tor SOCKS error 0xF2:
 onionServices.introFailed.pageTitle=Tatizo la upakiaji kwenye tovuti ya onion
 onionServices.introFailed.header=Tovuti ya onion haijaweza kuunganishwa
-onionServices.introFailed=The most likely cause is that the onionsite is 
offline. Contact the onionsite administrator.
+onionServices.introFailed=Kinachopendwa sana ni tovuti ya onion ipo nje ya 
mtandao. Wasiliana kwa tovuti ya onion iliyoandikwa.
 onionServices.introFailed.longDescription=Details: %S — Introduction failed, 
which means that the descriptor was found but the service is no longer 
connected to the introduction point. It is likely that the service has changed 
its descriptor or that it is not running.
 # Tor SOCKS error 0xF3:
 onionServices.rendezvousFailed.pageTitle=Tatizo la upakiaji kwenye tovuti ya 
onion

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/tor-launcher-network-settings] https://gitweb.torproject.org/translation.git/commit/?h=tor-launcher-network-settings

2020-11-04 Thread translation
commit 034efd934e0ea92e0f82c269d615d235ba42a980
Author: Translation commit bot 
Date:   Wed Nov 4 10:19:20 2020 +


https://gitweb.torproject.org/translation.git/commit/?h=tor-launcher-network-settings
---
 sw/network-settings.dtd | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sw/network-settings.dtd b/sw/network-settings.dtd
index 95bdcaa425..e2a96ab772 100644
--- a/sw/network-settings.dtd
+++ b/sw/network-settings.dtd
@@ -56,7 +56,7 @@ nenosiri">
 
 
 
-
+
 
 
 
@@ -74,7 +74,7 @@ nenosiri">
 
 
 
-
+
 
 
 

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/tbmanual-contentspot] https://gitweb.torproject.org/translation.git/commit/?h=tbmanual-contentspot

2020-11-04 Thread translation
commit 276417f3d95e8e77154230b44aee8b2cbd12e000
Author: Translation commit bot 
Date:   Wed Nov 4 10:18:12 2020 +

https://gitweb.torproject.org/translation.git/commit/?h=tbmanual-contentspot
---
 contents+ja.po | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/contents+ja.po b/contents+ja.po
index ff339b0776..278075 100644
--- a/contents+ja.po
+++ b/contents+ja.po
@@ -14,6 +14,7 @@
 # Ito Takeshi, 2020
 # Gus, 2020
 # 323484, 2020
+# Kaede, 2020
 # 
 msgid ""
 msgstr ""
@@ -21,7 +22,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-04-12 08:00+CET\n"
 "PO-Revision-Date: 2018-11-14 12:31+\n"
-"Last-Translator: 323484, 2020\n"
+"Last-Translator: Kaede, 2020\n"
 "Language-Team: Japanese (https://www.transifex.com/otf/teams/1519/ja/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -2383,7 +2384,7 @@ msgstr "### 回避"
 msgid ""
 "Bridge relays are Tor relays that are not listed in the public Tor "
 "directory."
-msgstr ""
+msgstr "Bridge リレーは、公開 Tor 
ディレクトリに掲載されない Tor リレーです。"
 
 #: https//tb-manual.torproject.org/mobile-tor/
 #: (content/mobile-tor/contents+en.lrtopic.body)
@@ -2392,6 +2393,8 @@ msgid ""
 "who want an extra layer of security because they're worried somebody will "
 "recognize that they are contacting a public Tor relay IP address."
 msgstr ""
+"Bridge は、抑圧的な体制下にある Tor ユーザーや、公開 Tor 
リレーの IP "
+"アドレスと通信していることを第三者
に知られたくないユーザーが、さらにセキュリティを強化したいå
 ´åˆã«ä¾¿åˆ©ã§ã™ã€‚"
 
 #: https//tb-manual.torproject.org/mobile-tor/
 #: (content/mobile-tor/contents+en.lrtopic.body)

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/tor-launcher-network-settings] https://gitweb.torproject.org/translation.git/commit/?h=tor-launcher-network-settings

2020-11-04 Thread translation
commit 4a6e87ae3c1807e378a6c37012427b89f6d1c7ef
Author: Translation commit bot 
Date:   Wed Nov 4 09:48:10 2020 +


https://gitweb.torproject.org/translation.git/commit/?h=tor-launcher-network-settings
---
 sw/network-settings.dtd | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/sw/network-settings.dtd b/sw/network-settings.dtd
index 1674be7fc6..95bdcaa425 100644
--- a/sw/network-settings.dtd
+++ b/sw/network-settings.dtd
@@ -10,7 +10,7 @@
 
 
 
-
+
 
 
 
@@ -53,14 +53,14 @@ nenosiri">
 
 
 
-
+
 
 
 
-
+
 
 
-
+
 
 
 
@@ -68,7 +68,7 @@ nenosiri">
 
 
 
-
+
 
 
 

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal

2020-11-04 Thread translation
commit e618f4383379ba7cd71fb0df5d687acf070359d0
Author: Translation commit bot 
Date:   Wed Nov 4 09:48:25 2020 +

https://gitweb.torproject.org/translation.git/commit/?h=support-portal
---
 contents+ja.po | 8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/contents+ja.po b/contents+ja.po
index e75ad7d3b7..bcc445fb70 100644
--- a/contents+ja.po
+++ b/contents+ja.po
@@ -86,7 +86,7 @@ msgstr "Tor の入手方法"
 #: https//support.torproject.org/misc/menu/
 #: (content/misc/menu/contents+en.lrquestion.description)
 msgid "Connecting To Tor"
-msgstr "Tor に接続しています"
+msgstr "Tor への接続"
 
 #: https//support.torproject.org/censorship/
 #: (content/censorship/contents+en.lrtopic.title)
@@ -7471,7 +7471,7 @@ msgstr ""
 #: https//support.torproject.org/onionservices/onionservices-3/
 #: (content/onionservices/onionservices-3/contents+en.lrquestion.title)
 msgid "I cannot reach X.onion!"
-msgstr "X.onionを取得できません!"
+msgstr "X.onion に接続できません!"
 
 #: https//support.torproject.org/onionservices/onionservices-3/
 #: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
@@ -7481,13 +7481,15 @@ msgid ""
 "correctly: even a small mistake will stop Tor Browser from being able to "
 "reach the site."
 msgstr ""
+"オニオンサービスに接続できないå 
´åˆã€ã‚ªãƒ‹ã‚ªãƒ³ã‚¢ãƒ‰ãƒ¬ã‚¹ãŒ16文字または最新形式の56文字の正しい形式でå
…¥åŠ›ã•ã‚Œã¦ã„るかどうかご確認くだ
さい。1文字でも間違えている場合、Tor"
+" Browser はサイトに接続できません。"
 
 #: https//support.torproject.org/onionservices/onionservices-3/
 #: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
 msgid ""
 "If you are still unable to connect to the onion service, please try again "
 "later."
-msgstr ""
+msgstr "正しくå…
¥åŠ›ã—ているにもかかわらず、オニオンサービスに接続できないå
 ´åˆã¯ã€æ™‚間を空けてもう一度お試しください。"
 
 #: https//support.torproject.org/onionservices/onionservices-3/
 #: (content/onionservices/onionservices-3/contents+en.lrquestion.description)

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/tails-openpgp-applet] https://gitweb.torproject.org/translation.git/commit/?h=tails-openpgp-applet

2020-11-04 Thread translation
commit 9948025160ab9ab13ab004f9f5827e8ffee29988
Author: Translation commit bot 
Date:   Wed Nov 4 09:46:53 2020 +

https://gitweb.torproject.org/translation.git/commit/?h=tails-openpgp-applet
---
 sw/openpgp-applet.pot | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/sw/openpgp-applet.pot b/sw/openpgp-applet.pot
index a69d8907eb..f0b96918cb 100644
--- a/sw/openpgp-applet.pot
+++ b/sw/openpgp-applet.pot
@@ -9,7 +9,7 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: ta...@boum.org\n"
 "POT-Creation-Date: 2017-08-05 15:07-0400\n"
-"PO-Revision-Date: 2020-11-04 09:16+\n"
+"PO-Revision-Date: 2020-11-04 09:26+\n"
 "Last-Translator: Zaituni Njovu \n"
 "Language-Team: Swahili 
(http://www.transifex.com/otf/torproject/language/sw/)\n"
 "MIME-Version: 1.0\n"
@@ -155,7 +155,7 @@ msgstr "Hakuna Funguo"
 #: bin/openpgp-applet:655
 msgid ""
 "You need a private key to sign messages or a public key to encrypt messages."
-msgstr ""
+msgstr "Unataka ufunguo wa faragha kwa ishara ya ujumbe au ufunguo wa umma kwa 
fiche ujumbe."
 
 #: bin/openpgp-applet:783
 msgid "GnuPG error"
@@ -163,7 +163,7 @@ msgstr "kosa la GnuPG "
 
 #: bin/openpgp-applet:804
 msgid "Therefore the operation cannot be performed."
-msgstr ""
+msgstr "Kwa ujumla uendeshwaji haujaeza kufaulu."
 
 #: bin/openpgp-applet:854
 msgid "GnuPG results"
@@ -171,8 +171,8 @@ msgstr "Matokeo ya GnuPG"
 
 #: bin/openpgp-applet:860
 msgid "Output of GnuPG:"
-msgstr ""
+msgstr "Zao kwa  GnuPG:"
 
 #: bin/openpgp-applet:885
 msgid "Other messages provided by GnuPG:"
-msgstr ""
+msgstr "ujumbe mwingine unatoa kupitia GnuPG:"

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/tor-launcher-properties] https://gitweb.torproject.org/translation.git/commit/?h=tor-launcher-properties

2020-11-04 Thread translation
commit af1b74cc3402ada281c5aa1fb369c446e0f17325
Author: Translation commit bot 
Date:   Wed Nov 4 09:17:57 2020 +


https://gitweb.torproject.org/translation.git/commit/?h=tor-launcher-properties
---
 sw/torlauncher.properties | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/sw/torlauncher.properties b/sw/torlauncher.properties
index baef6bdeea..33085b5d25 100644
--- a/sw/torlauncher.properties
+++ b/sw/torlauncher.properties
@@ -3,8 +3,8 @@
 
 torlauncher.error_title=Uzinduzi wa Tor
 
-torlauncher.tor_exited_during_startup=Tor exited during startup. This might be 
due to an error in your torrc file, a bug in Tor or another program on your 
system, or faulty hardware. Until you fix the underlying problem and restart 
Tor, Tor Browser will not start.
-torlauncher.tor_exited=Tor unexpectedly exited. This might be due to a bug in 
Tor itself, another program on your system, or faulty hardware. Until you 
restart Tor, the Tor Browser will not able to reach any websites. If the 
problem persists, please send a copy of your Tor Log to the support team.
+torlauncher.tor_exited_during_startup=Tor imetoa wakati wa kuanza. Hii inaweza 
kupitia kwenye kosa kwenye faili lako la torrc, hitilafu kwenye Tor au kwenye 
programu nyingine kwenye mfumo wako, auvifaa vibovu. mpaka urekebishe kosa 
lilopigiwa mstari na anzisha Tor, Kivinjari cha Tor hakitaweza kuanza.
+torlauncher.tor_exited=Tor iliondoka bila kutarajia. Hii inaweza kua kwenye 
hitilafu kwenye Tor yenyewe, programu nyingine kwenye mfumo wako, au vifaa 
vibovu. Mpaka uianzishe Tor, Kivinjari cha Tor hakitaweza kuunda kufikia tovuti 
yeyote. Kama tatizo linaendelea, Tafadhali tuma nakala ya Tor log yako kwa 
kusaidia timu.
 torlauncher.tor_exited2=Kuanza upya kwa Tor haiwezi kufunga kivinjari chako 
cha tabo.
 torlauncher.tor_controlconn_failed=Haiwezi kuunganisha kwa Tor kwa 
kuthibitisha porti.
 torlauncher.tor_failed_to_start=Tor imeshindwa kuanza.
@@ -21,9 +21,9 @@ torlauncher.password_hash_missing=Kushindwa kupata nywila ya 
haraka.
 
 torlauncher.failed_to_get_settings=Haiwezi kupata tena mpangilio wa Tor. \n\n%S
 torlauncher.failed_to_save_settings=Kuezesha mpangilio wa kuokoa Tor.\n\n%S
-torlauncher.ensure_tor_is_running=Please ensure that Tor is running.
+torlauncher.ensure_tor_is_running=Tafadhali hakiki kwamba Tor inafanyakazi.
 
-torlauncher.error_proxy_addr_missing=You must specify both an IP address or 
hostname and a port number to configure Tor to use a proxy to access the 
Internet.
+torlauncher.error_proxy_addr_missing=Lazima uweke zote za kipekee anwani ya IP 
au jina la mgeni na namba ya porti kwa kusanidi Tor kwa kutumia wakala ili 
kufikia mtandao.
 torlauncher.error_proxy_type_missing=Lazima uchague aina ya wakala.
 torlauncher.error_bridges_missing=Lazima utaje moja au madaraja zaidi.
 torlauncher.error_default_bridges_type_missing=Lazima utaje aina ya usafiri 
kwa madaraja yanayotolewa.

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/tails-openpgp-applet] https://gitweb.torproject.org/translation.git/commit/?h=tails-openpgp-applet

2020-11-04 Thread translation
commit cd8aae8d497da1d21c67f28a2864397e097d3070
Author: Translation commit bot 
Date:   Wed Nov 4 09:16:52 2020 +

https://gitweb.torproject.org/translation.git/commit/?h=tails-openpgp-applet
---
 sw/openpgp-applet.pot | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sw/openpgp-applet.pot b/sw/openpgp-applet.pot
index 9ba1179f05..a69d8907eb 100644
--- a/sw/openpgp-applet.pot
+++ b/sw/openpgp-applet.pot
@@ -9,7 +9,7 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: ta...@boum.org\n"
 "POT-Creation-Date: 2017-08-05 15:07-0400\n"
-"PO-Revision-Date: 2020-10-07 12:27+\n"
+"PO-Revision-Date: 2020-11-04 09:16+\n"
 "Last-Translator: Zaituni Njovu \n"
 "Language-Team: Swahili 
(http://www.transifex.com/otf/torproject/language/sw/)\n"
 "MIME-Version: 1.0\n"
@@ -167,7 +167,7 @@ msgstr ""
 
 #: bin/openpgp-applet:854
 msgid "GnuPG results"
-msgstr ""
+msgstr "Matokeo ya GnuPG"
 
 #: bin/openpgp-applet:860
 msgid "Output of GnuPG:"

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/fenix-torbrowserstringsxml] https://gitweb.torproject.org/translation.git/commit/?h=fenix-torbrowserstringsxml

2020-11-04 Thread translation
commit ced12539752159a97407714eac658e614a2c2906
Author: Translation commit bot 
Date:   Wed Nov 4 09:15:28 2020 +


https://gitweb.torproject.org/translation.git/commit/?h=fenix-torbrowserstringsxml
---
 sw/torbrowser_strings.xml | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/sw/torbrowser_strings.xml b/sw/torbrowser_strings.xml
index 4102000ca2..77b7513ea0 100644
--- a/sw/torbrowser_strings.xml
+++ b/sw/torbrowser_strings.xml
@@ -2,6 +2,9 @@
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
 
+
+%1$s imetengenezwana Mradi wa Tor, 
U.S.-msingi 501(3) hakuna faida.
+
 
 Ruhusu Njia ya Kuvinjari 
Binafsi tu
 
@@ -20,6 +23,7 @@
 
 Weka kiwango cha usalama 
wako
 Hakika hulemaza 
vipengele vya wavuti ambazo zinaeza kutumika kukushambulia, na madhara ya 
usalama wako, kutojulikana, na faragha.
+Aina ya usalama 
wa Sasa: %s
 Fungua mpangilio wa 
kiusalama
 Toa na weka Tor salama
 Tor ni bure kutumia kwa 
sababu ya michango kutoka kwa watu kama wewe.
@@ -66,6 +70,9 @@
 Salama
 Kufikia tu vipengele 
vya wavuti vinahitaji tovuti ya tarakimu na huduma maalumu. Mabadiliko haya 
yana athiri picha, media, na hati.
 
+
+Maombi ya Toleo la Kingereza kwa ukurasa 
wa tovuti kwa muongezeko wa faragha
+
 Tumia barakoa, tumia Tor.
 Pinga janga la uchunguzi
 

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits