[tor-commits] [webwml/master] Drop Sebastian's pgp key

2017-07-15 Thread atagar
commit c9e4645b4e226f07c9fe083b1cf6bfdda3d5e8d6
Author: Damian Johnson 
Date:   Sat Jul 15 21:14:50 2017 -0700

Drop Sebastian's pgp key

His db.torproject.org entry is expired.
---
 about/en/corepeople.wml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/about/en/corepeople.wml b/about/en/corepeople.wml
index fd595eb..b2a6675 100644
--- a/about/en/corepeople.wml
+++ b/about/en/corepeople.wml
@@ -588,7 +588,6 @@ table.people tr td:first-child {
 
   
   
-  https://db.torproject.org/fetchkey.cgi?fingerprint=6D3111D4E0313392FE8BEDD40800D6BBDF3DCEE6;>
   Sebastian Hahn
   Helps people around the world use and 
understand Tor better. Generally helps everything run smoothly. Runs one of the 
directory authorities.
 

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


[tor-commits] [nyx/master] Drop refresh from draw loop

2017-07-15 Thread atagar
commit 7642b1e18fa7dd78f22a8203260e04cfd6791f1b
Author: Damian Johnson 
Date:   Wed Dec 7 10:28:06 2016 -0800

Drop refresh from draw loop

Hmmm, don't seem to need it. There might be a use case where this bites us 
but
until we find one lets drop it.
---
 nyx/__init__.py | 2 --
 nyx/curses.py   | 9 -
 2 files changed, 11 deletions(-)

diff --git a/nyx/__init__.py b/nyx/__init__.py
index 105a72a..370f954 100644
--- a/nyx/__init__.py
+++ b/nyx/__init__.py
@@ -128,8 +128,6 @@ def draw_loop():
   while not interface._quit:
 interface.redraw()
 
-nyx.curses.refresh()  # TODO: is this necessary?
-
 if next_key:
   key, next_key = next_key, None
 else:
diff --git a/nyx/curses.py b/nyx/curses.py
index 6d61867..acac3aa 100644
--- a/nyx/curses.py
+++ b/nyx/curses.py
@@ -15,7 +15,6 @@ if we want Windows support in the future too.
   key_input - get keypress by user
   str_input - text field where user can input a string
   curses_attr - curses encoded text attribute
-  refresh - flushes content to the screen
   clear - wipes all content from the screen
   screen_size - provides the dimensions of our screen
   screenshot - dump of the present on-screen content
@@ -432,14 +431,6 @@ def curses_attr(*attributes):
   return encoded
 
 
-def refresh():
-  """
-  Ensure content is flushed to the screen.
-  """
-
-  CURSES_SCREEN.refresh()
-
-
 def clear():
   """
   Clears all content from the screen.



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


[tor-commits] [nyx/master] Update copyright dates for 2017

2017-07-15 Thread atagar
commit 7b6e4efe1b71f14f5b2f15e5d44c5cafa73fa2c9
Author: Damian Johnson 
Date:   Tue Feb 14 10:30:41 2017 -0800

Update copyright dates for 2017

Bumping the dates for 2017...

  % find nyx -type f -iname '*.py' -exec sed -i 's/2016/2017/g' "{}" +;
---
 nyx/__init__.py  | 2 +-
 nyx/arguments.py | 2 +-
 nyx/curses.py| 2 +-
 nyx/log.py   | 2 +-
 nyx/menu.py  | 2 +-
 nyx/panel/__init__.py| 2 +-
 nyx/panel/config.py  | 2 +-
 nyx/panel/connection.py  | 2 +-
 nyx/panel/graph.py   | 2 +-
 nyx/panel/header.py  | 2 +-
 nyx/panel/interpreter.py | 2 +-
 nyx/panel/log.py | 2 +-
 nyx/panel/torrc.py   | 2 +-
 nyx/popups.py| 2 +-
 nyx/starter.py   | 2 +-
 nyx/tracker.py   | 2 +-
 nyx/uninstall| 2 +-
 run_nyx  | 2 +-
 run_tests.py | 2 +-
 setup.py | 2 +-
 20 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/nyx/__init__.py b/nyx/__init__.py
index 370f954..bb1d074 100644
--- a/nyx/__init__.py
+++ b/nyx/__init__.py
@@ -1,4 +1,4 @@
-# Copyright 2009-2016, Damian Johnson and The Tor Project
+# Copyright 2009-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/nyx/arguments.py b/nyx/arguments.py
index d26a6c5..e55b653 100644
--- a/nyx/arguments.py
+++ b/nyx/arguments.py
@@ -1,4 +1,4 @@
-# Copyright 2013-2016, Damian Johnson and The Tor Project
+# Copyright 2013-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/nyx/curses.py b/nyx/curses.py
index acac3aa..d1cd5eb 100644
--- a/nyx/curses.py
+++ b/nyx/curses.py
@@ -1,4 +1,4 @@
-# Copyright 2010-2016, Damian Johnson and The Tor Project
+# Copyright 2010-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/nyx/log.py b/nyx/log.py
index 941de1c..0452891 100644
--- a/nyx/log.py
+++ b/nyx/log.py
@@ -1,4 +1,4 @@
-# Copyright 2014-2016, Damian Johnson and The Tor Project
+# Copyright 2014-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/nyx/menu.py b/nyx/menu.py
index 9aa5797..580687e 100644
--- a/nyx/menu.py
+++ b/nyx/menu.py
@@ -1,4 +1,4 @@
-# Copyright 2011-2016, Damian Johnson and The Tor Project
+# Copyright 2011-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/nyx/panel/__init__.py b/nyx/panel/__init__.py
index 24ffadf..d575e42 100644
--- a/nyx/panel/__init__.py
+++ b/nyx/panel/__init__.py
@@ -1,4 +1,4 @@
-# Copyright 2010-2016, Damian Johnson and The Tor Project
+# Copyright 2010-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/nyx/panel/config.py b/nyx/panel/config.py
index 92b8215..d786981 100644
--- a/nyx/panel/config.py
+++ b/nyx/panel/config.py
@@ -1,4 +1,4 @@
-# Copyright 2010-2016, Damian Johnson and The Tor Project
+# Copyright 2010-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/nyx/panel/connection.py b/nyx/panel/connection.py
index 2858ee9..41577b6 100644
--- a/nyx/panel/connection.py
+++ b/nyx/panel/connection.py
@@ -1,4 +1,4 @@
-# Copyright 2011-2016, Damian Johnson and The Tor Project
+# Copyright 2011-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/nyx/panel/graph.py b/nyx/panel/graph.py
index 5e7c910..8271b06 100644
--- a/nyx/panel/graph.py
+++ b/nyx/panel/graph.py
@@ -1,4 +1,4 @@
-# Copyright 2010-2016, Damian Johnson and The Tor Project
+# Copyright 2010-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/nyx/panel/header.py b/nyx/panel/header.py
index d3e7454..9d90d75 100644
--- a/nyx/panel/header.py
+++ b/nyx/panel/header.py
@@ -1,4 +1,4 @@
-# Copyright 2009-2016, Damian Johnson and The Tor Project
+# Copyright 2009-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/nyx/panel/interpreter.py b/nyx/panel/interpreter.py
index 679cc30..64a9556 100644
--- a/nyx/panel/interpreter.py
+++ b/nyx/panel/interpreter.py
@@ -1,4 +1,4 @@
-# Copyright 2016, Damian Johnson and The Tor Project
+# Copyright 2016-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/nyx/panel/log.py b/nyx/panel/log.py
index ed3d947..2c93226 100644
--- a/nyx/panel/log.py
+++ b/nyx/panel/log.py
@@ -1,4 +1,4 @@
-# Copyright 2009-2016, Damian Johnson and The Tor Project
+# Copyright 2009-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/nyx/panel/torrc.py b/nyx/panel/torrc.py
index 46ce895..f43c8b4 100644
--- a/nyx/panel/torrc.py
+++ b/nyx/panel/torrc.py
@@ -1,4 +1,4 @@
-# Copyright 2010-2016, Damian Johnson and The Tor Project
+# Copyright 2010-2017, Damian Johnson and The Tor 

[tor-commits] [snowflake/master] Have embed.html refresh itself once a day.

2017-07-15 Thread dcf
commit 0ccb4b7cc8b9ececd5da8cb7966fa833bc34c112
Author: David Fifield 
Date:   Sat Jul 15 14:38:01 2017 -0700

Have embed.html refresh itself once a day.

This is a hedge against any bugs that may cause the badge to hang when
left running for a long time, and it also means that badges will
effectively check for updated code once a day.
---
 proxy/static/embed.html | 1 +
 1 file changed, 1 insertion(+)

diff --git a/proxy/static/embed.html b/proxy/static/embed.html
index 2df4354..d1d4e77 100644
--- a/proxy/static/embed.html
+++ b/proxy/static/embed.html
@@ -2,6 +2,7 @@
 
 
   
+  
   
   
   

[tor-commits] [snowflake/master] Remove broker /ip endpoint.

2017-07-15 Thread dcf
commit 2a46db2c01985d144e25f537b5019b195af32782
Author: David Fifield 
Date:   Sat Jul 15 14:34:18 2017 -0700

Remove broker /ip endpoint.

Doesn't seem to be used anywhere; may have been inherited from flash
proxy.
---
 broker/broker.go | 10 --
 1 file changed, 10 deletions(-)

diff --git a/broker/broker.go b/broker/broker.go
index d969ce5..a56f40b 100644
--- a/broker/broker.go
+++ b/broker/broker.go
@@ -217,15 +217,6 @@ func robotsTxtHandler(w http.ResponseWriter, r 
*http.Request) {
w.Write([]byte("User-agent: *\nDisallow:\n"))
 }
 
-func ipHandler(w http.ResponseWriter, r *http.Request) {
-   remoteAddr := r.RemoteAddr
-   if net.ParseIP(remoteAddr).To4() == nil {
-   remoteAddr = "[" + remoteAddr + "]"
-   }
-   w.Header().Set("Content-Type", "text/plain; charset=utf-8")
-   w.Write([]byte(remoteAddr))
-}
-
 func init() {
log.SetFlags(log.LstdFlags | log.LUTC)
 
@@ -234,7 +225,6 @@ func init() {
go ctx.Broker()
 
http.HandleFunc("/robots.txt", robotsTxtHandler)
-   http.HandleFunc("/ip", ipHandler)
 
http.Handle("/proxy", SnowflakeHandler{ctx, proxyPolls})
http.Handle("/client", SnowflakeHandler{ctx, clientOffers})

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


[tor-commits] [meek/master] Use placeholder consistently.

2017-07-15 Thread dcf
commit a26d09988080d84af6687541a1f47e34b3df6a25
Author: David Fifield 
Date:   Sat Jul 15 13:49:08 2017 -0700

Use  placeholder consistently.
---
 appengine/README | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/appengine/README b/appengine/README
index d12f8d2..e498109 100644
--- a/appengine/README
+++ b/appengine/README
@@ -26,5 +26,5 @@ To configure meek-client to talk to the App Engine app, 
provide
 "https://.appspot.com/" as the url and "www.google.com" as the
 front domain.
UseBridges 1
-   Bridge meek 0.0.2.0:1 url=https://example.appspot.com/ 
front=www.google.com
+   Bridge meek 0.0.2.0:1 url=https://.appspot.com/ 
front=www.google.com
ClientTransportPlugin meek exec ./meek-client --log meek-client.log

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


[tor-commits] [meek/master] Remove a snowflake broker reference.

2017-07-15 Thread dcf
commit 8bdbaef8ec37186baabbaa36ab2b441cd7aa4ad8
Author: David Fifield 
Date:   Sat Jul 15 13:47:27 2017 -0700

Remove a snowflake broker reference.
---
 appengine/README | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/appengine/README b/appengine/README
index d71277a..d12f8d2 100644
--- a/appengine/README
+++ b/appengine/README
@@ -10,8 +10,7 @@ After unpacking, install the app-engine-go component:
 
 To test locally, run
google-cloud-sdk/bin/dev_appserver.py app.yaml
-The app will be running at http://127.0.0.1:8080/. You can test broker
-forwarding function by browsing to http://127.0.0.1:8000/ip.
+The app will be running at http://127.0.0.1:8080/.
 
 To deploy to App Engine, first create a new project and app. You have to
 think of a unique name (marked as "" in the commands). You only

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


[tor-commits] [meek/master] Update appengine for Google Cloud SDK (gcloud not goapp).

2017-07-15 Thread dcf
commit cc12b92e9b03f05cbce82f33d042883d6ffdceab
Author: David Fifield 
Date:   Sat Jul 15 12:51:33 2017 -0700

Update appengine for Google Cloud SDK (gcloud not goapp).
---
 appengine/README   | 32 +++-
 appengine/app.yaml |  1 -
 2 files changed, 19 insertions(+), 14 deletions(-)

diff --git a/appengine/README b/appengine/README
index f819d24..d71277a 100644
--- a/appengine/README
+++ b/appengine/README
@@ -4,22 +4,28 @@ client and forwards them to the server, then receives 
responses from the
 server and forwards them to the client.
 
 You need the Go App Engine SDK in order to deploy the app.
-   
https://cloud.google.com/appengine/downloads#Google_App_Engine_SDK_for_Go
+   https://cloud.google.com/sdk/docs/#linux
+After unpacking, install the app-engine-go component:
+   google-cloud-sdk/bin/gcloud components install app-engine-go
 
 To test locally, run
-   go_appengine/goapp serve
-The app will be running at http://127.0.0.1:8080/. To configure
-meek-client to talk to the locally running app, put this in torrc:
-   UseBridges 1
-   Bridge meek 0.0.2.0:1 url=http://127.0.0.1:8080/
-   ClientTransportPlugin meek exec ./meek-client --log meek-client.log
+   google-cloud-sdk/bin/dev_appserver.py app.yaml
+The app will be running at http://127.0.0.1:8080/. You can test broker
+forwarding function by browsing to http://127.0.0.1:8000/ip.
+
+To deploy to App Engine, first create a new project and app. You have to
+think of a unique name (marked as "" in the commands). You only
+have to do the "create" step once; subsequent times you can go straight
+to the "deploy" step. This command will open a browser window so you can
+log in to a Google account.
+   google-cloud-sdk/bin/gcloud projects create 
+   google-cloud-sdk/bin/gcloud app create --project=
+Then to deploy the project, run:
+   google-cloud-sdk/bin/gcloud app deploy --project=
 
-To deploy to App Engine, create a Google Account and use it to create a
-new app with a unique name. Let's say your app is called "example". Then
-to deploy it you run
-   go_appengine/goapp deploy -application example
-To configure meek-client to talk to the App Engine app, give the app's
-name as the url and "www.google.com" as the front domain.
+To configure meek-client to talk to the App Engine app, provide
+"https://.appspot.com/" as the url and "www.google.com" as the
+front domain.
UseBridges 1
Bridge meek 0.0.2.0:1 url=https://example.appspot.com/ 
front=www.google.com
ClientTransportPlugin meek exec ./meek-client --log meek-client.log
diff --git a/appengine/app.yaml b/appengine/app.yaml
index 184eb35..ff6efc1 100644
--- a/appengine/app.yaml
+++ b/appengine/app.yaml
@@ -1,4 +1,3 @@
-version: 1
 runtime: go
 api_version: go1
 automatic_scaling:



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


[tor-commits] [meek/master] Copy multiple instances of header fields.

2017-07-15 Thread dcf
commit 6057a9e9d6b64b81741cf0404957449c8af8529b
Author: David Fifield 
Date:   Sat Jul 15 12:54:06 2017 -0700

Copy multiple instances of header fields.

Just in case. Previously we only copied the first instance (as provided
by Header.Get).
---
 appengine/reflect.go | 16 ++--
 1 file changed, 10 insertions(+), 6 deletions(-)

diff --git a/appengine/reflect.go b/appengine/reflect.go
index bc6992c..ccf11f3 100644
--- a/appengine/reflect.go
+++ b/appengine/reflect.go
@@ -67,9 +67,11 @@ func copyRequest(r *http.Request) (*http.Request, error) {
return nil, err
}
for _, key := range reflectedHeaderFields {
-   value := r.Header.Get(key)
-   if value != "" {
-   c.Header.Add(key, value)
+   values, ok := r.Header[key]
+   if ok {
+   for _, value := range values {
+   c.Header.Add(key, value)
+   }
}
}
// Set the original client IP address in a Meek-IP header. We would use
@@ -106,9 +108,11 @@ func handler(w http.ResponseWriter, r *http.Request) {
}
defer resp.Body.Close()
for _, key := range reflectedHeaderFields {
-   value := resp.Header.Get(key)
-   if value != "" {
-   w.Header().Add(key, value)
+   values, ok := resp.Header[key]
+   if ok {
+   for _, value := range values {
+   w.Header().Add(key, value)
+   }
}
}
w.WriteHeader(resp.StatusCode)

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


[tor-commits] [webwml/master] Drop Flash Proxy from volunteer page

2017-07-15 Thread atagar
commit 033190caba4df27830b1259db57e8c746bd8dc7c
Author: Damian Johnson 
Date:   Sat Jul 15 12:28:29 2017 -0700

Drop Flash Proxy from volunteer page

David gave his ok on...

  https://trac.torproject.org/projects/tor/ticket/19360
---
 getinvolved/en/volunteer.wml | 19 ---
 1 file changed, 19 deletions(-)

diff --git a/getinvolved/en/volunteer.wml b/getinvolved/en/volunteer.wml
index b4dc2c8..206dbec 100644
--- a/getinvolved/en/volunteer.wml
+++ b/getinvolved/en/volunteer.wml
@@ -200,14 +200,6 @@ meetings around the world.
   
 
   
-Flash Proxy
-Client Add-on
-Python, JavaScript, Go
-Light
-dcf, infinity0, Arlo Breault
-  
-
-  
 Shadow
 Simulator
 C, Python
@@ -513,17 +505,6 @@ meetings around the world.
 TorBirdy is Torbutton for Thunderbird and related Mozilla mail clients.
 
 
-
-https://crypto.stanford.edu/flashproxy/;>Flash Proxy (https://gitweb.torproject.org/flashproxy.git;>code, https://trac.torproject.org/projects/tor/query?status=accepted=assigned=needs_review=new=reopened=Archived%2FFlashproxy=priority;>bug
-tracker)
-
-
-Pluggable transport using proxies running in web browsers to defeat
-address-based blocking.
-
-
 
 http://shadow.github.io/;>Shadow (https://github.com/shadow;>code, https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [meek/master] Update an App Engine doc link.

2017-07-15 Thread dcf
commit 107038e7d7aac6f93977cb91a8dcb88133751908
Author: David Fifield 
Date:   Sat Jul 15 11:53:49 2017 -0700

Update an App Engine doc link.
---
 appengine/reflect.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/appengine/reflect.go b/appengine/reflect.go
index 18d9fe6..bc6992c 100644
--- a/appengine/reflect.go
+++ b/appengine/reflect.go
@@ -74,7 +74,7 @@ func copyRequest(r *http.Request) (*http.Request, error) {
}
// Set the original client IP address in a Meek-IP header. We would use
// X-Forwarded-For, but App Engine prohibits setting that header:
-   // 
https://cloud.google.com/appengine/docs/go/urlfetch/#Go_Request_headers
+   // 
https://cloud.google.com/appengine/docs/standard/go/outbound-requests#request_headers
// We could use Forwarded from RFC 7239, but other CDNs already use
// X-Forwarded-For and this way we only need one parser.
c.Header.Add("Meek-IP", getClientAddr(r))

___
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

2017-07-15 Thread translation
commit 3a4f35e33bcbe06eef9eaacb59fbc205e1229dee
Author: Translation commit bot 
Date:   Sat Jul 15 18:16:01 2017 +

Update translations for tor-launcher-properties
---
 sl/torlauncher.properties | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sl/torlauncher.properties b/sl/torlauncher.properties
index 197ddc4..44f6757 100644
--- a/sl/torlauncher.properties
+++ b/sl/torlauncher.properties
@@ -12,8 +12,8 @@ torlauncher.tor_control_failed=Failed to take control of Tor.
 torlauncher.tor_bootstrap_failed=Tor ni mogel vzpostaviti povezave s Tor 
omrežjem.
 torlauncher.tor_bootstrap_failed_details=%1$S failed (%2$S).
 
-torlauncher.unable_to_start_tor=Tor se ne zažene.\n\n%S
-torlauncher.tor_missing=Manjka Torjeva izvršljiva datoteka.
+torlauncher.unable_to_start_tor=Tor se ne more zagnati.\n\n%S
+torlauncher.tor_missing=Manjka Torova izvršljiva datoteka.
 torlauncher.torrc_missing=The torrc file is missing and could not be created.
 torlauncher.datadir_missing=The Tor data directory does not exist and could 
not be created.
 torlauncher.password_hash_missing=Spodletelo pridobivanje zgoščene vrednosti 
gesla.

___
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

2017-07-15 Thread translation
commit d93fbdd9f5822ab5b4f5ea4f77001b75b52b7107
Author: Translation commit bot 
Date:   Sat Jul 15 18:15:30 2017 +

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

diff --git a/el/el.po b/el/el.po
index 882f1ea..e75c986 100644
--- a/el/el.po
+++ b/el/el.po
@@ -23,7 +23,7 @@ msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-06-30 13:14+0200\n"
-"PO-Revision-Date: 2017-07-15 17:21+\n"
+"PO-Revision-Date: 2017-07-15 17:54+\n"
 "Last-Translator: Evgenios Kostis \n"
 "Language-Team: Greek (http://www.transifex.com/otf/torproject/language/el/)\n"
 "MIME-Version: 1.0\n"
@@ -291,7 +291,7 @@ msgstr "Αδυναμία εύρεσης"
 msgid ""
 "Make sure to extract the entire tails-installer zip file before running this"
 " program."
-msgstr "Σιγουρευτείτε ότι έγινε πλήρης 
εξαγωγή του tails-installer.zip προτού εκτελέσετε αυ
τό το πρόγραμμα"
+msgstr "Βεβαιωθείτε ότι έγινε πλήρης εξαγωγή 
του tails-installer.zip προτού εκτελέσετε αυτό το 
πρόγραμμα"
 
 #: ../tails_installer/gui.py:69
 #, python-format

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


[tor-commits] [webwml/master] New people page going live

2017-07-15 Thread atagar
commit 985e8abcfbf0568aa7bef0475e3998c6a74580c2
Author: Damian Johnson 
Date:   Sat Jul 15 10:56:25 2017 -0700

New people page going live

Waited a week so folks would have time to request changes. Few folks plan to
add themselves when they get back from their trips but no reason not to do 
that
later. Time for this to go live!
---
 about/en/corepeople.wml   | 1082 -
 about/en/corepeople_alternate.wml |  742 -
 2 files changed, 721 insertions(+), 1103 deletions(-)

diff --git a/about/en/corepeople.wml b/about/en/corepeople.wml
index 2fecd13..fd595eb 100644
--- a/about/en/corepeople.wml
+++ b/about/en/corepeople.wml
@@ -9,367 +9,727 @@
 Tor People
 
 
-The organization consists of many volunteers and a few employees.
-Please don't contact us individually about Tor topics  if you
-have a problem or question, please look through the contact page for appropriate addresses.
-
-Core Tor People
-
-  Sue Abt, Accounting Manager
-  Sue runs Tor's finances and audit compliance.
-
-  Micah Anderson
-  Helps with tracking bad relays. Runs one of the directory
-  authorities.
-
-  Isabela Bagueros, Project Manager
-  Coordinates Tor's development teams and helps them define
-  their road maps, keeps track of priorities, and ensures that
-  Tor is always thinking “user first” while building things.
-
-  Moritz Bartl, Advocate
-  Manages https://torservers.net;>Zwiebelfreunde
-  (a German non-profit to run exit relays), and coordinates
-  the many similar non-profits that are springing up in other
-  countries. Speaks and organizes in support of Tor and freedoms
-  in Europe and world-wide.
-
-  Griffin Boyce, Developer
-  Works on http://cupcakebridge.com/;>Cupcake,
-  a set of browser extensions to let people volunteer to become
-  a https://crypto.stanford.edu/flashproxy/;>Flash
-  Proxy for censored users. Also develops https://github.com/glamrock/satori;>Satori, an app to
-  help people safely download Tor Browser and related tools.
-
-  Kathleen Brade, Developer
-  Part of the Tor Browser team  develops
-  and maintains Tor Launcher and Torbutton.
-
-  Arlo Breault, Developer
-  Rewrote https://check.torproject.org/;>Tor
-  Check so now it can handle all our users, and helps with
-  Flash Proxy and other pluggable transport work. Also working
-  on https://trac.torproject.org/projects/tor/wiki/doc/TorMessenger;>Tor
-  Messenger, and on Snowflake.
-
-  Cass Brewer, Writer
-
-  Colin Childs, Support and Translation Coordinator
-  Helps wrangle https://www.transifex.com/projects/p/torproject/;>Transifex
-  for us, and also helps answer all the users who contact the
-  support desk.
-
-  Erinn Clark
-  Erinn used to be our build and automation engineer. Now she
-  has a day job at First Look Media, and remains active in the
-  general privacy space.
-
-  Roger Dingledine, Research Director and President
-  Original developer of Tor along with Nick Mathewson and Paul
-  Syverson. Leading researcher in the anonymous communications
-  field. Frequent speaker at conferences to advocate Tor and
-  explain what Tor is and can do. Helps coordinate academic
-  researchers. Runs one of the directory authorities.
-
-  Arthur Edelstein, Developer
-  Works on Tor Browser and Torbutton.
-
-  Nima Fatemi, Advocate
-  Usability team, Farsi advocate, https://libraryfreedomproject.org/;>Library Freedom
-  Project developer.
-
-  David Fifield, Developer, Researcher
-  Developer and co-inventor of https://crypto.stanford.edu/flashproxy/;>Flash Proxy
-  and https://trac.torproject.org/projects/tor/wiki/doc/meek;>meek.
-  Helps lead the pluggable transports team. Grad student at
-  Berkeley.
-
-  Arturo Filastò, OONI Leader
-  Project leader for https://ooni.torproject.org/;>OONI, has helped
-  with http://tor2web.org/;>tor2web, wrote https://atlas.torproject.org/;>Atlas, and generally
-  helps to evaluate and improve security.
-
-  Matt Finkel, Developer, Trainer, Outreacher
-  Helps in various areas. Worked on tor, torsocks, and many other 
projects.
-  Helped maintain and develop https://bridges.torproject.org/;>BridgeDB.
-
-  Nathan Freitas, Mobile phone hacker
-  The driving force behind https://guardianproject.info;>The Guardian
-  Project and Tor on the Android platform in the form of
-  Orbot. He also works on https://guardianproject.info/apps/orlib/;>OrLib:
-  an Android 

[tor-commits] [webwml/master] Add Leif

2017-07-15 Thread atagar
commit 8ca352480c4ce6ebe2d8b2bf1dfbac6dacbab72d
Author: Damian Johnson 
Date:   Sat Jul 15 10:52:19 2017 -0700

Add Leif

Same as his previous entry except that it drops the 'part of the pluggable
transports team' bit per his request.
---
 about/en/corepeople_alternate.wml | 76 +--
 1 file changed, 42 insertions(+), 34 deletions(-)

diff --git a/about/en/corepeople_alternate.wml 
b/about/en/corepeople_alternate.wml
index 63004ad..b2a6675 100644
--- a/about/en/corepeople_alternate.wml
+++ b/about/en/corepeople_alternate.wml
@@ -374,6 +374,15 @@ table.people tr td:first-child {
 
 
 
+  
+  
+  Leif Ryge
+  Works on security analysis, designer of 
bananaphone transport.
+
+  
+
+  
+
   
   
   https://db.torproject.org/fetchkey.cgi?fingerprint=FA0AC9BE2881B3479F4FC0D7BE70F8265ED28FA2;>
@@ -381,9 +390,7 @@ table.people tr td:first-child {
   IRC: linda
   UX team lead.
 
-  
 
-  
 
   
   
@@ -393,7 +400,9 @@ table.people tr td:first-child {
   IRC: ln5
   Swedish advocate and Tor Board member. Works on 
implementing IPv6 in Tor, build automation, and runs a directory 
authority.
 
+  
 
+  
 
   
   
@@ -403,9 +412,7 @@ table.people tr td:first-child {
   IRC: agrabeli
   Maria manages OONI's Partnership Program and 
writes research reports on internet censorship around the world.
 
-  
 
-  
 
   
   
@@ -414,7 +421,9 @@ table.people tr td:first-child {
   IRC: mcs
   Developer on the Tor Browser team.
 
+  
 
+  
 
   
   
@@ -422,9 +431,7 @@ table.people tr td:first-child {
   Matt Blaze
   Chairs the Tor Board of Directors. Professor at 
the University of Pennsylvania where he researches security, privacy, and 
anonymity.
 
-  
 
-  
 
   
   
@@ -433,7 +440,9 @@ table.people tr td:first-child {
   IRC: pastly
   http://mattssi4lhud.onion/;>Implemented the http://www.robgjansen.com/publications/kist-sec2014.pdf;>KIST 
scheduler into Tor. Helps safely measure Tor. Says helpful things on 
IRC.
 
+  
 
+  
 
   
   
@@ -443,9 +452,7 @@ table.people tr td:first-child {
   IRC: sysrqb
   Worked on tor, torsocks, and many other 
projects. Helped maintain and develop BridgeDB.
 
-  
 
-  
 
   
   
@@ -454,7 +461,9 @@ table.people tr td:first-child {
   Moritz Bartl
   Co-founder of https://www.torservers.net/;>torservers.net, a network of non-profit 
organizations that run Tor exit relays.
 
+  
 
+  
 
   
   
@@ -464,9 +473,7 @@ table.people tr td:first-child {
   IRC: n8fr8
   Founder of the https://guardianproject.info/;>Guardian Project. Orbot lead developer 
and contributor to Orfox, Onion Browser and NetCipher SDK. Director of 
Technology at Tibet Action Institute.
 
-  
 
-  
 
   
   
@@ -474,7 +481,9 @@ table.people tr td:first-child {
   IRC: nickhopper
   https://www-users.cs.umn.edu/~hopper/;>Researcher interested in 
improving Tor's performance and resistance to traffic analysis. Some of my work 
is described https://www-users.cs.umn.edu/~hopper/research.html;>here.
 
+  
 
+  
 
   
   
@@ -484,9 +493,7 @@ table.people tr td:first-child {
   IRC: nickm
   One of the three original designers of Tor - 
does a lot of the ongoing design work, and coordinates and leads ongoing 
development.
 
-  
 
-  
 
   
   
@@ -495,7 +502,9 @@ table.people tr td:first-child {
   IRC: boklm
   Works on Tor Browser.
 
+  
 
+  
 
   
   
@@ -505,9 +514,7 @@ table.people tr td:first-child {
   IRC: mrphs
   His main area of interests are End-users 
Accessibility/Security, UX, Censorship, Advocacy and Onion Services.
 
-  
 
-  
 
   
   
@@ -515,7 +522,9 @@ table.people tr td:first-child {
   IRC: syverson
   https://www.nrl.navy.mil;>NRL 
researcher on most things Tor. Inventor of https://www.onion-router.net/;>onion routing, and one of the three 
original designers of Tor.
 
+  
 
+  
 
   
   
@@ -524,9 +533,7 @@ table.people tr td:first-child {
   Pepijn Le Heux
   Lawyer based in The Netherlands and co-founder 
of Hart voor Internetvrijheid.
 
-  
 
-  
 
   
   
@@ -536,7 +543,9 @@ table.people tr td:first-child {
   IRC: phw
   Maintains https://gitweb.torproject.org/user/phw/exitmap.git/;>exitmap and https://gitweb.torproject.org/user/phw/sybilhunter.git/;>sybilhunter, 
works on https://trac.torproject.org/projects/tor/wiki/doc/ReportingBadRelays;>bad 
relay detection, and does https://nymity.ch/papers.html;>security 
and privacy research.
 
+  
 
+  
 
   
   
@@ -544,9 +553,7 @@ table.people tr td:first-child {
   Rabbi Rob Thomas
   CEO of Team Cymru, which supports Tor through 
hosting, 

[tor-commits] [webwml/master] Add Sebastian's pgp key

2017-07-15 Thread atagar
commit 91cd7871348be5c7944e9b19798fb83e0cf98c4e
Author: Damian Johnson 
Date:   Sat Jul 15 10:53:46 2017 -0700

Add Sebastian's pgp key

Addding with his permission.
---
 about/en/corepeople_alternate.wml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/about/en/corepeople_alternate.wml 
b/about/en/corepeople_alternate.wml
index b2a6675..fd595eb 100644
--- a/about/en/corepeople_alternate.wml
+++ b/about/en/corepeople_alternate.wml
@@ -588,6 +588,7 @@ table.people tr td:first-child {
 
   
   
+  https://db.torproject.org/fetchkey.cgi?fingerprint=6D3111D4E0313392FE8BEDD40800D6BBDF3DCEE6;>
   Sebastian Hahn
   Helps people around the world use and 
understand Tor better. Generally helps everything run smoothly. Runs one of the 
directory authorities.
 



___
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

2017-07-15 Thread translation
commit a9dcd322fb85a0db21a3dde67c750734ef2fadfc
Author: Translation commit bot 
Date:   Sat Jul 15 17:46:02 2017 +

Update translations for tor-launcher-properties
---
 sl/torlauncher.properties | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sl/torlauncher.properties b/sl/torlauncher.properties
index 1a31cab..197ddc4 100644
--- a/sl/torlauncher.properties
+++ b/sl/torlauncher.properties
@@ -4,12 +4,12 @@
 torlauncher.error_title=Tor zaganjalnik
 
 torlauncher.tor_exited_during_startup=Tor exited during startup. This might be 
due to an error in your torrc file, a bug in Tor or another program on your 
system, or faulty hardware. Until you fix the underlying problem and restart 
Tor, Tor Browser will not start.
-torlauncher.tor_exited=Tor unexpectedly exited. This might be due to a bug in 
Tor itself, another program on your system, or faulty hardware. Until you 
restart Tor, the Tor Browser will not able to reach any websites. If the 
problem persists, please send a copy of your Tor Log to the support team.
+torlauncher.tor_exited=Tor se je nepričakovano končal. Razlog je lahko 
hrošč v Toru, katerikoli drug program na računalniku ali pa problem v 
strojni opremi. Tor brskalnik ne more doseči nobene strani, dokler ga ne 
zaženete ponovno. Če se težava ponavlja, prosim pošljite kopijo Tor 
dnevnika ekipi podpore.
 torlauncher.tor_exited2=Restarting Tor will not close your browser tabs.
 torlauncher.tor_controlconn_failed=Povezava na Tor nadzorna vrata ni uspela.
 torlauncher.tor_failed_to_start=Tor se ni zagnal.
 torlauncher.tor_control_failed=Failed to take control of Tor.
-torlauncher.tor_bootstrap_failed=Tor failed to establish a Tor network 
connection.
+torlauncher.tor_bootstrap_failed=Tor ni mogel vzpostaviti povezave s Tor 
omrežjem.
 torlauncher.tor_bootstrap_failed_details=%1$S failed (%2$S).
 
 torlauncher.unable_to_start_tor=Tor se ne zažene.\n\n%S

___
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

2017-07-15 Thread translation
commit 99c390d69024bf555680335ecf4fd40b84e126be
Author: Translation commit bot 
Date:   Sat Jul 15 17:45:31 2017 +

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

diff --git a/el/el.po b/el/el.po
index a95b519..882f1ea 100644
--- a/el/el.po
+++ b/el/el.po
@@ -23,7 +23,7 @@ msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-06-30 13:14+0200\n"
-"PO-Revision-Date: 2017-07-15 17:11+\n"
+"PO-Revision-Date: 2017-07-15 17:21+\n"
 "Last-Translator: Evgenios Kostis \n"
 "Language-Team: Greek (http://www.transifex.com/otf/torproject/language/el/)\n"
 "MIME-Version: 1.0\n"
@@ -527,7 +527,7 @@ msgstr ""
 
 #: ../data/tails-installer-launcher.ui.h:4
 msgid "• The USB stick that you install on is formatted and all data is 
lost."
-msgstr "Η μονάδα δίσκου USB στην οποία θα γίνει 
εγκατάσταση θα διαμορφωθεί και όλα τα 
δεδομένα που περιέχει θα χαθούν."
+msgstr ""
 
 #: ../data/tails-installer-launcher.ui.h:5
 msgid "Upgrade"
@@ -535,7 +535,7 @@ msgstr "Αναβάθμιση"
 
 #: ../data/tails-installer-launcher.ui.h:6
 msgid "• Upgrade a Tails USB stick to the version of an ISO image."
-msgstr "Αναβάθμιση μιας μονάδας δίσκου USB Tails 
σε έκδοση εικόνας δίσκου ISO"
+msgstr ""
 
 #: ../data/tails-installer-launcher.ui.h:7
 msgid ""
@@ -557,7 +557,7 @@ msgstr ""
 msgid ""
 "• Install Tails on another USB stick by copying the Tails system that you "
 "are currently using."
-msgstr ""
+msgstr "Εγκατάσταση του Tails σε άλλη συσκευή USB 
αντιγράφοντας το σύστημα Tails που 
χρησιμοποιείτε."
 
 #: ../data/tails-installer-launcher.ui.h:11
 msgid ""

___
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

2017-07-15 Thread translation
commit e504575c08de929af34266d09aa539fddeb64b1d
Author: Translation commit bot 
Date:   Sat Jul 15 17:15:41 2017 +

Update translations for liveusb-creator
---
 el/el.po | 42 +-
 1 file changed, 21 insertions(+), 21 deletions(-)

diff --git a/el/el.po b/el/el.po
index 4915929..a95b519 100644
--- a/el/el.po
+++ b/el/el.po
@@ -23,7 +23,7 @@ msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-06-30 13:14+0200\n"
-"PO-Revision-Date: 2017-07-15 16:43+\n"
+"PO-Revision-Date: 2017-07-15 17:11+\n"
 "Last-Translator: Evgenios Kostis \n"
 "Language-Team: Greek (http://www.transifex.com/otf/torproject/language/el/)\n"
 "MIME-Version: 1.0\n"
@@ -331,12 +331,12 @@ msgstr "Πρόγραμμα εγκατάστασης Tails"
 
 #: ../tails_installer/gui.py:440
 msgid "No device suitable to install Tails could be found"
-msgstr ""
+msgstr "Δε βρέθηκε συσκευή που να πληρεί τις 
προϋποθέσεις για την εγκατάσταση του Tails"
 
 #: ../tails_installer/gui.py:442
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
-msgstr ""
+msgstr "Παρακαλώ εισάγετε μονάδα δίσκου usb ή 
κάρτα SD μεγέθους τουλάχιστον %0.1f GB."
 
 #: ../tails_installer/gui.py:474
 #, python-format
@@ -381,7 +381,7 @@ msgstr "Είναι αδύνατο να 
αναβαθμίσετε τη συσκε
 
 #: ../tails_installer/gui.py:533
 msgid "An error happened while installing Tails"
-msgstr ""
+msgstr "Προέκυψε σφάλμα κατά την εγκατάσταση 
του Tails"
 
 #: ../tails_installer/gui.py:545
 msgid "Refreshing releases..."
@@ -397,7 +397,7 @@ msgstr "Η εγκατάσταση ολοκληρώθηκε!"
 
 #: ../tails_installer/gui.py:590
 msgid "Installation was completed."
-msgstr ""
+msgstr "Η εγκατάσταση έχει ήδη ολοκληρωθεί"
 
 #: ../tails_installer/gui.py:635
 msgid "Unable to mount device"
@@ -453,7 +453,7 @@ msgstr "επιλέχθηκαν %(filename)s"
 
 #: ../tails_installer/source.py:28
 msgid "Unable to find LiveOS on ISO"
-msgstr ""
+msgstr "Αδυναμία εύρεσης του LiveOS στο αρχείο ISO"
 
 #: ../tails_installer/source.py:34
 #, python-format
@@ -466,37 +466,37 @@ msgid ""
 "There was a problem executing `%s`.\n"
 "%s\n"
 "%s"
-msgstr ""
+msgstr "Υπήρξε πρόβλημα κατά την εκτέλεση του 
`%s`.\n%s\n%s"
 
 #: ../tails_installer/source.py:63
 #, python-format
 msgid "'%s' does not exist"
-msgstr ""
+msgstr "Το '%s' δεν υπάρχει"
 
 #: ../tails_installer/source.py:65
 #, python-format
 msgid "'%s' is not a directory"
-msgstr ""
+msgstr "Το '%s' δεν είναι φάκελος"
 
 #: ../tails_installer/source.py:75
 #, python-format
 msgid "Skipping '%(filename)s'"
-msgstr ""
+msgstr "Γίνεται παράλειψη '%(filename)s'"
 
 #: ../tails_installer/utils.py:44
 #, python-format
 msgid ""
 "There was a problem executing `%s`.%s\n"
 "%s"
-msgstr ""
+msgstr "Υπήρξε πρόβλημα κατά την εκτέλεση του 
`%s`.%s\n%s"
 
 #: ../tails_installer/utils.py:119
 msgid "Could not open device for writing."
-msgstr ""
+msgstr "Δεν ήταν δυνατό το άνοιγμα της συσκευ
ής προς εγγραφή"
 
 #: ../data/tails-installer.ui.h:1
 msgid "Use existing Live system ISO:"
-msgstr ""
+msgstr "Χρήση υπάρχοντος Live system ISO"
 
 #: ../data/tails-installer.ui.h:2
 msgid "Select a distribution to download:"
@@ -527,15 +527,15 @@ msgstr ""
 
 #: ../data/tails-installer-launcher.ui.h:4
 msgid "• The USB stick that you install on is formatted and all data is 
lost."
-msgstr ""
+msgstr "Η μονάδα δίσκου USB στην οποία θα γίνει 
εγκατάσταση θα διαμορφωθεί και όλα τα 
δεδομένα που περιέχει θα χαθούν."
 
 #: ../data/tails-installer-launcher.ui.h:5
 msgid "Upgrade"
-msgstr ""
+msgstr "Αναβάθμιση"
 
 #: ../data/tails-installer-launcher.ui.h:6
 msgid "• Upgrade a Tails USB stick to the version of an ISO image."
-msgstr ""
+msgstr "Αναβάθμιση μιας μονάδας δίσκου USB Tails 
σε έκδοση εικόνας δίσκου ISO"
 
 #: ../data/tails-installer-launcher.ui.h:7
 msgid ""
@@ -547,7 +547,7 @@ msgstr ""
 msgid ""
 "Need help? Read the https://tails.boum.org/doc/first_steps/installation/\;>documentation"
-msgstr ""
+msgstr "Χρειάζεστε βοήθεια? Διαβάστε τα https://tails.boum.org/doc/first_steps/installation/\;>αρχεία 
βοήθειας"
 
 #: ../data/tails-installer-launcher.ui.h:9
 msgid "Install by cloning"
@@ -573,18 +573,18 @@ msgstr ""
 msgid ""
 "• Upgrade another Tails USB stick to the same version of Tails that 

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

2017-07-15 Thread translation
commit d9a2b8226966a602b1b76f668d005dc8576f857f
Author: Translation commit bot 
Date:   Sat Jul 15 16:45:29 2017 +

Update translations for liveusb-creator
---
 el/el.po | 13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/el/el.po b/el/el.po
index ce37c79..4915929 100644
--- a/el/el.po
+++ b/el/el.po
@@ -9,6 +9,7 @@
 # firespin , 2014
 # LaScapigliata , 2015
 # dpdt1 , 2013
+# Evgenios Kostis , 2017
 # anvo , 2012
 # isv31 <36b04...@anon.leemail.me>, 2014
 # James Bridge , 2012
@@ -21,9 +22,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-06-09 17:50+0200\n"
-"PO-Revision-Date: 2017-06-10 01:55+\n"
-"Last-Translator: carolyn \n"
+"POT-Creation-Date: 2017-06-30 13:14+0200\n"
+"PO-Revision-Date: 2017-07-15 16:43+\n"
+"Last-Translator: Evgenios Kostis \n"
 "Language-Team: Greek (http://www.transifex.com/otf/torproject/language/el/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -290,7 +291,7 @@ msgstr "Αδυναμία εύρεσης"
 msgid ""
 "Make sure to extract the entire tails-installer zip file before running this"
 " program."
-msgstr ""
+msgstr "Σιγουρευτείτε ότι έγινε πλήρης 
εξαγωγή του tails-installer.zip προτού εκτελέσετε αυ
τό το πρόγραμμα"
 
 #: ../tails_installer/gui.py:69
 #, python-format
@@ -315,7 +316,7 @@ msgstr "Η εγκατάσταση ολοκληρώθηκε! 
(%s)"
 
 #: ../tails_installer/gui.py:258
 msgid "Tails installation failed!"
-msgstr ""
+msgstr "Η εγκατάσταση του Tails απέτυχε!"
 
 #: ../tails_installer/gui.py:353
 msgid ""
@@ -326,7 +327,7 @@ msgstr "Προειδοποίηση: Αυτό το 
εργαλείο πρέπει
 
 #: ../tails_installer/gui.py:365 ../tails_installer/launcher.py:31
 msgid "Tails Installer"
-msgstr ""
+msgstr "Πρόγραμμα εγκατάστασης Tails"
 
 #: ../tails_installer/gui.py:440
 msgid "No device suitable to install Tails could be found"

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


[tor-commits] [translation/tor-messenger-fingerdtd] Update translations for tor-messenger-fingerdtd

2017-07-15 Thread translation
commit 54a37e961b3a2206687bc38aecd8b676b6969288
Author: Translation commit bot 
Date:   Sat Jul 15 06:47:50 2017 +

Update translations for tor-messenger-fingerdtd
---
 ko/finger.dtd | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/ko/finger.dtd b/ko/finger.dtd
index 0fe8687..72cf660 100644
--- a/ko/finger.dtd
+++ b/ko/finger.dtd
@@ -1,5 +1,5 @@
 
-
+
 
 
 
@@ -8,8 +8,8 @@
 
 
 
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
\ No newline at end of file

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


[tor-commits] [translation/tor-messenger-otrproperties] Update translations for tor-messenger-otrproperties

2017-07-15 Thread translation
commit 10402c8a96d2cfda34310665b2a72908e031e6c2
Author: Translation commit bot 
Date:   Sat Jul 15 06:47:58 2017 +

Update translations for tor-messenger-otrproperties
---
 ko/otr.properties | 40 
 1 file changed, 20 insertions(+), 20 deletions(-)

diff --git a/ko/otr.properties b/ko/otr.properties
index 0ea6603..bb14571 100644
--- a/ko/otr.properties
+++ b/ko/otr.properties
@@ -3,27 +3,27 @@ msgevent.encryption_required_part2=비밀 대화를 
시작하려고 합니다. 
 msgevent.encryption_error=메시지를 암호화하는 중 오류가 
발생했습니다. 메시지가 전송되지 않았습니다.
 msgevent.connection_ended=%S가 이미 당신과의 비밀 연결을 종
료했습니다. 귀하의 메시지는 전송되지 않았습니다. 대화를 
끝내거나 다시 시작하십시오.
 msgevent.setup_error=%S의 비밀 대화를 설정하는 동안 오류가 
발생했습니다.
-msgevent.msg_reflected=You are receiving your own OTR messages. You are either 
trying to talk to yourself, or someone is reflecting your messages back at you.
-msgevent.msg_resent=The last message to %S was resent.
-msgevent.rcvdmsg_not_private=The encrypted message received from %S is 
unreadable, as you are not currently communicating privately.
-msgevent.rcvdmsg_unreadable=We received an unreadable encrypted message from 
%S.
-msgevent.rcvdmsg_malformed=We received a malformed data message from %S.
-msgevent.log_heartbeat_rcvd=Heartbeat received from %S.
-msgevent.log_heartbeat_sent=Heartbeat sent to %S.
-msgevent.rcvdmsg_general_err=An OTR error occured.
-msgevent.rcvdmsg_unecrypted=The following message received from %S was not 
encrypted: %S
-msgevent.rcvdmsg_unrecognized=We received an unrecognized OTR message from %S.
-msgevent.rcvdmsg_for_other_instance=%S has sent a message intended for a 
different session. If you are logged in multiple times, another session may 
have received the message.
-context.gone_secure_private=Private conversation with %S started.
-context.gone_secure_unverified=Private conversation with %S started. However, 
their identity has not been verified.
-context.still_secure=Successfully refreshed the private conversation with %S.
-error.enc=Error occurred encrypting message.
-error.not_priv=You sent encrypted data to %S, who wasn't expecting it.
-error.unreadable=You transmitted an unreadable encrypted message.
-error.malformed=You transmitted a malformed data message.
-resent=[resent]
+msgevent.msg_reflected=자신의 OTR 메시지를 받고 있습니다. 당신
은 자신에게 말하려고 하거나 누군가가 당신의 메시지를 
다시 반향하고 있습니다.
+msgevent.msg_resent=%S에 대한 마지막 메시지가 다시 ì 
„송되었습니다.
+msgevent.rcvdmsg_not_private=%S에서 받은 암호화 된 메시지는 현재 
비밀 통신이 아니므로 읽을 수 없습니다.
+msgevent.rcvdmsg_unreadable=%S에서 읽을 수 없는 암호화 된 
메시지를 받았습니다.
+msgevent.rcvdmsg_malformed=%S에서 잘못된 형식의 데이터 메시지를 
받았습니다.
+msgevent.log_heartbeat_rcvd=%S에서 Heartbeat를 받음.
+msgevent.log_heartbeat_sent=%S에게 Heartbeat를 보냄.
+msgevent.rcvdmsg_general_err=OTR 오류가 발생했습니다.
+msgevent.rcvdmsg_unecrypted=%S에서 받은 다음 메시지는 
암호화되지 않았습니다: %S
+msgevent.rcvdmsg_unrecognized=%S에서 인식 할 수 없는 OTR 메시지를 
받았습니다.
+msgevent.rcvdmsg_for_other_instance=%S이 다른 세션을 위한 메시지를 
보냈습니다. 여러 번 로그인 한 경우 다른 세션 에서 
메시지를 수신했을 수 있습니다.
+context.gone_secure_private=%S와 비밀 대화가 시작됨.
+context.gone_secure_unverified=%S와 비밀 대화가 시작되었습니다. 
그러나 신분이 확인되지 않았습니다.
+context.still_secure=%S의 비밀 대화를 성공적으로 새로고침 
했습니다.
+error.enc=메시지 암호화 오류가 발생했습니다.
+error.not_priv=%S에 암호화 된 데이터를 보냈습니다. %S는 
그것을 예측하지 못했습니다.
+error.unreadable=읽을 수 없는 암호화 된 메시지를 보냈습니다.
+error.malformed=잘못 된 데이터 메시지를 전송했습니다.
+resent=[다시 보냄]
 tlv.disconnected=%S가 귀하와 비밀 대화를 종료했습니다. 당신
도 똑같이 해야 합니다.
-query.msg=%S has requested an Off-the Record private conversation. However, 
you do not have a plugin to support that. See http://otr.cypherpunks.ca/ for 
more information.
+query.msg=%S이 비공개 기록 대화(OTR)를 요청했습니다. 그러나, 
당신은 그것을 지원하는 플러그인이 없습니다. 자세한 
내용은 http://otr.cypherpunks.ca/ 를 참조하십시오.
 trust.unused=사용되지 않음
 trust.not_private=비공개가 아님
 trust.unverified=확인되지 않음


[tor-commits] [translation/tor-messenger-authproperties] Update translations for tor-messenger-authproperties

2017-07-15 Thread translation
commit c73ea05bcfe319a418b10a0d424ace718db0eb1a
Author: Translation commit bot 
Date:   Sat Jul 15 06:47:43 2017 +

Update translations for tor-messenger-authproperties
---
 ko/auth.properties | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ko/auth.properties b/ko/auth.properties
index 17410b1..7ac633a 100644
--- a/ko/auth.properties
+++ b/ko/auth.properties
@@ -1,5 +1,5 @@
-auth.title=Verify %S's identity
-auth.yourFingerprint=Fingerprint for you, %S:\n%S
+auth.title=%S의 신원 확인
+auth.yourFingerprint=당신을 위한 지문, %S:\n%S
 auth.theirFingerprint=Purported fingerprint for %S:\n%S
 auth.help=Verifying a contact's identity helps ensure that the person you are 
talking to is who they claim to be.
 auth.helpTitle=Verification help

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


[tor-commits] [translation/tor-messenger-fingerdtd_completed] Update translations for tor-messenger-fingerdtd_completed

2017-07-15 Thread translation
commit fb64c4f58c8c05f8d563df7f8710b1825b179c2f
Author: Translation commit bot 
Date:   Sat Jul 15 06:47:54 2017 +

Update translations for tor-messenger-fingerdtd_completed
---
 ko/finger.dtd | 15 +++
 1 file changed, 15 insertions(+)

diff --git a/ko/finger.dtd b/ko/finger.dtd
new file mode 100644
index 000..72cf660
--- /dev/null
+++ b/ko/finger.dtd
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file

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


[tor-commits] [translation/tor-messenger-otrproperties_completed] Update translations for tor-messenger-otrproperties_completed

2017-07-15 Thread translation
commit 07dbba48cadf827623c8510f7e930e0e58f4b087
Author: Translation commit bot 
Date:   Sat Jul 15 06:48:01 2017 +

Update translations for tor-messenger-otrproperties_completed
---
 ko/otr.properties | 31 +++
 1 file changed, 31 insertions(+)

diff --git a/ko/otr.properties b/ko/otr.properties
new file mode 100644
index 000..bb14571
--- /dev/null
+++ b/ko/otr.properties
@@ -0,0 +1,31 @@
+msgevent.encryption_required_part1=%S에 암호화되지 않은 메시지를 
보내려고 했습니다. 정책으로서 암호화되지 않은 메시지는 
허용되지 않습니다.
+msgevent.encryption_required_part2=비밀 대화를 시작하려고 합니다. 
비밀 대화가 시작되면 메시지가 다시 전송됩니다.
+msgevent.encryption_error=메시지를 암호화하는 중 오류가 
발생했습니다. 메시지가 전송되지 않았습니다.
+msgevent.connection_ended=%S가 이미 당신과의 비밀 연결을 종
료했습니다. 귀하의 메시지는 전송되지 않았습니다. 대화를 
끝내거나 다시 시작하십시오.
+msgevent.setup_error=%S의 비밀 대화를 설정하는 동안 오류가 
발생했습니다.
+msgevent.msg_reflected=자신의 OTR 메시지를 받고 있습니다. 당신
은 자신에게 말하려고 하거나 누군가가 당신의 메시지를 
다시 반향하고 있습니다.
+msgevent.msg_resent=%S에 대한 마지막 메시지가 다시 ì 
„송되었습니다.
+msgevent.rcvdmsg_not_private=%S에서 받은 암호화 된 메시지는 현재 
비밀 통신이 아니므로 읽을 수 없습니다.
+msgevent.rcvdmsg_unreadable=%S에서 읽을 수 없는 암호화 된 
메시지를 받았습니다.
+msgevent.rcvdmsg_malformed=%S에서 잘못된 형식의 데이터 메시지를 
받았습니다.
+msgevent.log_heartbeat_rcvd=%S에서 Heartbeat를 받음.
+msgevent.log_heartbeat_sent=%S에게 Heartbeat를 보냄.
+msgevent.rcvdmsg_general_err=OTR 오류가 발생했습니다.
+msgevent.rcvdmsg_unecrypted=%S에서 받은 다음 메시지는 
암호화되지 않았습니다: %S
+msgevent.rcvdmsg_unrecognized=%S에서 인식 할 수 없는 OTR 메시지를 
받았습니다.
+msgevent.rcvdmsg_for_other_instance=%S이 다른 세션을 위한 메시지를 
보냈습니다. 여러 번 로그인 한 경우 다른 세션 에서 
메시지를 수신했을 수 있습니다.
+context.gone_secure_private=%S와 비밀 대화가 시작됨.
+context.gone_secure_unverified=%S와 비밀 대화가 시작되었습니다. 
그러나 신분이 확인되지 않았습니다.
+context.still_secure=%S의 비밀 대화를 성공적으로 새로고침 
했습니다.
+error.enc=메시지 암호화 오류가 발생했습니다.
+error.not_priv=%S에 암호화 된 데이터를 보냈습니다. %S는 
그것을 예측하지 못했습니다.
+error.unreadable=읽을 수 없는 암호화 된 메시지를 보냈습니다.
+error.malformed=잘못 된 데이터 메시지를 전송했습니다.
+resent=[다시 보냄]
+tlv.disconnected=%S가 귀하와 비밀 대화를 종료했습니다. 당신
도 똑같이 해야 합니다.
+query.msg=%S이 비공개 기록 대화(OTR)를 요청했습니다. 그러나, 
당신은 그것을 지원하는 플러그인이 없습니다. 자세한 
내용은 http://otr.cypherpunks.ca/ 를 참조하십시오.
+trust.unused=사용되지 않음
+trust.not_private=비공개가 아님
+trust.unverified=확인되지 않음
+trust.private=비공개
+trust.finished=완료됨

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


[tor-commits] [translation/tor-browser-manual] Update translations for tor-browser-manual

2017-07-15 Thread translation
commit e5a61e8ae95c9923f4c6c841260a5e74b5fb4c55
Author: Translation commit bot 
Date:   Sat Jul 15 06:18:36 2017 +

Update translations for tor-browser-manual
---
 ko/ko.po | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/ko/ko.po b/ko/ko.po
index ed83507..72f130d 100644
--- a/ko/ko.po
+++ b/ko/ko.po
@@ -27,17 +27,19 @@ msgstr "번역-저작자"
 
 #: about-tor-browser.page:7
 msgid "Learn what Tor Browser can do to protect your privacy and anonymity"
-msgstr ""
+msgstr "Tor 브라우저가 개인 정보와 익명성을 보호하기 위해 
할 수 있는 일에 대해 알아봅니다."
 
 #: about-tor-browser.page:10
 msgid "About Tor Browser"
-msgstr ""
+msgstr "Tor 브라우저에 대해서"
 
 #: about-tor-browser.page:12
 msgid ""
 "Tor Browser uses the Tor network to protect your privacy and anonymity. "
 "Using the Tor network has two main properties:"
 msgstr ""
+"Tor 브라우저는 Tor 네트워크를 사용하여 개인 정보와 익명
성을 보호합니다. Tor 네트워크를 사용하는 데는 두 가지 
주요 속성이 "
+"있습니다."
 
 #: about-tor-browser.page:18
 msgid ""

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


[tor-commits] [translation/tor-messenger-otrproperties] Update translations for tor-messenger-otrproperties

2017-07-15 Thread translation
commit c85df63b2e9942bbeaf874b8953653671ff3d79f
Author: Translation commit bot 
Date:   Sat Jul 15 06:17:57 2017 +

Update translations for tor-messenger-otrproperties
---
 ko/otr.properties | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/ko/otr.properties b/ko/otr.properties
index bf665ac..0ea6603 100644
--- a/ko/otr.properties
+++ b/ko/otr.properties
@@ -1,8 +1,8 @@
-msgevent.encryption_required_part1=You attempted to send an unencrypted 
message to %S. As a policy, unencrypted messages are not allowed.
-msgevent.encryption_required_part2=Attempting to start a private conversation. 
Your message will be retransmitted when the private conversation starts.
-msgevent.encryption_error=An error occurred when encrypting your message. The 
message was not sent.
-msgevent.connection_ended=%S has already closed their private connection to 
you. Your message was not sent. Either end your private conversation, or 
restart it.
-msgevent.setup_error=An error occured while setting up a private conversation 
with %S.
+msgevent.encryption_required_part1=%S에 암호화되지 않은 메시지를 
보내려고 했습니다. 정책으로서 암호화되지 않은 메시지는 
허용되지 않습니다.
+msgevent.encryption_required_part2=비밀 대화를 시작하려고 합니다. 
비밀 대화가 시작되면 메시지가 다시 전송됩니다.
+msgevent.encryption_error=메시지를 암호화하는 중 오류가 
발생했습니다. 메시지가 전송되지 않았습니다.
+msgevent.connection_ended=%S가 이미 당신과의 비밀 연결을 종
료했습니다. 귀하의 메시지는 전송되지 않았습니다. 대화를 
끝내거나 다시 시작하십시오.
+msgevent.setup_error=%S의 비밀 대화를 설정하는 동안 오류가 
발생했습니다.
 msgevent.msg_reflected=You are receiving your own OTR messages. You are either 
trying to talk to yourself, or someone is reflecting your messages back at you.
 msgevent.msg_resent=The last message to %S was resent.
 msgevent.rcvdmsg_not_private=The encrypted message received from %S is 
unreadable, as you are not currently communicating privately.

___
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

2017-07-15 Thread translation
commit 580ba7f9bd68e983ed3ca36510484df007d760d7
Author: Translation commit bot 
Date:   Sat Jul 15 06:16:45 2017 +

Update translations for torbutton-torbuttonproperties
---
 ko/torbutton.properties | 18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/ko/torbutton.properties b/ko/torbutton.properties
index dad4faf..1f1054a 100644
--- a/ko/torbutton.properties
+++ b/ko/torbutton.properties
@@ -1,11 +1,11 @@
 torbutton.circuit_display.internet = 인터넷
 torbutton.circuit_display.ip_unknown = 미확인 IP
 torbutton.circuit_display.onion_site = Onion 사이트
-torbutton.circuit_display.this_browser = This browser
+torbutton.circuit_display.this_browser = 이 브라우저
 torbutton.circuit_display.relay = 중계
 torbutton.circuit_display.tor_bridge = 브릿지
 torbutton.circuit_display.unknown_country = 미확인 국가
-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.
+torbutton.content_sizer.margin_tooltip = Tor 브라우저는 이 여백을 
추가하여 창의 너비와 높이를 일반화 시켜 온라인에서 
사용자를 추적하는 기능을 약화 시킵니다.
 torbutton.panel.tooltip.disabled = Tor를 활성화하려면 클릭
 torbutton.panel.tooltip.enabled = Tor를 비활성화하려면 클릭
 torbutton.panel.label.disabled = Tor 비활성화
@@ -26,15 +26,15 @@ torbutton.popup.short_torbrowser = 중요한 Torbutton ì 
•ë³´! Torbutton은 이
 
 torbutton.popup.confirm_plugins = 플래시와 같은 플러그인들은 당신
의 프라이버시와 익명성을 해칠 수 있습니다.\n\n또한 Tor을 
우회하여 당신의 현재 위치와 IP주소를 노출시킬 수도 
있습니다.\n\n정말로 플러그인을 허용하시겠습니까?\n\n
 torbutton.popup.never_ask_again = 다시는 물어보지 않기
-torbutton.popup.confirm_newnym = Tor Browser will close all windows and tabs. 
All website sessions will be lost.\n\nRestart Tor Browser now to reset your 
identity?\n\n
+torbutton.popup.confirm_newnym = Tor 브라우저의 모든 창과 탭을 
닫습니다. 모든 웹 사이트의 세션이 손실됩니다.\n\n신원을 
재설정 하기 위해 지금 Tor 브라우저를 다시 시작할까요?\n\n
 
-torbutton.slider_notification = The green onion menu now has a security slider 
which lets you adjust your security level. Check it out!
+torbutton.slider_notification = 녹색 onion 메뉴에는 이제 보안 
수준을 조정할 수 있는 보안 슬라이더가 있습니다. 
확인해보세요!
 torbutton.slider_notification_button = 보안 설정 열기
 
-torbutton.maximize_warning = Maximizing Tor Browser can allow websites to 
determine your monitor size, which can be used to track you. We recommend that 
you leave Tor Browser windows in their original default size.
+torbutton.maximize_warning = Tor 브라우저를 최대화하면 웹 
사이트에서 모니터 크기를 결정하여 사용자를 추적 할 수 
있습니다. Tor 브라우저 창은 원래 기본 크기로 두는 것이 
좋습니다.
 
 # Canvas permission prompt. Strings are kept here for ease of translation.
-canvas.siteprompt=This website (%S) attempted to extract HTML5 canvas image 
data, which may be used to uniquely identify your computer.\n\nShould Tor 
Browser allow this website to extract HTML5 canvas image data?
+canvas.siteprompt=이 웹 사이트 (%S)는 컴퓨터를 고유하게 
식별하는 데 사용될 수 있는 HTML5 캔버스 이미지 데이터를 
추출하려고 시도했습니다.\n\nTor 브라우저가 이 웹 
사이트에서 HTML5 캔버스 이미지 데이터를 추출하는것을 
허가 할까요?
 canvas.notNow=지금은 하지 않겠습니다
 canvas.notNowAccessKey=N
 canvas.allow=다음에 허용함
@@ -46,6 +46,6 @@ canvas.neverAccessKey=e
 # LOCALIZATION NOTE: %S is the application name.
 profileProblemTitle=%S 프로필 문제
 profileReadOnly=%S 에서 읽기전용 파일시스템으로 실행하실 수 
없습니다. 사용하시기 전에 %S를 복사하여 다른 곳에서 í…
ŒìŠ¤íŠ¸ 해 보십시오.
-profileReadOnlyMac=You cannot run %S from a read-only file system.  Please 
copy %S to your Desktop or Applications folder before trying to use it.
-profileAccessDenied=%S does not have permission to access the profile. Please 
adjust your file system permissions and try again.
-profileMigrationFailed=Migration of your existing %S profile failed.\nNew 
settings will be used.
+profileReadOnlyMac=읽기 전용 파일 시스템에서는 %S를 실행할 수 
없습니다. %S를 사용하기 전에 %S를 바탕 화면이나 응용 
프로그램 폴더로 복사하십시오.
+profileAccessDenied=%S에 프로필 액세스 권한이 없습니다. 파일 
시스템 권한을 조정하고 다시 시도하십시오.
+profileMigrationFailed=기존 %S 프로필을 이ì 

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

2017-07-15 Thread translation
commit 1533c0b04b26be38457e904ca5aa0d0d510a8660
Author: Translation commit bot 
Date:   Sat Jul 15 06:16:49 2017 +

Update translations for torbutton-torbuttondtd
---
 ko/torbutton.dtd | 38 +++---
 1 file changed, 19 insertions(+), 19 deletions(-)

diff --git a/ko/torbutton.dtd b/ko/torbutton.dtd
index b8ce045..adce6a9 100644
--- a/ko/torbutton.dtd
+++ b/ko/torbutton.dtd
@@ -2,7 +2,7 @@
 
 
 
-
+
 
 
 
@@ -11,9 +11,9 @@
 
 
 
-
-
-
+
+
+
 
 
 
@@ -27,35 +27,35 @@
 
 
 
-
+
 
 
-
+
 
-
+
 
-
-
+
+
 
-
-
-
+
+
+
 
 
 
 
-
+
 
-
-
+
+
 
-
+
 
 
-
-
+
+
 
 
 
 
-
+

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

2017-07-15 Thread translation
commit 5eec9eddc082259f01c6e4aad198e0bc06a9a308
Author: Translation commit bot 
Date:   Sat Jul 15 06:16:16 2017 +

Update translations for tor-launcher-network-settings
---
 ko/network-settings.dtd | 22 +++---
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/ko/network-settings.dtd b/ko/network-settings.dtd
index 76c93c3..3ff2d46 100644
--- a/ko/network-settings.dtd
+++ b/ko/network-settings.dtd
@@ -13,32 +13,32 @@
 
 
 
-
+
 
-
+
 
 
 
 
 
 
-
-
+
+
 
 
 
-
-
+
+
 
 
 
 
 
 
-
+
 
-
-
+
+
 
 
 
@@ -56,7 +56,7 @@
 
 
 
-
+
 
 
 
@@ -65,7 +65,7 @@
 
 
 
-
+
 
 https://bridges.torproject.org 를 
방문하십시오.">
 

___
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_completed] Update translations for tor-launcher-network-settings_completed

2017-07-15 Thread translation
commit 9afa7c0c6c070f992939da44882974599633b6d1
Author: Translation commit bot 
Date:   Sat Jul 15 06:16:19 2017 +

Update translations for tor-launcher-network-settings_completed
---
 ko/network-settings.dtd | 15 +++
 1 file changed, 11 insertions(+), 4 deletions(-)

diff --git a/ko/network-settings.dtd b/ko/network-settings.dtd
index 4b34c7e..3ff2d46 100644
--- a/ko/network-settings.dtd
+++ b/ko/network-settings.dtd
@@ -13,7 +13,7 @@
 
 
 
-
+
 
 
 
@@ -22,17 +22,23 @@
 
 
 
-
+
+
 
 
 
-
+
+
 
 
 
 
 
 
+
+
+
+
 
 
 
@@ -50,6 +56,7 @@
 
 
 
+
 
 
 
@@ -58,7 +65,7 @@
 
 
 
-
+
 
 https://bridges.torproject.org 를 
방문하십시오.">
 

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


[tor-commits] [translation/tor-launcher-progress] Update translations for tor-launcher-progress

2017-07-15 Thread translation
commit eaee1cb61e4c99ece1ced7392731c6af0e6b5c24
Author: Translation commit bot 
Date:   Sat Jul 15 06:16:08 2017 +

Update translations for tor-launcher-progress
---
 ko/progress.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ko/progress.dtd b/ko/progress.dtd
index 7669c26..6963c4f 100644
--- a/ko/progress.dtd
+++ b/ko/progress.dtd
@@ -1,4 +1,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-progress_completed] Update translations for tor-launcher-progress_completed

2017-07-15 Thread translation
commit 5ecbcfefe22992d673ce2e056fb5397f7639c037
Author: Translation commit bot 
Date:   Sat Jul 15 06:16:12 2017 +

Update translations for tor-launcher-progress_completed
---
 ko/progress.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ko/progress.dtd b/ko/progress.dtd
index bb931d0..6963c4f 100644
--- a/ko/progress.dtd
+++ b/ko/progress.dtd
@@ -1,4 +1,4 @@
 
 
 
-
+

___
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_completed] Update translations for tails-persistence-setup_completed

2017-07-15 Thread translation
commit 4d2678336b47f80f88825678da6bcf497cce38c1
Author: Translation commit bot 
Date:   Sat Jul 15 06:15:40 2017 +

Update translations for tails-persistence-setup_completed
---
 ko/ko.po | 17 +
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/ko/ko.po b/ko/ko.po
index b782a8d..3b6958f 100644
--- a/ko/ko.po
+++ b/ko/ko.po
@@ -5,15 +5,16 @@
 # Translators:
 # ilbe123 , 2014
 # Chris Park , 2016
+# snotree , 2017
 # Dr.what , 2014
-# Revi_ , 2015
+# Yongmin Hong , 2015
 msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: Tails developers \n"
-"POT-Creation-Date: 2016-05-25 02:27+0200\n"
-"PO-Revision-Date: 2016-06-06 08:15+\n"
-"Last-Translator: carolyn \n"
+"POT-Creation-Date: 2017-05-15 13:51+0200\n"
+"PO-Revision-Date: 2017-07-15 06:10+\n"
+"Last-Translator: snotree \n"
 "Language-Team: Korean 
(http://www.transifex.com/otf/torproject/language/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -54,12 +55,12 @@ msgid "Pidgin profiles and OTR keyring"
 msgstr "Pidgin 프로필 및 OTR 키홀더"
 
 #: ../lib/Tails/Persistence/Configuration/Presets.pm:88
-msgid "Icedove"
-msgstr "Icedove"
+msgid "Thunderbird"
+msgstr "썬더버드"
 
 #: ../lib/Tails/Persistence/Configuration/Presets.pm:90
-msgid "Icedove profiles and locally stored email"
-msgstr "Icedove 프로필과 로컬 저장소에 저장된 이메일"
+msgid "Thunderbird profiles and locally stored email"
+msgstr "썬더 버드 프로필과 로컬에 저장된 이메일"
 
 #: ../lib/Tails/Persistence/Configuration/Presets.pm:98
 msgid "GNOME Keyring"

___
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

2017-07-15 Thread translation
commit 477c1cd163ca3c0cb13494f2eb8ee1ea13bfacb7
Author: Translation commit bot 
Date:   Sat Jul 15 06:15:36 2017 +

Update translations for tails-persistence-setup
---
 ko/ko.po | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/ko/ko.po b/ko/ko.po
index 17ddb0f..3b6958f 100644
--- a/ko/ko.po
+++ b/ko/ko.po
@@ -5,6 +5,7 @@
 # Translators:
 # ilbe123 , 2014
 # Chris Park , 2016
+# snotree , 2017
 # Dr.what , 2014
 # Yongmin Hong , 2015
 msgid ""
@@ -12,8 +13,8 @@ msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: Tails developers \n"
 "POT-Creation-Date: 2017-05-15 13:51+0200\n"
-"PO-Revision-Date: 2017-05-17 03:09+\n"
-"Last-Translator: carolyn \n"
+"PO-Revision-Date: 2017-07-15 06:10+\n"
+"Last-Translator: snotree \n"
 "Language-Team: Korean 
(http://www.transifex.com/otf/torproject/language/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -55,11 +56,11 @@ msgstr "Pidgin 프로필 및 OTR 키홀더"
 
 #: ../lib/Tails/Persistence/Configuration/Presets.pm:88
 msgid "Thunderbird"
-msgstr ""
+msgstr "썬더버드"
 
 #: ../lib/Tails/Persistence/Configuration/Presets.pm:90
 msgid "Thunderbird profiles and locally stored email"
-msgstr ""
+msgstr "썬더 버드 프로필과 로컬에 저장된 이메일"
 
 #: ../lib/Tails/Persistence/Configuration/Presets.pm:98
 msgid "GNOME Keyring"

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