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

2016-01-29 Thread translation
commit d276ff382feb31721a9d967508efe04850c4c8ad
Author: Translation commit bot 
Date:   Fri Jan 29 16:45:19 2016 +

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

diff --git a/de/de.po b/de/de.po
index cede4e0..a69f85f 100644
--- a/de/de.po
+++ b/de/de.po
@@ -13,6 +13,7 @@
 # Christoph Engler , 2015
 # trantor , 2014
 # tbull , 2009
+# Emilio Salano , 2016
 # Ettore Atalan , 2015
 # gerhard , 2013
 # konstibae, 2015
@@ -32,7 +33,7 @@
 # stefanf , 2015
 # Tobias Bannert , 2013
 # Tobias Bannert , 2013-2014
-# try once , 2015
+# try once, 2015
 # rike, 2014-2015
 # Victoria Kerley , 2013
 msgid ""
@@ -40,8 +41,8 @@ msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-11-02 21:23+0100\n"
-"PO-Revision-Date: 2015-12-02 07:46+\n"
-"Last-Translator: stefanf \n"
+"PO-Revision-Date: 2016-01-29 16:35+\n"
+"Last-Translator: Emilio Salano \n"
 "Language-Team: German 
(http://www.transifex.com/otf/torproject/language/de/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -517,7 +518,7 @@ msgstr "Unbekannte dbus-Ausnahme während des Einhängens 
des Gerätes: %(messag
 
 #: ../liveusb/creator.py:791 ../liveusb/creator.py:964
 msgid "Unknown filesystem.  Your device may need to be reformatted."
-msgstr "Unbekanntes Dateisystem. Eventuell muss das Medium neu formatiert 
werden."
+msgstr "Unbekanntes Dateisystem für %s. Ihr Gerät muss neu formatiert 
werden."
 
 #: ../liveusb/gui.py:85
 #, python-format

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


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

2016-01-29 Thread translation
commit 2d83dd68c4f3f80f58d5dbdda5d0c4e56e8387cb
Author: Translation commit bot 
Date:   Fri Jan 29 16:45:26 2016 +

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

diff --git a/de/de.po b/de/de.po
index cede4e0..a69f85f 100644
--- a/de/de.po
+++ b/de/de.po
@@ -13,6 +13,7 @@
 # Christoph Engler , 2015
 # trantor , 2014
 # tbull , 2009
+# Emilio Salano , 2016
 # Ettore Atalan , 2015
 # gerhard , 2013
 # konstibae, 2015
@@ -32,7 +33,7 @@
 # stefanf , 2015
 # Tobias Bannert , 2013
 # Tobias Bannert , 2013-2014
-# try once , 2015
+# try once, 2015
 # rike, 2014-2015
 # Victoria Kerley , 2013
 msgid ""
@@ -40,8 +41,8 @@ msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-11-02 21:23+0100\n"
-"PO-Revision-Date: 2015-12-02 07:46+\n"
-"Last-Translator: stefanf \n"
+"PO-Revision-Date: 2016-01-29 16:35+\n"
+"Last-Translator: Emilio Salano \n"
 "Language-Team: German 
(http://www.transifex.com/otf/torproject/language/de/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -517,7 +518,7 @@ msgstr "Unbekannte dbus-Ausnahme während des Einhängens 
des Gerätes: %(messag
 
 #: ../liveusb/creator.py:791 ../liveusb/creator.py:964
 msgid "Unknown filesystem.  Your device may need to be reformatted."
-msgstr "Unbekanntes Dateisystem. Eventuell muss das Medium neu formatiert 
werden."
+msgstr "Unbekanntes Dateisystem für %s. Ihr Gerät muss neu formatiert 
werden."
 
 #: ../liveusb/gui.py:85
 #, python-format

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


[tor-commits] [snowflake/master] Separate broker HTTP and snowflake heap go files

2016-01-29 Thread serene
commit a6f6284229689330be5f69cddda27f98d15642f2
Author: Serene Han 
Date:   Fri Jan 29 08:56:31 2016 -0800

Separate broker HTTP and snowflake heap go files
---
 broker/broker.go   | 178 
 broker/snowflake-broker.go | 223 -
 broker/snowflake-heap.go   |  46 ++
 3 files changed, 224 insertions(+), 223 deletions(-)

diff --git a/broker/broker.go b/broker/broker.go
new file mode 100644
index 000..dda20cb
--- /dev/null
+++ b/broker/broker.go
@@ -0,0 +1,178 @@
+/*
+Broker acts as the HTTP signaling channel.
+It matches clients and snowflake proxies by passing corresponding
+SessionDescriptions in order to negotiate a WebRTC connection.
+
+TODO(serene): This code is currently the absolute minimum required to
+cause a successful negotiation.
+It's otherwise very unsafe and problematic, and needs quite some work...
+*/
+package snowflake_broker
+
+import (
+   "container/heap"
+   "io/ioutil"
+   "log"
+   "net"
+   "net/http"
+   "time"
+)
+
+// This is minimum viable client-proxy registration.
+// TODO(#13): better, more secure registration corresponding to what's in
+// the python flashproxy facilitator.
+
+var snowflakes *SnowflakeHeap
+
+// Map keeping track of snowflakeIDs required to match SDP answers from
+// the second http POST.
+var snowflakeMap map[string]*Snowflake
+
+// Create and add a Snowflake to the heap.
+func AddSnowflake(id string) *Snowflake {
+   snowflake := new(Snowflake)
+   snowflake.id = id
+   snowflake.clients = 0
+   snowflake.offerChannel = make(chan []byte)
+   snowflake.answerChannel = make(chan []byte)
+   heap.Push(snowflakes, snowflake)
+   snowflakeMap[id] = snowflake
+   return snowflake
+}
+
+func robotsTxtHandler(w http.ResponseWriter, r *http.Request) {
+   w.Header().Set("Content-Type", "text/plain; charset=utf-8")
+   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))
+}
+
+/*
+Expects a WebRTC SDP offer in the Request to give to an assigned
+snowflake proxy, which responds with the SDP answer to be sent in
+the HTTP response back to the client.
+*/
+func clientHandler(w http.ResponseWriter, r *http.Request) {
+   offer, err := ioutil.ReadAll(r.Body)
+   if nil != err {
+   log.Println("Invalid data.")
+   w.WriteHeader(http.StatusBadRequest)
+   return
+   }
+   w.Header().Set("Access-Control-Allow-Origin", "*")
+   w.Header().Set("Access-Control-Allow-Headers", "X-Session-ID")
+
+   // Find the most available snowflake proxy, and pass the offer to it.
+   // TODO: Needs improvement.
+   snowflake := heap.Pop(snowflakes).(*Snowflake)
+   if nil == snowflake {
+   w.WriteHeader(http.StatusServiceUnavailable)
+   // w.Write([]byte("no snowflake proxies available"))
+   return
+   }
+   snowflake.offerChannel <- offer
+
+   // Wait for the answer to be returned on the channel.
+   select {
+   case answer := <-snowflake.answerChannel:
+   log.Println("Retrieving answer")
+   w.Write(answer)
+   // Only remove from the snowflake map once the answer is set.
+   delete(snowflakeMap, snowflake.id)
+
+   case <-time.After(time.Second * 10):
+   w.WriteHeader(http.StatusGatewayTimeout)
+   w.Write([]byte("timed out waiting for answer!"))
+   }
+}
+
+/*
+For snowflake proxies to request a client from the Broker.
+*/
+func proxyHandler(w http.ResponseWriter, r *http.Request) {
+   w.Header().Set("Access-Control-Allow-Origin", "*")
+   w.Header().Set("Access-Control-Allow-Headers", "Origin, X-Session-ID")
+   // For CORS preflight.
+   if "OPTIONS" == r.Method {
+   return
+   }
+
+   id := r.Header.Get("X-Session-ID")
+   body, err := ioutil.ReadAll(r.Body)
+   if nil != err {
+   log.Println("Invalid data.")
+   w.WriteHeader(http.StatusBadRequest)
+   return
+   }
+   if string(body) != id { // Mismatched IDs!
+   w.WriteHeader(http.StatusBadRequest)
+   }
+   // Maybe confirm that X-Session-ID is the same.
+   log.Println("Received snowflake: ", id)
+   snowflake := AddSnowflake(id)
+
+   // Wait for a client to avail an offer to the snowflake, or timeout
+   // and ask the snowflake to poll later.
+   select {
+   case offer := <-snowflake.offerChannel:
+   log.Println("Passing client offer to snowflake.")
+   w.Write(offer)

[tor-commits] [snowflake/master] CORS preflight func, and consts

2016-01-29 Thread serene
commit 1cdf6a435cbb00ef341fb847b98dda2f63a4f399
Author: Serene Han 
Date:   Fri Jan 29 09:09:37 2016 -0800

CORS preflight func, and consts
---
 broker/broker.go | 34 --
 1 file changed, 20 insertions(+), 14 deletions(-)

diff --git a/broker/broker.go b/broker/broker.go
index dda20cb..ae039a5 100644
--- a/broker/broker.go
+++ b/broker/broker.go
@@ -18,10 +18,14 @@ import (
"time"
 )
 
+const (
+   ClientTimeout = 10
+   ProxyTimeout  = 10
+)
+
 // This is minimum viable client-proxy registration.
 // TODO(#13): better, more secure registration corresponding to what's in
 // the python flashproxy facilitator.
-
 var snowflakes *SnowflakeHeap
 
 // Map keeping track of snowflakeIDs required to match SDP answers from
@@ -54,6 +58,16 @@ func ipHandler(w http.ResponseWriter, r *http.Request) {
w.Write([]byte(remoteAddr))
 }
 
+// Return early if it's CORS preflight.
+func isPreflight(w http.ResponseWriter, r *http.Request) bool {
+   w.Header().Set("Access-Control-Allow-Origin", "*")
+   w.Header().Set("Access-Control-Allow-Headers", "Origin, X-Session-ID")
+   if "OPTIONS" == r.Method {
+   return true
+   }
+   return false
+}
+
 /*
 Expects a WebRTC SDP offer in the Request to give to an assigned
 snowflake proxy, which responds with the SDP answer to be sent in
@@ -70,7 +84,7 @@ func clientHandler(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Access-Control-Allow-Headers", "X-Session-ID")
 
// Find the most available snowflake proxy, and pass the offer to it.
-   // TODO: Needs improvement.
+   // TODO: Needs improvement - maybe shouldn'
snowflake := heap.Pop(snowflakes).(*Snowflake)
if nil == snowflake {
w.WriteHeader(http.StatusServiceUnavailable)
@@ -87,7 +101,7 @@ func clientHandler(w http.ResponseWriter, r *http.Request) {
// Only remove from the snowflake map once the answer is set.
delete(snowflakeMap, snowflake.id)
 
-   case <-time.After(time.Second * 10):
+   case <-time.After(time.Second * ClientTimeout):
w.WriteHeader(http.StatusGatewayTimeout)
w.Write([]byte("timed out waiting for answer!"))
}
@@ -97,13 +111,9 @@ func clientHandler(w http.ResponseWriter, r *http.Request) {
 For snowflake proxies to request a client from the Broker.
 */
 func proxyHandler(w http.ResponseWriter, r *http.Request) {
-   w.Header().Set("Access-Control-Allow-Origin", "*")
-   w.Header().Set("Access-Control-Allow-Headers", "Origin, X-Session-ID")
-   // For CORS preflight.
-   if "OPTIONS" == r.Method {
+   if isPreflight(w, r) {
return
}
-
id := r.Header.Get("X-Session-ID")
body, err := ioutil.ReadAll(r.Body)
if nil != err {
@@ -125,7 +135,7 @@ func proxyHandler(w http.ResponseWriter, r *http.Request) {
log.Println("Passing client offer to snowflake.")
w.Write(offer)
 
-   case <-time.After(time.Second * 10):
+   case <-time.After(time.Second * ProxyTimeout):
// This snowflake is no longer available to serve clients.
heap.Remove(snowflakes, snowflake.index)
delete(snowflakeMap, snowflake.id)
@@ -139,13 +149,9 @@ an offer from proxyHandler to respond with an answer in an 
HTTP POST,
 which the broker will pass back to the original client.
 */
 func answerHandler(w http.ResponseWriter, r *http.Request) {
-   w.Header().Set("Access-Control-Allow-Origin", "*")
-   w.Header().Set("Access-Control-Allow-Headers", "X-Session-ID")
-   // For CORS preflight.
-   if "OPTIONS" == r.Method {
+   if isPreflight(w, r) {
return
}
-
id := r.Header.Get("X-Session-ID")
snowflake, ok := snowflakeMap[id]
if !ok || nil == snowflake {

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


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

2016-01-29 Thread translation
commit 64a5943e14beed328bc5e2528d0506dc90a8c4c6
Author: Translation commit bot 
Date:   Fri Jan 29 23:45:03 2016 +

Update translations for bridgedb
---
 cy/LC_MESSAGES/bridgedb.po | 336 +++--
 1 file changed, 169 insertions(+), 167 deletions(-)

diff --git a/cy/LC_MESSAGES/bridgedb.po b/cy/LC_MESSAGES/bridgedb.po
index aa7dcaa..e14cd0e 100644
--- a/cy/LC_MESSAGES/bridgedb.po
+++ b/cy/LC_MESSAGES/bridgedb.po
@@ -4,19 +4,21 @@
 # 
 # Translators:
 # Billy Humphreys , 2015
+# Christopher Griffiths , 2016
 # Huw Waters , 2014
 # littlegreykida , 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
-"Report-Msgid-Bugs-To: 
'https://trac.torproject.org/projects/tor/newticket?component=BridgeDB=bridgedb-reported,msgid=isis,sysrqb=isis'POT-Creation-Date:
 2015-03-19 22:13+\n"
-"PO-Revision-Date: 2015-09-06 16:14+\n"
-"Last-Translator: Billy Humphreys \n"
+"Report-Msgid-Bugs-To: 
'https://trac.torproject.org/projects/tor/newticket?component=BridgeDB=bridgedb-reported,msgid=isis,sysrqb=isis'\n"
+"POT-Creation-Date: 2015-07-25 03:40+\n"
+"PO-Revision-Date: 2016-01-29 23:22+\n"
+"Last-Translator: Christopher Griffiths \n"
 "Language-Team: Welsh (http://www.transifex.com/otf/torproject/language/cy/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 0.9.6\n"
+"Generated-By: Babel 1.3\n"
 "Language: cy\n"
 "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 
11) ? 2 : 3;\n"
 
@@ -31,57 +33,182 @@ msgstr ""
 #. "fteproxy"
 #. "Tor"
 #. "Tor Browser"
-#: lib/bridgedb/HTTPServer.py:107
+#: bridgedb/https/server.py:167
 msgid "Sorry! Something went wrong with your request."
+msgstr "Sori! Aeth rhywbeth o'i le gyda'ch cais."
+
+#: bridgedb/https/templates/base.html:79
+msgid "Report a Bug"
+msgstr ""
+
+#: bridgedb/https/templates/base.html:82
+msgid "Source Code"
+msgstr ""
+
+#: bridgedb/https/templates/base.html:85
+msgid "Changelog"
+msgstr ""
+
+#: bridgedb/https/templates/base.html:88
+msgid "Contact"
+msgstr ""
+
+#: bridgedb/https/templates/bridges.html:35
+msgid "Select All"
+msgstr ""
+
+#: bridgedb/https/templates/bridges.html:40
+msgid "Show QRCode"
+msgstr ""
+
+#: bridgedb/https/templates/bridges.html:52
+msgid "QRCode for your bridge lines"
+msgstr ""
+
+#. TRANSLATORS: Please translate this into some silly way to say
+#. "There was a problem!" in your language. For example,
+#. for Italian, you might translate this into "Mama mia!",
+#. or for French: "Sacrebleu!". :)
+#: bridgedb/https/templates/bridges.html:67
+#: bridgedb/https/templates/bridges.html:125
+msgid "Uh oh, spaghettios!"
+msgstr ""
+
+#: bridgedb/https/templates/bridges.html:68
+msgid "It seems there was an error getting your QRCode."
+msgstr ""
+
+#: bridgedb/https/templates/bridges.html:73
+msgid ""
+"This QRCode contains your bridge lines. Scan it with a QRCode reader to copy"
+" your bridge lines onto mobile and other devices."
+msgstr ""
+
+#: bridgedb/https/templates/bridges.html:131
+msgid "There currently aren't any bridges available..."
+msgstr ""
+
+#: bridgedb/https/templates/bridges.html:132
+#, python-format
+msgid ""
+" Perhaps you should try %s going back %s and choosing a different bridge "
+"type!"
+msgstr ""
+
+#: bridgedb/https/templates/index.html:11
+#, python-format
+msgid "Step %s1%s"
+msgstr ""
+
+#: bridgedb/https/templates/index.html:13
+#, python-format
+msgid "Download %s Tor Browser %s"
+msgstr ""
+
+#: bridgedb/https/templates/index.html:25
+#, python-format
+msgid "Step %s2%s"
+msgstr ""
+
+#: bridgedb/https/templates/index.html:27
+#, python-format
+msgid "Get %s bridges %s"
+msgstr "Cael gafael ar %s pontydd %s"
+
+#: bridgedb/https/templates/index.html:36
+#, python-format
+msgid "Step %s3%s"
+msgstr ""
+
+#: bridgedb/https/templates/index.html:38
+#, python-format
+msgid "Now %s add the bridges to Tor Browser %s"
+msgstr ""
+
+#. TRANSLATORS: Please make sure the '%s' surrounding single letters at the
+#. beginning of words are present in your final translation. Thanks!
+#. (These are used to insert HTML5 underlining tags, to mark accesskeys
+#. for disabled users.)
+#: bridgedb/https/templates/options.html:38
+#, python-format
+msgid "%sJ%sust give me bridges!"
+msgstr ""
+
+#: bridgedb/https/templates/options.html:51
+msgid "Advanced Options"
 msgstr ""
 
-#: lib/bridgedb/strings.py:18
+#: bridgedb/https/templates/options.html:86
+msgid "No"
+msgstr "Na"
+
+#: bridgedb/https/templates/options.html:87
+msgid "none"
+msgstr ""
+
+#. TRANSLATORS: Please make sure the '%s' surrounding single letters at the
+#. beginning of words are present in your final translation. Thanks!
+#. TRANSLATORS: Translate "Yes!" as in "Yes! I do need IPv6 addresses."

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

2016-01-29 Thread translation
commit bd15bd7246b0ec141c1c83d6705876ea64cf5d5e
Author: Translation commit bot 
Date:   Fri Jan 29 23:45:15 2016 +

Update translations for whisperback
---
 cy/cy.po | 58 +-
 1 file changed, 29 insertions(+), 29 deletions(-)

diff --git a/cy/cy.po b/cy/cy.po
index 3e2dc0e..774212d 100644
--- a/cy/cy.po
+++ b/cy/cy.po
@@ -3,15 +3,16 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# huwwaters , 2014
+# Christopher Griffiths , 2016
+# Huw Waters , 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-08-01 15:36+0200\n"
-"PO-Revision-Date: 2014-03-16 19:30+\n"
-"Last-Translator: huwwaters \n"
-"Language-Team: Welsh 
(http://www.transifex.com/projects/p/torproject/language/cy/)\n"
+"POT-Creation-Date: 2015-12-16 19:54+0100\n"
+"PO-Revision-Date: 2016-01-29 23:20+\n"
+"Last-Translator: Christopher Griffiths \n"
+"Language-Team: Welsh (http://www.transifex.com/otf/torproject/language/cy/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -19,17 +20,17 @@ msgstr ""
 "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 
11) ? 2 : 3;\n"
 
 #. XXX use a better exception
-#: ../whisperBack/whisperback.py:63
+#: ../whisperBack/whisperback.py:56
 #, python-format
 msgid "Invalid contact email: %s"
-msgstr ""
+msgstr "Ebost cyswllt annilys: %s"
 
-#: ../whisperBack/whisperback.py:80
+#: ../whisperBack/whisperback.py:73
 #, python-format
 msgid "Invalid contact OpenPGP key: %s"
 msgstr ""
 
-#: ../whisperBack/whisperback.py:82
+#: ../whisperBack/whisperback.py:75
 msgid "Invalid contact OpenPGP public key block"
 msgstr ""
 
@@ -40,40 +41,40 @@ msgid ""
 "/etc/whisperback/config.py, ~/.whisperback/config.py, ./config.py"
 msgstr ""
 
-#: ../whisperBack/gui.py:154
+#: ../whisperBack/gui.py:148
 msgid "Unable to load a valid configuration."
 msgstr ""
 
-#: ../whisperBack/gui.py:220
+#: ../whisperBack/gui.py:214
 msgid "Sending mail..."
 msgstr ""
 
-#: ../whisperBack/gui.py:221
+#: ../whisperBack/gui.py:215
 msgid "Sending mail"
 msgstr ""
 
 #. pylint: disable=C0301
-#: ../whisperBack/gui.py:223
+#: ../whisperBack/gui.py:217
 msgid "This could take a while..."
 msgstr ""
 
-#: ../whisperBack/gui.py:237
+#: ../whisperBack/gui.py:232
 msgid "The contact email adress doesn't seem valid."
 msgstr ""
 
-#: ../whisperBack/gui.py:254
+#: ../whisperBack/gui.py:249
 msgid "Unable to send the mail: SMTP error."
 msgstr ""
 
-#: ../whisperBack/gui.py:256
+#: ../whisperBack/gui.py:251
 msgid "Unable to connect to the server."
 msgstr ""
 
-#: ../whisperBack/gui.py:258
+#: ../whisperBack/gui.py:253
 msgid "Unable to create or to send the mail."
 msgstr ""
 
-#: ../whisperBack/gui.py:261
+#: ../whisperBack/gui.py:256
 msgid ""
 "\n"
 "\n"
@@ -82,21 +83,20 @@ msgid ""
 "If it does not work, you will be offered to save the bug report."
 msgstr ""
 
-#: ../whisperBack/gui.py:274
+#: ../whisperBack/gui.py:269
 msgid "Your message has been sent."
 msgstr "Anfonwyd eich neges."
 
-#: ../whisperBack/gui.py:281
+#: ../whisperBack/gui.py:276
 msgid "An error occured during encryption."
 msgstr ""
 
-#: ../whisperBack/gui.py:301
+#: ../whisperBack/gui.py:296
 #, python-format
 msgid "Unable to save %s."
 msgstr ""
 
-#. XXX: fix string
-#: ../whisperBack/gui.py:325
+#: ../whisperBack/gui.py:319
 #, python-format
 msgid ""
 "The bug report could not be sent, likely due to network problems.\n"
@@ -106,27 +106,27 @@ msgid ""
 "Do you want to save the bug report to a file?"
 msgstr ""
 
-#: ../whisperBack/gui.py:389 ../data/whisperback.ui.h:21
+#: ../whisperBack/gui.py:379 ../data/whisperback.ui.h:21
 msgid "WhisperBack"
 msgstr ""
 
-#: ../whisperBack/gui.py:390 ../data/whisperback.ui.h:2
+#: ../whisperBack/gui.py:380 ../data/whisperback.ui.h:2
 msgid "Send feedback in an encrypted mail."
 msgstr ""
 
-#: ../whisperBack/gui.py:393
+#: ../whisperBack/gui.py:383
 msgid "Copyright © 2009-2012 Tails developpers (ta...@boum.org)"
 msgstr ""
 
-#: ../whisperBack/gui.py:394
+#: ../whisperBack/gui.py:384
 msgid "Tails developers "
 msgstr ""
 
-#: ../whisperBack/gui.py:395
+#: ../whisperBack/gui.py:385
 msgid "translator-credits"
 msgstr ""
 
-#: ../whisperBack/gui.py:422
+#: ../whisperBack/gui.py:412
 msgid "This doesn't seem to be a valid URL or OpenPGP key."
 msgstr ""
 

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


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

2016-01-29 Thread translation
commit 4067ae79736ed11b2fc642f6b6c410fe1e4a22c2
Author: Translation commit bot 
Date:   Fri Jan 29 23:45:47 2016 +

Update translations for torbirdy
---
 cy/torbirdy.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cy/torbirdy.dtd b/cy/torbirdy.dtd
index 8325600..fb2d7fb 100644
--- a/cy/torbirdy.dtd
+++ b/cy/torbirdy.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-properties] Update translations for tor-launcher-properties

2016-01-29 Thread translation
commit 717f24d6455f3cf1c6f95d62c6adc400b60b9c7d
Author: Translation commit bot 
Date:   Fri Jan 29 23:45:56 2016 +

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

diff --git a/cy/torlauncher.properties b/cy/torlauncher.properties
index 3408bec..933e5d6 100644
--- a/cy/torlauncher.properties
+++ b/cy/torlauncher.properties
@@ -4,7 +4,7 @@
 torlauncher.error_title=Lansiwr Tor
 
 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_exited2=Restarting Tor will not close your browser tabs.
+torlauncher.tor_exited2=Ni fydd ailgychwyn Tor yn cau'ch tabiau porwr.
 torlauncher.tor_controlconn_failed=Ni allai gysylltu â'r porth rheolaeth Tor.
 torlauncher.tor_failed_to_start=Methodd Tor gychwyn.
 torlauncher.tor_control_failed=Methu cymryd rheolaeth o Tor.
@@ -37,7 +37,7 @@ torlauncher.done=Wedi gorffen
 
 torlauncher.forAssistance=Am gymorth, cysylltu â %S
 
-torlauncher.copiedNLogMessages=Copy complete. %S Tor log messages are ready to 
be pasted into a text editor or an email message.
+torlauncher.copiedNLogMessages=Copio wedi gorffen. Mae %S o negeseuon log Tor 
yn barod i'u gludo mewn golygydd testun neu neges ebost.
 
 torlauncher.bootstrapStatus.conn_dir=Cysylltu i cyfeiriadur cyfnewid
 torlauncher.bootstrapStatus.handshake_dir=Yn sefydlu cysylltiad cyfeiriadur 
amgryptiedig

___
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

2016-01-29 Thread translation
commit 02238734dcb7d512f04db5ce2e4e170a2116c177
Author: Translation commit bot 
Date:   Fri Jan 29 22:15:54 2016 +

Update translations for tor-launcher-network-settings
---
 sv/network-settings.dtd | 20 ++--
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/sv/network-settings.dtd b/sv/network-settings.dtd
index 19fcb74..31b3ac3 100644
--- a/sv/network-settings.dtd
+++ b/sv/network-settings.dtd
@@ -13,32 +13,32 @@
 
 
 
-
+
 
-
+
 
 
 
 
 
 
-
-
+
+
 
 
 
-
-
+
+
 
 
 
 
 
 
-
+
 
-
-
+
+
 
 
 
@@ -56,7 +56,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-progress] Update translations for tor-launcher-progress

2016-01-29 Thread translation
commit 426832fcd6533f34e81d17f07d6099ce4870d7b1
Author: Translation commit bot 
Date:   Fri Jan 29 22:15:45 2016 +

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

diff --git a/sv/progress.dtd b/sv/progress.dtd
index 7ac45ca..1df097b 100644
--- a/sv/progress.dtd
+++ b/sv/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-network-settings_completed] Update translations for tor-launcher-network-settings_completed

2016-01-29 Thread translation
commit 5c5d5b60bc629a420178f2d91b1672a323984bd5
Author: Translation commit bot 
Date:   Fri Jan 29 22:15:59 2016 +

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

diff --git a/sv/network-settings.dtd b/sv/network-settings.dtd
index c53103f..31b3ac3 100644
--- a/sv/network-settings.dtd
+++ b/sv/network-settings.dtd
@@ -13,26 +13,32 @@
 
 
 
-
+
 
-
+
 
 
 
 
 
 
-
+
+
 
 
 
-
+
+
 
 
 
 
 
 
+
+
+
+
 
 
 
@@ -50,6 +56,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-progress_completed] Update translations for tor-launcher-progress_completed

2016-01-29 Thread translation
commit d8dbd0adec91a5f1f77431fa6487944ce287d927
Author: Translation commit bot 
Date:   Fri Jan 29 22:15:50 2016 +

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

diff --git a/sv/progress.dtd b/sv/progress.dtd
index c42db4e..1df097b 100644
--- a/sv/progress.dtd
+++ b/sv/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/torbutton-branddtd] Update translations for torbutton-branddtd

2016-01-29 Thread translation
commit aa7ef01403720c57eef790522ca236ef565a178b
Author: Translation commit bot 
Date:   Fri Jan 29 23:46:23 2016 +

Update translations for torbutton-branddtd
---
 cy/brand.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cy/brand.dtd b/cy/brand.dtd
index 8755579..951c9d1 100644
--- a/cy/brand.dtd
+++ b/cy/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
 
-
+
 
 
 

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


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

2016-01-29 Thread translation
commit ca3ae68bd70846aa660669d91ea9e292bd2ffaf4
Author: Translation commit bot 
Date:   Fri Jan 29 23:46:15 2016 +

Update translations for torbutton-brandproperties
---
 cy/brand.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cy/brand.properties b/cy/brand.properties
index 9168389..00af8bf 100644
--- a/cy/brand.properties
+++ b/cy/brand.properties
@@ -2,7 +2,7 @@
 # License, v. 2.0. If a copy of the MPL was not distributed with this
 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
-brandShorterName=Tor Browser
+brandShorterName=Porwr Tor
 brandShortName=Porwr Tor
 brandFullName=Porwr Tor
 vendorShortName=Prosiect Tor

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


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

2016-01-29 Thread translation
commit e01bad7e0415f61731c08634a229cbeeb8458722
Author: Translation commit bot 
Date:   Fri Jan 29 23:46:38 2016 +

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

diff --git a/cy.po b/cy.po
index fd1fadf..a1ff85d 100644
--- a/cy.po
+++ b/cy.po
@@ -3,14 +3,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Christopher Griffiths , 2016
 # Huw Waters , 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: Tails developers \n"
-"POT-Creation-Date: 2016-01-11 15:40+0100\n"
-"PO-Revision-Date: 2016-01-12 08:13+\n"
-"Last-Translator: carolyn \n"
+"POT-Creation-Date: 2016-01-25 16:59+0100\n"
+"PO-Revision-Date: 2016-01-29 23:32+\n"
+"Last-Translator: Christopher Griffiths \n"
 "Language-Team: Welsh (http://www.transifex.com/otf/torproject/language/cy/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -20,7 +21,7 @@ msgstr ""
 
 #: ../lib/Tails/RunningSystem.pm:159
 msgid "Error"
-msgstr ""
+msgstr "Gwall"
 
 #: ../lib/Tails/RunningSystem.pm:161
 msgid ""

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


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

2016-01-29 Thread translation
commit 0546fa702b9418b7147d811bd877c504d948ed95
Author: Translation commit bot 
Date:   Fri Jan 29 23:46:19 2016 +

Update translations for torbutton-brandproperties_completed
---
 cy/brand.properties | 1 +
 1 file changed, 1 insertion(+)

diff --git a/cy/brand.properties b/cy/brand.properties
index de09fec..00af8bf 100644
--- a/cy/brand.properties
+++ b/cy/brand.properties
@@ -2,6 +2,7 @@
 # License, v. 2.0. If a copy of the MPL was not distributed with this
 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
+brandShorterName=Porwr Tor
 brandShortName=Porwr Tor
 brandFullName=Porwr Tor
 vendorShortName=Prosiect Tor

___
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

2016-01-29 Thread translation
commit b69f5636fb32b5425c8860b2106c02c21b584cfd
Author: Translation commit bot 
Date:   Fri Jan 29 23:45:38 2016 +

Update translations for tails-persistence-setup
---
 cy/cy.po | 95 
 1 file changed, 48 insertions(+), 47 deletions(-)

diff --git a/cy/cy.po b/cy/cy.po
index 7b720c0..5d40af8 100644
--- a/cy/cy.po
+++ b/cy/cy.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: Tails developers \n"
-"POT-Creation-Date: 2015-12-14 21:35+0100\n"
-"PO-Revision-Date: 2015-12-15 09:27+\n"
+"POT-Creation-Date: 2016-01-25 17:34+0100\n"
+"PO-Revision-Date: 2016-01-29 23:32+\n"
 "Last-Translator: carolyn \n"
 "Language-Team: Welsh (http://www.transifex.com/otf/torproject/language/cy/)\n"
 "MIME-Version: 1.0\n"
@@ -51,69 +51,69 @@ msgid "Pidgin profiles and OTR keyring"
 msgstr ""
 
 #: ../lib/Tails/Persistence/Configuration/Presets.pm:88
-msgid "GNOME Keyring"
+msgid "Icedove"
 msgstr ""
 
 #: ../lib/Tails/Persistence/Configuration/Presets.pm:90
-msgid "Secrets stored by GNOME Keyring"
+msgid "Icedove profiles and locally stored email"
 msgstr ""
 
 #: ../lib/Tails/Persistence/Configuration/Presets.pm:98
+msgid "GNOME Keyring"
+msgstr ""
+
+#: ../lib/Tails/Persistence/Configuration/Presets.pm:100
+msgid "Secrets stored by GNOME Keyring"
+msgstr ""
+
+#: ../lib/Tails/Persistence/Configuration/Presets.pm:108
 msgid "Network Connections"
 msgstr "Cysylltiadau Rhwydwaith"
 
-#: ../lib/Tails/Persistence/Configuration/Presets.pm:100
+#: ../lib/Tails/Persistence/Configuration/Presets.pm:110
 msgid "Configuration of network devices and connections"
 msgstr ""
 
-#: ../lib/Tails/Persistence/Configuration/Presets.pm:108
+#: ../lib/Tails/Persistence/Configuration/Presets.pm:118
 msgid "Browser bookmarks"
 msgstr ""
 
-#: ../lib/Tails/Persistence/Configuration/Presets.pm:110
+#: ../lib/Tails/Persistence/Configuration/Presets.pm:120
 msgid "Bookmarks saved in the Tor Browser"
 msgstr ""
 
-#: ../lib/Tails/Persistence/Configuration/Presets.pm:118
+#: ../lib/Tails/Persistence/Configuration/Presets.pm:128
 msgid "Printers"
 msgstr ""
 
-#: ../lib/Tails/Persistence/Configuration/Presets.pm:120
+#: ../lib/Tails/Persistence/Configuration/Presets.pm:130
 msgid "Printers configuration"
 msgstr ""
 
-#: ../lib/Tails/Persistence/Configuration/Presets.pm:128
+#: ../lib/Tails/Persistence/Configuration/Presets.pm:138
 msgid "Bitcoin client"
 msgstr ""
 
-#: ../lib/Tails/Persistence/Configuration/Presets.pm:130
+#: ../lib/Tails/Persistence/Configuration/Presets.pm:140
 msgid "Electrum's bitcoin wallet and configuration"
 msgstr ""
 
-#: ../lib/Tails/Persistence/Configuration/Presets.pm:138
+#: ../lib/Tails/Persistence/Configuration/Presets.pm:148
 msgid "APT Packages"
 msgstr "Pecynnau APT"
 
-#: ../lib/Tails/Persistence/Configuration/Presets.pm:140
+#: ../lib/Tails/Persistence/Configuration/Presets.pm:150
 msgid "Packages downloaded by APT"
 msgstr "Pecynnau a lawrlwythwyd gan APT"
 
-#: ../lib/Tails/Persistence/Configuration/Presets.pm:148
+#: ../lib/Tails/Persistence/Configuration/Presets.pm:158
 msgid "APT Lists"
 msgstr "Rhestrau APT"
 
-#: ../lib/Tails/Persistence/Configuration/Presets.pm:150
+#: ../lib/Tails/Persistence/Configuration/Presets.pm:160
 msgid "Lists downloaded by APT"
 msgstr "Rhestrau a lawrlwythwyd gan APT"
 
-#: ../lib/Tails/Persistence/Configuration/Presets.pm:158
-msgid "Icedove"
-msgstr ""
-
-#: ../lib/Tails/Persistence/Configuration/Presets.pm:160
-msgid "Icedove profiles and locally stored email"
-msgstr ""
-
 #: ../lib/Tails/Persistence/Configuration/Presets.pm:168
 msgid "Dotfiles"
 msgstr ""
@@ -123,71 +123,71 @@ msgid ""
 "Symlink into $HOME every file or directory found in the `dotfiles' directory"
 msgstr ""
 
-#: ../lib/Tails/Persistence/Setup.pm:227
+#: ../lib/Tails/Persistence/Setup.pm:230
 msgid "Setup Tails persistent volume"
 msgstr ""
 
-#: ../lib/Tails/Persistence/Setup.pm:307 ../lib/Tails/Persistence/Setup.pm:451
+#: ../lib/Tails/Persistence/Setup.pm:312 ../lib/Tails/Persistence/Setup.pm:459
 msgid "Error"
 msgstr "Gwall"
 
-#: ../lib/Tails/Persistence/Setup.pm:338
+#: ../lib/Tails/Persistence/Setup.pm:344
 #, perl-format
 msgid "Device %s already has a persistent volume."
 msgstr ""
 
-#: ../lib/Tails/Persistence/Setup.pm:346
+#: ../lib/Tails/Persistence/Setup.pm:352
 #, perl-format
 msgid "Device %s has not enough unallocated space."
 msgstr ""
 
-#: ../lib/Tails/Persistence/Setup.pm:354 ../lib/Tails/Persistence/Setup.pm:368
+#: ../lib/Tails/Persistence/Setup.pm:360 ../lib/Tails/Persistence/Setup.pm:374
 #, perl-format
 msgid "Device %s has no persistent volume."
 msgstr ""
 
-#: ../lib/Tails/Persistence/Setup.pm:360
+#: ../lib/Tails/Persistence/Setup.pm:366
 msgid ""
 "Cannot delete the persistent volume while in use. You should restart Tails "
 "without persistence."
 msgstr ""
 
-#: 

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

2016-01-29 Thread translation
commit 5d3b208680756da66f2aed844301fb3606f982fc
Author: Translation commit bot 
Date:   Fri Jan 29 23:46:58 2016 +

Update translations for tor-messenger-authdtd
---
 cy/auth.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cy/auth.dtd b/cy/auth.dtd
index 8df5727..bd9ebf1 100644
--- a/cy/auth.dtd
+++ b/cy/auth.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-misc] Update translations for tails-misc

2016-01-29 Thread translation
commit 828ec0ae9b5d4fa90cd7c69cd732c5074c506f93
Author: Translation commit bot 
Date:   Fri Jan 29 23:46:07 2016 +

Update translations for tails-misc
---
 cy.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cy.po b/cy.po
index 5d43649..ff26975 100644
--- a/cy.po
+++ b/cy.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-01-04 11:56+0100\n"
-"PO-Revision-Date: 2016-01-06 09:25+\n"
+"POT-Creation-Date: 2016-01-25 17:49+0100\n"
+"PO-Revision-Date: 2016-01-29 23:32+\n"
 "Last-Translator: carolyn \n"
 "Language-Team: Welsh (http://www.transifex.com/otf/torproject/language/cy/)\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/tor-messenger-fingerdtd] Update translations for tor-messenger-fingerdtd

2016-01-29 Thread translation
commit 41f59d03ea246962ab0bcf2d6523aba71e782dd0
Author: Translation commit bot 
Date:   Fri Jan 29 23:47:15 2016 +

Update translations for tor-messenger-fingerdtd
---
 cy/finger.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cy/finger.dtd b/cy/finger.dtd
index 7e611a4..12ada07 100644
--- a/cy/finger.dtd
+++ b/cy/finger.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] [orbot/master] fix escaping of apostro

2016-01-29 Thread n8fr8
commit 9c82aa85d056a689b8e804c286828d9d5c11eb6b
Author: Nathan Freitas 
Date:   Fri Jan 29 14:27:14 2016 -0500

fix escaping of apostro
---
 res/values-az/strings.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/res/values-az/strings.xml b/res/values-az/strings.xml
index 9e4a863..456bab7 100644
--- a/res/values-az/strings.xml
+++ b/res/values-az/strings.xml
@@ -275,7 +275,7 @@ LibEvent v2.0.21: 
http://www.monkey.org/~provos/libevent/
   Aktivləşdir
   Tətbiqetmələr VPN Rejimi
   Emeyl göndərin
-  Körpü
 ünvanını siz emeyl və veb vasitəsiylə, ya da körpünün QR kodunu skan 
etməklə əldə edə bilərsiniz. Körpü ünvanı haqda sorğunun altında  
'Email'i, yaxud 'Web'i seçin.\n\nÜnvanı əldə edəndən sonra  amp-i 
nüsxələyin və onu Orbot quraşdırmasındakı "Bridges" parametrinə qoyun 
və cihazı yenidən yükləyin.
+  Körpü
 ünvanını siz emeyl və veb vasitəsiylə, ya da körpünün QR kodunu skan 
etməklə əldə edə bilərsiniz. Körpü ünvanı haqda sorğunun altında  
\'Email\'i, yaxud \'Web\'i seçin.\n\nÜnvanı əldə edəndən sonra  
amp-i nüsxələyin və onu Orbot quraşdırmasındakı "Bridges" 
parametrinə qoyun və cihazı yenidən yükləyin.
   Orfoxu quraşdırın
   Standart Brauzer
   QEYD: 
Intel X86/ATOM cihazlarında yalnız standart Tor körpülər 
işləyir.



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


[tor-commits] [orbot/master] update license to include badvpn

2016-01-29 Thread n8fr8
commit 3cc2439b5f2f9fb4f36fadff8b988362ee3ff649
Author: Nathan Freitas 
Date:   Fri Jan 29 17:05:29 2016 -0500

update license to include badvpn
---
 LICENSE | 29 +
 1 file changed, 29 insertions(+)

diff --git a/LICENSE b/LICENSE
index dd7b4f3..7c98f54 100644
--- a/LICENSE
+++ b/LICENSE
@@ -158,3 +158,32 @@ is explicitely stated in the header of every file.
 The GPL also contains some obligations. If you distribute netfilter/iptables 
code
 in binary form, you have to offer the source code, too.
 ===
+
+===
+Orbot also includes BadVPN tun2socks: https://github.com/ambrop72/badvpn
+
+Copyright (c) 2009, Ambroz Bizjak 
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+* Redistributions of source code must retain the above copyright
+  notice, this list of conditions and the following disclaimer.
+* Redistributions in binary form must reproduce the above copyright
+  notice, this list of conditions and the following disclaimer in the
+  documentation and/or other materials provided with the distribution.
+* Neither the name of the author nor the
+  names of its contributors may be used to endorse or promote products
+  derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
+DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+===

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


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

2016-01-29 Thread translation
commit 10e2abc9163fda6190d58768440bec417ac326d4
Author: Translation commit bot 
Date:   Fri Jan 29 22:15:22 2016 +

Update translations for https_everywhere_completed
---
 sv/https-everywhere.dtd | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/sv/https-everywhere.dtd b/sv/https-everywhere.dtd
index 365a274..e1ef946 100644
--- a/sv/https-everywhere.dtd
+++ b/sv/https-everywhere.dtd
@@ -3,8 +3,11 @@
 
 
 
+
 
 
+
+
 
 
 

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


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

2016-01-29 Thread translation
commit ed968790aef463d6d994828de5685558cdc72a36
Author: Translation commit bot 
Date:   Fri Jan 29 22:15:16 2016 +

Update translations for https_everywhere
---
 sv/https-everywhere.dtd | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sv/https-everywhere.dtd b/sv/https-everywhere.dtd
index f837c8c..e1ef946 100644
--- a/sv/https-everywhere.dtd
+++ b/sv/https-everywhere.dtd
@@ -3,11 +3,11 @@
 
 
 
-
+
 
 
-
-
+
+
 
 
 

___
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

2016-01-29 Thread translation
commit 989929430437160fe6725224204fe5d5803a1e44
Author: Translation commit bot 
Date:   Fri Jan 29 23:15:35 2016 +

Update translations for tor-launcher-properties
---
 cy/torlauncher.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cy/torlauncher.properties b/cy/torlauncher.properties
index 5119e81..3408bec 100644
--- a/cy/torlauncher.properties
+++ b/cy/torlauncher.properties
@@ -30,7 +30,7 @@ torlauncher.error_bridge_bad_default_type=Does ddim pontiau a 
ddatparwyd gyda'r
 torlauncher.recommended_bridge=(awgrymwyd)
 
 torlauncher.connect=Cysylltu
-torlauncher.restart_tor=Restart Tor
+torlauncher.restart_tor=Ailgychwyn Tor
 torlauncher.quit=Cau
 torlauncher.quit_win=Gadael
 torlauncher.done=Wedi gorffen

___
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

2016-01-29 Thread translation
commit 2cd55bfd4fe1efa6dc4d262d2536751ff0c08274
Author: Translation commit bot 
Date:   Fri Jan 29 23:15:44 2016 +

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

diff --git a/cy/network-settings.dtd b/cy/network-settings.dtd
index e743cc1..94d142b 100644
--- a/cy/network-settings.dtd
+++ b/cy/network-settings.dtd
@@ -34,7 +34,7 @@
 
 
 
-
+
 
 
 

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


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

2016-01-29 Thread translation
commit a3a6c7db73d68e00ffa718e08bd9c27fdbda37c8
Author: Translation commit bot 
Date:   Fri Jan 29 23:47:30 2016 +

Update translations for tor-messenger-prefsdtd
---
 cy/prefs.dtd | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cy/prefs.dtd b/cy/prefs.dtd
index 1441b0e..499927a 100644
--- a/cy/prefs.dtd
+++ b/cy/prefs.dtd
@@ -1,10 +1,10 @@
-
+
 
 
 
 
 
-
+
 
 
 

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


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

2016-01-29 Thread translation
commit 9979051484e4a5d9cc8b1b74ba0425c5eb7696a7
Author: Translation commit bot 
Date:   Fri Jan 29 23:46:47 2016 +

Update translations for torbutton-aboutdialogdtd
---
 cy/aboutdialog.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cy/aboutdialog.dtd b/cy/aboutdialog.dtd
index 5099ad7..7dfd64e 100644
--- a/cy/aboutdialog.dtd
+++ b/cy/aboutdialog.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-iuk] Update translations for tails-iuk

2016-01-29 Thread translation
commit fb284bead89e167786ba26baaf938a3345ca0004
Author: Translation commit bot 
Date:   Fri Jan 29 23:46:32 2016 +

Update translations for tails-iuk
---
 cy.po | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/cy.po b/cy.po
index 30c1e42..a9c59f0 100644
--- a/cy.po
+++ b/cy.po
@@ -3,14 +3,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Christopher Griffiths , 2016
 # Huw Waters , 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: Tails developers \n"
 "POT-Creation-Date: 2015-12-16 18:20+0100\n"
-"PO-Revision-Date: 2015-12-17 09:10+\n"
-"Last-Translator: carolyn \n"
+"PO-Revision-Date: 2016-01-29 23:31+\n"
+"Last-Translator: Christopher Griffiths \n"
 "Language-Team: Welsh (http://www.transifex.com/otf/torproject/language/cy/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -23,7 +24,7 @@ msgstr ""
 msgid ""
 "For debugging information, execute the following command: sudo tails-"
 "debugging-info"
-msgstr ""
+msgstr "Ar gyfer gwybodaeth dadfygio, gweithredu y gorchymyn dilynol: sudo 
tails-debugging-info"
 
 #: ../lib/Tails/IUK/Frontend.pm:215
 msgid "Error while checking for upgrades"

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


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

2016-01-29 Thread translation
commit 2d95f0f50e6d187883f3597229b09d170fc624a2
Author: Translation commit bot 
Date:   Fri Jan 29 23:47:36 2016 +

Update translations for tor-messenger-privdtd
---
 cy/priv.dtd | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/cy/priv.dtd b/cy/priv.dtd
new file mode 100644
index 000..3cc0361
--- /dev/null
+++ b/cy/priv.dtd
@@ -0,0 +1,2 @@
+
+
\ 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/tails-openpgp-applet] Update translations for tails-openpgp-applet

2016-01-29 Thread translation
commit 399903c0c329b6e75b6bc5da888f5369b4fa3941
Author: Translation commit bot 
Date:   Fri Jan 29 23:47:43 2016 +

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

diff --git a/cy/openpgp-applet.pot b/cy/openpgp-applet.pot
index 4d694bb..1ded629 100644
--- a/cy/openpgp-applet.pot
+++ b/cy/openpgp-applet.pot
@@ -3,13 +3,14 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Christopher Griffiths , 2016
 msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: ta...@boum.org\n"
 "POT-Creation-Date: 2015-08-10 15:55+0200\n"
-"PO-Revision-Date: 2015-11-23 02:23+\n"
-"Last-Translator: FULL NAME \n"
+"PO-Revision-Date: 2016-01-29 23:30+\n"
+"Last-Translator: Christopher Griffiths \n"
 "Language-Team: Welsh (http://www.transifex.com/otf/torproject/language/cy/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -19,7 +20,7 @@ msgstr ""
 
 #: bin/openpgp-applet:163
 msgid "You are about to exit OpenPGP Applet. Are you sure?"
-msgstr ""
+msgstr "'Rydych chi ar fin gau'r Applet OpenPGP. A ydych chi'n sicr?"
 
 #: bin/openpgp-applet:175
 msgid "OpenPGP encryption applet"

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


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

2016-01-29 Thread translation
commit a6c0e059d477b3ac8ee3edf68276708c33940163
Author: Translation commit bot 
Date:   Fri Jan 29 23:47:49 2016 +

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

diff --git a/cy/abouttbupdate.dtd b/cy/abouttbupdate.dtd
index 37567bd..d1b0be7 100644
--- a/cy/abouttbupdate.dtd
+++ b/cy/abouttbupdate.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/https_everywhere] Update translations for https_everywhere

