[tor-commits] [translation/tails-misc] Update translations for tails-misc

2019-01-30 Thread translation
commit f40e1aa5ae4c1dd7e61c245ca2b57138e3f838cd
Author: Translation commit bot 
Date:   Thu Jan 31 07:46:14 2019 +

Update translations for tails-misc
---
 id.po | 18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/id.po b/id.po
index 109433586..f36dc1190 100644
--- a/id.po
+++ b/id.po
@@ -20,7 +20,7 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-01-14 21:20+0100\n"
-"PO-Revision-Date: 2019-01-31 07:14+\n"
+"PO-Revision-Date: 2019-01-31 07:35+\n"
 "Last-Translator: ical\n"
 "Language-Team: Indonesian 
(http://www.transifex.com/otf/torproject/language/id/)\n"
 "MIME-Version: 1.0\n"
@@ -327,25 +327,25 @@ msgstr "Hapus {package} dari perangkat lunak tambahan 
Anda? Ini akan menghentika
 #: 
config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
 #, python-brace-format
 msgid "Failed to remove {pkg}"
-msgstr ""
+msgstr "Gagal menghapus {pkg}"
 
 #: 
config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
 msgid "Failed to read additional software configuration"
-msgstr ""
+msgstr "Gagal membaca konfigurasi perangkat lunak tambahan"
 
 #. Translators: Don't translate {package}, it's a placeholder and will be
 #. replaced.
 #: 
config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
 #, python-brace-format
 msgid "Stop installing {package} automatically"
-msgstr ""
+msgstr "Hentikan pemasangan {package} secara otomatis"
 
 #: 
config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
 msgid ""
 "To do so, install some software using Synaptic "
 "Package Manager or APT on the "
 "command line."
-msgstr ""
+msgstr "Untuk melakukannya, pasang perangkat lunak menggunakan Synaptic Package Manager atau APT pada baris perintah."
 
 #: 
config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
 msgid ""
@@ -353,24 +353,24 @@ msgid ""
 "some software using Synaptic Package "
 "Manager or APT on the command "
 "line."
-msgstr ""
+msgstr "Untuk melakukannya, buka kunci penyimpanan tetap Anda saat memulai 
Tails dan pasang perangkat lunak menggunakan Synaptic Package Manager atau APT pada baris perintah."
 
 #: 
config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
 msgid ""
 "To do so, create a persistent storage and install some software using Synaptic Package Manager or APT on the command line."
-msgstr ""
+msgstr "Untuk melakukannya, buat sebuah penyimpanan tetap dan pasang perangkat 
luna menggunakan Synaptic Package Manager atau 
APT pada baris perintah."
 
 #: 
config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
 msgid ""
 "To do so, install Tails on a USB stick using Tails Installer and create a persistent storage."
-msgstr ""
+msgstr "Untuk melakukannya, pasang Tails pada stik USB menggunakan Tails Installer dan buat sebuah 
penyimpanan tetap."
 
 #: 
config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
 msgid "[package not available]"
-msgstr ""
+msgstr "[paket tidak tersedia]"
 
 #: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:52
 msgid "Synchronizing the system's clock"

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


[tor-commits] [meek/utls_2] Update a comment for utls.

2019-01-30 Thread dcf
commit 8676bcc500c2a36bdaa25788107ede050288aaef
Author: David Fifield 
Date:   Thu Jan 31 00:07:43 2019 -0700

Update a comment for utls.
---
 meek-client/meek-client.go | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meek-client/meek-client.go b/meek-client/meek-client.go
index 268c774..d773dcb 100644
--- a/meek-client/meek-client.go
+++ b/meek-client/meek-client.go
@@ -79,9 +79,9 @@ const (
helperWriteTimeout  = 2 * time.Second
 )
 
-// We use this RoundTripper to make all our requests when --helper is not
-// in effect. We use the defaults, except we take control of the Proxy setting
-// (notably, disabling the default ProxyFromEnvironment).
+// We use this RoundTripper to make all our requests when neither --helper nor
+// utls is in effect. We use the defaults, except we take control of the Proxy
+// setting (notably, disabling the default ProxyFromEnvironment).
 var httpRoundTripper *http.Transport = http.DefaultTransport.(*http.Transport)
 
 // We use this RoundTripper when --helper is in effect.



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


[tor-commits] [meek/utls_2] utls: copy default timeouts etc. when using HTTP/1.

2019-01-30 Thread dcf
commit 52bc759ac35ade721c87f53ba2d341a68c715c32
Author: David Fifield 
Date:   Thu Jan 31 00:22:11 2019 -0700

utls: copy default timeouts etc. when using HTTP/1.

Unfortunately I don't know a way to do the same for HTTP/2. Configuring
an http.Transport and then calling http2.ConfigureTransport on it
doesn't work; it leads to the same problem of an HTTP/1 client speaking
to an HTTP/2 server.
---
 meek-client/utls.go | 33 +++--
 1 file changed, 31 insertions(+), 2 deletions(-)

diff --git a/meek-client/utls.go b/meek-client/utls.go
index 9076549..2c9c52e 100644
--- a/meek-client/utls.go
+++ b/meek-client/utls.go
@@ -39,6 +39,7 @@ import (
"net"
"net/http"
"net/url"
+   "reflect"
"strings"
"sync"
 
@@ -46,6 +47,25 @@ import (
"golang.org/x/net/http2"
 )
 
+// Copy the public fields (fields for which CanSet is true) from src to dst.
+// src and dst must be pointers to the same type. We use this to make copies of
+// httpRoundTripper. We cannot use struct assignment, because http.Transport
+// contains private mutexes. The idea of using reflection to copy only the
+// public fields comes from a post by Nick Craig-Wood:
+// https://groups.google.com/d/msg/Golang-Nuts/SDiGYNVE8iY/89hRKTF4BAAJ
+func copyPublicFields(dst, src interface{}) {
+   if reflect.TypeOf(dst) != reflect.TypeOf(src) {
+   panic("unequal types")
+   }
+   dstValue := reflect.ValueOf(dst).Elem()
+   srcValue := reflect.ValueOf(src).Elem()
+   for i := 0; i < dstValue.NumField(); i++ {
+   if dstValue.Field(i).CanSet() {
+   dstValue.Field(i).Set(srcValue.Field(i))
+   }
+   }
+}
+
 // Extract a host:port address from a URL, suitable for passing to net.Dial.
 func addrForDial(url *url.URL) (string, error) {
host := url.Hostname()
@@ -164,6 +184,10 @@ func makeRoundTripper(req *http.Request, clientHelloID 
*utls.ClientHelloID) (htt
// Construct an http.Transport or http2.Transport depending on ALPN.
switch protocol {
case http2.NextProtoTLS:
+   // Unfortunately http2.Transport does not expose the same
+   // configuration options as http.Transport with regard to
+   // timeouts, etc., so we are at the mercy of the defaults.
+   // https://github.com/golang/go/issues/16581
return {
DialTLS: func(network, addr string, _ *tls.Config) 
(net.Conn, error) {
// Ignore the *tls.Config parameter; use our
@@ -172,8 +196,13 @@ func makeRoundTripper(req *http.Request, clientHelloID 
*utls.ClientHelloID) (htt
},
}, nil
default:
-   // TODO: copy public fields from httpRoundTripper?
-   return {DialTLS: dialTLS}, nil
+   // With http.Transport, copy important default fields from
+   // http.DefaultTransport, such as TLSHandshakeTimeout and
+   // IdleConnTimeout.
+   tr := {}
+   copyPublicFields(tr, httpRoundTripper)
+   tr.DialTLS = dialTLS
+   return tr, nil
}
 }
 

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


[tor-commits] [translation/tails-misc] Update translations for tails-misc

2019-01-30 Thread translation
commit f9aaeffcaf0782103f68ce637a6c6f3048bc916d
Author: Translation commit bot 
Date:   Thu Jan 31 07:16:14 2019 +

Update translations for tails-misc
---
 id.po | 22 +++---
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/id.po b/id.po
index b075dbecd..109433586 100644
--- a/id.po
+++ b/id.po
@@ -20,7 +20,7 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-01-14 21:20+0100\n"
-"PO-Revision-Date: 2019-01-31 05:57+\n"
+"PO-Revision-Date: 2019-01-31 07:14+\n"
 "Last-Translator: ical\n"
 "Language-Team: Indonesian 
(http://www.transifex.com/otf/torproject/language/id/)\n"
 "MIME-Version: 1.0\n"
@@ -259,14 +259,14 @@ msgstr ""
 #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
-msgstr ""
+msgstr "Hapus {packages} dari perangkat lunak tambahan Anda?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
 #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
-msgstr ""
+msgstr "Ini akan menghentikan pemasangan {packages} secara otomatis."
 
 #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
 msgid "Remove"
@@ -280,34 +280,34 @@ msgstr "Batal"
 
 #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
 msgid "Installing your additional software from persistent storage..."
-msgstr ""
+msgstr "Memasang perangkat lunak tambahan Anda dari penyimpanan tetap..."
 
 #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
 msgid "This can take several minutes."
-msgstr ""
+msgstr "Ini akan memakan waktu beberapa menit."
 
 #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
 msgid "The installation of your additional software failed"
-msgstr ""
+msgstr "Pemasangan perangkat lunak tambahan Anda gagal"
 
 #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
 msgid "Additional software installed successfully"
-msgstr ""
+msgstr "Perangkat lunak tambahan berhasil terpasang"
 
 #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
 msgid "The check for upgrades of your additional software failed"
-msgstr ""
+msgstr "Pengecekan pemutakhiran untuk perangkat lunak tambahan Anda gagal"
 
 #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
 #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
-msgstr ""
+msgstr "Mohon periksa koneksi jaringan anda, mulai ulang Tails, atau baca 
catatan sistem untuk memahami masalahnya."
 
 #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
 msgid "The upgrade of your additional software failed"
-msgstr ""
+msgstr "Pembaruan perangkat lunak tambahan Anda gagal"
 
 #: 
config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
 msgid "Documentation"
@@ -320,7 +320,7 @@ msgstr "Dokumentasi"
 msgid ""
 "Remove {package} from your additional software? This will stop installing "
 "the package automatically."
-msgstr ""
+msgstr "Hapus {package} dari perangkat lunak tambahan Anda? Ini akan 
menghentikan pemasangan paket secara otomatis."
 
 #. Translators: Don't translate {pkg}, it's a placeholder and will be
 #. replaced.

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


[tor-commits] [translation/whisperback_completed] Update translations for whisperback_completed

2019-01-30 Thread translation
commit f90b9c9cf240eba98523f673245cc2ee4c98a59f
Author: Translation commit bot 
Date:   Thu Jan 31 06:19:49 2019 +

Update translations for whisperback_completed
---
 id/id.po | 103 +--
 1 file changed, 54 insertions(+), 49 deletions(-)

diff --git a/id/id.po b/id/id.po
index d20313a4c..a48da7bc6 100644
--- a/id/id.po
+++ b/id/id.po
@@ -9,18 +9,19 @@
 # Fathan Imanudin , 2014
 # Ferriandy Chianiago , 2015
 # hermawan , 2014
+# ical, 2019
 # Lucas Susanto , 2015
 # Mark Hiro , 2015
-# Mohamad Hasan Al Banna , 2013
+# se7entime , 2013
 # Rendiyono Wahyu Saputro , 2015
 # zk, 2015
 msgid ""
 msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-03-20 12:09+\n"
-"PO-Revision-Date: 2018-04-12 18:55+\n"
-"Last-Translator: Yerry Borang \n"
+"POT-Creation-Date: 2018-06-11 17:17+0200\n"
+"PO-Revision-Date: 2019-01-31 05:53+\n"
+"Last-Translator: ical\n"
 "Language-Team: Indonesian 
(http://www.transifex.com/otf/torproject/language/id/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -34,12 +35,12 @@ msgstr ""
 msgid "Invalid contact email: %s"
 msgstr "Alamat email kontak tidak benar: %s"
 
-#: ../whisperBack/whisperback.py:73
+#: ../whisperBack/whisperback.py:74
 #, python-format
 msgid "Invalid contact OpenPGP key: %s"
 msgstr "Kunci OpenPGP kontak tidak benar: %s"
 
-#: ../whisperBack/whisperback.py:75
+#: ../whisperBack/whisperback.py:76
 msgid "Invalid contact OpenPGP public key block"
 msgstr "Blok kunci umum OpenPGP kontak tidak benar"
 
@@ -47,59 +48,59 @@ msgstr "Blok kunci umum OpenPGP kontak tidak benar"
 #, python-format
 msgid ""
 "The %s variable was not found in any of the configuration files "
-"/etc/whisperback/config.py, ~/.whisperback/config.py, ./config.py"
-msgstr "Variabel %s tidak ditemukan di berkas konfigurasi manapun 
/etc/whisperback/config.py, ~/.whisperback/config.py, ./config.py"
+"/etc/whisperback/config.py, ~/.whisperback/config.py, or ./config.py"
+msgstr "%s variabel tidak ditemukan pada berkas konfigurasi 
/etc/whisperback/config.py, ~/.whisperback/config.py, or ./config.py"
 
-#: ../whisperBack/gui.py:110
+#: ../whisperBack/gui.py:111
 msgid "Name of the affected software"
 msgstr "Nama perangkat lunak yang terpengaruh"
 
-#: ../whisperBack/gui.py:112
+#: ../whisperBack/gui.py:113
 msgid "Exact steps to reproduce the error"
 msgstr "Tahapan rinci untuk memproduksi ulang galat"
 
-#: ../whisperBack/gui.py:114
+#: ../whisperBack/gui.py:115
 msgid "Actual result and description of the error"
 msgstr "Hasil aktual dan deskripsi galat"
 
-#: ../whisperBack/gui.py:116
+#: ../whisperBack/gui.py:117
 msgid "Desired result"
 msgstr "Hasil yang diharapkan"
 
-#: ../whisperBack/gui.py:152
+#: ../whisperBack/gui.py:130
 msgid "Unable to load a valid configuration."
 msgstr "Tidak dapat memuat konfigurasi yang valid."
 
-#: ../whisperBack/gui.py:218
+#: ../whisperBack/gui.py:166
 msgid "Sending mail..."
 msgstr "Mengirimkan surat..."
 
-#: ../whisperBack/gui.py:219
+#: ../whisperBack/gui.py:167
 msgid "Sending mail"
 msgstr "Mengirimkan surat"
 
 #. pylint: disable=C0301
-#: ../whisperBack/gui.py:221
+#: ../whisperBack/gui.py:169
 msgid "This could take a while..."
 msgstr "Membutuhkan beberapa saat..."
 
-#: ../whisperBack/gui.py:236
-msgid "The contact email adress doesn't seem valid."
+#: ../whisperBack/gui.py:185
+msgid "The contact email address doesn't seem valid."
 msgstr "Alamat surel kontak sepertinya tidak valid."
 
-#: ../whisperBack/gui.py:253
+#: ../whisperBack/gui.py:202
 msgid "Unable to send the mail: SMTP error."
 msgstr "Tidak dapat mengirim surat: galat SMTP."
 
-#: ../whisperBack/gui.py:255
+#: ../whisperBack/gui.py:204
 msgid "Unable to connect to the server."
 msgstr "Tidak visa terhubung dengan server."
 
-#: ../whisperBack/gui.py:257
+#: ../whisperBack/gui.py:206
 msgid "Unable to create or to send the mail."
 msgstr "Tidak dapat membuat atau mengirim surat."
 
-#: ../whisperBack/gui.py:260
+#: ../whisperBack/gui.py:209
 msgid ""
 "\n"
 "\n"
@@ -108,20 +109,20 @@ msgid ""
 "If it does not work, you will be offered to save the bug report."
 msgstr "\n\nPelaporan kutu tidak bisa dikirimkan, sepertinya karena masalah 
jaringan. Mohon coba sambungkan kembali jaringan dan klik kirim lagi.\n\nJika 
tidak bisa juga, Anda akan ditawari untuk menyimpan laporan kutu tersebut."
 
-#: ../whisperBack/gui.py:273
+#: ../whisperBack/gui.py:222
 msgid "Your message has been sent."
 msgstr "Pesan Anda telah terkirim."
 
-#: ../whisperBack/gui.py:280
+#: ../whisperBack/gui.py:229
 msgid "An error occured during encryption."
 msgstr "Sebuah galat terjadi saat proses enkripsi."
 
-#: ../whisperBack/gui.py:300
+#: ../whisperBack/gui.py:249
 #, python-format
 msgid "Unable to save %s."
 msgstr "Tidak bisa menyimpan %s."
 
-#: ../whisperBack/gui.py:323
+#: ../whisperBack/gui.py:272
 #, python-format
 

[tor-commits] [translation/whisperback] Update translations for whisperback

2019-01-30 Thread translation
commit 0a576ef871fb90020b77877c9eb828251bec
Author: Translation commit bot 
Date:   Thu Jan 31 06:19:43 2019 +

Update translations for whisperback
---
 id/id.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/id/id.po b/id/id.po
index 949cfc69e..a48da7bc6 100644
--- a/id/id.po
+++ b/id/id.po
@@ -20,7 +20,7 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-06-11 17:17+0200\n"
-"PO-Revision-Date: 2019-01-31 05:49+\n"
+"PO-Revision-Date: 2019-01-31 05:53+\n"
 "Last-Translator: ical\n"
 "Language-Team: Indonesian 
(http://www.transifex.com/otf/torproject/language/id/)\n"
 "MIME-Version: 1.0\n"
@@ -203,11 +203,11 @@ msgstr "Bantuan:"
 
 #: ../data/whisperback.ui.h:25
 msgid "Read our bug reporting guidelines."
-msgstr ""
+msgstr "Lihat panduan pelaporan bug kami."
 
 #: ../data/whisperback.ui.h:26
 msgid "Email address (if you want an answer from us)"
-msgstr ""
+msgstr "Alamat surel (Jika Anda ingin jawaban dari kami)"
 
 #: ../data/whisperback.ui.h:27
 msgid "optional PGP key"

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


[tor-commits] [translation/tails-misc] Update translations for tails-misc

2019-01-30 Thread translation
commit 5af863c767971a6f4d7a46cf58847afc98db561c
Author: Translation commit bot 
Date:   Thu Jan 31 06:16:11 2019 +

Update translations for tails-misc
---
 id.po | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/id.po b/id.po
index 35f8f62b1..b075dbecd 100644
--- a/id.po
+++ b/id.po
@@ -8,7 +8,7 @@
 # Dwi Cahyono , 2015
 # Frengky Sinaga , 2016
 # Ibnu Daru Aji, 2014
-# ical, 2018
+# ical, 2018-2019
 # se7entime , 2015
 # L1Nus , 2014
 # Robert Dafis , 2018
@@ -20,8 +20,8 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-01-14 21:20+0100\n"
-"PO-Revision-Date: 2019-01-17 01:47+\n"
-"Last-Translator: carolyn \n"
+"PO-Revision-Date: 2019-01-31 05:57+\n"
+"Last-Translator: ical\n"
 "Language-Team: Indonesian 
(http://www.transifex.com/otf/torproject/language/id/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -117,15 +117,15 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/keepassx:25
 msgid "Rename"
-msgstr ""
+msgstr "Ganti nama"
 
 #: config/chroot_local-includes/usr/local/bin/keepassx:26
 msgid "Keep current name"
-msgstr ""
+msgstr "Pertahankan nama saat ini"
 
 #: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
 msgid "su is disabled. Please use sudo instead."
-msgstr ""
+msgstr "su dinonaktifkan. Mohon gunakan sudo sebagai gantinya."
 
 #: 
config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-hel...@tails.boum.org/extension.js:75
 msgid "Restart"
@@ -246,7 +246,7 @@ msgstr "Gagal membuat penyimpanan persisten Anda."
 #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
-msgstr ""
+msgstr "Anda dapat memasang {packages} secara otomatis saat memulai Tails"
 
 #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 msgid ""

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


[tor-commits] [translation/whisperback] Update translations for whisperback

2019-01-30 Thread translation
commit dc7f5a5ede098f7c1d126fdf55427914cd4c21b7
Author: Translation commit bot 
Date:   Thu Jan 31 05:49:44 2019 +

Update translations for whisperback
---
 id/id.po | 17 +
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/id/id.po b/id/id.po
index 391298903..949cfc69e 100644
--- a/id/id.po
+++ b/id/id.po
@@ -9,6 +9,7 @@
 # Fathan Imanudin , 2014
 # Ferriandy Chianiago , 2015
 # hermawan , 2014
+# ical, 2019
 # Lucas Susanto , 2015
 # Mark Hiro , 2015
 # se7entime , 2013
@@ -19,8 +20,8 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-06-11 17:17+0200\n"
-"PO-Revision-Date: 2019-01-15 12:20+\n"
-"Last-Translator: erinm\n"
+"PO-Revision-Date: 2019-01-31 05:49+\n"
+"Last-Translator: ical\n"
 "Language-Team: Indonesian 
(http://www.transifex.com/otf/torproject/language/id/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -48,7 +49,7 @@ msgstr "Blok kunci umum OpenPGP kontak tidak benar"
 msgid ""
 "The %s variable was not found in any of the configuration files "
 "/etc/whisperback/config.py, ~/.whisperback/config.py, or ./config.py"
-msgstr ""
+msgstr "%s variabel tidak ditemukan pada berkas konfigurasi 
/etc/whisperback/config.py, ~/.whisperback/config.py, or ./config.py"
 
 #: ../whisperBack/gui.py:111
 msgid "Name of the affected software"
@@ -85,7 +86,7 @@ msgstr "Membutuhkan beberapa saat..."
 
 #: ../whisperBack/gui.py:185
 msgid "The contact email address doesn't seem valid."
-msgstr ""
+msgstr "Alamat surel kontak sepertinya tidak valid."
 
 #: ../whisperBack/gui.py:202
 msgid "Unable to send the mail: SMTP error."
@@ -141,7 +142,7 @@ msgstr "Kirim umpan balik melalui surel terenkripsi."
 
 #: ../whisperBack/gui.py:336
 msgid "Copyright © 2009-2018 Tails developers (ta...@boum.org)"
-msgstr ""
+msgstr "Hak Cipta © 2009-2018 Tails developers (ta...@boum.org)"
 
 #: ../whisperBack/gui.py:337
 msgid "Tails developers "
@@ -157,7 +158,7 @@ msgstr "Ini tidak terlihat sebagai URL atau kunci OpenPGP 
yang valid."
 
 #: ../data/whisperback.ui.h:1
 msgid "Copyright © 2009-2018 ta...@boum.org"
-msgstr ""
+msgstr "Hak Cipta © 2009-2018 ta...@boum.org"
 
 #: ../data/whisperback.ui.h:3
 msgid "https://tails.boum.org/;
@@ -180,7 +181,7 @@ msgid ""
 "\n"
 "You should have received a copy of the GNU General Public License\n"
 "along with this program.  If not, see .\n"
-msgstr ""
+msgstr "WhisperBack - Kirim umpan balik dalam surel terenkripsi\nHak Cipta (C) 
2009-2018 pengembang Tails \n\nProgram ini adalah perangkat 
lunak gratis; Anda diizinkan untuk mendistribusikan dan/atau 
memodifikasinya\ndi bawah ketentuan GNU General Public License sebagaimana 
seperti yang dipublikasikan oleh\nFree Software Foundation; baik versi 3 dari 
Lisensi, atau (dengan\npilihan Anda) versi yang lebih baru.\n\nProgram ini 
didistribusikan dengan harapan akan berguna, tetapi\nTANPA GARANSI; bahkan 
tanpa jaminan tersirat dari\nDAGANGAN atau KECOCOKAN UNTUK TUJUAN TERTENTU. 
Lihat GNU\nGeneral Public License untuk lebih jelas.\n\nAnda seharusnya 
menerima salinan dari GNU General Public License\nbersama dengan program ini. 
Jika tidak, lihat .\n"
 
 #: ../data/whisperback.ui.h:20
 msgid ""
@@ -198,7 +199,7 @@ msgstr "Deskripsi bug"
 
 #: ../data/whisperback.ui.h:24
 msgid "Help:"
-msgstr ""
+msgstr "Bantuan:"
 
 #: ../data/whisperback.ui.h:25
 msgid "Read our bug reporting guidelines."

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


[tor-commits] [translation/tails-persistence-setup] Update translations for tails-persistence-setup

2019-01-30 Thread translation
commit a483b1dbd10300955fa0b90e9c52c5f1c66b22be
Author: Translation commit bot 
Date:   Thu Jan 31 05:47:05 2019 +

Update translations for tails-persistence-setup
---
 id/id.po | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/id/id.po b/id/id.po
index 4b40e95d8..6b814b156 100644
--- a/id/id.po
+++ b/id/id.po
@@ -19,7 +19,7 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: Tails developers \n"
 "POT-Creation-Date: 2018-11-01 12:21+0100\n"
-"PO-Revision-Date: 2019-01-31 05:09+\n"
+"PO-Revision-Date: 2019-01-31 05:32+\n"
 "Last-Translator: ical\n"
 "Language-Team: Indonesian 
(http://www.transifex.com/otf/torproject/language/id/)\n"
 "MIME-Version: 1.0\n"
@@ -139,7 +139,7 @@ msgstr "perangkat lunak tambahan"
 
 #: ../lib/Tails/Persistence/Configuration/Presets.pm:103
 msgid "Software installed when starting Tails"
-msgstr ""
+msgstr "Perangkat lunak terpasang saat memulai Tails"
 
 #: ../lib/Tails/Persistence/Configuration/Presets.pm:121
 msgid "Printers"
@@ -167,7 +167,7 @@ msgstr "Keyrings GnuPG dan konfigurasi"
 
 #: ../lib/Tails/Persistence/Configuration/Presets.pm:166
 msgid "Bitcoin Client"
-msgstr ""
+msgstr "Klien Bitcoin"
 
 #: ../lib/Tails/Persistence/Configuration/Presets.pm:168
 msgid "Electrum's bitcoin wallet and configuration"
@@ -223,7 +223,7 @@ msgid ""
 "Beware! Using persistence has consequences that must be well "
 "understood. Tails can't help you if you use it wrong! See the Encrypted "
 "persistence page of the Tails documentation to learn more."
-msgstr ""
+msgstr "Waspadalah! Menggunakan volume tetap memiliki konsekuensi yang 
harus dimengerti. Tails tidak dapat menolong jika Anda salah menggunakannya! 
Lihat halaman Volume tetap terenkripsi pada dokumentasi Tails untuk 
mempelajari lebih lanjut."
 
 #: ../lib/Tails/Persistence/Step/Bootstrap.pm:170
 msgid "Passphrase:"
@@ -266,11 +266,11 @@ msgstr "Izin  volume persistent akan dikoreksi"
 
 #: ../lib/Tails/Persistence/Step/Bootstrap.pm:315
 msgid "Creating default persistence configuration."
-msgstr ""
+msgstr "Membuat konfigurasi volume tetap standar."
 
 #: ../lib/Tails/Persistence/Step/Bootstrap.pm:318
 msgid "The default persistence configuration will be created."
-msgstr ""
+msgstr "Konfigurasi standar volume tetap akan dibuat."
 
 #: ../lib/Tails/Persistence/Step/Bootstrap.pm:333
 msgid "Creating..."

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


[tor-commits] [translation/tails-persistence-setup] Update translations for tails-persistence-setup

2019-01-30 Thread translation
commit 57700e3b91d796b874e5e2cec29185c075036416
Author: Translation commit bot 
Date:   Thu Jan 31 05:17:18 2019 +

Update translations for tails-persistence-setup
---
 id/id.po | 19 ++-
 1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/id/id.po b/id/id.po
index aaf4d5dda..4b40e95d8 100644
--- a/id/id.po
+++ b/id/id.po
@@ -8,6 +8,7 @@
 # Dwi Cahyono , 2015
 # Eljuno Kasih , 2017
 # hermawan , 2014
+# ical, 2019
 # Lucas Susanto , 2015
 # km242saya , 2014
 # Rendiyono Wahyu Saputro , 2015
@@ -18,8 +19,8 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: Tails developers \n"
 "POT-Creation-Date: 2018-11-01 12:21+0100\n"
-"PO-Revision-Date: 2019-01-15 12:21+\n"
-"Last-Translator: erinm\n"
+"PO-Revision-Date: 2019-01-31 05:09+\n"
+"Last-Translator: ical\n"
 "Language-Team: Indonesian 
(http://www.transifex.com/otf/torproject/language/id/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -29,7 +30,7 @@ msgstr ""
 
 #: ../lib/Tails/Persistence/Setup.pm:265
 msgid "Setup Tails persistent volume"
-msgstr "Seting volume Tail persistent"
+msgstr "Pengaturan volume tetap Tails"
 
 #: ../lib/Tails/Persistence/Setup.pm:343 ../lib/Tails/Persistence/Setup.pm:481
 msgid "Error"
@@ -38,7 +39,7 @@ msgstr "Error"
 #: ../lib/Tails/Persistence/Setup.pm:372
 #, perl-format
 msgid "Device %s already has a persistent volume."
-msgstr "Device %s sudah  memiliki volume persistent"
+msgstr "Perangkat %s sudah  memiliki volume tetap."
 
 #: ../lib/Tails/Persistence/Setup.pm:380
 #, perl-format
@@ -55,7 +56,7 @@ msgstr "Device %s tidak memiliki volume persistent"
 msgid ""
 "Cannot delete the persistent volume on %s while in use. You should restart "
 "Tails without persistence."
-msgstr ""
+msgstr "Tidak dapat menghapus volume tetap pada %s saat digunakan. Anda harus 
mengulang kembali Tails tanpa volume tetap."
 
 #: ../lib/Tails/Persistence/Setup.pm:407
 #, perl-format
@@ -65,18 +66,18 @@ msgstr ""
 #: ../lib/Tails/Persistence/Setup.pm:412
 #, perl-format
 msgid "Persistence volume on %s is not mounted."
-msgstr ""
+msgstr "Volume tetap pada %s tidak terpasang."
 
 #: ../lib/Tails/Persistence/Setup.pm:417
 #, perl-format
 msgid ""
 "Persistence volume on %s is not readable. Permissions or ownership problems?"
-msgstr ""
+msgstr "Volume tetap pada %s tidak terbaca. Masalah izin atau kepemilikan?"
 
 #: ../lib/Tails/Persistence/Setup.pm:422
 #, perl-format
 msgid "Persistence volume on %s is not writable."
-msgstr ""
+msgstr "Volume tetap pada %s tidak dapat ditulis."
 
 #: ../lib/Tails/Persistence/Setup.pm:431
 #, perl-format
@@ -118,7 +119,7 @@ msgstr "Simpan berkas di direktori `Persistent'"
 
 #: ../lib/Tails/Persistence/Configuration/Presets.pm:71
 msgid "Browser Bookmarks"
-msgstr ""
+msgstr "Markah Peramban"
 
 #: ../lib/Tails/Persistence/Configuration/Presets.pm:73
 msgid "Bookmarks saved in the Tor Browser"

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


[tor-commits] [stem/master] Download gzip compressed descriptors by default

2019-01-30 Thread atagar
commit 52b1370e80f42a39322c7609da72c7c12759476a
Author: Damian Johnson 
Date:   Wed Jan 30 15:49:07 2019 -0800

Download gzip compressed descriptors by default

Good point from starlight that we should default to downloading compressed
rather than plaintext descriptors...

  https://trac.torproject.org/projects/tor/ticket/29186

I purposefully chose a plaintext default because when I added Stem
compression support tor had relability issues with it...

  https://trac.torproject.org/projects/tor/ticket/9379

... but that hasn't been the case for years. DocTor has been downloading
compressed descriptors since 2015 so it's well past time we took some
confidence in changing the default.

  https://gitweb.torproject.org/doctor.git/commit/?id=a8e954f
---
 docs/change_log.rst| 1 +
 stem/descriptor/remote.py  | 7 +--
 test/unit/descriptor/remote.py | 4 
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/docs/change_log.rst b/docs/change_log.rst
index c851f7fe..0d0ce864 100644
--- a/docs/change_log.rst
+++ b/docs/change_log.rst
@@ -54,6 +54,7 @@ The following are only available within Stem's `git repository
  * **Descriptors**
 
   * `Bandwidth file support `_ 
(:trac:`29056`)
+  * Download compressed descriptors by default (:trac:`29186`)
   * Added :func:`stem.descriptor.remote.get_microdescriptors`
   * Added :class:`~stem.descriptor.networkstatus.DetachedSignature` parsing 
(:trac:`28495`)
   * Added :func:`~stem.descriptor.__init__.Descriptor.from_str` method 
(:trac:`28450`)
diff --git a/stem/descriptor/remote.py b/stem/descriptor/remote.py
index 6ff1e794..d3e07b6a 100644
--- a/stem/descriptor/remote.py
+++ b/stem/descriptor/remote.py
@@ -334,6 +334,9 @@ class Query(object):
  Serge has replaced Bifroest as our bridge authority. Avoiding descriptor
  downloads from it instead.
 
+  .. versionchanged:: 1.8.0
+ Defaulting to gzip compression rather than plaintext downloads.
+
   :var str resource: resource being fetched, such as '/tor/server/all'
   :var str descriptor_type: type of descriptors being fetched (for options see
 :func:`~stem.descriptor.__init__.parse_file`), this is guessed from the
@@ -377,14 +380,14 @@ class Query(object):
 the same as running **query.run(True)** (default is **False**)
   """
 
-  def __init__(self, resource, descriptor_type = None, endpoints = None, 
compression = None, retries = 2, fall_back_to_authority = False, timeout = 
None, start = True, block = False, validate = False, document_handler = 
stem.descriptor.DocumentHandler.ENTRIES, **kwargs):
+  def __init__(self, resource, descriptor_type = None, endpoints = None, 
compression = (Compression.GZIP,), retries = 2, fall_back_to_authority = False, 
timeout = None, start = True, block = False, validate = False, document_handler 
= stem.descriptor.DocumentHandler.ENTRIES, **kwargs):
 if not resource.startswith('/'):
   raise ValueError("Resources should start with a '/': %s" % resource)
 
 if resource.endswith('.z'):
   compression = [Compression.GZIP]
   resource = resource[:-2]
-elif compression is None:
+elif not compression:
   compression = [Compression.PLAINTEXT]
 else:
   if isinstance(compression, str):
diff --git a/test/unit/descriptor/remote.py b/test/unit/descriptor/remote.py
index 858ad702..e26934b3 100644
--- a/test/unit/descriptor/remote.py
+++ b/test/unit/descriptor/remote.py
@@ -180,10 +180,6 @@ class TestDescriptorDownloader(unittest.TestCase):
 self.assertEqual(5, len(reply.reply_headers))
 
   def test_gzip_url_override(self):
-query = stem.descriptor.remote.Query(TEST_RESOURCE, start = False)
-self.assertEqual([Compression.PLAINTEXT], query.compression)
-self.assertEqual(TEST_RESOURCE, query.resource)
-
 query = stem.descriptor.remote.Query(TEST_RESOURCE + '.z', compression = 
Compression.PLAINTEXT, start = False)
 self.assertEqual([Compression.GZIP], query.compression)
 self.assertEqual(TEST_RESOURCE, query.resource)

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


[tor-commits] [translation/liveusb-creator_completed] Update translations for liveusb-creator_completed

2019-01-30 Thread translation
commit 01dc8b924ce9e141d27a7ecf7078d87ccaa37ccd
Author: Translation commit bot 
Date:   Wed Jan 30 21:16:04 2019 +

Update translations for liveusb-creator_completed
---
 fr/fr.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fr/fr.po b/fr/fr.po
index 98cc722e9..84bddc5a5 100644
--- a/fr/fr.po
+++ b/fr/fr.po
@@ -30,7 +30,7 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-01-02 09:26+0100\n"
-"PO-Revision-Date: 2019-01-08 14:47+\n"
+"PO-Revision-Date: 2019-01-30 21:13+\n"
 "Last-Translator: AO \n"
 "Language-Team: French 
(http://www.transifex.com/otf/torproject/language/fr/)\n"
 "MIME-Version: 1.0\n"
@@ -321,7 +321,7 @@ msgid ""
 "Warning: This tool needs to be run as an Administrator. To do this, right "
 "click on the icon and open the Properties. Under the Compatibility tab, "
 "check the \"Run this program as an administrator\" box."
-msgstr "Avertissement : cet outil doit être exécuté en tant 
qu’administrateur. Pour ce faire, cliquer sur l’icône et ouvrir les 
Propriétés. Sous l’onglet Compatibilité, cocher « Exécuter ce programme 
en tant qu’administrateur »."
+msgstr "Avertissement : Cet outil doit être exécuté en tant 
qu’administrateur. Pour ce faire, cliquer sur l’icône et ouvrir les 
Propriétés. Sous l’onglet Compatibilité, cocher « Exécuter ce programme 
en tant qu’administrateur »."
 
 #: ../tails_installer/gui.py:381
 msgid "Tails Installer"

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


[tor-commits] [translation/liveusb-creator] Update translations for liveusb-creator

2019-01-30 Thread translation
commit 40a60577732c78b7369e1c0da9b200ebcd9c8cec
Author: Translation commit bot 
Date:   Wed Jan 30 21:15:58 2019 +

Update translations for liveusb-creator
---
 fr/fr.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fr/fr.po b/fr/fr.po
index 98cc722e9..84bddc5a5 100644
--- a/fr/fr.po
+++ b/fr/fr.po
@@ -30,7 +30,7 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-01-02 09:26+0100\n"
-"PO-Revision-Date: 2019-01-08 14:47+\n"
+"PO-Revision-Date: 2019-01-30 21:13+\n"
 "Last-Translator: AO \n"
 "Language-Team: French 
(http://www.transifex.com/otf/torproject/language/fr/)\n"
 "MIME-Version: 1.0\n"
@@ -321,7 +321,7 @@ msgid ""
 "Warning: This tool needs to be run as an Administrator. To do this, right "
 "click on the icon and open the Properties. Under the Compatibility tab, "
 "check the \"Run this program as an administrator\" box."
-msgstr "Avertissement : cet outil doit être exécuté en tant 
qu’administrateur. Pour ce faire, cliquer sur l’icône et ouvrir les 
Propriétés. Sous l’onglet Compatibilité, cocher « Exécuter ce programme 
en tant qu’administrateur »."
+msgstr "Avertissement : Cet outil doit être exécuté en tant 
qu’administrateur. Pour ce faire, cliquer sur l’icône et ouvrir les 
Propriétés. Sous l’onglet Compatibilité, cocher « Exécuter ce programme 
en tant qu’administrateur »."
 
 #: ../tails_installer/gui.py:381
 msgid "Tails Installer"

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


[tor-commits] [translation/https_everywhere_completed] Update translations for https_everywhere_completed

2019-01-30 Thread translation
commit 49f382d6284c3c09645cc830e1ce8f7b18b10754
Author: Translation commit bot 
Date:   Wed Jan 30 21:15:51 2019 +

Update translations for https_everywhere_completed
---
 fr/https-everywhere.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fr/https-everywhere.dtd b/fr/https-everywhere.dtd
index 1d549a019..3a6a67dbe 100644
--- a/fr/https-everywhere.dtd
+++ b/fr/https-everywhere.dtd
@@ -20,7 +20,7 @@
 
 
 
-
+
 
 
 

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


[tor-commits] [translation/https_everywhere] Update translations for https_everywhere

2019-01-30 Thread translation
commit 1cabb58d1b60a72887428d9cc7aa75504c6ca8cd
Author: Translation commit bot 
Date:   Wed Jan 30 21:15:43 2019 +

Update translations for https_everywhere
---
 fr/https-everywhere.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fr/https-everywhere.dtd b/fr/https-everywhere.dtd
index 1d549a019..3a6a67dbe 100644
--- a/fr/https-everywhere.dtd
+++ b/fr/https-everywhere.dtd
@@ -20,7 +20,7 @@
 
 
 
-
+
 
 
 

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


[tor-commits] [tor-browser-build/master] Merge remote-tracking branch 'boklm/bug_29181_v2'

2019-01-30 Thread gk
commit 929c3f8d6fe4d6182d4dfce2472581ccc45824f0
Merge: 9bac5b8 592aced
Author: Georg Koppen 
Date:   Wed Jan 30 19:51:34 2019 +

Merge remote-tracking branch 'boklm/bug_29181_v2'

 projects/debootstrap-image/config | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

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


[tor-commits] [tor-browser-build/master] Bug 29181: Add a version number in debootstrap-image filename

2019-01-30 Thread gk
commit 592acedeb13ec0d08087b4cd2fb414b04431fb13
Author: Nicolas Vigier 
Date:   Fri Jan 25 17:37:43 2019 +0100

Bug 29181: Add a version number in debootstrap-image filename

Updating this version number will cause the old images created by
debootstrap-image to be discarded when a new image is built by
container-image. However existing images from container-image will not
be discarded as container-image's filename doesn't depend on
debootstrap-image's filename.
---
 projects/debootstrap-image/config | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/projects/debootstrap-image/config 
b/projects/debootstrap-image/config
index a1d26cb..c916e9f 100644
--- a/projects/debootstrap-image/config
+++ b/projects/debootstrap-image/config
@@ -1,5 +1,6 @@
 # vim: filetype=yaml sw=2
-filename: 'container-image_[% c("var/container/suite") %]-[% 
c("var/container/arch") %].tar.gz'
+filename: 'container-image_[% c("var/container/suite") %]-[% 
c("var/container/arch") %]-[% c("version") %].tar.gz'
+version: 1
 pkg_type: build
 
 var:



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


[tor-commits] [tor-browser-build/master] Bug 29167: Upgrade go to 1.11.5.

2019-01-30 Thread gk
commit 9bac5b8ddc129cc0349f1c6350f819f8ba29af94
Author: David Fifield 
Date:   Thu Jan 24 21:00:34 2019 +

Bug 29167: Upgrade go to 1.11.5.
---
 projects/go/config | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/projects/go/config b/projects/go/config
index 1841705..be9f84d 100644
--- a/projects/go/config
+++ b/projects/go/config
@@ -1,5 +1,5 @@
 # vim: filetype=yaml sw=2
-version: 1.11.1
+version: 1.11.5
 filename: '[% project %]-[% c("version") %]-[% c("var/build_id") %].tar.gz'
 
 var:
@@ -84,7 +84,7 @@ input_files:
 enable: '[% c("var/windows") || c("var/osx") %]'
   - URL: 'https://golang.org/dl/go[% c("version") %].src.tar.gz'
 name: go
-sha256sum: 558f8c169ae215e25b81421596e8de7572bd3ba824b79add22fba6e284db1117
+sha256sum: bc1ef02bb1668835db1390a2e478dcbccb5dd16911691af9d75184bbe5aa943e
   - URL: 'https://golang.org/dl/go[% c("var/go14_version") %].src.tar.gz'
 name: go14
 sha256sum: 9947fc705b0b841b5938c48b22dc33e9647ec0752bae66e50278df4f23f64959

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


[tor-commits] [policies/master] Add minutes for the 2018-12-10 meeting.

2019-01-30 Thread julius
commit 83aa99915cd5a9489a8a2e79c779f9018e7ca824
Author: Julius Mittenzwei 
Date:   Wed Jan 30 16:24:15 2019 +0100

Add minutes for the 2018-12-10 meeting.
---
 minutes/TPI_Board_Meeting_Minutes-2018-12-10.txt   | 32 ++
 ...ing_Minutes-2018-12-10.txt.5FA53B246DEA01A5.asc | 16 +++
 2 files changed, 48 insertions(+)

diff --git a/minutes/TPI_Board_Meeting_Minutes-2018-12-10.txt 
b/minutes/TPI_Board_Meeting_Minutes-2018-12-10.txt
new file mode 100644
index 000..d8e59bf
--- /dev/null
+++ b/minutes/TPI_Board_Meeting_Minutes-2018-12-10.txt
@@ -0,0 +1,32 @@
+Tor Project Board Meeting Minutes for December 10, 2018
+
+Phone/video meeting called to order at 16:00 UTC  
+
+Present: Isabela Bagueros, Shari Steele, Matt Blaze, Ramy Raoof, Cindy Cohn, 
Biella Coleman, Julius Mittenzwei, Roger Dingledine, Megan Price, Nighat D
+
+– Approval of October 1, 2018 minutes. Biella made the motion to approve, 
Ramy seconded, all voted in favor.
+ 
+RESOLVED: board approved minutes from October 1, 2018.
+
+2. Board Discussed and Passed Two Resolutions around Bank and Stock Accounts
+
+–  Motion one: The board of directors of the Tor Project, Inc., hereby 
authorizes Sue Abt, Erin Wyatt and Cindy Cohn to be added as a signatory on the 
organization's Bank of America checking account #X. Cindy moved the motion, 
Julius second, all voted in favor. 
+
+– Motion two: The board of directors of the Tor Project, Inc., hereby 
authorizes Sue Abt to be added as
+signatory on the organization's Merrill Lynch stock account. Cindy moved the 
motion, Matt seconded the motion, all voted in favor. 
+
+RESOLVED:  Sue Abt, Erin Wyatt and Cindy Cohn added as signatories on the 
organization's Bank of America checking account and Sue Abt  added as signatory 
on the organization's Merrill Lynch stock account.
+
+3. Finances
+
+– Isabela went over grants, budget, and pending grants.
+– Discussion about changes around grant writing and hiring priorities.
+
+Nick left 12:32
+
+4.  New board members
+
+–   After Cindy’s initial discussion Shari, Ramy, and Biella volunteered 
to reach out to prospective candidate
+ 
+ Meeting Adjourned at  18 UTC
+
diff --git 
a/minutes/TPI_Board_Meeting_Minutes-2018-12-10.txt.5FA53B246DEA01A5.asc 
b/minutes/TPI_Board_Meeting_Minutes-2018-12-10.txt.5FA53B246DEA01A5.asc
new file mode 100644
index 000..4759657
--- /dev/null
+++ b/minutes/TPI_Board_Meeting_Minutes-2018-12-10.txt.5FA53B246DEA01A5.asc
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCAAdFiEEAvsEvZkfYc+iy7I2X6U7JG3qAaUFAlxRwPUACgkQX6U7JG3q
+AaXcexAArsXbgWtE7OxxvSb8PFiYDHK+WHK6XGV3YXOdENEosPCKd9TMTYxGpsHm
+IFkI73js+vnxdHEEJlPpZXWHt63yFDDUorp9HszE2TQfH4RPfdDRXvxYYbV5doSn
+UMBRqApDT/t4NL2lcRG5MUkZmLYVotyjT63f7J/shEZXBHRktAx3STWt72u/L+uj
+D2DaYgDoOUYm7ZNVQshVhcmjDVLV5Ews2+Xc02ah/TxgD3Jt6QYDdUTfcbHdcqRG
+s9Xi9BjW1sgMWKFGgTm+sVkYwo0186HtDGvPoW/wrRdBkZk64cEo401HSyCdZsst
+EHNorSCnBR8pxvrra0obljWs/OE7tr9otay3uc4voc6t2sHZM3tpB6O7Mo/PuRqb
+LQxoq8ghkbj1ohgSeE1JKD1stgfl+5RTBUJJ7tc0h8oyMmwZGSeMG/KnazeiMhf9
+/YXX/uKrgcYPtwsnp7dOyxu63Ah60lGkv5JZad3aNe8TRtBxIWGYbGTdEld2rwqr
+QDdI2rcHr4ejQsYy3xGAjiid0LbcSAdjWWU7+3fB+mHqt+166mZGEHKRk0ic9UOb
+NupRjhg8pi7rC0OTHbkbApgDlLzxQ7B3pmqX9UsXFmhP9cUGH6RoPTh15If9sHHu
+oalURv/71RwsT4N9vG8Cd82RymI8xhVOOyQ8tKOr3e3mUV5FZjw=
+=9+or
+-END PGP SIGNATURE-

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


[tor-commits] [webwml/master] Update sponsors list (#28161)

2019-01-30 Thread hiro
commit e6a90ab2c083e0fe3aa66ef87e013b03e8d0bc71
Author: traumschule 
Date:   Wed Oct 24 02:18:34 2018 +0200

Update sponsors list (#28161)
---
 about/en/sponsors.wml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/about/en/sponsors.wml b/about/en/sponsors.wml
index 7ae19ecb..a6f7e75b 100644
--- a/about/en/sponsors.wml
+++ b/about/en/sponsors.wml
@@ -30,7 +30,6 @@
  https://www.mozilla.org/en-US/moss/;>Mozilla 
(2016-2018)
  https://www.opentech.fund/;>Open Technology Fund 
(2012-2019)
   https://www.sida.se/English/;>Sida - Swedish 
International Development Cooperation Agency (2010-2013, 2017-2020)
-  http://mediademocracyfund.org/;>Media Democracy 
Fund (2016-2018)
  https://handshake.org/;>The Handshake Foundation 
(2018)
  https://nsf.gov/;>National Science Foundation joint 
with Princeton University (2012-2018)
  https://nsf.gov/;>National Science Foundation via 
University of Minnesota (2013-2018)
@@ -48,7 +47,7 @@
 Past sponsors
 We greatly appreciate the support provided by our past sponsors
 in keeping the Tor Project progressing through our ambitious goals:
-   
+  
  https://developers.google.com/open-source/gsoc/;>Google 
Summer of Code (2007-2014 and 2016-2017)
  https://www.sri.com/;>SRI International 
(2011-2017)
  http://www.auswaertiges-amt.de/;>Federal Foreign Office 
of Germany (2015)
@@ -76,7 +75,7 @@
  Bell Security Solutions Inc (2006)
  https://www.omidyar.com/;>Omidyar Network Enzyme 
Grant (2006)
  https://nsf.gov/;>NSF via Rice University 
(2006-2007)
-   
+  
 
 This sponsors page is based upon un-audited and un-reviewed
 financial and in-kind donations, contract, and other data. Further

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


[tor-commits] [webwml/master] faq: Update donation entry (#28162)

2019-01-30 Thread hiro
commit 7c527ae562c4399db7d1ee016e98274df8fd73fb
Author: traumschule 
Date:   Tue Oct 23 23:43:47 2018 +0200

faq: Update donation entry (#28162)
---
 docs/en/faq.wml | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/docs/en/faq.wml b/docs/en/faq.wml
index c622e69c..889cbe6b 100644
--- a/docs/en/faq.wml
+++ b/docs/en/faq.wml
@@ -723,10 +723,9 @@
 
 
 We are proud to have
-sponsorship and support from the 
Omidyar
-Network, the International Broadcasting Bureau, Bell Security Solutions,
-the Electronic Frontier Foundation, several government agencies and 
research
-groups, and hundreds of private contributors.
+sponsorship and support from several
+government agencies, research groups, private foundations, and
+hundreds of private contributors.
 
 
 



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


[tor-commits] [webwml/master] bridges: update contact links (#25218)

2019-01-30 Thread hiro
commit ca31f20634b694a8bece30029ab1349eddfb08f5
Author: traumschule 
Date:   Tue Jan 15 09:58:33 2019 -0500

bridges: update contact links (#25218)
---
 docs/en/bridges.wml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/en/bridges.wml b/docs/en/bridges.wml
index 12009954..4965e79c 100644
--- a/docs/en/bridges.wml
+++ b/docs/en/bridges.wml
@@ -191,7 +191,7 @@
 the offered transport types. obfs4 is currently recommend, but
 depending on where you are located another one may work better for you.
 If you have any questions, please
-contact us.
+https://support.torproject.org/#censorship;>contact 
us.
 
 
@@ -244,7 +244,7 @@
 restarting the browser. If not, remove the Tor Browser folder and extract
 the archive again. It should work now.
 If it still fails, we want to
-hear from you!
+https://support.torproject.org/#censorship;>hear from you!
 
 
 
@@ -282,7 +282,7 @@
 the offered transport types. obfs4 is currently recommend, but
 depending on where you are located another one may work better for you.
 If you have any questions, please
-contact us.
+https://support.torproject.org/#censorship;>contact 
us.
 
 

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


[tor-commits] [webwml/master] bridges: update screenshots (#25218)

2019-01-30 Thread hiro
commit 8f83e72cabd40cf2a68fa2f27c4d396d2d605439
Author: traumschule 
Date:   Sat Nov 3 06:11:28 2018 +0100

bridges: update screenshots (#25218)
---
 docs/en/bridges.wml| 152 ++---
 .../tb-tor-launcher-bootstrap-failed-obfs.png  | Bin 0 -> 18988 bytes
 .../bridges/tb-tor-launcher-bootstrap-failed.png   | Bin 0 -> 28650 bytes
 images/bridges/tb-tor-launcher-bootstrap.png   | Bin 0 -> 20534 bytes
 images/bridges/tb-tor-launcher-bridges-options.png | Bin 0 -> 37996 bytes
 .../bridges/tb-tor-launcher-bridges-provided.png   | Bin 0 -> 29757 bytes
 images/bridges/tb-tor-launcher-bridges.png | Bin 0 -> 25193 bytes
 .../bridges/tb-tor-launcher-network-settings.png   | Bin 0 -> 14463 bytes
 images/bridges/tb-tor-launcher-obfs4.png   | Bin 0 -> 25469 bytes
 images/bridges/tb-tor-launcher-provide-bridge.png  | Bin 0 -> 27856 bytes
 images/bridges/tb-tor-launcher-proxy.png   | Bin 0 -> 29185 bytes
 .../tb-tor-launcher-request-bridges-captcha.png| Bin 0 -> 152798 bytes
 .../tb-tor-launcher-request-bridges-connect.png| Bin 0 -> 38885 bytes
 .../tb-tor-launcher-request-bridges-success.png| Bin 0 -> 37151 bytes
 images/bridges/tb-tor-launcher-request-bridges.png | Bin 0 -> 26623 bytes
 images/bridges/tb-tor-launcher-startup.png | Bin 0 -> 27362 bytes
 images/tb-bridge-networksettings.png   | Bin 86129 -> 0 bytes
 images/tb-bridges-custom-from-browser.png  | Bin 107151 -> 0 bytes
 images/tb-bridges-options-from-browser.png | Bin 66972 -> 0 bytes
 images/tb-bridges-provided-from-browser.png| Bin 84736 -> 0 bytes
 images/tb-frontpage.png| Bin 36890 -> 11075 bytes
 images/tb-tor-button-menu.png  | Bin 58398 -> 21300 bytes
 images/tb-tor-launcher-bridges-custom.png  | Bin 88827 -> 0 bytes
 images/tb-tor-launcher-bridges-options.png | Bin 83439 -> 0 bytes
 images/tb-tor-launcher-bridges-provided.png| Bin 75365 -> 0 bytes
 images/tb-tor-launcher-isp-interference.png| Bin 89171 -> 0 bytes
 images/tb-tor-launcher-no-proxy.png| Bin 74714 -> 0 bytes
 images/tb-tor-launcher-startup.png | Bin 89215 -> 0 bytes
 28 files changed, 105 insertions(+), 47 deletions(-)

diff --git a/docs/en/bridges.wml b/docs/en/bridges.wml
index 33c0ad6c..12009954 100644
--- a/docs/en/bridges.wml
+++ b/docs/en/bridges.wml
@@ -4,7 +4,6 @@
 
 #include "head.wmi" TITLE="Tor Project: Bridges" CHARSET="UTF-8"
 
-
 
 
 
@@ -151,7 +150,8 @@
 
 
 
-Adding bridges in Tor Browser when Tor 
does not work:
+Adding bridges in Tor Browser when Tor
+does not work:
 
 
 First, you should read the
@@ -164,44 +164,59 @@
 "Configure" button.
 
 
-
+
 
-2) If you must configure a proxy then select "Yes" and enter the
-details on the following page.
-If you do not use a proxy then select "No" and click "Next".
-If you do not know if you must configure a proxy then you likely
-do not need to do it.
+2) Proxy and Censorship prevention settings are now on one page. If
+your Internet Service Provider (ISP) blocks or otherwise censors
+connections to the Tor Network, tick this checkbox.
 
 
-
+
 
-3) After you configure a proxy or skip over that configuration page,
-the following page asks "Does your Internet Service Provider (ISP)
-block or otherwise censor connections to the Tor Network?". Select
-"Yes" and then click "Next".
+3) If you must configure a proxy then, activate the second checkbox 
and enter the details.
+
+
+
+
+4) Now you have three configuration options. You can use bridges which 
are
+preconfigured and provided with Tor Browser, you can specify your own 
bridge(s), or request bridges.
 
-
+
 
-4) Now you have two configuration options. You can use bridges which 
are
-preconfigured and provided with Tor Browser, or you can specify your
-own bridge(s).
+5a) If you want to use one of the provided bridges, then choose one of
+the offered transport types. obfs4 is currently recommend, but
+depending on where you are located another one may work better for you.
+If you have any questions, please
+contact us.
 
-
+
 
-5a) If you want to use one of the provided bridges, then choose the
-transport type you want to use. obfs4 is currently the recommend
-type, but depending on where you are located another type may work better
-for you. If you have any questions, please contact
-us.
+5b) If none of the provided bridges works for you, try to request one:
+
+
+
+
+
+
+
 
-
+
 
-5b) Alternatively, if you want to use a custom
-bridge, then select "Enter custom bridges" and 

[tor-commits] [webwml/master] download-easy: replace tabs with spaces

2019-01-30 Thread hiro
commit 0ecb25a7ecb871bd2a2f3d5b15031cc8d2f6f86c
Author: traumschule 
Date:   Sat Nov 17 05:59:42 2018 +0100

download-easy: replace tabs with spaces
---
 download/en/download-easy.wml | 228 --
 download/es/download-easy.wml | 194 +--
 2 files changed, 207 insertions(+), 215 deletions(-)

diff --git a/download/en/download-easy.wml b/download/en/download-easy.wml
index 489e7611..46323c65 100644
--- a/download/en/download-easy.wml
+++ b/download/en/download-easy.wml
@@ -19,148 +19,140 @@
 #include "dlhead.wmi" TITLE="Download Tor" CHARSET="UTF-8"
 
 
-   Home  Download
-   
-   
-   Want Tor to really work?
-   You need to change some of your habits, as some things won't 
work exactly as you are used to. Please read the full list 
of warnings for details.
-   
-   
-   
-   
-   
+  Home  Download
+  
+  
+Want Tor to really work?
+You need to change some of your habits, as some things won't work 
exactly as you are used to. Please read the full list of 
warnings for details.
+  
+  
+  
+
+
 
 
 
 
 
   
-   
- 
-   Tor Browser for Windows (64 bit)
-   Version  - Windows 10, 8, and 7
-   Everything you need to safely browse the Internet. Learn more 
- 
- 
-   
+
+  Tor Browser for Windows (64 bit)
+  Version  - Windows 10, 8, and 7
+  Everything you need to safely browse the Internet. Learn more 
+
+
+  Download
-   
+  
 #include 
-   
-   
- Other Languages
- (
+  
+Other 
Languages
+(sig)
 What's This?
-   
- 
- Not Using Windows?Download for Mac or Linux
-   
+  
+
+Not Using Windows?Download for Mac or Linux
+  
   
 
   
-   
- 
-   Tor Browser for Windows
-   Version  - Windows 10, 8, and 7
-   Everything you need to safely browse the Internet. Learn more 
- 
- 
-   Download
-   
+  
+
+  Tor Browser for Windows (32 bit)
+  Version  - Windows 10, 8, and 7
+  Everything you need to safely browse the Internet. Learn more 
+
+
+  Download
+  
 #include 
-   
-   
- Other Languages
- (sig)
 What's This?
-   
- 
- Not Using Windows?Download for Mac or Linux
-   
+  
+  
+Other 
Languages
+(sig)
 What's This?
+  
+
+Not Using Windows?Download for Mac or Linux
+  
   
 
   
-   
- 
-   Tor Browser for Mac
-   Version  - OS X (10.9+) https://blog.torproject.org/category/tags/tbb;>Read the release 
announcements!
-   Everything you need to safely browse the Internet.Learn more 
- 
- 
-   Download
-   
+  
+
+  Tor Browser for Mac
+  Version  - OS X (10.9+) https://blog.torproject.org/category/tags/tbb;>Read the release 
announcements!
+  Everything you need to safely browse the Internet.Learn more 
+
+
+  Download
+  
 #include 
-   
-   
- Other Languages
- (sig)
 What's This?
-   
- 
- Not Using Mac? Download for Windows or Linux
+  
+  
+Other 
Languages
+(sig)
 What's This?
+  
+
+Not Using Mac? Download for Windows or Linux
 
   
 
   
-   
- 
-   Tor Browser for Linux (64-Bit)
-   Version  - Linux (64-Bit) 
https://blog.torproject.org/category/tags/tbb;>Read the release 
announcements!
-   Everything you need to safely browse the Internet. This package 
requires no installation. Just extract it and run.Learn more 
- 
- 
-   Download
-   
+  
+
+  Tor Browser for Linux (64-Bit)
+  Version  - Linux (64-Bit) https://blog.torproject.org/category/tags/tbb;>Read the release 
announcements!
+  Everything you need to safely browse the Internet. This package 
requires no installation. Just extract it and run.Learn more 
+
+
+  Download
+  
 #include 
-   
-   
- Other Languages
- (sig)
 What's This?
-   
- 
- Not Using Linux? Download for Mac or Windows
-   
+  
+  
+Other 
Languages
+(sig)
 What's This?
+  
+
+Not Using Linux? Download for Mac or 
Windows
+  
   
-
+
   
-   
- 
-   Tor Browser for Linux (32-Bit)
-   Version  - Linux (32-Bit) 
https://blog.torproject.org/category/tags/tbb;>Read the release 
announcements!
-   Everything you need to safely browse the Internet. This package 
requires no installation. Just extract it and run.
-   Learn more 
- 
- 

[tor-commits] [webwml/master] es: fix spelling in download-easy (#28288)

2019-01-30 Thread hiro
commit 07dd1c0b82a3e0d74994011dd7f47b2cde661971
Author: traumschule 
Date:   Tue Jan 15 10:09:02 2019 -0500

es: fix spelling in download-easy (#28288)
---
 download/es/download-easy.wml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/download/es/download-easy.wml b/download/es/download-easy.wml
index 77056076..7f713535 100644
--- a/download/es/download-easy.wml
+++ b/download/es/download-easy.wml
@@ -54,7 +54,7 @@

href="../dist/torbrowser//torbrowser-install-win64-_.exe.asc">firma)
 ¿Que es Esto?
   
 
-¿No usas Windows?Descargalo para Mac or Linux
+¿No usas Windows?Descargalo para Mac o Linux
   
   
 

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


[tor-commits] [webwml/master] add Win 64bit to spansh download-easy (#28288)

2019-01-30 Thread hiro
commit e65a7284403917da4e9631bbed7633d29c0828c5
Author: traumschule 
Date:   Sat Nov 17 05:58:16 2018 +0100

add Win 64bit to spansh download-easy (#28288)
---
 download/es/download-easy.wml | 95 +++
 1 file changed, 87 insertions(+), 8 deletions(-)

diff --git a/download/es/download-easy.wml b/download/es/download-easy.wml
index cecf6e8c..eb637591 100644
--- a/download/es/download-easy.wml
+++ b/download/es/download-easy.wml
@@ -34,12 +34,35 @@
 
 
 
-
+
   

  
-   Navegador Tor para windows
-   Versión  - Windows 10, 8, 7, Vista, 
y XP
+   Navegador Tor para windows (64 bit)
+   Versión  - Windows 10, 8, and 7
+   Todo lo que necesitas para navegar de forma segura Internet. Aprendé mas 
+ 
+ 
+   Descarga
+   
+#include 
+   
+   
+ Otros Lenguajes
+ (firma)
 ¿Que es Esto?
+   
+ 
+ ¿No usas Windows?Descargalo para Mac or Linux
+   
+  
+
+  
+   
+ 
+   Navegador Tor para windows (32 bit)
+   Versión  - Windows 10, 8, and 7
Todo lo que necesitas para navegar de forma segura Internet. Aprendé mas 
  
  
@@ -52,7 +75,7 @@
  (firma)
 ¿Que es Esto?

  
- ¿No usas Windows?Descargalo para Mac o Linux
+ ¿No usas Windows?Descargalo para Mac or Linux

   
 
@@ -97,7 +120,7 @@
  ¿No Usas Linux? Descargalo para Mac o Windows

   
-
+
   

  
@@ -118,6 +141,62 @@
  ¿No Usas Linux? Descargalo paraMac o Windows

   
+
+  
+
+  
+Navegador Tor para OpenBSD
+These are installation instructions for running Tor Browser in a 
OpenBSD environment.
+To install from OpenBSD's packages, run:
+pkg_add tor-browser
+Sometimes the most recent version of Tor Browser on OpenBSD is 
behind the current release. The available version of TB on OpenBSD should be 
checked with:
+pkg_info -Q tor-browser
+If provided version is not the current Tor Browser version, it is 
not recommended.
+To install the Tor Browser port from an updated ports tree, run:
+cd /usr/ports/meta/tor-browser && make install
+  
+
+  
+
+  
+
+  
+  Navegador Tor para Android
+  Tor Browser for Android has only be released in alpha-version. 

+  You can download the alpha release on https://play.google.com/store/apps/details?id=org.torproject.torbrowser_alpha;>GooglePlay
 or from
+  our https://www.torproject.org/projects/torbrowser.html.en#downloads-alpha;>alpha
 download list.
+  
+
+  
+
+  
+
 
   
 
@@ -136,7 +215,7 @@
 
   
   ¿Buscando otra cosa? Ver Todas Las Descargas 
-   
+
  
 
 
@@ -150,8 +229,8 @@ donation until 12/31!
 
 
 
-
-   
+ 
+
 
 
 



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


[tor-commits] [translation/support-portal] Update translations for support-portal

2019-01-30 Thread translation
commit f6f2a6945ef5945ddb2eab9e4ac89fbe60964f1f
Author: Translation commit bot 
Date:   Wed Jan 30 14:20:03 2019 +

Update translations for support-portal
---
 contents+es-AR.po | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/contents+es-AR.po b/contents+es-AR.po
index eba74530d..0c3691586 100644
--- a/contents+es-AR.po
+++ b/contents+es-AR.po
@@ -2120,7 +2120,7 @@ msgstr ""
 #: https//support.torproject.org/misc/tor-glossary/
 #: (content/misc/glossary/contents+en.lrquestion.description)
 msgid "### TorBirdy"
-msgstr ""
+msgstr "### TorBirdy"
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/contents+en.lrquestion.description)
@@ -2136,7 +2136,7 @@ msgstr ""
 #: https//support.torproject.org/misc/tor-glossary/
 #: (content/misc/glossary/contents+en.lrquestion.description)
 msgid "### Torbutton"
-msgstr ""
+msgstr "### Botón Tor"
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/contents+en.lrquestion.description)
@@ -2161,7 +2161,7 @@ msgstr ""
 #: https//support.torproject.org/misc/tor-glossary/
 #: (content/misc/glossary/contents+en.lrquestion.description)
 msgid "### torrc"
-msgstr ""
+msgstr "### torrc"
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/contents+en.lrquestion.description)
@@ -2175,7 +2175,7 @@ msgstr ""
 #: https//support.torproject.org/misc/tor-glossary/
 #: (content/misc/glossary/contents+en.lrquestion.description)
 msgid "### Torsocks"
-msgstr ""
+msgstr "### Torsocks"
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/contents+en.lrquestion.description)
@@ -2200,7 +2200,7 @@ msgstr ""
 #: https//support.torproject.org/misc/tor-glossary/
 #: (content/misc/glossary/contents+en.lrquestion.description)
 msgid "### Tor2Web"
-msgstr ""
+msgstr "### Tor2Web"
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/contents+en.lrquestion.description)
@@ -2257,7 +2257,7 @@ msgstr ""
 #: https//support.torproject.org/misc/tor-glossary/
 #: (content/misc/glossary/contents+en.lrquestion.description)
 msgid "### traffic"
-msgstr ""
+msgstr "### tráfico"
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/contents+en.lrquestion.description)
@@ -2294,7 +2294,7 @@ msgstr ""
 #: https//support.torproject.org/misc/tor-glossary/
 #: (content/misc/glossary/contents+en.lrquestion.description)
 msgid "### Web Browser"
-msgstr ""
+msgstr "### Navegador Web"
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/contents+en.lrquestion.description)
@@ -2320,7 +2320,7 @@ msgstr ""
 #: https//support.torproject.org/misc/tor-glossary/
 #: (content/misc/glossary/contents+en.lrquestion.description)
 msgid "### website mirror"
-msgstr ""
+msgstr "### espejo de sitio web"
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/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/support-portal] Update translations for support-portal

2019-01-30 Thread translation
commit 4bbfb6b742b2cf748c5c88e6de32bbcf63a72917
Author: Translation commit bot 
Date:   Wed Jan 30 13:50:07 2019 +

Update translations for support-portal
---
 contents+es-AR.po | 152 ++
 1 file changed, 85 insertions(+), 67 deletions(-)

diff --git a/contents+es-AR.po b/contents+es-AR.po
index 523107271..eba74530d 100644
--- a/contents+es-AR.po
+++ b/contents+es-AR.po
@@ -327,7 +327,7 @@ msgstr "## C"
 #: https//support.torproject.org/misc/tor-glossary/
 #: (content/misc/glossary/contents+en.lrquestion.description)
 msgid "### CAPTCHA"
-msgstr ""
+msgstr "### CAPTCHA"
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/contents+en.lrquestion.description)
@@ -337,6 +337,8 @@ msgid ""
 "Captchas are a challenge-response test used in computing to determine "
 "whether the user is human or not."
 msgstr ""
+"Las captchas son pruebas de desafío-respuesta usadas en computación para "
+"determinar si el usuario es humano o no."
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/contents+en.lrquestion.description)
@@ -348,13 +350,17 @@ msgid ""
 "hard time determining whether or not those requests are coming from humans "
 "or from bots."
 msgstr ""
+"Los usuarios de [Tor](#tor-/-tor-network/-core-tor) a menudo se encuentran "
+"con captchas porque los Tor [relays](#relay) hacen tantas solicitudes que a "
+"veces los sitios web tienen gran dificultad en determinar si esas "
+"solicitudes vienen desde humanos o bots."
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/contents+en.lrquestion.description)
 #: https//support.torproject.org/misc/tor-glossary/
 #: (content/misc/glossary/contents+en.lrquestion.description)
 msgid "### checksum"
-msgstr ""
+msgstr "### suma de verificación"
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/contents+en.lrquestion.description)
@@ -365,13 +371,16 @@ msgid ""
 "software without errors, the given checksum and the checksum of your "
 "downloaded file will be identical."
 msgstr ""
+"Las sumas de verificación son [hash](#hash)values de archivos. Si "
+"descargaste el software sin errores, la suma de verificación dada y la suma "
+"de verificación de tu archivo descargado serán idénticas."
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/contents+en.lrquestion.description)
 #: https//support.torproject.org/misc/tor-glossary/
 #: (content/misc/glossary/contents+en.lrquestion.description)
 msgid "### circuit"
-msgstr ""
+msgstr "### circuito"
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/contents+en.lrquestion.description)
@@ -387,13 +396,22 @@ msgid ""
 "service)), and never an exit node. You can view your current Tor circuit by "
 "clicking on the onion button in Tor Browser."
 msgstr ""
+"Una ruta a través de la [Tor network](#tor-/-tor-network/-core-tor) "
+"construida por el [clients](#client), consistente de nodos aleatoriamente "
+"seleccionados. El circuito empieza con un [bridge](#bridge) o una "
+"[guard](#guard). La mayoría de los circuitos consisten de tres nodos - una "
+"guarda o puente, un [middle relay](#middle-relay), y una [exit](#exit). La "
+"mayoría de los [onion services](#onion-services) usan seis saltos en un "
+"circuito (con la excepción de [single onion services](#single-onion-"
+"service)), y nunca un nodo de salida. Podés ver tu circuito Tor actual "
+"cliqueando en el botón cebolla en el navegador Tor."
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/contents+en.lrquestion.description)
 #: https//support.torproject.org/misc/tor-glossary/
 #: (content/misc/glossary/contents+en.lrquestion.description)
 msgid "### client"
-msgstr ""
+msgstr "### cliente"
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/contents+en.lrquestion.description)
@@ -410,7 +428,7 @@ msgstr ""
 #: https//support.torproject.org/misc/tor-glossary/
 #: (content/misc/glossary/contents+en.lrquestion.description)
 msgid "### Compass"
-msgstr ""
+msgstr "### Compass"
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/contents+en.lrquestion.description)
@@ -426,7 +444,7 @@ msgstr ""
 #: https//support.torproject.org/misc/tor-glossary/
 #: (content/misc/glossary/contents+en.lrquestion.description)
 msgid "### consensus"
-msgstr ""
+msgstr "### consenso"
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/contents+en.lrquestion.description)
@@ -444,7 +462,7 @@ msgstr ""
 #: https//support.torproject.org/misc/tor-glossary/
 #: (content/misc/glossary/contents+en.lrquestion.description)
 msgid "### cookie"
-msgstr ""
+msgstr "### cookie"
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/contents+en.lrquestion.description)
@@ -463,7 +481,7 @@ msgstr ""
 #: https//support.torproject.org/misc/tor-glossary/
 #: (content/misc/glossary/contents+en.lrquestion.description)
 msgid "### cross-site scripting (XSS)"
-msgstr ""
+msgstr 

[tor-commits] [translation/torbutton-torbuttondtd] Update translations for torbutton-torbuttondtd

2019-01-30 Thread translation
commit ecba88fe84777d27c8fbea8880977a8cf6868f80
Author: Translation commit bot 
Date:   Wed Jan 30 13:48:38 2019 +

Update translations for torbutton-torbuttondtd
---
 is/torbutton.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/is/torbutton.dtd b/is/torbutton.dtd
index a03a7329d..2c6b1d2ab 100644
--- a/is/torbutton.dtd
+++ b/is/torbutton.dtd
@@ -35,7 +35,7 @@
 
 
 
-
+
 
 
 

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


[tor-commits] [translation/torbutton-torbuttondtd_completed] Update translations for torbutton-torbuttondtd_completed

2019-01-30 Thread translation
commit 3dbe539276799bbe75c753ee1e4119e2bedb52df
Author: Translation commit bot 
Date:   Wed Jan 30 13:48:44 2019 +

Update translations for torbutton-torbuttondtd_completed
---
 is/torbutton.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/is/torbutton.dtd b/is/torbutton.dtd
index a03a7329d..2c6b1d2ab 100644
--- a/is/torbutton.dtd
+++ b/is/torbutton.dtd
@@ -35,7 +35,7 @@
 
 
 
-
+
 
 
 

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


[tor-commits] [translation/support-portal] Update translations for support-portal

2019-01-30 Thread translation
commit 4beaad8a27568261109b46bc17694f3e1fd46d6a
Author: Translation commit bot 
Date:   Wed Jan 30 13:20:31 2019 +

Update translations for support-portal
---
 contents+es-AR.po | 18 --
 1 file changed, 16 insertions(+), 2 deletions(-)

diff --git a/contents+es-AR.po b/contents+es-AR.po
index df472eb44..523107271 100644
--- a/contents+es-AR.po
+++ b/contents+es-AR.po
@@ -262,6 +262,9 @@ msgid ""
 "Fingerprinting is the process of collecting information about a device or "
 "service to make educated guesses about its identity or characteristics."
 msgstr ""
+"La determinación de la huella digital es el proceso de recopilación de la "
+"información acerca de un dispositivo o servicio para hacer suposiciones "
+"educadas acerca de su identidad y características."
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/contents+en.lrquestion.description)
@@ -271,6 +274,8 @@ msgid ""
 "Unique behavior or responses can be used to identify the device or service "
 "analyzed."
 msgstr ""
+"Comportamiento o respuestas únicas pueden ser usados para identificar el "
+"dispositivo o servicio analizado."
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/contents+en.lrquestion.description)
@@ -278,13 +283,14 @@ msgstr ""
 #: (content/misc/glossary/contents+en.lrquestion.description)
 msgid "[Tor Browser](#tor-browser) prevents fingerprinting."
 msgstr ""
+"[Tor Browser](#tor-browser) previene que este proceso se lleve a cabo."
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/contents+en.lrquestion.description)
 #: https//support.torproject.org/misc/tor-glossary/
 #: (content/misc/glossary/contents+en.lrquestion.description)
 msgid "### browsing history"
-msgstr ""
+msgstr "### Historial de navegación"
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/contents+en.lrquestion.description)
@@ -294,6 +300,9 @@ 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."
 msgstr ""
+"Un historial de navegación es un registro de las solicitudes hechas mientras"
+" se está usando un [web browser](#web-browser), e incluye información como "
+"sitios visitados y cuándo."
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/contents+en.lrquestion.description)
@@ -303,13 +312,15 @@ msgid ""
 "[Tor Browser](#tor-browser) deletes your browsing history after you close "
 "your [session](#session)."
 msgstr ""
+"[Tor Browser](#tor-browser) borra tu historial de navegación después de que 
"
+"cierres tu [session](#session)."
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/contents+en.lrquestion.description)
 #: https//support.torproject.org/misc/tor-glossary/
 #: (content/misc/glossary/contents+en.lrquestion.description)
 msgid "## C"
-msgstr ""
+msgstr "## C"
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/contents+en.lrquestion.description)
@@ -1944,6 +1955,9 @@ msgid ""
 "“[fingerprinting](#browser-fingerprinting)” or identifying you based on 
your"
 " browser configuration."
 msgstr ""
+"Adicionalmente, el navegador Tor está diseñado para prevenir que los sitios 
"
+"web hagan “[fingerprinting](#browser-fingerprinting)” o te identifiquen, "
+"basándose en la configuración de tu navegador."
 
 #: https//support.torproject.org/glossary/
 #: (content/glossary/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] [webwml/master] Add new Tor Browser version: 8.5a7

2019-01-30 Thread boklm
commit 97d4ccb754fd23884a82838de7491feeff539c9d
Author: Nicolas Vigier 
Date:   Wed Jan 30 13:14:18 2019 +0100

Add new Tor Browser version: 8.5a7
---
 include/versions.wmi   | 4 ++--
 projects/torbrowser/RecommendedTBBVersions | 6 +-
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/include/versions.wmi b/include/versions.wmi
index b08fe8a8..a7a4e69d 100644
--- a/include/versions.wmi
+++ b/include/versions.wmi
@@ -26,8 +26,8 @@
 ../dist/torbrowser//tor-win32-.zip
 
 # *** tor browser beta/alpha ***
-8.5a6
-2018-12-11
+8.5a7
+2019-01-30
 
 # If all platforms are on the same version, you only need to update
 # version-torbrowserbundlebeta-all and releasedate-torbrowserbundlebeta-all
diff --git a/projects/torbrowser/RecommendedTBBVersions 
b/projects/torbrowser/RecommendedTBBVersions
index 42a13bcb..6513ae7e 100644
--- a/projects/torbrowser/RecommendedTBBVersions
+++ b/projects/torbrowser/RecommendedTBBVersions
@@ -10,5 +10,9 @@
 "8.5a6",
 "8.5a6-MacOS",
 "8.5a6-Linux",
-"8.5a6-Windows"
+"8.5a6-Windows",
+"8.5a7",
+"8.5a7-MacOS",
+"8.5a7-Linux",
+"8.5a7-Windows"
 ]

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


[tor-commits] [translation/torbutton-torbuttondtd] Update translations for torbutton-torbuttondtd

2019-01-30 Thread translation
commit aa41109073a99f886e9b90ebeda555ae3ccf103d
Author: Translation commit bot 
Date:   Wed Jan 30 10:48:46 2019 +

Update translations for torbutton-torbuttondtd
---
 nn/torbutton.dtd | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/nn/torbutton.dtd b/nn/torbutton.dtd
index ff22fbbe1..2ba6eb56c 100644
--- a/nn/torbutton.dtd
+++ b/nn/torbutton.dtd
@@ -29,10 +29,10 @@
 
 
 
-
+
 
 
-
+
 
 
 

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


[tor-commits] [translation/tba-torbrowserstringsdtd_completed] Update translations for tba-torbrowserstringsdtd_completed

2019-01-30 Thread translation
commit a185ff793190aa3cb5fad36957734a6836fcf216
Author: Translation commit bot 
Date:   Wed Jan 30 10:47:27 2019 +

Update translations for tba-torbrowserstringsdtd_completed
---
 et/android_strings.dtd | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/et/android_strings.dtd b/et/android_strings.dtd
index f8ebd4c6d..49fd5d517 100644
--- a/et/android_strings.dtd
+++ b/et/android_strings.dtd
@@ -1,25 +1,25 @@
 
 
-
-
+
+
 
 
 
 
-
+
 
 
-
+
 
 
-
+
 
 
 
 
 
 
-
-
-
+
+
+
 

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


[tor-commits] [translation/tbmanual-contentspot] Update translations for tbmanual-contentspot

2019-01-30 Thread translation
commit b89ed40973211fa35424c07478f1be5ba5732107
Author: Translation commit bot 
Date:   Wed Jan 30 10:47:35 2019 +

Update translations for tbmanual-contentspot
---
 contents+nn.po | 1908 
 1 file changed, 1908 insertions(+)

diff --git a/contents+nn.po b/contents+nn.po
new file mode 100644
index 0..bd41f20a9
--- /dev/null
+++ b/contents+nn.po
@@ -0,0 +1,1908 @@
+# Translators:
+# erinm, 2018
+# Bjørn I., 2019
+# 
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2019-01-23 12:08+CET\n"
+"PO-Revision-Date: 2018-11-14 12:31+\n"
+"Last-Translator: Bjørn I., 2019\n"
+"Language-Team: Norwegian Nynorsk 
(https://www.transifex.com/otf/teams/1519/nn/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: nn\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: https//tb-manual.torproject.org/en-US/
+#: (content/contents+en-US.lrshowcase.title)
+msgid "Tor Browser User Manual"
+msgstr "Brukarmanual for Tor Browser"
+
+#: https//tb-manual.torproject.org/en-US/menu/
+#: (content/menu/contents+en-US.lrtopic.body)
+msgid "About"
+msgstr "Um"
+
+#: https//tb-manual.torproject.org/en-US/menu/
+#: (content/menu/contents+en-US.lrtopic.body)
+msgid "Documentation"
+msgstr "Dokumentasjon"
+
+#: https//tb-manual.torproject.org/en-US/menu/
+#: (content/menu/contents+en-US.lrtopic.body)
+msgid "Press"
+msgstr ""
+
+#: https//tb-manual.torproject.org/en-US/menu/
+#: (content/menu/contents+en-US.lrtopic.body)
+msgid "Blog"
+msgstr "Blogg"
+
+#: https//tb-manual.torproject.org/en-US/menu/
+#: (content/menu/contents+en-US.lrtopic.body)
+msgid "Newsletter"
+msgstr "Nyheitsbrev"
+
+#: https//tb-manual.torproject.org/en-US/menu/
+#: (content/menu/contents+en-US.lrtopic.body)
+msgid "Contact"
+msgstr "Kontakt"
+
+#: https//tb-manual.torproject.org/en-US/about/
+#: (content/about/contents+en-US.lrtopic.title)
+msgid "About Tor Browser"
+msgstr "Om Tor Browser"
+
+#: https//tb-manual.torproject.org/en-US/about/
+#: (content/about/contents+en-US.lrtopic.description)
+msgid "Learn what Tor Browser can do to protect your privacy and anonymity"
+msgstr ""
+"Les om kva Tor-nettlesaren kan gjere for å ta vare på personvernet og "
+"anonymiteten din"
+
+#: https//tb-manual.torproject.org/en-US/about/
+#: (content/about/contents+en-US.lrtopic.body)
+msgid ""
+"Tor Browser uses the Tor network to protect your privacy and anonymity. "
+"Using the Tor network has two main properties:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/en-US/about/
+#: (content/about/contents+en-US.lrtopic.body)
+msgid ""
+"* Your internet service provider, and anyone watching your connection "
+"locally, will not be able to track your internet activity, including the "
+"names and addresses of the websites you visit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/en-US/about/
+#: (content/about/contents+en-US.lrtopic.body)
+msgid ""
+"* The operators of the websites and services that you use, and anyone "
+"watching them, will see a connection coming from the Tor network instead of "
+"your real Internet (IP) address, and will not know who you are unless you "
+"explicitly identify yourself."
+msgstr ""
+
+#: https//tb-manual.torproject.org/en-US/about/
+#: (content/about/contents+en-US.lrtopic.body)
+msgid ""
+"In addition, Tor Browser is designed to prevent websites from "
+"“fingerprinting” or identifying you based on your browser configuration."
+msgstr ""
+
+#: https//tb-manual.torproject.org/en-US/about/
+#: (content/about/contents+en-US.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 is requested)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/en-US/about/
+#: (content/about/contents+en-US.lrtopic.body)
+msgid "# How Tor works"
+msgstr ""
+
+#: https//tb-manual.torproject.org/en-US/about/
+#: (content/about/contents+en-US.lrtopic.body)
+msgid ""
+"Tor is a network of virtual tunnels that allows you to improve your privacy "
+"and security on the Internet. Tor works by sending your traffic through "
+"three random servers (also known as *relays*) in the Tor network. The last "
+"relay in the circuit (the “exit relay”) then sends the traffic out onto 
the "
+"public Internet."
+msgstr ""
+
+#: https//tb-manual.torproject.org/en-US/about/
+#: (content/about/contents+en-US.lrtopic.body)
+msgid ""
+""
+msgstr ""
+
+#: https//tb-manual.torproject.org/en-US/about/
+#: (content/about/contents+en-US.lrtopic.body)
+msgid ""
+"The image above illustrates a user browsing to different websites over Tor. "
+"The green middle computers represent relays in the Tor network, while the "
+"three keys represent the layers of encryption between the user and each "
+"relay."
+msgstr ""
+
+#: 

[tor-commits] [translation/tba-torbrowserstringsdtd] Update translations for tba-torbrowserstringsdtd

2019-01-30 Thread translation
commit 1d8cc3b14d5ee66c46b232c2a10052e816533d48
Author: Translation commit bot 
Date:   Wed Jan 30 10:47:22 2019 +

Update translations for tba-torbrowserstringsdtd
---
 et/android_strings.dtd | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/et/android_strings.dtd b/et/android_strings.dtd
index f8ebd4c6d..49fd5d517 100644
--- a/et/android_strings.dtd
+++ b/et/android_strings.dtd
@@ -1,25 +1,25 @@
 
 
-
-
+
+
 
 
 
 
-
+
 
 
-
+
 
 
-
+
 
 
 
 
 
 
-
-
-
+
+
+
 

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


[tor-commits] [translation/tails-misc] Update translations for tails-misc

2019-01-30 Thread translation
commit fc67aea1d6187851c2615f61ce9f862470dc7289
Author: Translation commit bot 
Date:   Wed Jan 30 10:46:16 2019 +

Update translations for tails-misc
---
 nn.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/nn.po b/nn.po
index 848bbae30..cbde049ac 100644
--- a/nn.po
+++ b/nn.po
@@ -10,8 +10,8 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-01-14 21:20+0100\n"
-"PO-Revision-Date: 2019-01-17 01:47+\n"
-"Last-Translator: carolyn \n"
+"PO-Revision-Date: 2019-01-30 10:22+\n"
+"Last-Translator: Bjørn I.\n"
 "Language-Team: Norwegian Nynorsk 
(http://www.transifex.com/otf/torproject/language/nn/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -301,7 +301,7 @@ msgstr ""
 
 #: 
config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
 msgid "Documentation"
-msgstr ""
+msgstr "Dokumentasjon"
 
 #. Translators: Don't translate {package}, it's a placeholder and will be
 #. replaced.

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


[tor-commits] [translation/torbutton-browseronboardingproperties] Update translations for torbutton-browseronboardingproperties

2019-01-30 Thread translation
commit c0321e99ea6d5b3269ca5feff521efde36616854
Author: Translation commit bot 
Date:   Wed Jan 30 10:19:08 2019 +

Update translations for torbutton-browseronboardingproperties
---
 et/browserOnboarding.properties | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/et/browserOnboarding.properties b/et/browserOnboarding.properties
index 3f2690708..d6af75512 100644
--- a/et/browserOnboarding.properties
+++ b/et/browserOnboarding.properties
@@ -44,11 +44,11 @@ onboarding.tor-circuit-display.one-of-three=1 of 3
 onboarding.tor-circuit-display.two-of-three=2 of 3
 onboarding.tor-circuit-display.three-of-three=3 of 3
 
-onboarding.tor-circuit-display.intro.title=How do circuits work?
+onboarding.tor-circuit-display.intro.title=Kuidas ringteed töötavad?
 onboarding.tor-circuit-display.intro.msg=Circuits are made up of randomly 
assigned relays, which are computers around the world configured to forward Tor 
traffic. Circuits allow you to browse privately and to connect to onion 
services.
 
 onboarding.tor-circuit-display.diagram.title=Ringteede kuva
 onboarding.tor-circuit-display.diagram.msg=This diagram shows the relays that 
make up the circuit for this website. To prevent linking of activity across 
different sites, each website gets a different circuit.
 
-onboarding.tor-circuit-display.new-circuit.title=Do you need a new circuit?
+onboarding.tor-circuit-display.new-circuit.title=Kas sa vajad uut ringteed?
 onboarding.tor-circuit-display.new-circuit.msg=If you are not able to connect 
to the website you’re trying to visit or it is not loading properly, then you 
can use this button to reload the site with a new circuit.

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


[tor-commits] [translation/torbutton-abouttbupdatedtd] Update translations for torbutton-abouttbupdatedtd

2019-01-30 Thread translation
commit 4c047ad2b023ad0631298e59cadd12d7e0e2c743
Author: Translation commit bot 
Date:   Wed Jan 30 10:18:56 2019 +

Update translations for torbutton-abouttbupdatedtd
---
 et/abouttbupdate.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/et/abouttbupdate.dtd b/et/abouttbupdate.dtd
index a04f48445..cdf29511b 100644
--- a/et/abouttbupdate.dtd
+++ b/et/abouttbupdate.dtd
@@ -5,6 +5,6 @@
 
 
 
-
+
 
 

___
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] Update translations for tor-launcher-properties

2019-01-30 Thread translation
commit 74b30627037180f5e30439a80569c07528d6019f
Author: Translation commit bot 
Date:   Wed Jan 30 09:49:47 2019 +

Update translations for tor-launcher-properties
---
 et/torlauncher.properties | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/et/torlauncher.properties b/et/torlauncher.properties
index f0cc216cb..634abcd0e 100644
--- a/et/torlauncher.properties
+++ b/et/torlauncher.properties
@@ -1,7 +1,7 @@
 ### Copyright (c) 2016, The Tor Project, Inc.
 ### See LICENSE for licensing information.
 
-torlauncher.error_title=Tori käivitaja
+torlauncher.error_title=Tor'i käivitaja
 
 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.
@@ -52,15 +52,15 @@ torlauncher.forAssistance2=Abi saamiseks külasta %S
 
 torlauncher.copiedNLogMessages=Copy complete. %S Tor log messages are ready to 
be pasted into a text editor or an email message.
 
-torlauncher.bootstrapStatus.conn_dir=Connecting to a relay directory
+torlauncher.bootstrapStatus.conn_dir=Releekataloogiga ühendumine
 torlauncher.bootstrapStatus.handshake_dir=Establishing an encrypted directory 
connection
 torlauncher.bootstrapStatus.requesting_status=Retrieving network status
 torlauncher.bootstrapStatus.loading_status=Loading network status
 torlauncher.bootstrapStatus.loading_keys=Loading authority certificates
-torlauncher.bootstrapStatus.requesting_descriptors=Requesting relay information
-torlauncher.bootstrapStatus.loading_descriptors=Loading relay information
+torlauncher.bootstrapStatus.requesting_descriptors=Relee teabe taotlemine
+torlauncher.bootstrapStatus.loading_descriptors=Relee teabe laadimine
 torlauncher.bootstrapStatus.conn_or=Tor võrgustikuga ühendumine
-torlauncher.bootstrapStatus.handshake_or=Establishing a Tor circuit
+torlauncher.bootstrapStatus.handshake_or=Tor'i ringtee sätestamine
 torlauncher.bootstrapStatus.done=Connected to the Tor network!
 
 torlauncher.bootstrapWarning.done=valmis

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


[tor-commits] [translation/torcheck_completed] Update translations for torcheck_completed

2019-01-30 Thread translation
commit cfaf3cc9396491ebc5144a6f61d4f97a7556afa2
Author: Translation commit bot 
Date:   Wed Jan 30 09:49:41 2019 +

Update translations for torcheck_completed
---
 et/torcheck.po | 15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/et/torcheck.po b/et/torcheck.po
index a9f4fb473..bbc0e2cea 100644
--- a/et/torcheck.po
+++ b/et/torcheck.po
@@ -4,12 +4,13 @@
 # Translators:
 # boamaod , 2012
 # Kristjan Räts , 2016
+# Madis, 2019
 msgid ""
 msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
 "POT-Creation-Date: 2012-02-16 20:28+PDT\n"
-"PO-Revision-Date: 2017-09-19 09:16+\n"
-"Last-Translator: Kristjan Räts \n"
+"PO-Revision-Date: 2019-01-30 09:39+\n"
+"Last-Translator: Madis\n"
 "Language-Team: Estonian 
(http://www.transifex.com/otf/torproject/language/et/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -25,7 +26,7 @@ msgid ""
 "Please refer to the https://www.torproject.org/\;>Tor website "
 "for further information about using Tor safely.  You are now free to browse "
 "the Internet anonymously."
-msgstr "Täpsemat infot Tori turvalise kasutamise kohta saad https://www.torproject.org/\;>Tori veebisaidilt.  Võid nüüd asuda 
anonüümselt Internetti lehitsema."
+msgstr "Täpsemat infot Tor'i turvalise kasutamise kohta saad https://www.torproject.org/\;>Tor'i veebisaidilt.  Võid nüüd 
asuda anonüümselt Internetti lehitsema."
 
 msgid "There is a security update available for Tor Browser."
 msgstr "Tor'i lehitsejale on saadaval turvauuendus."
@@ -36,14 +37,14 @@ msgid ""
 msgstr "https://www.torproject.org/download/download-easy.html\;>Allalaadimiste 
lehele minemiseks klõpsa siia"
 
 msgid "Sorry. You are not using Tor."
-msgstr "Kahjuks ei kasuta sa hetkel Tori."
+msgstr "Kahjuks ei kasuta sa hetkel Tor'i."
 
 msgid ""
 "If you are attempting to use a Tor client, please refer to the https://www.torproject.org/\;>Tor website and specifically the https://www.torproject.org/docs/faq#DoesntWork\;>instructions for "
 "configuring your Tor client."
-msgstr "Kui sa üritad Tori klienti kasutada, siis uuri https://www.torproject.org/\;>Tori veebisaidilt, kuidas seda teha, 
täpsemalt siis https://www.torproject.org/docs/faq#DoesntWork\;>juhendit Tori kliendi 
seadistamiseks."
+msgstr "Kui sa üritad Tor'i klienti kasutada, siis uuri https://www.torproject.org/\;>Tor'i veebisaidilt, kuidas seda teha, 
täpsemalt siis https://www.torproject.org/docs/faq#DoesntWork\;>juhendit Tor'i kliendi 
seadistamiseks."
 
 msgid "Sorry, your query failed or an unexpected response was received."
 msgstr "Vabandust, su päring ei saanud vastust või sai ootamatu vastuse."
@@ -51,7 +52,7 @@ msgstr "Vabandust, su päring ei saanud vastust või sai 
ootamatu vastuse."
 msgid ""
 "A temporary service outage prevents us from determining if your source IP "
 "address is a https://www.torproject.org/\;>Tor node."
-msgstr "Ajutine teenuse katkestus ei lase meil teha kindlaks, kas sinu IP 
aadress on https://www.torproject.org/\;>Tori sõlmpunkt."
+msgstr "Ajutine teenuse katkestus ei lase meil teha kindlaks, kas sinu IP 
aadress on https://www.torproject.org/\;>Tor'i sõlmpunkt."
 
 msgid "Your IP address appears to be: "
 msgstr "Su IP aadress tundub olevat:"

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


[tor-commits] [translation/torcheck] Update translations for torcheck

2019-01-30 Thread translation
commit 42aafe0d19883cd8d693905c3efc6cbb671c9a31
Author: Translation commit bot 
Date:   Wed Jan 30 09:49:35 2019 +

Update translations for torcheck
---
 et/torcheck.po | 15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/et/torcheck.po b/et/torcheck.po
index a9f4fb473..bbc0e2cea 100644
--- a/et/torcheck.po
+++ b/et/torcheck.po
@@ -4,12 +4,13 @@
 # Translators:
 # boamaod , 2012
 # Kristjan Räts , 2016
+# Madis, 2019
 msgid ""
 msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
 "POT-Creation-Date: 2012-02-16 20:28+PDT\n"
-"PO-Revision-Date: 2017-09-19 09:16+\n"
-"Last-Translator: Kristjan Räts \n"
+"PO-Revision-Date: 2019-01-30 09:39+\n"
+"Last-Translator: Madis\n"
 "Language-Team: Estonian 
(http://www.transifex.com/otf/torproject/language/et/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -25,7 +26,7 @@ msgid ""
 "Please refer to the https://www.torproject.org/\;>Tor website "
 "for further information about using Tor safely.  You are now free to browse "
 "the Internet anonymously."
-msgstr "Täpsemat infot Tori turvalise kasutamise kohta saad https://www.torproject.org/\;>Tori veebisaidilt.  Võid nüüd asuda 
anonüümselt Internetti lehitsema."
+msgstr "Täpsemat infot Tor'i turvalise kasutamise kohta saad https://www.torproject.org/\;>Tor'i veebisaidilt.  Võid nüüd 
asuda anonüümselt Internetti lehitsema."
 
 msgid "There is a security update available for Tor Browser."
 msgstr "Tor'i lehitsejale on saadaval turvauuendus."
@@ -36,14 +37,14 @@ msgid ""
 msgstr "https://www.torproject.org/download/download-easy.html\;>Allalaadimiste 
lehele minemiseks klõpsa siia"
 
 msgid "Sorry. You are not using Tor."
-msgstr "Kahjuks ei kasuta sa hetkel Tori."
+msgstr "Kahjuks ei kasuta sa hetkel Tor'i."
 
 msgid ""
 "If you are attempting to use a Tor client, please refer to the https://www.torproject.org/\;>Tor website and specifically the https://www.torproject.org/docs/faq#DoesntWork\;>instructions for "
 "configuring your Tor client."
-msgstr "Kui sa üritad Tori klienti kasutada, siis uuri https://www.torproject.org/\;>Tori veebisaidilt, kuidas seda teha, 
täpsemalt siis https://www.torproject.org/docs/faq#DoesntWork\;>juhendit Tori kliendi 
seadistamiseks."
+msgstr "Kui sa üritad Tor'i klienti kasutada, siis uuri https://www.torproject.org/\;>Tor'i veebisaidilt, kuidas seda teha, 
täpsemalt siis https://www.torproject.org/docs/faq#DoesntWork\;>juhendit Tor'i kliendi 
seadistamiseks."
 
 msgid "Sorry, your query failed or an unexpected response was received."
 msgstr "Vabandust, su päring ei saanud vastust või sai ootamatu vastuse."
@@ -51,7 +52,7 @@ msgstr "Vabandust, su päring ei saanud vastust või sai 
ootamatu vastuse."
 msgid ""
 "A temporary service outage prevents us from determining if your source IP "
 "address is a https://www.torproject.org/\;>Tor node."
-msgstr "Ajutine teenuse katkestus ei lase meil teha kindlaks, kas sinu IP 
aadress on https://www.torproject.org/\;>Tori sõlmpunkt."
+msgstr "Ajutine teenuse katkestus ei lase meil teha kindlaks, kas sinu IP 
aadress on https://www.torproject.org/\;>Tor'i sõlmpunkt."
 
 msgid "Your IP address appears to be: "
 msgstr "Su IP aadress tundub olevat:"

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


[tor-commits] [translation/torbutton-torbuttonproperties] Update translations for torbutton-torbuttonproperties

2019-01-30 Thread translation
commit 03cf720f634ef27790e2068734abb8e67f944735
Author: Translation commit bot 
Date:   Wed Jan 30 09:48:38 2019 +

Update translations for torbutton-torbuttonproperties
---
 et/torbutton.properties | 22 +++---
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/et/torbutton.properties b/et/torbutton.properties
index f29878d45..e24fd0ddf 100644
--- a/et/torbutton.properties
+++ b/et/torbutton.properties
@@ -2,39 +2,39 @@ torbutton.circuit_display.internet = Internet
 torbutton.circuit_display.ip_unknown = Tundmatu IP
 torbutton.circuit_display.onion_site = Onion'i sait
 torbutton.circuit_display.this_browser = See brauser
-torbutton.circuit_display.relay = Relay
+torbutton.circuit_display.relay = Relee
 torbutton.circuit_display.tor_bridge = Sild
-torbutton.circuit_display.unknown_country = Tundmatu maa
+torbutton.circuit_display.unknown_country = Tundmatu riik
 torbutton.circuit_display.guard = Guard
 torbutton.circuit_display.guard_note = Your [Guard] node may not change.
 torbutton.circuit_display.learn_more = Loe lisaks
-torbutton.content_sizer.margin_tooltip = Tor Brauser lisab selle äärise, et 
muuta su akna laius ja kõrgus vähem eristuvaks, mis seega kahandab võimalust 
sinu jälitamiseks onlainis.
-torbutton.panel.tooltip.disabled = Vajuta, et aktiveerida Tor
-torbutton.panel.tooltip.enabled = Vajuta, et deaktiveerida Tor
+torbutton.content_sizer.margin_tooltip = Tor brauser lisab selle äärise, et 
muuta su akna laius ja kõrgus vähem eristuvaks, mis omakorda vähendab teiste 
võimalust sind võrgus jälitamiseks.
+torbutton.panel.tooltip.disabled = Vajuta Tor'i lubamiseks
+torbutton.panel.tooltip.enabled = Vajuta Tor'i keelamiseks
 torbutton.panel.label.disabled = Tor on mitteaktiivne
 torbutton.panel.label.enabled = Tor on aktiivne
 extensions.torbut...@torproject.org.description = Torbutton tagab nupu, 
millega muuta Tor'i seadeid ning kiiresti ja kergelt kustutada lehitsemise 
privaatseid andmeid.
 torbutton.popup.external.title = Lae alla väline failitüüp?
-torbutton.popup.external.app = Tor lehitseja ei suuda seda faili kuvada. Sa 
pead selle avama teise rakendusega.\n
+torbutton.popup.external.app = Tor brauser ei suuda seda faili kuvada. Sa pead 
selle avama teise rakendusega.\n
 torbutton.popup.external.note = Mõned failitüübid võivad põhjustada 
rakenduste ühenduse internetiga ilma Tor-i kasutamata.\n
 torbutton.popup.external.suggest = Sinu turvalisuse nimel peaksid alla laetud 
faile avama ainult võrgust väljas olles või kasutades Tor Live CD-d, nagu 
näiteks Tails.\n
 torbutton.popup.launch = Laadi fail alla
 torbutton.popup.cancel = Katkesta
-torbutton.popup.dontask = Automaatselt allalaetud failid nüüdsest
+torbutton.popup.dontask = Laadi failid nüüdsest automaatselt alla
 torbutton.popup.no_newnym = Torbutton ei saa sulle turvaliselt anda uut 
identiteeti. Tal puudub pilipääs Tor'i juhtpordile.\n\nKas sa kasutad Tor 
Brauseri paketti?
-torbutton.security_settings.menu.title = Security Settings
+torbutton.security_settings.menu.title = Turvaseaded
 torbutton.title.prompt_torbrowser = Oluline Torbuttoni informatsioon
 torbutton.popup.prompt_torbrowser = Torbutton töötab nüüd erinevalt: sa ei 
saa teda enam välja lülitada.\n\nMe muutsime seda, sest Torbuttoni kasutamine 
brauseris, mida kasutatakse ka Tor võrgust väljas, ei ole turvaline. Sellega 
kaasnes liiga palju vigu, mida ei saanud lahendada muud moodi.\n\nKui sa soovid 
kasutada Firefoxi tavapäraselt, siis eemalda Torbutton ja laadi alla Tor 
Brauseri pakett. Tor Brauseri privaatsus on samuti parem kui Firefoxil, isegi 
koos Torbuttoniga.\n\nTorbuttoni eemaldamiseks mine 
Tööriistad->Lisad->Laiendused ja klõpsa Torbuttoni juures nupul Eemalda
 torbutton.popup.short_torbrowser = Tähtis Torbutton'i teave!\n\nTorbutton on 
nüüd alati lubatud.\n\nLisainfo saamiseks klõpsa Torbuttonil.
 
 torbutton.popup.confirm_plugins = Pistikprogrammid nagu Flash võivad 
kahjustada su privaatsust ja anonüümsust.\n\nNad saavad Tor'ist mööda minna 
ja paljastada su praeguse asukoha ja IP aadressi.\n\nKas sa oled kindel, et 
soovid pistikprogrammid lubada?\n
 torbutton.popup.never_ask_again = Ära küsi seda kunagi enam
-torbutton.popup.confirm_newnym = Tor Brauser suleb kõik aknad ja vahekaardid. 
Kõik veebisaidi sessioonid unustatakse.\n\nKas taaskäivitada Tor Brauser, et 
algseadistada su identiteet?\n\n
+torbutton.popup.confirm_newnym = Tor brauser suleb kõik aknad ja vahekaardid. 
Kõik veebisaidi sessioonid unustatakse.\n\nKas taaskäivitada Tor brauser, et 
algseadistada su identiteet?\n\n
 
 torbutton.maximize_warning = Tor Brauseri maksimeerimine lubab veebilehtedel 
tuvastada su monitori suuruse, mida saab kasutada su jälitamiseks. Me 
soovitame, et sa jätad Tor Brauseri akendele nende algse vaikesuuruse.
 
 # Canvas permission prompt. Strings are kept here for ease of translation.
-canvas.siteprompt=See veebisait (%S) proovis HTML5 lõuendi pildi 

[tor-commits] [translation/torbutton-torbuttondtd] Update translations for torbutton-torbuttondtd

2019-01-30 Thread translation
commit 0713744fb43b29044d13ed1e67de3ebe13befb07
Author: Translation commit bot 
Date:   Wed Jan 30 09:48:50 2019 +

Update translations for torbutton-torbuttondtd
---
 et/torbutton.dtd | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/et/torbutton.dtd b/et/torbutton.dtd
index 7ecd2dfab..0049638a7 100644
--- a/et/torbutton.dtd
+++ b/et/torbutton.dtd
@@ -1,6 +1,6 @@
 
 
-
+
 
 
 
@@ -41,5 +41,5 @@
 
 
 
-
-
+
+

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


[tor-commits] [translation/torbutton-browseronboardingproperties] Update translations for torbutton-browseronboardingproperties

2019-01-30 Thread translation
commit 5ecc2a4599f0f0b2e3f698dd45914dd69673fbf8
Author: Translation commit bot 
Date:   Wed Jan 30 09:49:23 2019 +

Update translations for torbutton-browseronboardingproperties
---
 et/browserOnboarding.properties | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/et/browserOnboarding.properties b/et/browserOnboarding.properties
index bc75a29b9..3f2690708 100644
--- a/et/browserOnboarding.properties
+++ b/et/browserOnboarding.properties
@@ -15,9 +15,9 @@ onboarding.tour-tor-privacy.button=Mine Tor'i võrkku
 onboarding.tour-tor-network=Tor'i võrk
 onboarding.tour-tor-network.title=Rända mööda detsentraliseeritud võrku.
 onboarding.tour-tor-network.description=Tor Browser connects you to the Tor 
network run by thousands of volunteers around the world. Unlike a VPN, 
there’s no one point of failure or centralized entity you need to trust in 
order to enjoy the internet privately.
-onboarding.tour-tor-network.button=Go to Circuit Display
+onboarding.tour-tor-network.button=Mine ringteede kuvale
 
-onboarding.tour-tor-circuit-display=Circuit Display
+onboarding.tour-tor-circuit-display=Ringteede kuva
 onboarding.tour-tor-circuit-display.title=See your path.
 onboarding.tour-tor-circuit-display.description=For each domain you visit, 
your traffic is relayed and encrypted in a circuit across three Tor relays 
around the world. No website knows where you are connecting from. You can 
request a new circuit by clicking ‘New Circuit for this Site’ on our 
Circuit Display.
 onboarding.tour-tor-circuit-display.button=See My Path
@@ -47,7 +47,7 @@ onboarding.tor-circuit-display.three-of-three=3 of 3
 onboarding.tor-circuit-display.intro.title=How do circuits work?
 onboarding.tor-circuit-display.intro.msg=Circuits are made up of randomly 
assigned relays, which are computers around the world configured to forward Tor 
traffic. Circuits allow you to browse privately and to connect to onion 
services.
 
-onboarding.tor-circuit-display.diagram.title=Circuit Display
+onboarding.tor-circuit-display.diagram.title=Ringteede kuva
 onboarding.tor-circuit-display.diagram.msg=This diagram shows the relays that 
make up the circuit for this website. To prevent linking of activity across 
different sites, each website gets a different circuit.
 
 onboarding.tor-circuit-display.new-circuit.title=Do you need a new circuit?

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


[tor-commits] [translation/torbutton-torbuttondtd_completed] Update translations for torbutton-torbuttondtd_completed

2019-01-30 Thread translation
commit 31cd66fbfeb4afba0bb03d933e96b361323a1944
Author: Translation commit bot 
Date:   Wed Jan 30 09:48:55 2019 +

Update translations for torbutton-torbuttondtd_completed
---
 et/torbutton.dtd | 45 +
 1 file changed, 45 insertions(+)

diff --git a/et/torbutton.dtd b/et/torbutton.dtd
new file mode 100644
index 0..0049638a7
--- /dev/null
+++ b/et/torbutton.dtd
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

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


[tor-commits] [translation/torbutton-abouttbupdatedtd] Update translations for torbutton-abouttbupdatedtd

2019-01-30 Thread translation
commit fb1f5a45b737829b388a749946f2c2c251cac0f4
Author: Translation commit bot 
Date:   Wed Jan 30 09:49:12 2019 +

Update translations for torbutton-abouttbupdatedtd
---
 et/abouttbupdate.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/et/abouttbupdate.dtd b/et/abouttbupdate.dtd
index d47a78503..a04f48445 100644
--- a/et/abouttbupdate.dtd
+++ b/et/abouttbupdate.dtd
@@ -1,5 +1,5 @@
 
-
+
 
 
 

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


[tor-commits] [translation/torbutton-brandproperties_completed] Update translations for torbutton-brandproperties_completed

2019-01-30 Thread translation
commit 126c92035c4f450985d05d2040f9cb347a8658b6
Author: Translation commit bot 
Date:   Wed Jan 30 09:48:19 2019 +

Update translations for torbutton-brandproperties_completed
---
 et/brand.properties | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/et/brand.properties b/et/brand.properties
index c40974b79..a7263555f 100644
--- a/et/brand.properties
+++ b/et/brand.properties
@@ -2,9 +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/.
 
-brandShorterName=Tor Brauser
-brandShortName=Tor Brauser
-brandFullName=Tor Brauser
+brandShorterName=Tor brauser
+brandShortName=Tor brauser
+brandFullName=Tor brauser
 vendorShortName=Projekt Tor
 
 homePageSingleStartMain=Firefox Start, kiire koduleht sisseehitatud otsinguga

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


[tor-commits] [translation/torbutton-brandproperties] Update translations for torbutton-brandproperties

2019-01-30 Thread translation
commit 1d149e4b70aa7ce096127661226a9129a585a997
Author: Translation commit bot 
Date:   Wed Jan 30 09:48:13 2019 +

Update translations for torbutton-brandproperties
---
 et/brand.properties | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/et/brand.properties b/et/brand.properties
index c40974b79..a7263555f 100644
--- a/et/brand.properties
+++ b/et/brand.properties
@@ -2,9 +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/.
 
-brandShorterName=Tor Brauser
-brandShortName=Tor Brauser
-brandFullName=Tor Brauser
+brandShorterName=Tor brauser
+brandShortName=Tor brauser
+brandFullName=Tor brauser
 vendorShortName=Projekt Tor
 
 homePageSingleStartMain=Firefox Start, kiire koduleht sisseehitatud otsinguga

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


[tor-commits] [translation/tor-and-https_completed] Update translations for tor-and-https_completed

2019-01-30 Thread translation
commit f054d96b8de0b82b77eb6fc0691d8435de326677
Author: Translation commit bot 
Date:   Wed Jan 30 09:47:47 2019 +

Update translations for tor-and-https_completed
---
 et.po | 137 ++
 1 file changed, 137 insertions(+)

diff --git a/et.po b/et.po
new file mode 100644
index 0..9a5d001b4
--- /dev/null
+++ b/et.po
@@ -0,0 +1,137 @@
+# 
+# Translators:
+# Madis, 2018-2019
+# Rivo Zängov , 2018
+msgid ""
+msgstr ""
+"Project-Id-Version: Tor Project\n"
+"POT-Creation-Date: 2014-07-17 14:23+\n"
+"PO-Revision-Date: 2019-01-30 09:41+\n"
+"Last-Translator: Madis\n"
+"Language-Team: Estonian 
(http://www.transifex.com/otf/torproject/language/et/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: et\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. (itstool) path: C/tor-and-https.svg/svg@direction
+#. (itstool) comment: C/tor-and-https.svg/svg@direction
+#. Specify "ltr" for left-to-right languages or "rtl" for right-to-left
+#. languages (e.g. Arabic or Hebrew).
+#: C/tor-and-https.svg:3
+msgid "ltr"
+msgstr "ltr"
+
+#. (itstool) path: svg/title
+#: C/tor-and-https.svg:14
+#, no-wrap
+msgid "Tor and HTTPS"
+msgstr "Tor ja HTTPS"
+
+#. (itstool) path: defs/text
+#. Keep it short: 7em max. Seven times the capital letter "M".
+#: C/tor-and-https.svg:363
+#, no-wrap
+msgid "Site.com"
+msgstr "Sait.ee"
+
+#. (itstool) path: defs/text
+#. Keep it short: 7em max. Seven times the capital letter "M".
+#: C/tor-and-https.svg:363
+#, no-wrap
+msgid "user / pw"
+msgstr "kasutaja / parool"
+
+#. (itstool) path: defs/text
+#. Keep it short: 7em max. Seven times the capital letter "M".
+#: C/tor-and-https.svg:363
+#, no-wrap
+msgid "data"
+msgstr "andmed"
+
+#. (itstool) path: defs/text
+#. Keep it short: 7em max. Seven times the capital letter "M".
+#: C/tor-and-https.svg:363
+#, no-wrap
+msgid "location"
+msgstr "asukoht"
+
+#. (itstool) path: defs/text
+#. Keep it short: 3em max.
+#: C/tor-and-https.svg:363
+#, no-wrap
+msgid "WiFi"
+msgstr "WiFi"
+
+#. (itstool) path: defs/text
+#. Keep it short: 4em max.
+#: C/tor-and-https.svg:363
+#, no-wrap
+msgid "ISP"
+msgstr "ISP"
+
+#. (itstool) path: defs/text
+#. Keep it short: 8em is ok, 9em is max.
+#: C/tor-and-https.svg:363
+#, no-wrap
+msgid "Hacker"
+msgstr "Häkker"
+
+#. (itstool) path: defs/text
+#. Keep it short: 8em is ok, 9em is max.
+#: C/tor-and-https.svg:363
+#, no-wrap
+msgid "Lawyer"
+msgstr "Advokaat"
+
+#. (itstool) path: defs/text
+#. Keep it short: 8em is ok, 9em is max.
+#: C/tor-and-https.svg:363
+#, no-wrap
+msgid "Sysadmin"
+msgstr "Süst.admin"
+
+#. (itstool) path: defs/text
+#. Keep it short: 8em is ok, 9em is max.
+#: C/tor-and-https.svg:363
+#, no-wrap
+msgid "Police"
+msgstr "Politsei"
+
+#. (itstool) path: defs/text
+#: C/tor-and-https.svg:363
+#, no-wrap
+msgid "NSA"
+msgstr "NSA"
+
+#. (itstool) path: defs/text
+#. Keep it short: 8em is ok, 9em is max.
+#: C/tor-and-https.svg:363
+#, no-wrap
+msgid "Tor relay"
+msgstr "Tor'i relee"
+
+#. (itstool) path: defs/text
+#: C/tor-and-https.svg:363
+#, no-wrap
+msgid "Key"
+msgstr "Võti"
+
+#. (itstool) path: defs/text
+#: C/tor-and-https.svg:363
+#, no-wrap
+msgid "Internet connection"
+msgstr "Internetiühendus"
+
+#. (itstool) path: defs/text
+#: C/tor-and-https.svg:363
+#, no-wrap
+msgid "Eavesdropping"
+msgstr "Pealtkuulamine"
+
+#. (itstool) path: defs/text
+#: C/tor-and-https.svg:363
+#, no-wrap
+msgid "Data sharing"
+msgstr "Andmejagamine"

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


[tor-commits] [translation/torbutton-branddtd] Update translations for torbutton-branddtd

2019-01-30 Thread translation
commit b42fcf1e67824d74ee204c0c8c3d60acda9801ee
Author: Translation commit bot 
Date:   Wed Jan 30 09:48:25 2019 +

Update translations for torbutton-branddtd
---
 et/brand.dtd | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/et/brand.dtd b/et/brand.dtd
index a47c12155..fdd7fc44a 100644
--- a/et/brand.dtd
+++ b/et/brand.dtd
@@ -2,9 +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/. -->
 
-
-
-
+
+
+
 
 
 

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


[tor-commits] [translation/torbutton-branddtd_completed] Update translations for torbutton-branddtd_completed

2019-01-30 Thread translation
commit d12176ba66fc7a606f6368d40d899e902026c45f
Author: Translation commit bot 
Date:   Wed Jan 30 09:48:31 2019 +

Update translations for torbutton-branddtd_completed
---
 et/brand.dtd | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/et/brand.dtd b/et/brand.dtd
index a47c12155..fdd7fc44a 100644
--- a/et/brand.dtd
+++ b/et/brand.dtd
@@ -2,9 +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/. -->
 
-
-
-
+
+
+
 
 
 

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


[tor-commits] [translation/tails-onioncircuits] Update translations for tails-onioncircuits

2019-01-30 Thread translation
commit e64dfccdb37a30e16ba5428ec68e5f237d869128
Author: Translation commit bot 
Date:   Wed Jan 30 09:47:00 2019 +

Update translations for tails-onioncircuits
---
 et/onioncircuits.pot | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/et/onioncircuits.pot b/et/onioncircuits.pot
index b433fce7f..ed871d923 100644
--- a/et/onioncircuits.pot
+++ b/et/onioncircuits.pot
@@ -3,6 +3,7 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Madis, 2019
 # Paul Martin Korp , 2018
 # Rivo Zängov , 2018
 msgid ""
@@ -10,8 +11,8 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-08-03 13:00+\n"
-"PO-Revision-Date: 2018-12-06 11:41+\n"
-"Last-Translator: Paul Martin Korp \n"
+"PO-Revision-Date: 2019-01-30 09:45+\n"
+"Last-Translator: Madis\n"
 "Language-Team: Estonian 
(http://www.transifex.com/otf/torproject/language/et/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -25,7 +26,7 @@ msgstr "Te ei ole veel Tor'i ühendunud..."
 
 #: ../onioncircuits:95
 msgid "Onion Circuits"
-msgstr "Sibula ringteed"
+msgstr "Onion-ringteed"
 
 #: ../onioncircuits:125
 msgid "Circuit"

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


[tor-commits] [translation/tails-onioncircuits_completed] Update translations for tails-onioncircuits_completed

2019-01-30 Thread translation
commit 7fb0572c5b6c5c9e60c5d51c55ffca5b1cf42dd8
Author: Translation commit bot 
Date:   Wed Jan 30 09:47:06 2019 +

Update translations for tails-onioncircuits_completed
---
 et/onioncircuits.pot | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/et/onioncircuits.pot b/et/onioncircuits.pot
index b433fce7f..ed871d923 100644
--- a/et/onioncircuits.pot
+++ b/et/onioncircuits.pot
@@ -3,6 +3,7 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Madis, 2019
 # Paul Martin Korp , 2018
 # Rivo Zängov , 2018
 msgid ""
@@ -10,8 +11,8 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-08-03 13:00+\n"
-"PO-Revision-Date: 2018-12-06 11:41+\n"
-"Last-Translator: Paul Martin Korp \n"
+"PO-Revision-Date: 2019-01-30 09:45+\n"
+"Last-Translator: Madis\n"
 "Language-Team: Estonian 
(http://www.transifex.com/otf/torproject/language/et/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -25,7 +26,7 @@ msgstr "Te ei ole veel Tor'i ühendunud..."
 
 #: ../onioncircuits:95
 msgid "Onion Circuits"
-msgstr "Sibula ringteed"
+msgstr "Onion-ringteed"
 
 #: ../onioncircuits:125
 msgid "Circuit"

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


[tor-commits] [translation/tor-and-https] Update translations for tor-and-https

2019-01-30 Thread translation
commit 061601c18b22f383d9e536ba50e95dde29fc889a
Author: Translation commit bot 
Date:   Wed Jan 30 09:47:41 2019 +

Update translations for tor-and-https
---
 et.po | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/et.po b/et.po
index bd497c037..9a5d001b4 100644
--- a/et.po
+++ b/et.po
@@ -1,12 +1,12 @@
 # 
 # Translators:
-# Madis, 2018
+# Madis, 2018-2019
 # Rivo Zängov , 2018
 msgid ""
 msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
 "POT-Creation-Date: 2014-07-17 14:23+\n"
-"PO-Revision-Date: 2018-08-06 17:17+\n"
+"PO-Revision-Date: 2019-01-30 09:41+\n"
 "Last-Translator: Madis\n"
 "Language-Team: Estonian 
(http://www.transifex.com/otf/torproject/language/et/)\n"
 "MIME-Version: 1.0\n"
@@ -110,7 +110,7 @@ msgstr "NSA"
 #: C/tor-and-https.svg:363
 #, no-wrap
 msgid "Tor relay"
-msgstr ""
+msgstr "Tor'i relee"
 
 #. (itstool) path: defs/text
 #: C/tor-and-https.svg:363

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


[tor-commits] [translation/tails-misc] Update translations for tails-misc

2019-01-30 Thread translation
commit 04b269546a01c3c83bccbda781d7567fb68e5e0f
Author: Translation commit bot 
Date:   Wed Jan 30 09:46:17 2019 +

Update translations for tails-misc
---
 et.po | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/et.po b/et.po
index e94d7eca5..8e325bf53 100644
--- a/et.po
+++ b/et.po
@@ -3,14 +3,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Madis, 2019
 # Rivo Zängov , 2018
 msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-01-14 21:20+0100\n"
-"PO-Revision-Date: 2019-01-17 01:47+\n"
-"Last-Translator: carolyn \n"
+"PO-Revision-Date: 2019-01-30 09:45+\n"
+"Last-Translator: Madis\n"
 "Language-Team: Estonian 
(http://www.transifex.com/otf/torproject/language/et/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -487,7 +488,7 @@ msgstr "Tor"
 
 #: 
config/chroot_local-includes/usr/share/gnome-shell/extensions/torsta...@tails.boum.org/extension.js:55
 msgid "Open Onion Circuits"
-msgstr ""
+msgstr "Avatud Onion-ringteed"
 
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 msgid "Do you really want to launch the Unsafe Browser?"
@@ -705,7 +706,7 @@ msgstr ""
 
 #: 
../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1
 msgid "Tor Browser"
-msgstr "Tor Brauser"
+msgstr "Tor brauser"
 
 #: 
../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:2
 msgid "Anonymous Web Browser"

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


[tor-commits] [translation/abouttor-homepage] Update translations for abouttor-homepage

2019-01-30 Thread translation
commit b36bcc8d1b5139d91733ff527e53869f646a1fd6
Author: Translation commit bot 
Date:   Wed Jan 30 09:45:06 2019 +

Update translations for abouttor-homepage
---
 et/aboutTor.dtd | 18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/et/aboutTor.dtd b/et/aboutTor.dtd
index 67193f914..c98ef5343 100644
--- a/et/aboutTor.dtd
+++ b/et/aboutTor.dtd
@@ -4,25 +4,25 @@
- vim: set sw=2 sts=2 ts=8 et syntax=xml:
   -->
 
-
+
 
-
-
+
+
 
 
 
-
+
 https://duckduckgo.com;>
 
 
-
+
 
 
-
+
 
 
-
+
 https://www.torproject.org/getinvolved/volunteer.html.en;>
 
-
-
+
+

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


[tor-commits] [translation/exoneratorproperties] Update translations for exoneratorproperties

2019-01-30 Thread translation
commit 38b2939d2c7bdb3d7a508abf1b3c397c1aef33b8
Author: Translation commit bot 
Date:   Wed Jan 30 09:45:38 2019 +

Update translations for exoneratorproperties
---
 et/exonerator.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/et/exonerator.properties b/et/exonerator.properties
index 2ca2822ee..adcdcb240 100644
--- a/et/exonerator.properties
+++ b/et/exonerator.properties
@@ -36,7 +36,7 @@ technicaldetails.colheader.timestamp=Timestamp (UTC)
 technicaldetails.colheader.ip=IP address(es)
 technicaldetails.colheader.fingerprint=Identity fingerprint
 technicaldetails.colheader.nickname=Nickname
-technicaldetails.colheader.exit=Exit relay
+technicaldetails.colheader.exit=Väljumisrelee
 technicaldetails.nickname.unknown=Tundmatu
 technicaldetails.exit.unknown=Tundmatu
 technicaldetails.exit.yes=Jah

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