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

2020-12-05 Thread translation
commit f56f8b9df525d0352cf21b4f0e46ceb11459f8bb
Author: Translation commit bot 
Date:   Sun Dec 6 04:45:25 2020 +

https://gitweb.torproject.org/translation.git/commit/?h=https_everywhere
---
 bn/https-everywhere.dtd | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bn/https-everywhere.dtd b/bn/https-everywhere.dtd
index 3fdf9d42f3..3e43a3b885 100644
--- a/bn/https-everywhere.dtd
+++ b/bn/https-everywhere.dtd
@@ -48,7 +48,7 @@
 
 
 
-
+
 
 
 
@@ -76,6 +76,6 @@
 
 
 
-
+
 
 

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


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

2020-12-05 Thread translation
commit 5ba0fbb9c3a9adf3e966463aa383ed5a1b568781
Author: Translation commit bot 
Date:   Sun Dec 6 02:15:10 2020 +


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

diff --git a/contents+es.po b/contents+es.po
index 9db269795a..0daefb3dfd 100644
--- a/contents+es.po
+++ b/contents+es.po
@@ -12016,12 +12016,12 @@ msgstr "Sitio-Onion"
 #: https//community.torproject.org/onion-services/advanced/onion-location/
 #: (content/onion-services/advanced/onion-location/contents+en.lrpage.subtitle)
 msgid "Learn how to set up an Onion-Location for your onion site."
-msgstr "Aprende como configurar un Sitio-Onion para su sitio .onion."
+msgstr "Aprendes como configurar un Sitio-Onion para tu sitio .onion."
 
 #: https//community.torproject.org/onion-services/advanced/onion-location/
 #: (content/onion-services/advanced/onion-location/contents+en.lrpage.body)
 msgid "Onion-Location is an easy way to advertise an onion site to the users."
-msgstr "Sitio-Onion ayuda promocionar su sitio .onion facilmente."
+msgstr "Sitio-Onion ayuda promocionar tu sitio .onion facilmente."
 
 #: https//community.torproject.org/onion-services/advanced/onion-location/
 #: (content/onion-services/advanced/onion-location/contents+en.lrpage.body)
@@ -12029,8 +12029,8 @@ msgid ""
 "You can either configure a web server to show an Onion-Location Header or "
 "add an HTML meta attribute in the website."
 msgstr ""
-"Se puede configurar un servidor de web para mostrar un Sitio-Onion o añadir "
-"un atributo meta HTML en el sitio web."
+"Te puedes configurar un servidor de web para mostrar un Sitio-Onion o añadir"
+" un atributo meta HTML en el sitio web."
 
 #: https//community.torproject.org/onion-services/advanced/onion-location/
 #: (content/onion-services/advanced/onion-location/contents+en.lrpage.body)

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


[tor-commits] [snowflake/master] Avoid double delay in client from ReconnectTimeout

2020-12-05 Thread cohosh
commit 3e8947bfc9af1b299bc202d0252245c03ba20f11
Author: Cecylia Bocovich 
Date:   Fri Dec 4 13:41:11 2020 -0500

Avoid double delay in client from ReconnectTimeout

Run the snowflake collection ReconnectTimeout timer in parallel to the
negotiation with the broker. This way, if the broker takes a long time
to respond the client doesn't have to wait the full timeout to respond.
---
 client/lib/snowflake.go | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/client/lib/snowflake.go b/client/lib/snowflake.go