2016-01-29 Thread translation
commit fa20d2fa635f82eb3070a1480cd4245c63b35506
Author: Translation commit bot 
Date:   Sat Jan 30 02:15:20 2016 +

Update translations for https_everywhere
---
 cy/ssl-observatory.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cy/ssl-observatory.dtd b/cy/ssl-observatory.dtd
index 2877137..0f953f4 100644
--- a/cy/ssl-observatory.dtd
+++ b/cy/ssl-observatory.dtd
@@ -1,6 +1,6 @@
 
 
-
+
 
 
 https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


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

2016-01-29 Thread translation
commit b8a7921fa869f5ac130e1027fc94dadd7e128505
Author: Translation commit bot 
Date:   Sat Jan 30 02:15:02 2016 +

Update translations for bridgedb
---
 cy/LC_MESSAGES/bridgedb.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cy/LC_MESSAGES/bridgedb.po b/cy/LC_MESSAGES/bridgedb.po
index e14cd0e..7681c9d 100644
--- a/cy/LC_MESSAGES/bridgedb.po
+++ b/cy/LC_MESSAGES/bridgedb.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: 
'https://trac.torproject.org/projects/tor/newticket?component=BridgeDB=bridgedb-reported,msgid=isis,sysrqb=isis'\n"
 "POT-Creation-Date: 2015-07-25 03:40+\n"
-"PO-Revision-Date: 2016-01-29 23:22+\n"
+"PO-Revision-Date: 2016-01-30 02:10+\n"
 "Last-Translator: Christopher Griffiths \n"
 "Language-Team: Welsh (http://www.transifex.com/otf/torproject/language/cy/)\n"
 "MIME-Version: 1.0\n"
@@ -39,7 +39,7 @@ msgstr "Sori! Aeth rhywbeth o'i le gyda'ch cais."
 
 #: bridgedb/https/templates/base.html:79
 msgid "Report a Bug"
-msgstr ""
+msgstr "Crybwyll gwall"
 
 #: bridgedb/https/templates/base.html:82
 msgid "Source Code"

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


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

2016-01-29 Thread translation
commit 56953b67fff350076bec6381643490e8806468d6
Author: Translation commit bot 
Date:   Sat Jan 30 02:16:50 2016 +

Update translations for tor-messenger-authproperties
---
 cy/auth.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cy/auth.properties b/cy/auth.properties
index f76c719..146e9d5 100644
--- a/cy/auth.properties
+++ b/cy/auth.properties
@@ -9,4 +9,4 @@ auth.error=An error occurred while verifying your contact's 
identity.
 auth.success=Verifying your contact's identity completed successfully.
 auth.successThem=Your contact has successfully verified your identity. You may 