index 171e173..10a2c0d 100644
--- a/client/lib/snowflake.go
+++ b/client/lib/snowflake.go
@@ -136,13 +136,13 @@ func Handler(socks net.Conn, tongue Tongue) error {
 // transfer to the Tor SOCKS handler when needed.
 func connectLoop(snowflakes SnowflakeCollector) {
for {
+   timer := time.After(ReconnectTimeout)
_, err := snowflakes.Collect()
if err != nil {
-   log.Printf("WebRTC: %v  Retrying in %v...",
-   err, ReconnectTimeout)
+   log.Printf("WebRTC: %v  Retrying...", err)
}
select {
-   case <-time.After(ReconnectTimeout):
+   case <-timer:
continue
case <-snowflakes.Melted():
log.Println("ConnectLoop: stopped.")

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


[tor-commits] [snowflake/master] Send shutdown signal to shutdown open connections

2020-12-05 Thread cohosh
commit b9cc54b3b7dbd76d85613f0f478c95b193441564
Author: Cecylia Bocovich 
Date:   Thu Oct 29 16:21:37 2020 -0400

Send shutdown signal to shutdown open connections

Normally all dangling goroutines are terminated when the main function
exits. However, for projects that use a patched version of snowflake as
a library, these goroutines continued running as long as the main function
had not yet terminated. This commit has all open SOCKS connections close
after receiving a shutdown signal.
---
 client/snowflake.go | 25 -
 1 file changed, 20 insertions(+), 5 deletions(-)

diff --git a/client/snowflake.go b/client/snowflake.go
index a1b97fa..a1a679e 100644
--- a/client/snowflake.go
+++ b/client/snowflake.go
@@ -27,7 +27,7 @@ const (
 )
 
 // Accept local SOCKS connections and pass them to the handler.
-func socksAcceptLoop(ln *pt.SocksListener, tongue sf.Tongue) {
+func socksAcceptLoop(ln *pt.SocksListener, tongue sf.Tongue, shutdown chan 
struct{}) {
defer ln.Close()
for {
conn, err := ln.AcceptSocks()
@@ -48,11 +48,23 @@ func socksAcceptLoop(ln *pt.SocksListener, tongue 
sf.Tongue) {
return
}
 
-   err = sf.Handler(conn, tongue)
-   if err != nil {
-   log.Printf("handler error: %s", err)
+   handler := make(chan struct{})
+   go func() {
+   err = sf.Handler(conn, tongue)
+   if err != nil {
+   log.Printf("handler error: %s", err)
+   }
+   close(handler)
return
+
+   }()
+   select {
+   case <-shutdown:
+   log.Println("Received shutdown signal")
+   case <-handler:
+   log.Println("Handler ended")
}
+   return
}()
}
 }
@@ -160,6 +172,7 @@ func main() {
os.Exit(1)
}
listeners := make([]net.Listener, 0)
+   shutdown := make(chan struct{})
for _, methodName := range ptInfo.MethodNames {
switch methodName {
case "snowflake":
@@ -170,7 +183,7 @@ func main() {
break
}
log.Printf("Started SOCKS listener at %v.", ln.Addr())
-   go socksAcceptLoop(ln, dialer)
+   go socksAcceptLoop(ln, dialer, shutdown)
pt.Cmethod(methodName, ln.Version(), ln.Addr())
listeners = append(listeners, ln)
default:
@@ -196,11 +209,13 @@ func main() {
 
// Wait for a signal.
<-sigChan
+   log.Println("stopping snowflake")
 
// Signal received, shut down.
for _, ln := range listeners {
ln.Close()
}
+   close(shutdown)
log.Println("snowflake is done.")
 }
 



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


[tor-commits] [snowflake/master] Wait until all goroutines finish before shutdown

2020-12-05 Thread cohosh
commit effc6675448a3a6e62d2784557d67e2c46e376d5
Author: Cecylia Bocovich 
Date:   Fri Dec 4 10:50:00 2020 -0500

Wait until all goroutines finish before shutdown
---
 client/snowflake.go | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/client/snowflake.go b/client/snowflake.go
index a1a679e..55addc1 100644
--- a/client/snowflake.go
+++ b/client/snowflake.go
@@ -12,6 +12,7 @@ import (
"os/signal"
"path/filepath"
"strings"
+   "sync"
"syscall"
"time"
 
@@ -27,7 +28,7 @@ const (
 )
 
 // Accept local SOCKS connections and pass them to the handler.
-func socksAcceptLoop(ln *pt.SocksListener, tongue sf.Tongue, shutdown chan 
struct{}) {
+func socksAcceptLoop(ln *pt.SocksListener, tongue sf.Tongue, shutdown chan 
struct{}, wg sync.WaitGroup) {
defer ln.Close()
for {
conn, err := ln.AcceptSocks()
@@ -40,6 +41,8 @@ func socksAcceptLoop(ln *pt.SocksListener, tongue sf.Tongue, 
shutdown chan struc
}
log.Printf("SOCKS accepted: %v", conn.Req)
go func() {
+   wg.Add(1)
+   defer wg.Done()
defer conn.Close()
 
err := conn.Grant({IP: net.IPv4zero, Port: 
0})
@@ -173,6 +176,7 @@ func main() {
}
listeners := make([]net.Listener, 0)
shutdown := make(chan struct{})
+   var wg sync.WaitGroup
for _, methodName := range ptInfo.MethodNames {
switch methodName {
case "snowflake":
@@ -183,7 +187,7 @@ func main() {
break
}
log.Printf("Started SOCKS listener at %v.", ln.Addr())
-   go socksAcceptLoop(ln, dialer, shutdown)
+   go socksAcceptLoop(ln, dialer, shutdown, wg)
pt.Cmethod(methodName, ln.Version(), ln.Addr())
listeners = append(listeners, ln)
default:
@@ -216,6 +220,7 @@ func main() {
ln.Close()
}
close(shutdown)
+   wg.Wait()
log.Println("snowflake is done.")
 }
 

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


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

2020-12-05 Thread translation
commit cdb8950f3306de815758f58ec1748c309cc82411
Author: Translation commit bot 
Date:   Sat Dec 5 15:16:35 2020 +

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

diff --git a/es.po b/es.po
index b8c2457a91..15cf0b89df 100644
--- a/es.po
+++ b/es.po
@@ -21,8 +21,8 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+\n"
-"Last-Translator: Transifex Bot <>\n"
+"PO-Revision-Date: 2020-12-05 15:11+\n"
+"Last-Translator: eulalio barbero espinosa \n"
 "Language-Team: Spanish 
(http://www.transifex.com/otf/torproject/language/es/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"

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


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

2020-12-05 Thread translation
commit 13b513f6d7ea53296a1e44040a6fd3fe92aec541
Author: Translation commit bot 
Date:   Sat Dec 5 15:15:56 2020 +

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

diff --git a/es.po b/es.po
index 082fac94de..df56dbe44f 100644
--- a/es.po
+++ b/es.po
@@ -21,8 +21,8 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+\n"
-"Last-Translator: Transifex Bot <>\n"
+"PO-Revision-Date: 2020-12-05 15:11+\n"
+"Last-Translator: eulalio barbero espinosa \n"
 "Language-Team: Spanish 
(http://www.transifex.com/otf/torproject/language/es/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -533,7 +533,7 @@ msgstr "Escrito al dispositivo a %(speed)d MB/sec"
 msgid ""
 "There was a problem executing the following command: `%(command)s`.\n"
 "A more detailed error log has been written to \"%(filename)s\"."
-msgstr ""
+msgstr "Hubo un problema al ejecutar el siguiente comando: `%(command)s`.\nSe 
ha escrito un registro de errores más detallado en \"%(filename)s\"."
 
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:424
 #, python-format
@@ -604,17 +604,17 @@ msgstr "No se encontraron puntos de montaje"
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:661
 #, python-format
 msgid "Entering unmount_device for \"%(device)s\""
-msgstr ""
+msgstr "Entrando dispositivo_desmontado para \"%(device)s\""
 
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:670
 #, python-format
 msgid "Unmounting mounted filesystems on \"%(device)s\""
-msgstr ""
+msgstr "Desmontar los sistemas de archivos montados en \"%(device)s\""
 
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:674
 #, python-format
 msgid "Unmounting \"%(udi)s\" on \"%(device)s\""
-msgstr ""
+msgstr "Demontando \"%(udi)s\" en \"%(device)s\""
 
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:685
 #, python-format
@@ -784,7 +784,7 @@ msgstr "El dispositivo \"%(pretty_name)s\" es demasiado 
pequeño para instalar T
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a 
downloaded Tails ISO image:\n"
 "%(dl_url)s"
-msgstr ""
+msgstr "Para actualizar el dispositivo \"%(pretty_name)s\" desde este Tails, 
necesitas usar una imagen ISO de Tails descargada:\n%(dl_url)s"
 
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:513
 msgid "An error happened while installing Tails"
@@ -865,17 +865,17 @@ msgstr "Hubo un problema al ejecutar 
`%(cmd)s`.\n%(out)s\n%(err)s"
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:64
 #, python-format
 msgid "\"%s\" does not exist"
-msgstr ""
+msgstr "\"%s\" no existe"
 
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:66
 #, python-format
 msgid "\"%s\" is not a directory"
-msgstr ""
+msgstr "\"%s\" no es un directorio"
 
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:77
 #, python-format
 msgid "Skipping \"%(filename)s\""
-msgstr ""
+msgstr "Saltando \"%(filename)s\""
 
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/utils.py:54
 #, python-format

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


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

2020-12-05 Thread translation
commit 4afc9ee3b2edcef458a0acefa092992dad8bbd12
Author: Translation commit bot 
Date:   Sat Dec 5 14:16:29 2020 +

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

diff --git a/it.po b/it.po
index 178ab26c71..e78fb76587 100644
--- a/it.po
+++ b/it.po
@@ -35,8 +35,8 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+\n"
-"Last-Translator: Transifex Bot <>\n"
+"PO-Revision-Date: 2020-12-05 14:07+\n"
+"Last-Translator: Random_R\n"
 "Language-Team: Italian 
(http://www.transifex.com/otf/torproject/language/it/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"

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


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

2020-12-05 Thread translation
commit f6b6a1bd4bb89a04eed1bec8a2a2c55a8b47b5c3
Author: Translation commit bot 
Date:   Sat Dec 5 14:15:49 2020 +

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

diff --git a/it.po b/it.po
index dcb29b96de..8a04717834 100644
--- a/it.po
+++ b/it.po
@@ -35,8 +35,8 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+\n"
-"Last-Translator: Transifex Bot <>\n"
+"PO-Revision-Date: 2020-12-05 14:07+\n"
+"Last-Translator: Random_R\n"
 "Language-Team: Italian 
(http://www.transifex.com/otf/torproject/language/it/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -547,7 +547,7 @@ msgstr "Scrittura eseguita a %(speed)d MB/sec"
 msgid ""
 "There was a problem executing the following command: `%(command)s`.\n"
 "A more detailed error log has been written to \"%(filename)s\"."
-msgstr ""
+msgstr "Si è verificato un problema durante l'esecuzione del comando: 
`%(command)s`.\nPer visualizzare ulteriori dettagli aprire il file 
\"%(filename)s\"."
 
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:424
 #, python-format
@@ -618,17 +618,17 @@ msgstr "Nessun punto di mount definito"
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:661
 #, python-format
 msgid "Entering unmount_device for \"%(device)s\""
-msgstr ""
+msgstr "Inserimento unmount_device per \"%(device)s\""
 
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:670
 #, python-format
 msgid "Unmounting mounted filesystems on \"%(device)s\""
-msgstr ""
+msgstr "Smontaggio dei filesystem montati su \"%(device)s\""
 
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:674
 #, python-format
 msgid "Unmounting \"%(udi)s\" on \"%(device)s\""
-msgstr ""
+msgstr "Smontaggio di \"%(udi)s\" su \"%(device)s\""
 
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:685
 #, python-format
@@ -798,7 +798,7 @@ msgstr "Il dispositivo \"%(pretty_name)s\" è troppo 
piccolo per installarci Tai
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a 
downloaded Tails ISO image:\n"
 "%(dl_url)s"
-msgstr ""
+msgstr "Per aggiornare il dispositivo \"%(pretty_name)s\" da questo Tails, 
devi usare un'immagine ISO di Tails scaricata:\n%(dl_url)s"
 
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:513
 msgid "An error happened while installing Tails"
@@ -879,17 +879,17 @@ msgstr "Problema durante l'esecuzione di 
`%(cmd)s`.\n%(out)s\n%(err)s"
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:64
 #, python-format
 msgid "\"%s\" does not exist"
-msgstr ""
+msgstr "\"%s\" non esiste"
 
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:66
 #, python-format
 msgid "\"%s\" is not a directory"
-msgstr ""
+msgstr "\"%s\" non è una cartella"
 
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:77
 #, python-format
 msgid "Skipping \"%(filename)s\""
-msgstr ""
+msgstr "Salto \"%(filename)s\""
 
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/utils.py:54
 #, python-format

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


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

2020-12-05 Thread translation
commit e6b873ff8cfd6de8cc3958dc6ae4eb10d96e0210
Author: Translation commit bot 
Date:   Sat Dec 5 13:15:22 2020 +


https://gitweb.torproject.org/translation.git/commit/?h=fenix-torbrowserstringsxml
---
 pt-rPT/torbrowser_strings.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/pt-rPT/torbrowser_strings.xml b/pt-rPT/torbrowser_strings.xml
index 5bc84a0c1f..fa159ff020 100644
--- a/pt-rPT/torbrowser_strings.xml
+++ b/pt-rPT/torbrowser_strings.xml
@@ -31,4 +31,5 @@
 A Mais Segura
 Use uma mascara, use o Tor.
 Resista à pandemia de 
vigilância.
-
+A sua doação será igualada por Amigos 
do Tor.
+

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


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

2020-12-05 Thread translation
commit bdc9760f0b192a339237cd2288934e5d9af4fab2
Author: Translation commit bot 
Date:   Sat Dec 5 13:15:02 2020 +

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

diff --git a/pt-PT/aboutTor.dtd b/pt-PT/aboutTor.dtd
index 4ebe289b2f..5711fa72e0 100644
--- a/pt-PT/aboutTor.dtd
+++ b/pt-PT/aboutTor.dtd
@@ -33,4 +33,4 @@
 
 
 
-
+

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


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

2020-12-05 Thread translation
commit d55c3b2b4a8cac6a7b6a7b018b296d57c6d749db
Author: Translation commit bot 
Date:   Sat Dec 5 11:47:45 2020 +


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

diff --git a/kn/network-settings.dtd b/kn/network-settings.dtd
index f6f457ee75..c8ad2c3b09 100644
--- a/kn/network-settings.dtd
+++ b/kn/network-settings.dtd
@@ -32,7 +32,7 @@
 
 
 
-
+
 
 
 
@@ -44,7 +44,7 @@
 
 
 
-
+
 
 
 

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


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

2020-12-05 Thread translation
commit 02c8c8f6a79ff6b678f2913bc7da773e1296ddb6
Author: Translation commit bot 
Date:   Sat Dec 5 11:47:34 2020 +


https://gitweb.torproject.org/translation.git/commit/?h=torbutton-securitylevelproperties
---
 kn/securitylevel.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kn/securitylevel.properties b/kn/securitylevel.properties
index 2794c5f81e..f054dca875 100644
--- a/kn/securitylevel.properties
+++ b/kn/securitylevel.properties
@@ -17,6 +17,6 @@ securityLevel.safest.description1 = JavaScript is disabled by 
default on all sit
 securityLevel.safest.description2 = Some fonts, icons, math symbols, and 
images are disabled.
 securityLevel.safest.description3 = Audio and video (HTML5 media) are 
click-to-play.
 securityLevel.custom.summary = Your custom browser preferences have resulted 
in unusual security settings. For security and privacy reasons, we recommend 
you choose one of the default security levels.
-securityLevel.learnMore = Learn more
+securityLevel.learnMore = ಹೆಚ್ಚು ಕಲಿಯಿರಿ
 securityLevel.restoreDefaults = Restore Defaults
 securityLevel.advancedSecuritySettings = Advanced Security Settings…

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


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

2020-12-05 Thread translation
commit 1d1ecec12f55df47561842c8b24d8093b5ca16dc
Author: Translation commit bot 
Date:   Sat Dec 5 11:47:19 2020 +


https://gitweb.torproject.org/translation.git/commit/?h=torbutton-torbuttondtd
---
 kn/torbutton.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kn/torbutton.dtd b/kn/torbutton.dtd
index 4f1edcd556..5d1fd5be1e 100644
--- a/kn/torbutton.dtd
+++ b/kn/torbutton.dtd
@@ -31,7 +31,7 @@
 
 
 
-
+
 
 
 

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


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

2020-12-05 Thread translation
commit e28c958357953aaa91eda551453b475382af1915
Author: Translation commit bot 
Date:   Sat Dec 5 11:47:16 2020 +


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

diff --git a/kn/torbutton.properties b/kn/torbutton.properties
index 7438ba2e81..20bf4bc48e 100644
--- a/kn/torbutton.properties
+++ b/kn/torbutton.properties
@@ -7,7 +7,7 @@ torbutton.circuit_display.tor_bridge = Bridge
 torbutton.circuit_display.unknown_country = ತಿಳಿಯದ ದೇಶ
 torbutton.circuit_display.guard = Guard
 torbutton.circuit_display.guard_note = Your [Guard] node may not change.
-torbutton.circuit_display.learn_more = Learn more
+torbutton.circuit_display.learn_more = ಹೆಚ್ಚು ಕಲಿಯಿರಿ
 torbutton.circuit_display.click_to_copy = Click to Copy
 torbutton.circuit_display.copied = Copied!
 torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make 
the width and height of your window less distinctive, and thus reduces the 
ability of people to track you online.
@@ -63,7 +63,7 @@ pageInfo_OnionEncryption=Connection Encrypted (Onion Service)
 pageInfo_OnionName=Onion Name:
 
 # Onion services strings.  Strings are kept here for ease of translation.
-onionServices.learnMore=Learn more
+onionServices.learnMore=ಹೆಚ್ಚು ಕಲಿಯಿರಿ
 onionServices.errorPage.browser=Browser
 onionServices.errorPage.network=Network
 onionServices.errorPage.onionSite=Onionsite

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


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

2020-12-05 Thread translation
commit 195e927d04cdd0b2c381cdcb39cb5299bdcf4804
Author: Translation commit bot 
Date:   Sat Dec 5 11:46:32 2020 +

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

diff --git a/kn.po b/kn.po
index c4865303eb..f1d9fe71b9 100644
--- a/kn.po
+++ b/kn.po
@@ -9,8 +9,8 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-05 09:56+\n"
-"Last-Translator: c sk \n"
+"PO-Revision-Date: 2020-12-05 11:43+\n"
+"Last-Translator: Yogesh K S \n"
 "Language-Team: Kannada 
(http://www.transifex.com/otf/torproject/language/kn/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"

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


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

2020-12-05 Thread translation
commit 5bca46cb020365c3c861254dc03d1cb7b1e50f5d
Author: Translation commit bot 
Date:   Sat Dec 5 11:45:52 2020 +

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

diff --git a/kn.po b/kn.po
index c87ad3c39b..c29bbb02c1 100644
--- a/kn.po
+++ b/kn.po
@@ -9,8 +9,8 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-05 09:56+\n"
-"Last-Translator: c sk \n"
+"PO-Revision-Date: 2020-12-05 11:43+\n"
+"Last-Translator: Yogesh K S \n"
 "Language-Team: Kannada 
(http://www.transifex.com/otf/torproject/language/kn/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -379,7 +379,7 @@ msgstr "Cancel"
 
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:46
 msgid "Add"
-msgstr ""
+msgstr "ಸೇರಿಸಿ"
 
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:54
 msgid "Back"
@@ -1434,7 +1434,7 @@ msgstr ""
 
 #: 
config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
 msgid "Documentation"
-msgstr ""
+msgstr "ದಾಖಲೆ"
 
 #. Translators: Don't translate {package}, it's a placeholder and will be
 #. replaced.
@@ -1522,7 +1522,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:149
 msgid "Password"
-msgstr ""
+msgstr "ಪಾಸ್‌ವರ್ಡ್"
 
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
 #: 
../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:93
@@ -1596,7 +1596,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:77
 msgid "Learn more"
-msgstr ""
+msgstr "ಹೆಚ್ಚು ಕಲಿಯಿರಿ"
 
 #: config/chroot_local-includes/usr/local/bin/thunderbird:40
 msgid "You need to migrate your OpenPGP keys"

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


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

2020-12-05 Thread translation
commit 140a3074ecd1ee1d0bb0523f8b44a83a3fbef482
Author: Translation commit bot 
Date:   Sat Dec 5 11:45:29 2020 +

https://gitweb.torproject.org/translation.git/commit/?h=mat-gui
---
 kn.po | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/kn.po b/kn.po
index 27f47a8010..e7398a768d 100644
--- a/kn.po
+++ b/kn.po
@@ -8,8 +8,8 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-02-10 23:06+0100\n"
-"PO-Revision-Date: 2019-01-15 12:23+\n"
-"Last-Translator: erinm\n"
+"PO-Revision-Date: 2020-12-05 11:43+\n"
+"Last-Translator: Yogesh K S \n"
 "Language-Team: Kannada 
(http://www.transifex.com/otf/torproject/language/kn/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -148,7 +148,7 @@ msgstr ""
 
 #: data/mat.glade:187
 msgid "Add"
-msgstr ""
+msgstr "ಸೇರಿಸಿ"
 
 #: data/mat.glade:256
 msgid "State"
@@ -160,7 +160,7 @@ msgstr ""
 
 #: data/mat.glade:354
 msgid "Name"
-msgstr ""
+msgstr "ಹೆಸರು"
 
 #: data/mat.glade:368
 msgid "Content"

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


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

2020-12-05 Thread translation
commit 118c12314bcde9eb8fb0bbed4a6caec936cfe09f
Author: Translation commit bot 
Date:   Sat Dec 5 11:17:47 2020 +

https://gitweb.torproject.org/translation.git/commit/?h=tpo-web
---
 contents+hi.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contents+hi.po b/contents+hi.po
index 2d405971b2..51bce3cfa1 100644
--- a/contents+hi.po
+++ b/contents+hi.po
@@ -110,7 +110,7 @@ msgstr "के बारे में"
 
 #: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.body)
 msgid "Documentation"
-msgstr ""
+msgstr "दस्तावेज़ीकरण"
 
 #: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.body)
 msgid "Press"

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


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

2020-12-05 Thread translation
commit e6911a830df36029a969a2e554d7bfff35e6398c
Author: Translation commit bot 
Date:   Sat Dec 5 11:16:26 2020 +

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

diff --git a/kn/openpgp-applet.pot b/kn/openpgp-applet.pot
index a380527d2c..44bd1b757f 100644
--- a/kn/openpgp-applet.pot
+++ b/kn/openpgp-applet.pot
@@ -5,17 +5,17 @@
 # Translators:
 msgid ""
 msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: ta...@boum.org\n"
 "POT-Creation-Date: 2017-08-05 15:07-0400\n"
-"PO-Revision-Date: 2015-11-23 02:23+\n"
-"Last-Translator: FULL NAME \n"
+"PO-Revision-Date: 2020-12-05 10:47+\n"
+"Last-Translator: c sk \n"
 "Language-Team: Kannada 
(http://www.transifex.com/otf/torproject/language/kn/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: kn\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 #: bin/openpgp-applet:160
 msgid "You are about to exit OpenPGP Applet. Are you sure?"
@@ -27,7 +27,7 @@ msgstr ""
 
 #: bin/openpgp-applet:175
 msgid "Exit"
-msgstr ""
+msgstr "ನಿರ್ಗಮಿಸು"
 
 #: bin/openpgp-applet:177
 msgid "About"
@@ -93,6 +93,7 @@ msgstr ""
 msgid "User ID:"
 msgid_plural "User IDs:"
 msgstr[0] ""
+msgstr[1] ""
 
 #: bin/openpgp-applet:465
 msgid "None (Don't sign)"
@@ -128,11 +129,13 @@ msgstr ""
 msgid "The following selected key is not fully trusted:"
 msgid_plural "The following selected keys are not fully trusted:"
 msgstr[0] ""
+msgstr[1] ""
 
 #: bin/openpgp-applet:610
 msgid "Do you trust this key enough to use it anyway?"
 msgid_plural "Do you trust these keys enough to use them anyway?"
 msgstr[0] ""
+msgstr[1] ""
 
 #: bin/openpgp-applet:623
 msgid "No keys selected"

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


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

2020-12-05 Thread translation
commit 7532c9c543bc8b398946a4af939d95c50ce4b519
Author: Translation commit bot 
Date:   Sat Dec 5 11:16:24 2020 +

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

diff --git a/hi.po b/hi.po
index 3677e6c5ca..ca12a3a0bd 100644
--- a/hi.po
+++ b/hi.po
@@ -10,8 +10,8 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+\n"
-"Last-Translator: Transifex Bot <>\n"
+"PO-Revision-Date: 2020-12-05 10:53+\n"
+"Last-Translator: Karan Saini\n"
 "Language-Team: Hindi (http://www.transifex.com/otf/torproject/language/hi/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"

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


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

2020-12-05 Thread translation
commit 0f7f88d1bda23c15ce068bafbfa53e0a78ec5fb9
Author: Translation commit bot 
Date:   Sat Dec 5 11:15:49 2020 +

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

diff --git a/hi.po b/hi.po
index 2db35f804a..5b5297cd5a 100644
--- a/hi.po
+++ b/hi.po
@@ -10,8 +10,8 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+\n"
-"Last-Translator: Transifex Bot <>\n"
+"PO-Revision-Date: 2020-12-05 10:53+\n"
+"Last-Translator: Karan Saini\n"
 "Language-Team: Hindi (http://www.transifex.com/otf/torproject/language/hi/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -1435,7 +1435,7 @@ msgstr ""
 
 #: 
config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
 msgid "Documentation"
-msgstr ""
+msgstr "दस्तावेज़ीकरण"
 
 #. 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/tor-launcher-properties] https://gitweb.torproject.org/translation.git/commit/?h=tor-launcher-properties

2020-12-05 Thread translation
commit 629e3a00b50cf789c306b805d64fa87f9e9631f0
Author: Translation commit bot 
Date:   Sat Dec 5 10:47:50 2020 +


https://gitweb.torproject.org/translation.git/commit/?h=tor-launcher-properties
---
 kn/torlauncher.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kn/torlauncher.properties b/kn/torlauncher.properties
index d20ab77430..865a337f10 100644
--- a/kn/torlauncher.properties
+++ b/kn/torlauncher.properties
@@ -45,7 +45,7 @@ torlauncher.no_bridges_available=No bridges are available at 
this time. Sorry.
 torlauncher.connect=ಸಂಪರ್ಕಿಸಿ
 torlauncher.restart_tor=Restart Tor
 torlauncher.quit=Quit
-torlauncher.quit_win=Exit
+torlauncher.quit_win=ನಿರ್ಗಮಿಸು
 torlauncher.done=‍ಮುಗಿದಿದೆ
 
 torlauncher.forAssistance=For assistance, contact %S

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


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

2020-12-05 Thread translation
commit f82a188b4d875043fe03a62e170a552efa593003
Author: Translation commit bot 
Date:   Sat Dec 5 10:17:38 2020 +


https://gitweb.torproject.org/translation.git/commit/?h=torbutton-abouttbupdatedtd
---
 kn/abouttbupdate.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kn/abouttbupdate.dtd b/kn/abouttbupdate.dtd
index 2d1e59b40e..69009b222a 100644
--- a/kn/abouttbupdate.dtd
+++ b/kn/abouttbupdate.dtd
@@ -3,6 +3,6 @@
 
 
 
-
+
 
 

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


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

2020-12-05 Thread translation
commit 027892c696b9b3296e195f58ba87ed0bd0cd9efb
Author: Translation commit bot 
Date:   Sat Dec 5 10:17:17 2020 +

https://gitweb.torproject.org/translation.git/commit/?h=torbirdy
---
 kn/torbirdy.dtd | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kn/torbirdy.dtd b/kn/torbirdy.dtd
index 7fb0974836..1b6b9871fe 100644
--- a/kn/torbirdy.dtd
+++ b/kn/torbirdy.dtd
@@ -5,11 +5,11 @@
 
 
 
-
+
 
 
 
-
+
 
 
 

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


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

2020-12-05 Thread translation
commit f35f4b220792fdff27d7409f93e5bed68d5f963d
Author: Translation commit bot 
Date:   Sat Dec 5 10:16:41 2020 +

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

diff --git a/kn.po b/kn.po
index 92c8075a2c..c4865303eb 100644
--- a/kn.po
+++ b/kn.po
@@ -9,7 +9,7 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-05 09:19+\n"
+"PO-Revision-Date: 2020-12-05 09:56+\n"
 "Last-Translator: c sk \n"
 "Language-Team: Kannada 
(http://www.transifex.com/otf/torproject/language/kn/)\n"
 "MIME-Version: 1.0\n"

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


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

2020-12-05 Thread translation
commit 1ebec8ad3341db573ff9d9f940a3b7e1a18afe2e
Author: Translation commit bot 
Date:   Sat Dec 5 10:16:00 2020 +

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

diff --git a/kn.po b/kn.po
index 846c1d5816..c87ad3c39b 100644
--- a/kn.po
+++ b/kn.po
@@ -9,7 +9,7 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-05 09:19+\n"
+"PO-Revision-Date: 2020-12-05 09:56+\n"
 "Last-Translator: c sk \n"
 "Language-Team: Kannada 
(http://www.transifex.com/otf/torproject/language/kn/)\n"
 "MIME-Version: 1.0\n"
@@ -1002,7 +1002,7 @@ msgstr ""
 
 #: 
config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:98
 msgid "Save"
-msgstr ""
+msgstr "ಉಳಿಸು"
 
 #: 
config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:191
 msgid "Saving..."

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


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

2020-12-05 Thread translation
commit dff7c32c17c238e2b600c2c8b9824d623d977380
Author: Translation commit bot 
Date:   Sat Dec 5 10:15:24 2020 +

https://gitweb.torproject.org/translation.git/commit/?h=https_everywhere
---
 kn/https-everywhere.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kn/https-everywhere.dtd b/kn/https-everywhere.dtd
index 7d0ece601e..722e3df3ed 100644
--- a/kn/https-everywhere.dtd
+++ b/kn/https-everywhere.dtd
@@ -1,7 +1,7 @@
 
 
 
-
+
 
 
 

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


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

2020-12-05 Thread translation
commit 5136aba49d9687559b69de84db1fb04aa5522284
Author: Translation commit bot 
Date:   Sat Dec 5 09:47:19 2020 +


https://gitweb.torproject.org/translation.git/commit/?h=torbutton-torbuttonproperties
---
 kn/torbutton.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kn/torbutton.properties b/kn/torbutton.properties
index 08fe2b851a..7438ba2e81 100644
--- a/kn/torbutton.properties
+++ b/kn/torbutton.properties
@@ -124,7 +124,7 @@ onionServices.authPreferences.dialogTitle=Onion Service Keys
 onionServices.authPreferences.dialogIntro=Keys for the following onionsites 
are stored on your computer
 onionServices.authPreferences.onionSite=Onionsite
 onionServices.authPreferences.onionKey=ಕೀಲಿ
-onionServices.authPreferences.remove=Remove
+onionServices.authPreferences.remove=ತೆಗೆದುಹಾಕು
 onionServices.authPreferences.removeAll=Remove All
 onionServices.authPreferences.failedToGetKeys=Unable to retrieve keys from tor
 onionServices.authPreferences.failedToRemoveKey=Unable to remove 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_release] https://gitweb.torproject.org/translation.git/commit/?h=tails-misc_release

2020-12-05 Thread translation
commit 55ea8aa2f1891cade9cbacfe6071e05b76bc635f
Author: Translation commit bot 
Date:   Sat Dec 5 09:46:32 2020 +

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

diff --git a/kn.po b/kn.po
index 9218b953fe..92c8075a2c 100644
--- a/kn.po
+++ b/kn.po
@@ -9,8 +9,8 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-05 09:12+\n"
-"Last-Translator: Yogesh K S \n"
+"PO-Revision-Date: 2020-12-05 09:19+\n"
+"Last-Translator: c sk \n"
 "Language-Team: Kannada 
(http://www.transifex.com/otf/torproject/language/kn/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/sq.po b/sq.po
index 74f7829dc4..b896b04e65 100644
--- a/sq.po
+++ b/sq.po
@@ -12,8 +12,8 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+\n"
-"Last-Translator: Transifex Bot <>\n"
+"PO-Revision-Date: 2020-12-05 09:32+\n"
+"Last-Translator: Besnik Bleta \n"
 "Language-Team: Albanian 
(http://www.transifex.com/otf/torproject/language/sq/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"

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


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

2020-12-05 Thread translation
commit 5cdf037217ae0740bcead1d51e29ba9e690bb7fd
Author: Translation commit bot 
Date:   Sat Dec 5 09:45:52 2020 +

https://gitweb.torproject.org/translation.git/commit/?h=tails-misc
---
 kn.po |  6 +++---
 sq.po | 18 +-
 2 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/kn.po b/kn.po
index c2adadb2e0..846c1d5816 100644
--- a/kn.po
+++ b/kn.po
@@ -9,8 +9,8 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-05 09:12+\n"
-"Last-Translator: Yogesh K S \n"
+"PO-Revision-Date: 2020-12-05 09:19+\n"
+"Last-Translator: c sk \n"
 "Language-Team: Kannada 
(http://www.transifex.com/otf/torproject/language/kn/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -1399,7 +1399,7 @@ msgstr ""
 #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
 #: 
config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
 msgid "Remove"
-msgstr ""
+msgstr "ತೆಗೆದುಹಾಕು"
 
 #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
 msgid "Installing your additional software from persistent storage..."
diff --git a/sq.po b/sq.po
index d573548395..af6c1b5ad2 100644
--- a/sq.po
+++ b/sq.po
@@ -12,8 +12,8 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+\n"
-"Last-Translator: Transifex Bot <>\n"
+"PO-Revision-Date: 2020-12-05 09:32+\n"
+"Last-Translator: Besnik Bleta \n"
 "Language-Team: Albanian 
(http://www.transifex.com/otf/torproject/language/sq/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -524,7 +524,7 @@ msgstr "U shkrua në pajisje me shpejtësi %(speed)d MB/sek"
 msgid ""
 "There was a problem executing the following command: `%(command)s`.\n"
 "A more detailed error log has been written to \"%(filename)s\"."
-msgstr ""
+msgstr "Pati një problem me përmbushjen e urdhrit vijues: 
`%(command)s`.\nTë dhëna më të hollësishme regjistrimi gabimi janë 
shkruar te \"%(filename)s\"."
 
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:424
 #, python-format
@@ -600,12 +600,12 @@ msgstr ""
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:670
 #, python-format
 msgid "Unmounting mounted filesystems on \"%(device)s\""
-msgstr ""
+msgstr "Po çmontohen sisteme kartelash të montuar te \"%(device)s\""
 
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:674
 #, python-format
 msgid "Unmounting \"%(udi)s\" on \"%(device)s\""
-msgstr ""
+msgstr "Po çmontohet \"%(udi)s\" te \"%(device)s\""
 
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:685
 #, python-format
@@ -775,7 +775,7 @@ msgstr "Pajisja \"%(pretty_name)s\" është shumë e vogël 
për të instaluar T
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a 
downloaded Tails ISO image:\n"
 "%(dl_url)s"
-msgstr ""
+msgstr "Që të përmirësohet pajisja \"%(pretty_name)s\" prej kësaj 
instance Tails, lypset të përdorni një pamje ISO Tails të 
shkarkuar:\n%(dl_url)s"
 
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:513
 msgid "An error happened while installing Tails"
@@ -856,17 +856,17 @@ msgstr "Pati një problem me përmbushjen e 
`%(cmd)s`.\n%(out)s\n%(err)s"
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:64
 #, python-format
 msgid "\"%s\" does not exist"
-msgstr ""
+msgstr "\"%s\" s’ekziston"
 
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:66
 #, python-format
 msgid "\"%s\" is not a directory"
-msgstr ""
+msgstr "\"%s\" s’është drejtori"
 
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:77
 #, python-format
 msgid "Skipping \"%(filename)s\""
-msgstr ""
+msgstr "Po anashkalohet \"%(filename)s\""
 
 #: 
config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/utils.py:54
 #, python-format

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


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

2020-12-05 Thread translation
commit 2b5bba56bc0f72066e2cf56b87953d1324b54231
Author: Translation commit bot 
Date:   Sat Dec 5 09:45:27 2020 +

https://gitweb.torproject.org/translation.git/commit/?h=https_everywhere
---
 ta/https-everywhere.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ta/https-everywhere.dtd b/ta/https-everywhere.dtd
index 94ba2716c4..32eb9e38ab 100644
--- a/ta/https-everywhere.dtd
+++ b/ta/https-everywhere.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/tor-launcher-network-settings] https://gitweb.torproject.org/translation.git/commit/?h=tor-launcher-network-settings

2020-12-05 Thread translation
commit 1781058cb1700f4d1f2b4fbf697467933a8269a3
Author: Translation commit bot 
Date:   Sat Dec 5 09:20:27 2020 +


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

diff --git a/kn/network-settings.dtd b/kn/network-settings.dtd
index e6d2373015..f6f457ee75 100644
--- a/kn/network-settings.dtd
+++ b/kn/network-settings.dtd
@@ -31,7 +31,7 @@
 
 
 
-
+
 
 
 
diff --git a/mr/network-settings.dtd b/mr/network-settings.dtd
index 997cb2e066..5ede175dbc 100644
--- a/mr/network-settings.dtd
+++ b/mr/network-settings.dtd
@@ -31,7 +31,7 @@
 
 
 
-
+
 
 
 

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


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

2020-12-05 Thread translation
commit d4378f714a4bd5efdc2e26a36f6b3672a2c5537b
Author: Translation commit bot 
Date:   Sat Dec 5 09:18:53 2020 +


https://gitweb.torproject.org/translation.git/commit/?h=torbutton-torbuttonproperties
---
 mr/torbutton.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mr/torbutton.properties b/mr/torbutton.properties
index 8350e8eec8..332f5473d5 100644
--- a/mr/torbutton.properties
+++ b/mr/torbutton.properties
@@ -124,7 +124,7 @@ onionServices.authPreferences.dialogTitle=Onion Service Keys
 onionServices.authPreferences.dialogIntro=Keys for the following onionsites 
are stored on your computer
 onionServices.authPreferences.onionSite=Onionsite
 onionServices.authPreferences.onionKey=Key
-onionServices.authPreferences.remove=Remove
+onionServices.authPreferences.remove=हटवा
 onionServices.authPreferences.removeAll=Remove All
 onionServices.authPreferences.failedToGetKeys=Unable to retrieve keys from tor
 onionServices.authPreferences.failedToRemoveKey=Unable to remove 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_release] https://gitweb.torproject.org/translation.git/commit/?h=tails-misc_release

2020-12-05 Thread translation
commit bad3ffab4a878663fa291edc7cf46344d3ddbbb7
Author: Translation commit bot 
Date:   Sat Dec 5 09:17:44 2020 +

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

diff --git a/kn.po b/kn.po
index 31b9314183..9218b953fe 100644
--- a/kn.po
+++ b/kn.po
@@ -9,8 +9,8 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+\n"
-"Last-Translator: Transifex Bot <>\n"
+"PO-Revision-Date: 2020-12-05 09:12+\n"
+"Last-Translator: Yogesh K S \n"
 "Language-Team: Kannada 
(http://www.transifex.com/otf/torproject/language/kn/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/mr.po b/mr.po
index 19f38d3bda..d0af8c3e81 100644
--- a/mr.po
+++ b/mr.po
@@ -10,8 +10,8 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+\n"
-"Last-Translator: Transifex Bot <>\n"
+"PO-Revision-Date: 2020-12-05 08:49+\n"
+"Last-Translator: Prachi Joshi \n"
 "Language-Team: Marathi 
(http://www.transifex.com/otf/torproject/language/mr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"

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


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

2020-12-05 Thread translation
commit 7fc21b61ae7ee0cd04dff33d5e195656dbc1
Author: Translation commit bot 
Date:   Sat Dec 5 09:16:55 2020 +

https://gitweb.torproject.org/translation.git/commit/?h=tails-misc
---
 kn.po | 8 
 mr.po | 6 +++---
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/kn.po b/kn.po
index 85e51d736f..c2adadb2e0 100644
--- a/kn.po
+++ b/kn.po
@@ -9,8 +9,8 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+\n"
-"Last-Translator: Transifex Bot <>\n"
+"PO-Revision-Date: 2020-12-05 09:12+\n"
+"Last-Translator: Yogesh K S \n"
 "Language-Team: Kannada 
(http://www.transifex.com/otf/torproject/language/kn/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -1029,7 +1029,7 @@ msgstr ""
 
 #: 
config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:64
 msgid "Delete"
-msgstr ""
+msgstr "ಅಳಿಸು"
 
 #: 
config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:114
 msgid "Deleting..."
@@ -1527,7 +1527,7 @@ msgstr ""
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
 #: 
../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:93
 msgid "Confirm"
-msgstr ""
+msgstr "ಖಚಿತಪಡಿಸಿ"
 
 #: config/chroot_local-includes/usr/local/bin/tails-security-check:121
 msgid "This version of Tails has known security issues:"
diff --git a/mr.po b/mr.po
index a38d0a1fa4..a6e2a1056d 100644
--- a/mr.po
+++ b/mr.po
@@ -10,8 +10,8 @@ msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+\n"
-"Last-Translator: Transifex Bot <>\n"
+"PO-Revision-Date: 2020-12-05 08:49+\n"
+"Last-Translator: Prachi Joshi \n"
 "Language-Team: Marathi 
(http://www.transifex.com/otf/torproject/language/mr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -1400,7 +1400,7 @@ msgstr ""
 #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
 #: 
config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
 msgid "Remove"
-msgstr ""
+msgstr "हटवा"
 
 #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
 msgid "Installing your additional software from persistent storage..."

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


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

2020-12-05 Thread translation
commit 131e7add0a2b5591175ec5e5a4c3bda605165f9b
Author: Translation commit bot 
Date:   Sat Dec 5 09:15:23 2020 +

https://gitweb.torproject.org/translation.git/commit/?h=https_everywhere
---
 kn/https-everywhere.dtd | 2 +-
 mr/https-everywhere.dtd | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kn/https-everywhere.dtd b/kn/https-everywhere.dtd
index 62c5c398ab..7d0ece601e 100644
--- a/kn/https-everywhere.dtd
+++ b/kn/https-everywhere.dtd
@@ -34,7 +34,7 @@
 
 
 
-
+
 
 
 
diff --git a/mr/https-everywhere.dtd b/mr/https-everywhere.dtd
index 766045b6fb..5e24e89617 100644
--- a/mr/https-everywhere.dtd
+++ b/mr/https-everywhere.dtd
@@ -19,7 +19,7 @@
 
 
 
-
+
 
 
 

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


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

2020-12-05 Thread translation
commit ea9075958ceed122875aa1b875dfcf64334c12cb
Author: Translation commit bot 
Date:   Sat Dec 5 08:47:57 2020 +


https://gitweb.torproject.org/translation.git/commit/?h=tor-launcher-network-settings
---
 hi-IN/network-settings.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hi-IN/network-settings.dtd b/hi-IN/network-settings.dtd
index 5cecbc0610..4266275df3 100644
--- a/hi-IN/network-settings.dtd
+++ b/hi-IN/network-settings.dtd
@@ -31,7 +31,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] https://gitweb.torproject.org/translation.git/commit/?h=https_everywhere

2020-12-05 Thread translation
commit 66f35e7bf17c5ec933cb18462f0e339109f9d7d8
Author: Translation commit bot 
Date:   Sat Dec 5 08:45:34 2020 +

https://gitweb.torproject.org/translation.git/commit/?h=https_everywhere
---
 kn/https-everywhere.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kn/https-everywhere.dtd b/kn/https-everywhere.dtd
index 56c6b9df66..62c5c398ab 100644
--- a/kn/https-everywhere.dtd
+++ b/kn/https-everywhere.dtd
@@ -35,7 +35,7 @@
 
 
 
-
+
 
 
 

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