want to verify their identity as well by asking your own question.
 auth.fail=Failed to verify your contact's identity.
-auth.done=Done
+auth.done=Wedi gorffen

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


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

2016-01-29 Thread translation
commit 74906a548faade033362f2746349a70ceaf369c5
Author: Translation commit bot 
Date:   Sat Jan 30 02:16:34 2016 +

Update translations for torbutton-aboutdialogdtd
---
 cy/aboutdialog.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cy/aboutdialog.dtd b/cy/aboutdialog.dtd
index 7dfd64e..1050797 100644
--- a/cy/aboutdialog.dtd
+++ b/cy/aboutdialog.dtd
@@ -1,6 +1,6 @@
 
 
-
+
 
 
 

___
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

2016-01-29 Thread translation
commit eae35265ebb4eee44e045052c997421033c43f90
Author: Translation commit bot 
Date:   Sat Jan 30 02:15:28 2016 +

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

diff --git a/cy/cy.po b/cy/cy.po
index 19d023c..a34f6ee 100644
--- a/cy/cy.po
+++ b/cy/cy.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-11-02 21:23+0100\n"
-"PO-Revision-Date: 2016-01-29 23:29+\n"
+"PO-Revision-Date: 2016-01-30 02:15+\n"
 "Last-Translator: Christopher Griffiths \n"
 "Language-Team: Welsh (http://www.transifex.com/otf/torproject/language/cy/)\n"
 "MIME-Version: 1.0\n"
@@ -26,12 +26,12 @@ msgstr "\"Clonio a Gosod\""
 
 #: ../liveusb/gui.py:453
 msgid "\"Install from ISO\""
-msgstr ""
+msgstr "'Gosod o ISO'"
 
 #: ../liveusb/dialog.py:157 ../liveusb/launcher_ui.py:153
 #, python-format
 msgid "%(distribution)s Installer"
-msgstr ""
+msgstr "Gosodwr %(distribution)s"
 
 #: ../liveusb/gui.py:804
 #, 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-iuk] Update translations for tails-iuk

2016-01-29 Thread translation
commit 3fbe344c262c1de874f9e24dd23ea530292ea983
Author: Translation commit bot 
Date:   Sat Jan 30 02:16:18 2016 +

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

diff --git a/cy.po b/cy.po
index a9c59f0..6cad65d 100644
--- a/cy.po
+++ b/cy.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: Tails developers \n"
 "POT-Creation-Date: 2015-12-16 18:20+0100\n"
-"PO-Revision-Date: 2016-01-29 23:31+\n"
+"PO-Revision-Date: 2016-01-30 02:14+\n"
 "Last-Translator: Christopher Griffiths \n"
 "Language-Team: Welsh (http://www.transifex.com/otf/torproject/language/cy/)\n"
 "MIME-Version: 1.0\n"
@@ -28,7 +28,7 @@ msgstr "Ar gyfer gwybodaeth dadfygio, gweithredu y gorchymyn 
dilynol: sudo tails
 
 #: ../lib/Tails/IUK/Frontend.pm:215
 msgid "Error while checking for upgrades"
-msgstr ""
+msgstr "Gwall wrth wirio am uwchraddio"
 
 #: ../lib/Tails/IUK/Frontend.pm:218
 msgid ""
@@ -37,7 +37,7 @@ msgid ""
 "Check your network connection, and restart Tails to try upgrading again.\n"
 "\n"
 "If the problem persists, go to 
file:///usr/share/doc/tails/website/doc/upgrade/error/check.en.html"
-msgstr ""
+msgstr "Ni allai gadarnhau a oes uwchradd ar gael ar ein 
wefan.\n\nGwirio eich cysylltiad rhwydwaith, ac ailgychwyn Tails i geisio 
uwchraddio eto.\n\nOs bydd y problem yn parhau, ewch i go to 
file:///usr/share/doc/tails/website/doc/upgrade/error/check.cy.html"
 
 #: ../lib/Tails/IUK/Frontend.pm:233
 msgid "no automatic upgrade is available from our website for this version"

___
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

2016-01-29 Thread translation
commit cf586b6f34fd77ea23b8f78d35fe24948a24cd16
Author: Translation commit bot 
Date:   Sat Jan 30 02:15:34 2016 +

Update translations for tails-persistence-setup
---
 cy/cy.po | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/cy/cy.po b/cy/cy.po
index 5d40af8..86ce4b3 100644
--- a/cy/cy.po
+++ b/cy/cy.po
@@ -3,14 +3,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Christopher Griffiths , 2016
 # Huw Waters , 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: Tails developers \n"
 "POT-Creation-Date: 2016-01-25 17:34+0100\n"
-"PO-Revision-Date: 2016-01-29 23:32+\n"
-"Last-Translator: carolyn \n"
+"PO-Revision-Date: 2016-01-30 02:08+\n"
+"Last-Translator: Christopher Griffiths \n"
 "Language-Team: Welsh (http://www.transifex.com/otf/torproject/language/cy/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -24,7 +25,7 @@ msgstr "Data Personol"
 
 #: ../lib/Tails/Persistence/Configuration/Presets.pm:50
 msgid "Keep files stored in the `Persistent' directory"
-msgstr ""
+msgstr "Cadw ffeiliau yn y plygell 'Parhaol'"
 
 #: ../lib/Tails/Persistence/Configuration/Presets.pm:58
 msgid "GnuPG"

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


[tor-commits] [translation/tor-launcher-network-settings] Update translations for tor-launcher-network-settings

2016-01-29 Thread translation
commit ab20494242c7dbe9f143500155051c241d726834
Author: Translation commit bot 
Date:   Sat Jan 30 02:15:57 2016 +

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

diff --git a/cy/network-settings.dtd b/cy/network-settings.dtd
index 94d142b..87c7f25 100644
--- a/cy/network-settings.dtd
+++ b/cy/network-settings.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/torbirdy] Update translations for torbirdy

2016-01-29 Thread translation
commit 3a4c1084c179587ae2ac91d7c83ad6e0b25b78f1
Author: Translation commit bot 
Date:   Sat Jan 30 02:15:43 2016 +

Update translations for torbirdy
---
 cy/torbirdy.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cy/torbirdy.dtd b/cy/torbirdy.dtd
index fb2d7fb..23cf231 100644
--- a/cy/torbirdy.dtd
+++ b/cy/torbirdy.dtd
@@ -1,5 +1,5 @@
 
-
+
 
 
 

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


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

2016-01-29 Thread translation
commit 9498936bdf8328d6dda7c85381396c2e3ccbdffc
Author: Translation commit bot 
Date:   Sat Jan 30 02:16:05 2016 +

Update translations for abouttor-homepage
---
 cy/aboutTor.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cy/aboutTor.dtd b/cy/aboutTor.dtd
index 7f791d3..d586420 100644
--- a/cy/aboutTor.dtd
+++ b/cy/aboutTor.dtd
@@ -6,7 +6,7 @@
 
 
 
-
+
 
 
 

___
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

2016-01-29 Thread translation
commit 957a0f1b20047583ed4362c5f533e63aa93980d4
Author: Translation commit bot 
Date:   Sat Jan 30 02:17:05 2016 +

Update translations for tor-messenger-fingerdtd
---
 cy/finger.dtd | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cy/finger.dtd b/cy/finger.dtd
index 12ada07..e677d17 100644
--- a/cy/finger.dtd
+++ b/cy/finger.dtd
@@ -1,10 +1,10 @@
 
-
+
 
 
 
 
 
-
+
 
 
\ 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/tails-greeter] Update translations for tails-greeter

2016-01-29 Thread translation
commit 7822f5870f3c095843490bd810255ed7985c2af4
Author: Translation commit bot 
Date:   Sat Jan 30 02:45:38 2016 +

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

diff --git a/cy/cy.po b/cy/cy.po
index d6d8e19..8b010a2 100644
--- a/cy/cy.po
+++ b/cy/cy.po
@@ -3,14 +3,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Christopher Griffiths , 2016
 # Huw Waters , 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-12-16 18:12+0100\n"
-"PO-Revision-Date: 2015-12-21 09:22+\n"
-"Last-Translator: carolyn \n"
+"POT-Creation-Date: 2016-01-25 15:44+0100\n"
+"PO-Revision-Date: 2016-01-30 02:26+\n"
+"Last-Translator: Christopher Griffiths \n"
 "Language-Team: Welsh (http://www.transifex.com/otf/torproject/language/cy/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -32,7 +33,7 @@ msgstr "Croeso i Tails"
 
 #: ../glade/persistencewindow.glade.h:4
 msgid "Use persistence?"
-msgstr ""
+msgstr "Defnyddio parhad?"
 
 #: ../glade/persistencewindow.glade.h:5
 msgid "Documentation"

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


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

2016-01-29 Thread translation
commit 5fb07809b7227da6b417b94e2649417559fc4d71
Author: Translation commit bot 
Date:   Sat Jan 30 02:45:13 2016 +

Update translations for torcheck
---
 cy/torcheck.po | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/cy/torcheck.po b/cy/torcheck.po
index b9205c5..cc6d5fc 100644
--- a/cy/torcheck.po
+++ b/cy/torcheck.po
@@ -5,6 +5,7 @@
 # Billy Humphreys , 2015
 # carolyn , 2011
 # Christopher Griffiths , 2013
+# Christopher Griffiths , 2016
 # cymro , 2011
 # Huw Waters , 2014
 # littlegreykida , 2014
@@ -12,9 +13,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "POT-Creation-Date: 2012-02-16 20:28+PDT\n"
-"PO-Revision-Date: 2015-02-14 08:38+\n"
-"Last-Translator: runasand \n"
-"Language-Team: Welsh 
(http://www.transifex.com/projects/p/torproject/language/cy/)\n"
+"PO-Revision-Date: 2016-01-30 02:17+\n"
+"Last-Translator: Christopher Griffiths \n"
+"Language-Team: Welsh (http://www.transifex.com/otf/torproject/language/cy/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -32,7 +33,7 @@ msgid ""
 msgstr "Cyfeiriwch at https://www.torproject.org/\;> wefan Tor 
am ragor o wybodaeth am ddefnyddio Tor yn ddiogel. Rydych chi'n rhydd i bori'r 
we yn ddienw."
 
 msgid "There is a security update available for Tor Browser."
-msgstr ""
+msgstr "Mae uwchradd diogelwch ar gael ar gyfer Porwr Tor"
 
 msgid ""
 "https://www.torproject.org/download/download-easy.html\;>Click "

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


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

2016-01-29 Thread translation
commit 7cfe8ab4ceb98be19035e52d8708bdc179f9cedf
Author: Translation commit bot 
Date:   Sat Jan 30 02:45:03 2016 +

Update translations for bridgedb
---
 cy/LC_MESSAGES/bridgedb.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cy/LC_MESSAGES/bridgedb.po b/cy/LC_MESSAGES/bridgedb.po
index 7681c9d..4e536d7 100644
--- a/cy/LC_MESSAGES/bridgedb.po
+++ b/cy/LC_MESSAGES/bridgedb.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: 
'https://trac.torproject.org/projects/tor/newticket?component=BridgeDB=bridgedb-reported,msgid=isis,sysrqb=isis'\n"
 "POT-Creation-Date: 2015-07-25 03:40+\n"
-"PO-Revision-Date: 2016-01-30 02:10+\n"
+"PO-Revision-Date: 2016-01-30 02:16+\n"
 "Last-Translator: Christopher Griffiths \n"
 "Language-Team: Welsh (http://www.transifex.com/otf/torproject/language/cy/)\n"
 "MIME-Version: 1.0\n"
@@ -43,7 +43,7 @@ msgstr "Crybwyll gwall"
 
 #: bridgedb/https/templates/base.html:82
 msgid "Source Code"
-msgstr ""
+msgstr "Cod Ffynhonnell"
 
 #: bridgedb/https/templates/base.html:85
 msgid "Changelog"

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


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

2016-01-29 Thread translation
commit e938662ce0b9189df645a8363e5ed42c934dd8f3
Author: Translation commit bot 
Date:   Sat Jan 30 07:15:54 2016 +

Update translations for torbutton-torbuttondtd
---
 ml/torbutton.dtd | 20 ++--
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/ml/torbutton.dtd b/ml/torbutton.dtd
index 437f5db..417a666 100644
--- a/ml/torbutton.dtd
+++ b/ml/torbutton.dtd
@@ -1,6 +1,6 @@
-
+
 
-
+
 
 
 
@@ -173,13 +173,13 @@
 
 
 
-
+
 
-
-
-
-
-
-
-
+
+
+
+
+
+
+
 

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


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

2016-01-29 Thread translation
commit 8b638e8b04a36ef2b60864d0d4454260f839c466
Author: Translation commit bot 
Date:   Sat Jan 30 02:16:44 2016 +

Update translations for tor-messenger-authdtd
---
 cy/auth.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cy/auth.dtd b/cy/auth.dtd
index bd9ebf1..d5c9ed2 100644
--- a/cy/auth.dtd
+++ b/cy/auth.dtd
@@ -1,5 +1,5 @@
 
-
+
 
 
 

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


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

2016-01-29 Thread translation
commit 61fa0881d7d9ec8c6ca2a3385c0de924b0b7eca0
Author: Translation commit bot 
Date:   Sat Jan 30 02:16:26 2016 +

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

diff --git a/cy.po b/cy.po
index 0e6255b..d02c4f4 100644
--- a/cy.po
+++ b/cy.po
@@ -1,13 +1,14 @@
 # 
 # Translators:
+# Christopher Griffiths , 2016
 # jacobscrackers , 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "POT-Creation-Date: 2014-07-17 14:23+\n"
-"PO-Revision-Date: 2014-07-26 09:21+\n"
-"Last-Translator: jacobscrackers \n"
-"Language-Team: Welsh 
(http://www.transifex.com/projects/p/torproject/language/cy/)\n"
+"PO-Revision-Date: 2016-01-30 02:10+\n"
+"Last-Translator: Christopher Griffiths \n"
+"Language-Team: Welsh (http://www.transifex.com/otf/torproject/language/cy/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -26,7 +27,7 @@ msgstr ""
 #: C/tor-and-https.svg:14
 #, no-wrap
 msgid "Tor and HTTPS"
-msgstr ""
+msgstr "Tor a HTTPS"
 
 #. (itstool) path: defs/text
 #. Keep it short: 7em max. Seven times the capital letter "M".

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


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

2016-01-29 Thread translation
commit d7aaceb193567d0a4f0cbe8e88549b1dbd0cc657
Author: Translation commit bot 
Date:   Sat Jan 30 02:17:36 2016 +

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

diff --git a/cy/abouttbupdate.dtd b/cy/abouttbupdate.dtd
index d1b0be7..f996e46 100644
--- a/cy/abouttbupdate.dtd
+++ b/cy/abouttbupdate.dtd
@@ -1,5 +1,5 @@
 
-
+
 
 
 

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


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

2016-01-29 Thread translation
commit 677aecf55c2de2c476dc7eeda2c9f78ac03b07aa
Author: Translation commit bot 
Date:   Sat Jan 30 02:17:27 2016 +

Update translations for tor-messenger-privdtd_completed
---
 cy/priv.dtd | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/cy/priv.dtd b/cy/priv.dtd
new file mode 100644
index 000..c5ec229
--- /dev/null
+++ b/cy/priv.dtd
@@ -0,0 +1,2 @@
+
+
\ 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-privdtd] Update translations for tor-messenger-privdtd

2016-01-29 Thread translation
commit e175b059fcb724da61e2ae16b6e4b5a6c964d29f
Author: Translation commit bot 
Date:   Sat Jan 30 02:17:22 2016 +

Update translations for tor-messenger-privdtd
---
 cy/priv.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cy/priv.dtd b/cy/priv.dtd
index 3cc0361..c5ec229 100644
--- a/cy/priv.dtd
+++ b/cy/priv.dtd
@@ -1,2 +1,2 @@
 
-
\ 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-launcher-progress] Update translations for tor-launcher-progress

2016-01-29 Thread translation
commit c32bca44153ac163f26e594131a0b53eccf0a409
Author: Translation commit bot 
Date:   Sat Jan 30 07:45:45 2016 +

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

diff --git a/fr/progress.dtd b/fr/progress.dtd
index 157276d..a7d1857 100644
--- a/fr/progress.dtd
+++ b/fr/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

2016-01-29 Thread translation
commit 6db3eef5e07bf991c7fbb006b73ab5c540e00a58
Author: Translation commit bot 
Date:   Sat Jan 30 07:45:49 2016 +

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

diff --git a/fr/progress.dtd b/fr/progress.dtd
index d028d4c..a7d1857 100644
--- a/fr/progress.dtd
+++ b/fr/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-network-settings] Update translations for tor-launcher-network-settings

2016-01-29 Thread translation
commit 2964afb427d3e9c36d43e1b0457f19578d43a286
Author: Translation commit bot 
Date:   Sat Jan 30 07:45:54 2016 +

Update translations for tor-launcher-network-settings
---
 fr/network-settings.dtd | 20 ++--
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/fr/network-settings.dtd b/fr/network-settings.dtd
index e3b06af..1ac6a35 100644
--- a/fr/network-settings.dtd
+++ b/fr/network-settings.dtd
@@ -13,32 +13,32 @@
 
 
 
-
+
 
-
+
 
 
 
 
 
 
-
-
+
+
 
 
 
-
-
+
+
 
 
 
 
 
 
-
+
 
-
-
+
+
 
 
 
@@ -56,7 +56,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_completed] Update translations for tor-launcher-network-settings_completed

2016-01-29 Thread translation
commit 97dcaf9a6d1271cfa53cc1500eadc6d5d65999e6
Author: Translation commit bot 
Date:   Sat Jan 30 07:45:58 2016 +

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

diff --git a/fr/network-settings.dtd b/fr/network-settings.dtd
index cfc1c0f..1ac6a35 100644
--- a/fr/network-settings.dtd
+++ b/fr/network-settings.dtd
@@ -13,26 +13,32 @@
 
 
 
-
+
 
-
+
 
 
 
 
 
 
-
+
+
 
 
 
-
+
+
 
 
 
 
 
 
+
+
+
+
 
 
 
@@ -50,6 +56,7 @@
 
 
 
+
 
 
 

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


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

2016-01-29 Thread translation
commit 9755a2527ae0a40725c85c82ec452f2d86c21141
Author: Translation commit bot 
Date:   Sat Jan 30 07:45:17 2016 +

Update translations for https_everywhere
---
 fr/https-everywhere.dtd | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/fr/https-everywhere.dtd b/fr/https-everywhere.dtd
index 4dfe3d1..f73db51 100644
--- a/fr/https-everywhere.dtd
+++ b/fr/https-everywhere.dtd
@@ -3,11 +3,11 @@
 
 
 
-
+
 
 
-
-
+
+
 
 
 

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


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

2016-01-29 Thread translation
commit 4c07cca92453f25a8a056014e9eb36b976c20b9a
Author: Translation commit bot 
Date:   Sat Jan 30 07:45:23 2016 +

Update translations for https_everywhere_completed
---
 fr/https-everywhere.dtd | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/fr/https-everywhere.dtd b/fr/https-everywhere.dtd
index c4e7fed..f73db51 100644
--- a/fr/https-everywhere.dtd
+++ b/fr/https-everywhere.dtd
@@ -3,8 +3,11 @@
 
 
 
+
 
 
+
+
 
 
 

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


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

2016-01-29 Thread translation
commit 3351495d6ed07005b88f3f3bf0720e5da02881c2
Author: Translation commit bot 
Date:   Sat Jan 30 02:46:24 2016 +

Update translations for tails-perl5lib_completed
---
 cy.po | 23 +--
 1 file changed, 17 insertions(+), 6 deletions(-)

diff --git a/cy.po b/cy.po
index d43ba3e..681d54b 100644
--- a/cy.po
+++ b/cy.po
@@ -3,23 +3,34 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# huwwaters , 2014
+# Christopher Griffiths , 2016
+# Huw Waters , 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: Tails developers \n"
-"POT-Creation-Date: 2013-11-28 11:56+0100\n"
-"PO-Revision-Date: 2014-03-12 23:50+\n"
-"Last-Translator: huwwaters \n"
-"Language-Team: Welsh 
(http://www.transifex.com/projects/p/torproject/language/cy/)\n"
+"POT-Creation-Date: 2016-01-25 16:59+0100\n"
+"PO-Revision-Date: 2016-01-30 02:24+\n"
+"Last-Translator: Christopher Griffiths \n"
+"Language-Team: Welsh (http://www.transifex.com/otf/torproject/language/cy/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: cy\n"
 "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 
11) ? 2 : 3;\n"
 
-#: ../lib/Tails/RunningSystem.pm:139
+#: ../lib/Tails/RunningSystem.pm:159
+msgid "Error"
+msgstr "Gwall"
+
+#: ../lib/Tails/RunningSystem.pm:161
 msgid ""
 "The device Tails is running from cannot be found. Maybe you used the `toram'"
 " option?"
 msgstr "Ni all y ddyfais sy'n rhedeg Tails gael ei ganfod. Bosib y dewisoch 
'toram'?"
+
+#: ../lib/Tails/RunningSystem.pm:192
+msgid ""
+"The drive Tails is running from cannot be found. Maybe you used the `toram' "
+"option?"
+msgstr "Ni all y ddyfais sy'n rhedeg Tails gael ei ganfod. Efallai y dewisoch 
yr opsiwn 'toram'?"

___
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

2016-01-29 Thread translation
commit 520549818abad6e4f9b1fe911f471afde165e67b
Author: Translation commit bot 
Date:   Sat Jan 30 02:46:57 2016 +

Update translations for tor-messenger-fingerdtd
---
 cy/finger.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cy/finger.dtd b/cy/finger.dtd
index e677d17..a07a966 100644
--- a/cy/finger.dtd
+++ b/cy/finger.dtd
@@ -1,6 +1,6 @@
 
 
-
+
 
 
 

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


[tor-commits] [translation/tor-launcher-network-settings] Update translations for tor-launcher-network-settings

2016-01-29 Thread translation
commit 6783e330e023b2e3340cfff8ab8122da09fbbcc2
Author: Translation commit bot 
Date:   Sat Jan 30 02:45:56 2016 +

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

diff --git a/cy/network-settings.dtd b/cy/network-settings.dtd
index 87c7f25..7aa3ddc 100644
--- a/cy/network-settings.dtd
+++ b/cy/network-settings.dtd
@@ -2,7 +2,7 @@
 
 
 
-
+
 
 
 

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


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

2016-01-29 Thread translation
commit 48bc3a06a63779f0178b89f3a3a7156de12563a7
Author: Translation commit bot 
Date:   Sat Jan 30 02:46:20 2016 +

Update translations for tails-perl5lib
---
 cy.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cy.po b/cy.po
index a1ff85d..681d54b 100644
--- a/cy.po
+++ b/cy.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: Tails developers \n"
 "POT-Creation-Date: 2016-01-25 16:59+0100\n"
-"PO-Revision-Date: 2016-01-29 23:32+\n"
+"PO-Revision-Date: 2016-01-30 02:24+\n"
 "Last-Translator: Christopher Griffiths \n"
 "Language-Team: Welsh (http://www.transifex.com/otf/torproject/language/cy/)\n"
 "MIME-Version: 1.0\n"
@@ -33,4 +33,4 @@ msgstr "Ni all y ddyfais sy'n rhedeg Tails gael ei ganfod. 
Bosib y dewisoch 'tor
 msgid ""
 "The drive Tails is running from cannot be found. Maybe you used the `toram' "
 "option?"
-msgstr ""
+msgstr "Ni all y ddyfais sy'n rhedeg Tails gael ei ganfod. Efallai y dewisoch 
yr opsiwn 'toram'?"

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


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

2016-01-29 Thread translation
commit dfd2715bdc212674f2fc130d4f56108b6ec10638
Author: Translation commit bot 
Date:   Sat Jan 30 02:46:40 2016 +

Update translations for tor-messenger-authdtd
---
 cy/auth.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cy/auth.dtd b/cy/auth.dtd
index d5c9ed2..3891462 100644
--- a/cy/auth.dtd
+++ b/cy/auth.dtd
@@ -1,6 +1,6 @@
 
 
-
+
 
 
 

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


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

2016-01-29 Thread translation
commit 0e4110804fe6bbec0e443592e69d571b560fe8ef
Author: Translation commit bot 
Date:   Sat Jan 30 02:46:01 2016 +

Update translations for tails-misc
---
 cy.po | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/cy.po b/cy.po
index ff26975..73c2aba 100644
--- a/cy.po
+++ b/cy.po
@@ -3,6 +3,7 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Christopher Griffiths , 2016
 # Huw Waters , 2014
 # littlegreykida , 2014
 msgid ""
@@ -10,8 +11,8 @@ msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-01-25 17:49+0100\n"
-"PO-Revision-Date: 2016-01-29 23:32+\n"
-"Last-Translator: carolyn \n"
+"PO-Revision-Date: 2016-01-30 02:18+\n"
+"Last-Translator: Christopher Griffiths \n"
 "Language-Team: Welsh (http://www.transifex.com/otf/torproject/language/cy/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -42,7 +43,7 @@ msgid ""
 "an opportunity for eavesdroppers, like your email or Internet provider, to\n"
 "confirm that you are using Tails.\n"
 "\n"
-msgstr ""
+msgstr "Helpwch ni atgyweirio'ch byg!\nDarllenwch ein cyfarwyddiadau i adroddi bygiau.\nPeidiwch 
cynnwys fwy o gwybodaeth personol \nnag sydd rhaid!\nAmdan 
rhoi eich cyfeiriad e-bost\nOs nad ydych yn poeni rhoi rhai rhannau 
o'ch hunaniaeth\ni'r datblygwyr Tails, gallwch rhoi e-bost i adael i ninnau 
ofyn\nam fwy o wybodaeth am y byg. Hefyd, wrth gynnwys allwedd\nPGP cyhoeddus, 
gallen ni amgryptio unrhyw cyfarthrebiad\ndyfodol.\nBydd unrhyw un sydd 
gallu darllen y neges hon yn ôl pob tebyg \nyn tybu eich fod yn defnyddwyr 
Tails. Amser feddwl am faint o\nymddiriediaeth rydych yn rhoi i'ch datparwyr We 
ac e-bost?\n"
 
 #: config/chroot_local-includes/usr/local/bin/electrum:14
 msgid "Persistence is disabled for Electrum"

___
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

2016-01-29 Thread translation
commit 371444702ccf2c88cea49f3b038e79c351ed4a5f
Author: Translation commit bot 
Date:   Sat Jan 30 02:45:32 2016 +

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

diff --git a/cy/cy.po b/cy/cy.po
index 86ce4b3..48a0585 100644
--- a/cy/cy.po
+++ b/cy/cy.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: Tails developers \n"
 "POT-Creation-Date: 2016-01-25 17:34+0100\n"
-"PO-Revision-Date: 2016-01-30 02:08+\n"
+"PO-Revision-Date: 2016-01-30 02:27+\n"
 "Last-Translator: Christopher Griffiths \n"
 "Language-Team: Welsh (http://www.transifex.com/otf/torproject/language/cy/)\n"
 "MIME-Version: 1.0\n"
@@ -33,7 +33,7 @@ msgstr "GnuPG"
 
 #: ../lib/Tails/Persistence/Configuration/Presets.pm:60
 msgid "GnuPG keyrings and configuration"
-msgstr ""
+msgstr "Cylch allweddi a ffurfweddiad GnuPG"
 
 #: ../lib/Tails/Persistence/Configuration/Presets.pm:68
 msgid "SSH Client"

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


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

2016-01-29 Thread translation
commit 5eeb07e4eeebf91dd3b4c8482f61a828067185ed
Author: Translation commit bot 
Date:   Sat Jan 30 02:45:23 2016 +

Update translations for https_everywhere
---
 cy/ssl-observatory.dtd | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/cy/ssl-observatory.dtd b/cy/ssl-observatory.dtd
index 0f953f4..952172d 100644
--- a/cy/ssl-observatory.dtd
+++ b/cy/ssl-observatory.dtd
@@ -3,9 +3,9 @@
 
 
 
-
+
 
 

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

2016-01-29 Thread translation
commit 5a84dd91b6cb386bdc3c20a8bf76108d301a798d
Author: Translation commit bot 
Date:   Sat Jan 30 02:47:27 2016 +

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

diff --git a/cy/abouttbupdate.dtd b/cy/abouttbupdate.dtd
index f996e46..f5cb6d2 100644
--- a/cy/abouttbupdate.dtd
+++ b/cy/abouttbupdate.dtd
@@ -1,6 +1,6 @@
 
 
-
+
 
 
 

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


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

2016-01-29 Thread translation
commit b54c6dfe5b1c35a2821d5550c0896c647823c58e
Author: Translation commit bot 
Date:   Sat Jan 30 02:47:11 2016 +

Update translations for tor-messenger-prefsdtd
---
 cy/prefs.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cy/prefs.dtd b/cy/prefs.dtd
index 499927a..a18e302 100644
--- a/cy/prefs.dtd
+++ b/cy/prefs.dtd
@@ -1,6 +1,6 @@
 
 
-
+
 
 
 

___
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] Update translations for tails-openpgp-applet

2016-01-29 Thread translation
commit 51d3cdcc80a3bfd18fe21d236556755497bff093
Author: Translation commit bot 
Date:   Sat Jan 30 02:47:21 2016 +

Update translations for tails-openpgp-applet
---
 cy/openpgp-applet.pot | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cy/openpgp-applet.pot b/cy/openpgp-applet.pot
index 1ded629..7893c07 100644
--- a/cy/openpgp-applet.pot
+++ b/cy/openpgp-applet.pot
@@ -9,7 +9,7 @@ msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: ta...@boum.org\n"
 "POT-Creation-Date: 2015-08-10 15:55+0200\n"
-"PO-Revision-Date: 2016-01-29 23:30+\n"
+"PO-Revision-Date: 2016-01-30 02:18+\n"
 "Last-Translator: Christopher Griffiths \n"
 "Language-Team: Welsh (http://www.transifex.com/otf/torproject/language/cy/)\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/torbutton-torbuttondtd] Update translations for torbutton-torbuttondtd

2016-01-29 Thread translation
commit 796fae631e4e01f92a53345437bd575c8bfde761
Author: Translation commit bot 
Date:   Sat Jan 30 06:45:53 2016 +

Update translations for torbutton-torbuttondtd
---
 ml/torbutton.dtd | 40 
 1 file changed, 20 insertions(+), 20 deletions(-)

diff --git a/ml/torbutton.dtd b/ml/torbutton.dtd
index d40ee47..437f5db 100644
--- a/ml/torbutton.dtd
+++ b/ml/torbutton.dtd
@@ -152,27 +152,27 @@
 
 
 
-
-
-
-
-
-
+
+
+
+
+
+
 
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
 
 
 

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