[tor-commits] [metrics-tasks/master] Use advertised bandwidth when deciding which icon to show (#6443)

2013-06-27 Thread karsten
commit 66a755cbe7e25c606c19374969b3f2f8d5b77bb1
Author: Lunar lu...@torproject.org
Date:   Fri Jun 21 15:47:48 2013 +0200

Use advertised bandwidth when deciding which icon to show (#6443)
---
 task-6443/bubble-cw/bubble-cw.html |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/task-6443/bubble-cw/bubble-cw.html 
b/task-6443/bubble-cw/bubble-cw.html
index e89ad34..ef622d5 100644
--- a/task-6443/bubble-cw/bubble-cw.html
+++ b/task-6443/bubble-cw/bubble-cw.html
@@ -38,12 +38,12 @@ d3.json(details.json, function(error, data) {
   data[relays].forEach(function(relay) {
 if (0 != relay['consensus_weight']  relay['running']) {
   relays.push({ packageName: Relays, className: relay['nickname'], 
value: relay[consensus_weight],
-exit: relay[exit_probability]  0,
+exit: relay[exit_probability]  0, bandwidth: 
relay[advertised_bandwidth],
   });
 }
   });
 
-  var cutOff = 100 / 8 * 1000; // 100 Mbit/s
+  var cutOff = 100 / 8.0 * 1000.0 * 1000.0; // 100 Mbit/s
 
   var node = svg.selectAll(.node)
   .data(bubble.nodes({ children: relays })
@@ -54,7 +54,7 @@ d3.json(details.json, function(error, data) {
 
   node.filter(function(d) { return !d.children;})
 .append(image)
-  .attr(xlink:href, function(d) { return tor-consensus-vis-node- + 
(d.value  cutOff ? onion : circle) + .svg; })
+  .attr(xlink:href, function(d) { return tor-consensus-vis-node- + 
(d.bandwidth  cutOff ? onion : circle) + .svg; })
   .attr(transform, function(d) { return translate( + -d.r + , + -d.r 
+ ); })
   .attr(width, function(d) { return d.r * 2; })
   .attr(height, function(d) { return d.r * 2; })
@@ -92,7 +92,7 @@ d3.json(details.json, function(error, data) {
   .attr(height, legendIconSize)
   .attr(preserveAspectRatio, xMidYMin);
   legendOnion.append(text)
-  .text(relays with at least  + (cutOff * 8 / 1000) +  Mbit/s of 
capacity)
+  .text(relays with at least  + (cutOff * 8 / 1000 / 1000) +  Mbit/s of 
capacity)
   .attr(text-anchor, start)
   .attr(dx, legendIconSize)
   .attr(dy, legendIconSize / 2)



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


[tor-commits] [metrics-tasks/master] Add more group graphs (#6443)

2013-06-27 Thread karsten
commit 94934d10a5f02c0a0c92ec4beef465573eafd8f1
Author: Lunar lu...@torproject.org
Date:   Fri Jun 21 17:41:45 2013 +0200

Add more group graphs (#6443)
---
 .../bubble-cw/bubble-cw-by-as-exits-only.html  |   20 +++
 task-6443/bubble-cw/bubble-cw-by-as.html   |  145 +---
 .../bubble-cw/bubble-cw-by-contact-exits-only.html |   20 +++
 task-6443/bubble-cw/bubble-cw-by-contact.html  |   19 +++
 .../bubble-cw/bubble-cw-by-country-exits-only.html |   20 +++
 task-6443/bubble-cw/bubble-cw-by-country.html  |   19 +++
 .../bubble-cw-by-network-family-exits-only.html|   21 +++
 .../bubble-cw/bubble-cw-by-network-family.html |   20 +++
 task-6443/bubble-cw/group_bubbles.js   |  136 ++
 9 files changed, 280 insertions(+), 140 deletions(-)

diff --git a/task-6443/bubble-cw/bubble-cw-by-as-exits-only.html 
b/task-6443/bubble-cw/bubble-cw-by-as-exits-only.html
new file mode 100644
index 000..cb81131
--- /dev/null
+++ b/task-6443/bubble-cw/bubble-cw-by-as-exits-only.html
@@ -0,0 +1,20 @@
+!DOCTYPE html
+meta charset=utf-8
+style
+
+text {
+  font: 10px sans-serif;
+}
+
+/style
+body
+script src=d3.min.js/script
+
+script
+var graph_title = by as;
+var exits_only = true;
+function get_group_id(relay) { return relay.as_number; };
+function get_group_name(relay) { return relay.as_name; };
+/script
+
+script src=group_bubbles.js/script
diff --git a/task-6443/bubble-cw/bubble-cw-by-as.html 
b/task-6443/bubble-cw/bubble-cw-by-as.html
index 029626a..dd37377 100644
--- a/task-6443/bubble-cw/bubble-cw-by-as.html
+++ b/task-6443/bubble-cw/bubble-cw-by-as.html
@@ -11,144 +11,9 @@ text {
 script src=d3.min.js/script
 
 script
-var diameter = 1200,
-format = d3.format(,d),
-color = d3.scale.category20c();
-
-var bubble = d3.layout.pack()
-.sort(null)
-.size([diameter, diameter])
-.padding(1.5);
-
-var svg = d3.select(body).append(svg)
-.attr(width, diameter)
-.attr(height, diameter)
-.attr(class, bubble);
-
-svg.append(defs)
-  .append(filter)
-.attr(id, middle-filter)
-.append(feColorMatrix)
-  .attr(type, hueRotate)
-  .attr(in, SourceGraphic)
-  .attr(values, 90);
-
-d3.json(details.json, function(error, data) {
-  var by_as = {};
-  data.relays.forEach(function(relay) {
-if (relay.running) {
-  if (!by_as.hasOwnProperty(relay.as_number)) {
-by_as[relay.as_number] = { name: relay.as_name, children: [] };
-  }
-  by_as[relay.as_number].children.push({ name: relay.nickname ? 
relay.fingerprint : relay.nickname,
- value: relay.consensus_weight,
- exit: relay[exit_probability]  
0,
- bandwidth: 
relay[advertised_bandwidth],
-   });
-}
-  });
-
-  var cutOff = 100 / 8.0 * 1000.0 * 1000.0; // 100 Mbit/s
-  var bubbles = svg.selectAll(.node)
-  .data(bubble.nodes({ children: d3.values(by_as) }));
-  var node = bubbles.enter().append(g)
-  .attr(class, node)
-  .attr(transform, function(d) { return translate( + d.x + , + d.y + 
); });
-
-  node.append(circle)
-  .filter(function(d) { return d.children  d.name; })
-  .attr(r, function(d) { return d.r; })
-  .style(fill, #88)
-  .style(fill-opacity, .25);
-
-  node.filter(function(d) { return !d.children  d.r  1;})
-.append(image)
-  .attr(xlink:href, function(d) { return tor-consensus-vis-node- + 
(d.bandwidth  cutOff ? onion : circle) + .svg; })
-  .attr(transform, function(d) { return translate( + -d.r + , + -d.r 
+ ); })
-  .attr(width, function(d) { return d.r * 2; })
-  .attr(height, function(d) { return d.r * 2; })
-  .attr(preserveAspectRatio, xMidYMin)
-  .attr(filter, function(d) { return d.exit ?  : 
url(#middle-filter); });
-
-  node.filter(function(d) { return d.children  d.name; })
-.each(function(d) {
-  var g = svg.append(g)
-.attr(transform, translate( + d.x + , + d.y + ));
-  g.append(circle)
-.attr(r, d.r)
-.style(fill, #00)
-.style(fill-opacity, 0)
-.style(stroke, none);
-  g.on(mouseover, function() {
-svg.append(text)
-.attr(transform, translate( + d.x + , + (d.y - d.r) + 
))
-.attr(id, group-name)
-.style(text-anchor, middle)
-.style(font-size, 14pt)
-.text((d.name + ).substring(0, 20));
-  })
-   .on(mouseout, function() {
-d3.select(#group-name).remove();
-  });
-});
-
-  /*
-  node.filter(function(d) { return !d.children  d.value  cutOff; })
-.append(text)
-  .attr(dy, .3em)
-  .style(text-anchor, middle)
-  .text(function(d) { return d.className; });
-   */
-
-  var title = svg.append(g)
-  .attr(transform, translate( + (diameter / 3) +,  + (diameter - 30) 
+ ));
-  

[tor-commits] [metrics-tasks/master] Stop drawing relays that are not even 2 pixels wide (#6443)

2013-06-27 Thread karsten
commit d226a7d10d1447dfbf5805458d68e0aa3bac7762
Author: Lunar lu...@torproject.org
Date:   Fri Jun 21 15:48:28 2013 +0200

Stop drawing relays that are not even 2 pixels wide (#6443)
---
 task-6443/bubble-cw/bubble-cw.html |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/task-6443/bubble-cw/bubble-cw.html 
b/task-6443/bubble-cw/bubble-cw.html
index ef622d5..a47a2d9 100644
--- a/task-6443/bubble-cw/bubble-cw.html
+++ b/task-6443/bubble-cw/bubble-cw.html
@@ -52,7 +52,7 @@ d3.json(details.json, function(error, data) {
   .attr(class, node)
   .attr(transform, function(d) { return translate( + d.x + , + d.y + 
); });
 
-  node.filter(function(d) { return !d.children;})
+  node.filter(function(d) { return !d.children  d.r  1;})
 .append(image)
   .attr(xlink:href, function(d) { return tor-consensus-vis-node- + 
(d.bandwidth  cutOff ? onion : circle) + .svg; })
   .attr(transform, function(d) { return translate( + -d.r + , + -d.r 
+ ); })



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


[tor-commits] [metrics-tasks/master] Display the number of visible relays (#6443)

2013-06-27 Thread karsten
commit 78c73926570d097f7ef5b65a53bfb3fafc91d01c
Author: Lunar lu...@torproject.org
Date:   Fri Jun 21 17:29:31 2013 +0200

Display the number of visible relays (#6443)
---
 task-6443/bubble-cw/bubble-cw.html |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/task-6443/bubble-cw/bubble-cw.html 
b/task-6443/bubble-cw/bubble-cw.html
index 9d075fd..1827c7c 100644
--- a/task-6443/bubble-cw/bubble-cw.html
+++ b/task-6443/bubble-cw/bubble-cw.html
@@ -75,7 +75,7 @@ d3.json(details.json, function(error, data) {
   var title = svg.append(g)
   .attr(transform, translate( + (diameter / 3) +,  + (diameter - 30) 
+ ));
   title.append(text)
-  .text(relays.length +  relays)
+  .text(relays.length +  relays ( + (node.filter(function(d) { return 
d.r  1; }).size()) +  visible))
   .attr(text-anchor, middle)
   .attr(style, font-size: 18pt);
   title.append(text)



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


[tor-commits] [metrics-tasks/master] Report latest changes to AS view (#6443)

2013-06-27 Thread karsten
commit 7c96f1175ca7abfd46d84ed865a79b56d77431f1
Author: Lunar lu...@torproject.org
Date:   Fri Jun 21 16:07:03 2013 +0200

Report latest changes to AS view (#6443)
---
 task-6443/bubble-cw/bubble-cw-by-as.html |   24 ++--
 1 file changed, 18 insertions(+), 6 deletions(-)

diff --git a/task-6443/bubble-cw/bubble-cw-by-as.html 
b/task-6443/bubble-cw/bubble-cw-by-as.html
index 8133aa1..029626a 100644
--- a/task-6443/bubble-cw/bubble-cw-by-as.html
+++ b/task-6443/bubble-cw/bubble-cw-by-as.html
@@ -25,6 +25,14 @@ var svg = d3.select(body).append(svg)
 .attr(height, diameter)
 .attr(class, bubble);
 
+svg.append(defs)
+  .append(filter)
+.attr(id, middle-filter)
+.append(feColorMatrix)
+  .attr(type, hueRotate)
+  .attr(in, SourceGraphic)
+  .attr(values, 90);
+
 d3.json(details.json, function(error, data) {
   var by_as = {};
   data.relays.forEach(function(relay) {
@@ -33,11 +41,14 @@ d3.json(details.json, function(error, data) {
 by_as[relay.as_number] = { name: relay.as_name, children: [] };
   }
   by_as[relay.as_number].children.push({ name: relay.nickname ? 
relay.fingerprint : relay.nickname,
- value: relay.consensus_weight });
+ value: relay.consensus_weight,
+ exit: relay[exit_probability]  
0,
+ bandwidth: 
relay[advertised_bandwidth],
+   });
 }
   });
 
-  var cutOff = 100 / 8 * 1000; // 100 Mbit/s
+  var cutOff = 100 / 8.0 * 1000.0 * 1000.0; // 100 Mbit/s
   var bubbles = svg.selectAll(.node)
   .data(bubble.nodes({ children: d3.values(by_as) }));
   var node = bubbles.enter().append(g)
@@ -50,13 +61,14 @@ d3.json(details.json, function(error, data) {
   .style(fill, #88)
   .style(fill-opacity, .25);
 
-  node.filter(function(d) { return !d.children;})
+  node.filter(function(d) { return !d.children  d.r  1;})
 .append(image)
-  .attr(xlink:href, function(d) { return tor-consensus-vis-node- + 
(d.value  cutOff ? onion : circle) + .svg; })
+  .attr(xlink:href, function(d) { return tor-consensus-vis-node- + 
(d.bandwidth  cutOff ? onion : circle) + .svg; })
   .attr(transform, function(d) { return translate( + -d.r + , + -d.r 
+ ); })
   .attr(width, function(d) { return d.r * 2; })
   .attr(height, function(d) { return d.r * 2; })
-  .attr(preserveAspectRatio, xMidYMin);
+  .attr(preserveAspectRatio, xMidYMin)
+  .attr(filter, function(d) { return d.exit ?  : 
url(#middle-filter); });
 
   node.filter(function(d) { return d.children  d.name; })
 .each(function(d) {
@@ -119,7 +131,7 @@ d3.json(details.json, function(error, data) {
   .attr(height, legendIconSize)
   .attr(preserveAspectRatio, xMidYMin);
   legendOnion.append(text)
-  .text(relays with at least  + (cutOff * 8 / 1000) +  Mbit/s of 
capacity)
+  .text(relays with at least  + (cutOff * 8 / 1000 / 1000) +  Mbit/s of 
capacity)
   .attr(text-anchor, start)
   .attr(dx, legendIconSize)
   .attr(dy, legendIconSize / 2)



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


[tor-commits] [metrics-tasks/master] Switch color hue for non-exit relays (#6443)

2013-06-27 Thread karsten
commit 8b839580e4d4e99ed52994276e074286460b601f
Author: Lunar lu...@torproject.org
Date:   Fri Jun 21 15:45:06 2013 +0200

Switch color hue for non-exit relays (#6443)
---
 task-6443/bubble-cw/bubble-cw.html |   23 +--
 1 file changed, 13 insertions(+), 10 deletions(-)

diff --git a/task-6443/bubble-cw/bubble-cw.html 
b/task-6443/bubble-cw/bubble-cw.html
index 7a44523..e89ad34 100644
--- a/task-6443/bubble-cw/bubble-cw.html
+++ b/task-6443/bubble-cw/bubble-cw.html
@@ -25,11 +25,21 @@ var svg = d3.select(body).append(svg)
 .attr(height, diameter)
 .attr(class, bubble);
 
+svg.append(defs)
+  .append(filter)
+.attr(id, middle-filter)
+.append(feColorMatrix)
+  .attr(type, hueRotate)
+  .attr(in, SourceGraphic)
+  .attr(values, 90);
+
 d3.json(details.json, function(error, data) {
   var relays = [];
   data[relays].forEach(function(relay) {
 if (0 != relay['consensus_weight']  relay['running']) {
-  relays.push({ packageName: Relays, className: relay['nickname'], 
value: relay[consensus_weight] });
+  relays.push({ packageName: Relays, className: relay['nickname'], 
value: relay[consensus_weight],
+exit: relay[exit_probability]  0,
+  });
 }
   });
 
@@ -48,15 +58,8 @@ d3.json(details.json, function(error, data) {
   .attr(transform, function(d) { return translate( + -d.r + , + -d.r 
+ ); })
   .attr(width, function(d) { return d.r * 2; })
   .attr(height, function(d) { return d.r * 2; })
-  .attr(preserveAspectRatio, xMidYMin);
-
-  /*
-  node.filter(function(d) { return !d.children  d.value  cutOff; })
-.append(text)
-  .attr(dy, .3em)
-  .style(text-anchor, middle)
-  .text(function(d) { return d.className; });
-   */
+  .attr(preserveAspectRatio, xMidYMin)
+  .attr(filter, function(d) { return d.exit ?  : 
url(#middle-filter); });
 
   var title = svg.append(g)
   .attr(transform, translate( + (diameter / 3) +,  + (diameter - 30) 
+ ));



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


[tor-commits] [metrics-tasks/master] Display node name and bandwidth on mouseover (#6443)

2013-06-27 Thread karsten
commit 707e36912ed4634ca0a1fa20ad6cb59c99f30391
Author: Lunar lu...@torproject.org
Date:   Fri Jun 21 15:48:46 2013 +0200

Display node name and bandwidth on mouseover (#6443)
---
 task-6443/bubble-cw/bubble-cw.html |   13 -
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/task-6443/bubble-cw/bubble-cw.html 
b/task-6443/bubble-cw/bubble-cw.html
index a47a2d9..9d075fd 100644
--- a/task-6443/bubble-cw/bubble-cw.html
+++ b/task-6443/bubble-cw/bubble-cw.html
@@ -59,7 +59,18 @@ d3.json(details.json, function(error, data) {
   .attr(width, function(d) { return d.r * 2; })
   .attr(height, function(d) { return d.r * 2; })
   .attr(preserveAspectRatio, xMidYMin)
-  .attr(filter, function(d) { return d.exit ?  : 
url(#middle-filter); });
+  .attr(filter, function(d) { return d.exit ?  : 
url(#middle-filter); })
+.on(mouseover, function(d) {
+ svg.append(text)
+ .attr(transform, translate( + diameter + , + (diameter - 
legendHeight - 50) + ))
+ .attr(id, relay-bw)
+ .style(text-anchor, end)
+ .style(font-size, 14pt)
+ .text(d.className.substring(0, 20) + :  + (d.bandwidth * 8.0 / 
1000.0 / 1000.0).toFixed(2) +  Mbit/s);
+   })
+.on(mouseout, function() {
+ d3.select(#relay-bw).remove();
+   });
 
   var title = svg.append(g)
   .attr(transform, translate( + (diameter / 3) +,  + (diameter - 30) 
+ ));



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


[tor-commits] [bridgedb/master] Use fallback languages

2013-06-27 Thread aagbsn
commit 7bde75e2a89c0bdeceed567643d467ce3846ab56
Author: aagbsn aag...@extc.org
Date:   Thu Jun 27 17:46:13 2013 +0200

Use fallback languages
---
 lib/bridgedb/HTTPServer.py |   10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/lib/bridgedb/HTTPServer.py b/lib/bridgedb/HTTPServer.py
index 380439a..c181d63 100644
--- a/lib/bridgedb/HTTPServer.py
+++ b/lib/bridgedb/HTTPServer.py
@@ -282,9 +282,13 @@ def setLocaleFromRequestHeader(request):
 localedir=os.path.join(os.path.dirname(__file__), 'i18n/')
 
 if langs:
-langs = filter(lambda x: re.match('^[a-z_]{1,5}$', x), langs)
+langs = filter(lambda x: re.match('^[a-z\-]{1,5}$', x), langs)
 logging.debug(Languages: %s % langs)
-map(lambda x: x.replace(-,_).lower(),langs)
+# add fallback languages
+langs_only = filter(lambda x: '-' in x, langs)
+langs.extend(map(lambda x: x.split('-')[0], langs_only))
+# gettext wants _, not -
+map(lambda x: x.replace('-', '_'), langs)
 lang = gettext.translation(bridgedb, localedir=localedir,
-languages=langs, fallback=True)
+ languages=langs, fallback=True)
 lang.install(True)

___
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

2013-06-27 Thread translation
commit 20d6c392154ab5895c25c249cb97b4738e51e346
Author: Translation commit bot translat...@torproject.org
Date:   Thu Jun 27 20:16:15 2013 +

Update translations for tails-persistence-setup
---
 da/da.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/da/da.po b/da/da.po
index 50699d7..b5c73f7 100644
--- a/da/da.po
+++ b/da/da.po
@@ -217,7 +217,7 @@ msgstr 
 
 #: ../lib/Tails/Persistence/Step/Bootstrap.pm:144
 msgid Passphrase:
-msgstr 
+msgstr Kodeord:
 
 #: ../lib/Tails/Persistence/Step/Bootstrap.pm:154
 msgid Verify Passphrase:

___
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

2013-06-27 Thread translation
commit e630b244be7d0ef0a192846414cc6f2eab96
Author: Translation commit bot translat...@torproject.org
Date:   Thu Jun 27 20:16:20 2013 +

Update translations for tails-greeter
---
 da/da.po |   45 +++--
 1 file changed, 23 insertions(+), 22 deletions(-)

diff --git a/da/da.po b/da/da.po
index 3d3bf91..15a83fb 100644
--- a/da/da.po
+++ b/da/da.po
@@ -3,13 +3,14 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# torebjornson tore.bjorn...@gmail.com, 2013
 msgid 
 msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2013-05-12 19:29+0200\n
-PO-Revision-Date: 2013-05-22 12:45+\n
-Last-Translator: runasand runa.sand...@gmail.com\n
+PO-Revision-Date: 2013-06-27 20:14+\n
+Last-Translator: torebjornson tore.bjorn...@gmail.com\n
 Language-Team: Danish 
(http://www.transifex.com/projects/p/torproject/language/da/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -23,15 +24,15 @@ msgstr Frem
 
 #: ../glade/persistencewindow.glade.h:2 ../glade/optionswindow.glade.h:1
 msgid Login
-msgstr 
+msgstr Log in
 
 #: ../glade/persistencewindow.glade.h:3 ../glade/optionswindow.glade.h:2
 msgid Welcome to Tails
-msgstr 
+msgstr Velkommen til Tails
 
 #: ../glade/persistencewindow.glade.h:4
 msgid Use persistence?
-msgstr 
+msgstr Brug vedholdenhed?
 
 #: ../glade/persistencewindow.glade.h:5
 msgid Yes
@@ -43,29 +44,29 @@ msgstr Nej
 
 #: ../glade/persistencewindow.glade.h:7
 msgid Passphrase:
-msgstr 
+msgstr Kodeord:
 
 #: ../glade/persistencewindow.glade.h:8
 msgid Read-Only?
-msgstr 
+msgstr Skrivebeskyttet?
 
 #: ../glade/persistencewindow.glade.h:9
 msgid iWrong passphrase. Please try again./i
-msgstr 
+msgstr iForkert kodeord. Forsøg venligst igen./i
 
 #: ../glade/persistencewindow.glade.h:10
 msgid More options?
-msgstr 
+msgstr Flere muligheder?
 
 #: ../glade/optionswindow.glade.h:3
 msgid Administration password
-msgstr 
+msgstr Administrations kodeord
 
 #: ../glade/optionswindow.glade.h:4
 msgid 
 Enter an administration password in case you need to perform administration 
tasks.\n
 Otherwise it will be disabled for better security.
-msgstr 
+msgstr Indtast et administrations kodeord, hvis De har behov for at udføre 
administrative opgaver.\nAlternativt vil det blive deaktiveret for at optimere 
sikkerheden.
 
 #: ../glade/optionswindow.glade.h:6
 msgid Password:
@@ -73,25 +74,25 @@ msgstr Kodeord:
 
 #: ../glade/optionswindow.glade.h:7
 msgid Verify Password:
-msgstr 
+msgstr Bekræft kodeord:
 
 #: ../glade/optionswindow.glade.h:8
 msgid iPasswords do not match/i
-msgstr 
+msgstr iKodeord passer ikke/i
 
 #: ../glade/optionswindow.glade.h:9
 msgid Windows Camouflage
-msgstr 
+msgstr Windows Camouflage
 
 #: ../glade/optionswindow.glade.h:10
 msgid 
 This option makes Tails look more like Microsoft Windows XP. This may be 
 useful in public places in order to avoid attracting suspicion.
-msgstr 
+msgstr Denne indstilling lader Tails ligne Microsoft Windows XP. Dette kan 
være brugbart ved offentlige lokationer for at minimere mistanke.
 
 #: ../glade/optionswindow.glade.h:11
 msgid Activate Microsoft Windows XP Camouflage
-msgstr 
+msgstr Aktivér Microsoft Windows XP Camouflage
 
 #: ../glade/langpanel.glade.h:1
 msgid  
@@ -103,18 +104,18 @@ msgstr Sprog
 
 #: ../glade/langpanel.glade.h:3
 msgid Locale
-msgstr 
+msgstr Lokal
 
 #: ../glade/langpanel.glade.h:4
 msgid Layout
-msgstr 
+msgstr Layout
 
 #: ../GdmGreeter/persistence.py:59
 #, python-format
 msgid 
 live-persist failed with return code %(returncode)s:\n
 %(stderr)s
-msgstr 
+msgstr live persist fejlede med return code %(returncode)s:\n%(stderr)s
 
 #: ../GdmGreeter/persistence.py:99
 #, python-format
@@ -122,7 +123,7 @@ msgid 
 cryptsetup failed with return code %(returncode)s:\n
 %(stdout)s\n
 %(stderr)s
-msgstr 
+msgstr cryptsetup fejlede med return code 
%(returncode)s:\n%(stdout)s\n%(stderr)s
 
 #: ../GdmGreeter/persistence.py:124
 #, python-format
@@ -130,9 +131,9 @@ msgid 
 live-persist failed with return code %(returncode)s:\n
 %(stdout)s\n
 %(stderr)s
-msgstr 
+msgstr live-persist fejlede med return code 
%(returncode)s:\n%(stdout)s\n%(stderr)s
 
 #: ../GdmGreeter/langpanel.py:124 ../GdmGreeter/langpanel.py:148
 #: ../GdmGreeter/langpanel.py:181
 msgid Other...
-msgstr 
+msgstr Anden...

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


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

2013-06-27 Thread translation
commit 8b47d4a00684e1c3ba5dd1c0628c11c8ef8c8828
Author: Translation commit bot translat...@torproject.org
Date:   Thu Jun 27 20:45:13 2013 +

Update translations for tsum
---
 da/short-user-manual_da_noimg.xhtml |   54 +--
 1 file changed, 27 insertions(+), 27 deletions(-)

diff --git a/da/short-user-manual_da_noimg.xhtml 
b/da/short-user-manual_da_noimg.xhtml
index 0fc978a..641307c 100644
--- a/da/short-user-manual_da_noimg.xhtml
+++ b/da/short-user-manual_da_noimg.xhtml
@@ -10,36 +10,36 @@
 h2 id=how-tor-worksSÃ¥dan virker Tor/h2
 pTor er et netværk af virtuelle tuneller, der lader dig styrke dit 
privatliv og din sikkerhed på internettet. Tor fungerer ved at sende din 
trafik gennem tre vilkårlige servere (også kendt som emrelæer/em) i 
Tor-netværket, før trafikken sendes ud til det offentlige internet./p
 pBilledet ovenfor illustrerer en bruger, der browser forskellige 
websteder via Tor. De grønne skærme repræsenterer relæerne i 
Tor-netværket, mens de tre nøgler repræsenterer krypteringslagene mellem 
brugeren og hvert relæ./p
-pTor will anonymize the origin of your traffic, and it will encrypt 
everything between you and the Tor network. Tor will also encrypt your traffic 
inside the Tor network, but it cannot encrypt your traffic between the Tor 
network and its final destination./p
-pIf you are communicating sensitive information, for example when 
logging on to a website with a username and password, make sure that you are 
using HTTPS (e.g. stronghttps/strong://torproject.org/, not 
stronghttp/strong://torproject.org/)./p
-h2 id=how-to-download-torHow to download Tor/h2
-pThe bundle we recommend to most users is the a 
href=https://www.torproject.org/projects/torbrowser.html;Tor Browser 
Bundle/a. This bundle contains a browser preconfigured to safely browse the 
Internet through Tor, and requires no installation. You download the bundle, 
extract the archive, and start Tor./p
-pThere are two different ways to get hold of the Tor software. You can 
either browse to the a href=https://www.torproject.org/;Tor Project 
website/a and download it there, or you can use GetTor, the email 
autoresponder./p
-h3 id=how-to-get-tor-via-emailHow to get Tor via email/h3
-pTo receive the English Tor Browser Bundle for Windows, send an email to 
get...@torproject.org with strongwindows/strong in the body of the message. 
You can leave the subject blank./p
-pYou can also request the Tor Browser Bundle for Mac OS X (write 
strongmacos-i386/strong), and Linux (write stronglinux-i386/strong for 
32-bit systems or stronglinux-x86_64/strong for 64-bit systems)./p
-pIf you want a translated version of Tor, write stronghelp/strong 
instead. You will then receive an email with instructions and a list of 
available languages./p
-pstrongNote/strong: The Tor Browser Bundles for Linux and Mac OS X 
are rather large, and you will not be able to receive any of these bundles with 
a Gmail, Hotmail or Yahoo account. If you cannot receive the bundle you want, 
send an email to h...@rt.torproject.org and we will give you a list of website 
mirrors to use./p
-h3 id=tor-for-smartphonesTor for smartphones/h3
-pYou can get Tor on your Android device by installing the package named 
emOrbot/em. For information about how to download and install Orbot, please 
see the a href=https://www.torproject.org/docs/android.html.en;Tor Project 
website/a./p
+pTor vil anonymisere oprindelsen af Deres traffik, og det vil forsøge 
at kryptere alt mellem Dem og Tor netværket. Tor vil desforuden kryptere Deres 
traffik inden i Tor netværket, men det kan ikke kryptere trafikken mellem Tor 
netværket og trafikkens endelige destination./p
+pHvis din traffik indeholder sensitiv information, eksempelvis når De 
logger ind på en hjemmeside med et brugernavn og kodeord, så vær sikker på 
at De bruger HTTPS (f.eks: stronghttps/strong://torproject.org/ and not 
stronghttp/strong://torproject.org)/p
+h2 id=how-to-download-torSÃ¥dan downloades Tor/h2
+pDen software pakke vi anbefaler til de fleste brugere er a 
href=https://www.torproject.org/projects/torbrowser.html;Tor Browser 
Bundle/a. Denne pakke indeholder en browser som er prekonfigureret til sikker 
surfning af Internettet ved brug af Tor, og det kræver ingen installlation. De 
kan downloade pakken, pakke den ud og starte Tor./p
+pDer er to forskellige måder at få fat i Tor. De kan enten gå til a 
href=https://www.torproject.org/;Tor Project website/a og downloade Tor, 
eller de kan bruge GetTor, email autosvareren./p
+h3 id=how-to-get-tor-via-emailSådan fås Tor via email/h3
+pFor at modtage den engelske version af Tor Browser Bundle til Windows, 
sendes en email til get...@torproject.org med  strongWindows/strong i mail 
indholdet. Lad emnefeltet være tomt./p
+pDe kan også anmodde om Tor Browser Bundlen til Mac OS X (skriv 

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

2013-06-27 Thread translation
commit a42b63fc817d576d1ec3b34d41e5e367291154e3
Author: Translation commit bot translat...@torproject.org
Date:   Thu Jun 27 20:46:18 2013 +

Update translations for tails-greeter
---
 da/da.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/da/da.po b/da/da.po
index 15a83fb..edc2c95 100644
--- a/da/da.po
+++ b/da/da.po
@@ -9,7 +9,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2013-05-12 19:29+0200\n
-PO-Revision-Date: 2013-06-27 20:14+\n
+PO-Revision-Date: 2013-06-27 20:20+\n
 Last-Translator: torebjornson tore.bjorn...@gmail.com\n
 Language-Team: Danish 
(http://www.transifex.com/projects/p/torproject/language/da/)\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/tsum] Update translations for tsum

2013-06-27 Thread translation
commit 03c825a9f082b9c1fc092c55b8da9f41a35200d6
Author: Translation commit bot translat...@torproject.org
Date:   Thu Jun 27 21:15:14 2013 +

Update translations for tsum
---
 da/short-user-manual_da_noimg.xhtml |   90 +--
 1 file changed, 45 insertions(+), 45 deletions(-)

diff --git a/da/short-user-manual_da_noimg.xhtml 
b/da/short-user-manual_da_noimg.xhtml
index 641307c..261dff1 100644
--- a/da/short-user-manual_da_noimg.xhtml
+++ b/da/short-user-manual_da_noimg.xhtml
@@ -61,62 +61,62 @@ sub   2048R/EB399FD7 2003-10-16
 pAfter downloading the Tor Browser Bundle and extracting the package, 
you should have a directory with a few files in it. One of the files is an 
executable called Start Tor Browser (or start-tor-browser, depending on 
your operating system)./p
 pNÃ¥r de starter Tor Browser Bundlen vil De se Vidalia starte op og 
forbinde Dem til Tor netværket. Efter dette vil De se en browser bekræfte at 
De nu kan bruge Tor. Dette er gjort ved at vise a 
href=https://check.torproject.org/;https://check.torproject.org//a. De kan 
nu surfe Internettet via Tor/p
 p
-  emPlease note that it is important that you use the browser that comes 
with the bundle, and not your own browser./em
+  emNoter venligst at det er vigtigt at De bruger browseren der følger 
med Tor software pakken, og ikke deres egen browser./em
 /p
-h3 id=what-to-do-when-tor-does-not-connectWhat to do when Tor does not 
connect/h3
-pSome users will notice that Vidalia gets stuck when trying to connect 
to the Tor network. If this happens, make sure that you are connected to the 
Internet. If you need to connect to a proxy server, see emHow to use an open 
proxy/em below./p
-pIf your normal Internet connection is working, but Tor still can't 
connect to the network, try the following; open the Vidalia control panel, 
click on emMessage Log/em and select the emAdvanced/em tab. It may be 
that Tor won't connect because:/p
-pstrongYour system clock is off/strong: Make sure that the date and 
time on your system is correct, and restart Tor. You may need to synchronize 
your system clock with an Internet time server./p
-pstrongYou are behind a restrictive firewall/strong: To tell Tor to 
only try port 80 and port 443, open the Vidalia control panel, click on 
emSettings/em and emNetwork/em, and tick the box that says emMy 
firewall only lets me connect to certain ports/em./p
-pstrongYour anti-virus program is blocking Tor/strong: Make sure 
that your anti-virus program is not preventing Tor from making network 
connections./p
-pIf Tor still doesn't work, it's likely that your Internet Service 
Provider (ISP) is blocking Tor. Very often this can be worked around with 
strongTor bridges/strong, hidden relays that aren't as easy to block./p
-pIf you need help with figuring out why Tor can't connect, send an email 
to h...@rt.torproject.org and include the relevant parts from the log file./p
-h3 id=how-to-find-a-bridgeHow to find a bridge/h3
-pTo use a bridge, you will first have to locate one; you can either 
browse to a href=https://bridges.torproject.org/;bridges.torproject.org/a, 
or you can send an email to brid...@torproject.org. If you do send an email, 
please make sure that you write strongget bridges/strong in the body of the 
email. Without this, you will not get a reply. Note that you need to send this 
email from either a gmail.com or a yahoo.com address./p
-pConfiguring more than one bridge address will make your Tor connection 
more stable, in case some of the bridges become unreachable. There is no 
guarantee that the bridge you are using now will work tomorrow, so you should 
make a habit of updating your list of bridges every so often./p
-h3 id=how-to-use-a-bridgeHow to use a bridge/h3
-pOnce you have a set of bridges to use, open the Vidalia control panel, 
click on emSettings/em, emNetwork/em and tick the box that says emMy 
ISP blocks connections to the Tor network/em. Enter the bridges in the box 
below, hit emOK/em and start Tor again./p
-h3 id=how-to-use-an-open-proxyHow to use an open proxy/h3
-pIf using a bridge does not work, try configuring Tor to use any HTTPS 
or SOCKS proxy to get access to the Tor network. This means even if Tor is 
blocked by your local network, open proxies can be safely used to connect to 
the Tor Network and on to the uncensored Internet./p
-pThe steps below assume you have a functional Tor/Vidalia configuration, 
and you have found a list of HTTPS, SOCKS4, or SOCKS5 proxies./p
+h3 id=what-to-do-when-tor-does-not-connectHvad De skal gøre hvis Tor 
ikke får forbindelse/h3
+pNogle brugere vil opleve at VIdalia låser fast undervejs i forsøget 
på at forbinde til Tor netværket. Hvis dette sker, vær da sikker på at De 
er forbundet til Internettet. Hvis De har brug for en proxy server, se da 
emSådan bruges en åben proxy/em nedenunder./p
+pHvis 

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

2013-06-27 Thread translation
commit 3986948975704bc64543011941b15e418f36aea1
Author: Translation commit bot translat...@torproject.org
Date:   Thu Jun 27 22:16:15 2013 +

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

diff --git a/pt_BR/pt_BR.po b/pt_BR/pt_BR.po
index e663652..9e74395 100644
--- a/pt_BR/pt_BR.po
+++ b/pt_BR/pt_BR.po
@@ -15,7 +15,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2013-02-14 16:07+0100\n
-PO-Revision-Date: 2013-06-25 23:20+\n
+PO-Revision-Date: 2013-06-27 22:10+\n
 Last-Translator: Communia ameanean...@riseup.net\n
 Language-Team: Portuguese (Brazil) 
(http://www.transifex.com/projects/p/torproject/language/pt_BR/)\n
 MIME-Version: 1.0\n
@@ -89,7 +89,7 @@ msgid 
 will be able to store data and make permanent modifications to your live 
 operating system.  Without it, you will not be able to save data that will 
 persist after a reboot.
-msgstr Reservando espaço extra no drive USB para uma camada persistente, 
será possível se armazenar dados e se fazer modificações permanentes a seu 
sistema operacional.  Sem isto, não é possível se salvarem dados que 
persistam após uma reinicialização.
+msgstr Reservando espaço extra para uma camada permanente no drive USB , 
você poderá armazenar dados e fazer modificações permanentes no seu sistema 
operacional.  Caso contrário, será impossível salvar dados que permaneçam 
após uma reinicialização.
 
 #: ../liveusb/creator.py:1120 ../liveusb/creator.py:1383
 #, 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] Update translations for liveusb-creator

2013-06-27 Thread translation
commit 40cfdfa970176016d20be09b9192402d10fa9819
Author: Translation commit bot translat...@torproject.org
Date:   Thu Jun 27 22:16:11 2013 +

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

diff --git a/pt_BR/pt_BR.po b/pt_BR/pt_BR.po
index e663652..9e74395 100644
--- a/pt_BR/pt_BR.po
+++ b/pt_BR/pt_BR.po
@@ -15,7 +15,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2013-02-14 16:07+0100\n
-PO-Revision-Date: 2013-06-25 23:20+\n
+PO-Revision-Date: 2013-06-27 22:10+\n
 Last-Translator: Communia ameanean...@riseup.net\n
 Language-Team: Portuguese (Brazil) 
(http://www.transifex.com/projects/p/torproject/language/pt_BR/)\n
 MIME-Version: 1.0\n
@@ -89,7 +89,7 @@ msgid 
 will be able to store data and make permanent modifications to your live 
 operating system.  Without it, you will not be able to save data that will 
 persist after a reboot.
-msgstr Reservando espaço extra no drive USB para uma camada persistente, 
será possível se armazenar dados e se fazer modificações permanentes a seu 
sistema operacional.  Sem isto, não é possível se salvarem dados que 
persistam após uma reinicialização.
+msgstr Reservando espaço extra para uma camada permanente no drive USB , 
você poderá armazenar dados e fazer modificações permanentes no seu sistema 
operacional.  Caso contrário, será impossível salvar dados que permaneçam 
após uma reinicialização.
 
 #: ../liveusb/creator.py:1120 ../liveusb/creator.py:1383
 #, 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

2013-06-27 Thread translation
commit 2f07efd703f282fad823a49b3e9cea920fba9a54
Author: Translation commit bot translat...@torproject.org
Date:   Thu Jun 27 23:16:11 2013 +

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

diff --git a/pt_BR/pt_BR.po b/pt_BR/pt_BR.po
index 9e74395..908d266 100644
--- a/pt_BR/pt_BR.po
+++ b/pt_BR/pt_BR.po
@@ -15,7 +15,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2013-02-14 16:07+0100\n
-PO-Revision-Date: 2013-06-27 22:10+\n
+PO-Revision-Date: 2013-06-27 23:14+\n
 Last-Translator: Communia ameanean...@riseup.net\n
 Language-Team: Portuguese (Brazil) 
(http://www.transifex.com/projects/p/torproject/language/pt_BR/)\n
 MIME-Version: 1.0\n
@@ -198,7 +198,7 @@ msgstr A verificação do MD5 da imagem ISO falhou
 msgid 
 If you do not select an existing Live ISO, the selected release will be 
 downloaded for you.
-msgstr Se não se selecionar uma ISO Live existente, a versão selecionada 
será baixada.
+msgstr Se nenhuma ISO Live existente for selecionada, a versão já 
selecionada será baixada.
 
 #: ../liveusb/gui.py:601
 msgid Installation complete!
@@ -264,7 +264,7 @@ msgstr Armazenamento permanente
 
 #: ../liveusb/dialog.py:161
 msgid Persistent Storage (0 MB)
-msgstr Armazenagem Persistente (0 MB)
+msgstr Armazenagem permanente (0 MB)
 
 #: ../liveusb/gui.py:661 ../liveusb/gui.py:678
 msgid Press 'Next' if you wish to continue.
@@ -344,7 +344,7 @@ msgid 
 This button allows you to browse for an existing Live system ISO that you 
 have previously downloaded.  If you do not select one, a release will be 
 downloaded for you automatically.
-msgstr Este botão permite que se procure por uma ISO do sistema Live 
existente e previamente abaixada.  Se nenhuma for selecionada, uma versão 
será baixada automaticamente.
+msgstr Este botão permite procurar por uma ISO do sistema Live existente e 
previamente baixada.  Se nenhuma ISO for selecionada, uma versão será baixada 
automaticamente.
 
 #: ../liveusb/dialog.py:164
 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

2013-06-27 Thread translation
commit 6d941664b3e5564d28badcc7ba33e7a88ef9fbc0
Author: Translation commit bot translat...@torproject.org
Date:   Thu Jun 27 23:16:09 2013 +

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

diff --git a/pt_BR/pt_BR.po b/pt_BR/pt_BR.po
index 9e74395..908d266 100644
--- a/pt_BR/pt_BR.po
+++ b/pt_BR/pt_BR.po
@@ -15,7 +15,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2013-02-14 16:07+0100\n
-PO-Revision-Date: 2013-06-27 22:10+\n
+PO-Revision-Date: 2013-06-27 23:14+\n
 Last-Translator: Communia ameanean...@riseup.net\n
 Language-Team: Portuguese (Brazil) 
(http://www.transifex.com/projects/p/torproject/language/pt_BR/)\n
 MIME-Version: 1.0\n
@@ -198,7 +198,7 @@ msgstr A verificação do MD5 da imagem ISO falhou
 msgid 
 If you do not select an existing Live ISO, the selected release will be 
 downloaded for you.
-msgstr Se não se selecionar uma ISO Live existente, a versão selecionada 
será baixada.
+msgstr Se nenhuma ISO Live existente for selecionada, a versão já 
selecionada será baixada.
 
 #: ../liveusb/gui.py:601
 msgid Installation complete!
@@ -264,7 +264,7 @@ msgstr Armazenamento permanente
 
 #: ../liveusb/dialog.py:161
 msgid Persistent Storage (0 MB)
-msgstr Armazenagem Persistente (0 MB)
+msgstr Armazenagem permanente (0 MB)
 
 #: ../liveusb/gui.py:661 ../liveusb/gui.py:678
 msgid Press 'Next' if you wish to continue.
@@ -344,7 +344,7 @@ msgid 
 This button allows you to browse for an existing Live system ISO that you 
 have previously downloaded.  If you do not select one, a release will be 
 downloaded for you automatically.
-msgstr Este botão permite que se procure por uma ISO do sistema Live 
existente e previamente abaixada.  Se nenhuma for selecionada, uma versão 
será baixada automaticamente.
+msgstr Este botão permite procurar por uma ISO do sistema Live existente e 
previamente baixada.  Se nenhuma ISO for selecionada, uma versão será baixada 
automaticamente.
 
 #: ../liveusb/dialog.py:164
 msgid 

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


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

2013-06-27 Thread translation
commit 04033f902d642b09b3641d9322482d6f40ceb789
Author: Translation commit bot translat...@torproject.org
Date:   Thu Jun 27 23:45:47 2013 +

Update translations for vidalia_help_completed
---
 zh_CN/bridges.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zh_CN/bridges.po b/zh_CN/bridges.po
index 9615668..9d5d611 100644
--- a/zh_CN/bridges.po
+++ b/zh_CN/bridges.po
@@ -11,7 +11,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2010-06-26 16:58+0200\n
-PO-Revision-Date: 2013-06-11 18:46+\n
+PO-Revision-Date: 2013-06-27 23:45+\n
 Last-Translator: simabull tsai\n
 Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\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/vidalia_help] Update translations for vidalia_help

2013-06-27 Thread translation
commit e226d0715113c236eed186a1e9ac4f031a326f2d
Author: Translation commit bot translat...@torproject.org
Date:   Thu Jun 27 23:45:35 2013 +

Update translations for vidalia_help
---
 zh_CN/bridges.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zh_CN/bridges.po b/zh_CN/bridges.po
index 9615668..9d5d611 100644
--- a/zh_CN/bridges.po
+++ b/zh_CN/bridges.po
@@ -11,7 +11,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2010-06-26 16:58+0200\n
-PO-Revision-Date: 2013-06-11 18:46+\n
+PO-Revision-Date: 2013-06-27 23:45+\n
 Last-Translator: simabull tsai\n
 Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\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] [tor-browser-bundle/master] Specify explicit tags when recording inputs.

2013-06-27 Thread mikeperry
commit c6cc84e6792ad94b37e55696162360aaf954efac
Author: Mike Perry mikeperry-...@torproject.org
Date:   Thu Jun 27 16:35:29 2013 -0700

Specify explicit tags when recording inputs.

Another determinism issue..
---
 gitian/record-inputs.sh |   30 +++---
 1 file changed, 23 insertions(+), 7 deletions(-)

diff --git a/gitian/record-inputs.sh b/gitian/record-inputs.sh
index c42b375..d27cc27 100755
--- a/gitian/record-inputs.sh
+++ b/gitian/record-inputs.sh
@@ -24,12 +24,28 @@ sha256sum noscr...@noscript.net.xpi  bundle.inputs
 sha256sum uriloa...@pdf.js.xpi  bundle.inputs
 sha256sum openssl-*gz  bundle.inputs
 echo  bundle.inputs
-echo `cd zlib  git log --format=%H -1` zlib.git  bundle.inputs
-echo `cd tor  git log --format=%H -1` tor.git  bundle.inputs
-echo `cd torbutton  git log --format=%H -1` torbutton.git  bundle.inputs
-echo `cd tor-launcher  git log --format=%H -1` tor-launcher.git  
bundle.inputs
-echo `cd https-everywhere  git log --format=%H -1` https-everywhere.git  
bundle.inputs
-echo `cd tbb-windows-installer  git log --format=%H -1` 
tbb-windows-installer.git  bundle.inputs
-echo `cd $WRAPPER_DIR  git log --format=%H -1` tor-browser-bundle.git  
bundle.inputs
+
+if [ z$VERIFY_TAGS = z1 ];
+then
+  # If we're verifying tags, be explicit to gitian that we
+  # want to build from tags.
+  # XXX: Some things still have no tags
+  # NSIS_TAG=refs/tags/$NSIS_TAG
+  TORLAUNCHER_TAG=refs/tags/$TORLAUNCHER_TAG
+  TORBROWSER_TAG=refs/tags/$TORBROWSER_TAG
+  TORBUTTON_TAG=refs/tags/$TORBUTTON_TAG
+  TOR_TAG=refs/tags/$TOR_TAG
+  HTTPSE_TAG=refs/tags/$HTTPSE_TAG
+  ZLIB_TAG=refs/tags/$ZLIB_TAG
+  LIBEVENT_TAG=refs/tags/$LIBEVENT_TAG
+fi
+
+echo `cd zlib  git log --format=%H -1 $ZLIB_TAG` zlib.git  bundle.inputs
+echo `cd tor  git log --format=%H -1 $TOR_TAG` tor.git  bundle.inputs
+echo `cd torbutton  git log --format=%H -1 $TORBUTTON_TAG` torbutton.git 
 bundle.inputs
+echo `cd tor-launcher  git log --format=%H -1 $TORLAUNCHER_TAG` 
tor-launcher.git  bundle.inputs
+echo `cd https-everywhere  git log --format=%H -1 $HTTPSE_TAG` 
https-everywhere.git  bundle.inputs
+echo `cd tbb-windows-installer  git log --format=%H -1 $NSIS_TAG` 
tbb-windows-installer.git  bundle.inputs
 echo `cd $INPUTS_DIR  git log --format=%H -1` gitian-builder.git  
bundle.inputs
+echo `cd $WRAPPER_DIR  git log --format=%H -1` tor-browser-bundle.git  
bundle.inputs
 



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


[tor-commits] [tor-browser-bundle/master] Suggest that people save their base VMs or help us write a test script.

2013-06-27 Thread mikeperry
commit d739caeb848d0cc35d0c0e8914ca8fc45033b237
Author: Mike Perry mikeperry-...@torproject.org
Date:   Thu Jun 27 16:49:34 2013 -0700

Suggest that people save their base VMs or help us write a test script.
---
 gitian/README.build |5 +
 gitian/TODO |   10 +++---
 2 files changed, 12 insertions(+), 3 deletions(-)

diff --git a/gitian/README.build b/gitian/README.build
index d16e5e2..41d0494 100644
--- a/gitian/README.build
+++ b/gitian/README.build
@@ -123,6 +123,11 @@ Known Issues and Quirks:
  You probably want to make sure you have no stray qemu processes before
  rebuilding the VMs or starting a new build, too.
 
+ Once you get a working set of base VMs (in ../../gitian-builder/base-*),
+ you should probably copy them somewhere safe if you want to avoid VM
+ creation hangs in the future (or help us write a wrapper script that
+ tests VMs and re-runs the VM creation step if they don't boot).
+
   2. One out of every 50 builds or so, 'make' locks up at some point during a
  build, probably due to timestamp issues inside the Gitian VM. The
  symptoms of this are a hung build where the VM or LXC container processes
diff --git a/gitian/TODO b/gitian/TODO
index d54bebf..aa9c4e1 100644
--- a/gitian/TODO
+++ b/gitian/TODO
@@ -21,9 +21,10 @@ Short Term:
  - Too many libevent libs are included.. Only need a couple
 
 Mid Term:
- - Linux:
-   - Verify nothing critical is due to expire from 'ubuntu-support-status'
- - For now, looks like just faketime and rcv.. 
+ - Write a VM test+rebuild script
+   - Sometimes VM creation produces a base image that won't boot, especially
+ for the 'Precise' images used by windows.
+   - We should test boot it and if it fails, blow it away and try again.
  - Windows TBB crashes if there's a system tor installed?
- And/or if you install to c:\Program Files and run as non-Admin
  - Docs are missing
@@ -55,6 +56,9 @@ Mid Term:
- I think we don't care? Torbutton's new tor test should fail..
 
 Long Term:
+ - Linux:
+   - Verify nothing critical is due to expire from 'ubuntu-support-status'
+ - For now, looks like just faketime and rcv.. 
  - Offline building
- Requires special VM setup.
  - Compile the toolchain, too?



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


[tor-commits] [tor-browser-bundle/master] Verify tbb-windows-installer's tag and store its signing key.

2013-06-27 Thread mikeperry
commit 2fa2afc3c1b2d8569bd07cfdef9f9f66e93b494a
Author: Mike Perry mikeperry-...@torproject.org
Date:   Thu Jun 27 17:12:30 2013 -0700

Verify tbb-windows-installer's tag and store its signing key.
---
 gitian/gpg/tbb-windows-installer.gpg |  330 ++
 gitian/mkbundle-linux.sh |4 +-
 gitian/mkbundle-mac.sh   |4 +-
 gitian/mkbundle-windows.sh   |4 +-
 gitian/record-inputs.sh  |4 +-
 gitian/verify-tags.sh|9 +-
 gitian/versions  |2 +-
 7 files changed, 343 insertions(+), 14 deletions(-)

diff --git a/gitian/gpg/tbb-windows-installer.gpg 
b/gitian/gpg/tbb-windows-installer.gpg
new file mode 100644
index 000..d4257c4
--- /dev/null
+++ b/gitian/gpg/tbb-windows-installer.gpg
@@ -0,0 +1,330 @@
+-BEGIN PGP PUBLIC KEY BLOCK-
+Version: GnuPG v1.4.11 (GNU/Linux)
+
+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

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

2013-06-27 Thread translation
commit 01e88a891dfd2b49f1a53ef963ac555412dfa684
Author: Translation commit bot translat...@torproject.org
Date:   Fri Jun 28 00:15:05 2013 +

Update translations for bridgedb_completed
---
 zh_CN/LC_MESSAGES/bridgedb.po |   10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/zh_CN/LC_MESSAGES/bridgedb.po b/zh_CN/LC_MESSAGES/bridgedb.po
index d4d78cc..aec9bc4 100644
--- a/zh_CN/LC_MESSAGES/bridgedb.po
+++ b/zh_CN/LC_MESSAGES/bridgedb.po
@@ -3,6 +3,8 @@
 # This file is distributed under the same license as the BridgeDB project.
 # 
 # Translators:
+# Translators:
+# simabull tsai, 2013
 # simabull tsai, 2013
 # simabull tsai, 2013
 # Christopher Meng cicku...@gmail.com, 2012
@@ -12,7 +14,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2013-03-27 21:41+\n
-PO-Revision-Date: 2013-04-30 20:37+\n
+PO-Revision-Date: 2013-06-28 00:10+\n
 Last-Translator: simabull tsai\n
 Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\n
 MIME-Version: 1.0\n
@@ -42,7 +44,7 @@ msgid 
 Another way to find public bridge addresses is to send an email (from a %s 
 or a %s address) to %s with the line 'get bridges' by itself in the body of 
 the mail.
-msgstr 获取公开的网桥地址还有一种方式:使用 %s 或 %s 
邮箱发送电子邮件,并在邮件正文中包含文字“get 
bridges”。 ( %s )
+msgstr 获取公开的网桥地址还有一种方式:使用 %s 或 %s 
邮箱发送电子邮件至 %s,并在邮件正文中包含文字“get 
bridges”。 
 
 #: lib/bridgedb/templates/base.html:48
 msgid My bridges don't work! I need help!
@@ -61,7 +63,7 @@ msgid 
 To use the above lines, go to Vidalia's Network settings page, and click 
 \My ISP blocks connections to the Tor network\. Then add each bridge 
 address one at a time.
-msgstr 如需使用以上地址,请打开 Vidalia 
网络设置,选中“我的 ISP 阻挡了对 Tor 
网络的连接\,然后依次添加网络地址。
+msgstr 如需使用以上地址,请打开 Vidalia 
网络设置,选中“我的 ISP 阻挡了对 Tor 
网络的连接\,然后依次添加网桥地址。
 
 #: lib/bridgedb/templates/bridges.html:13
 msgid No bridges currently available
@@ -100,4 +102,4 @@ msgstr 第 3 步
 #: lib/bridgedb/templates/index.html:21
 #, python-format
 msgid Now %s add the bridges to Tor %s
-msgstr 现在可%s 将网桥添加到 Tor %s
+msgstr 现在 %s 将网桥添加到 Tor %s

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


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

2013-06-27 Thread translation
commit 68ca1c648ac0641ec7d8027291b76dbf52c093f9
Author: Translation commit bot translat...@torproject.org
Date:   Fri Jun 28 00:15:29 2013 +

Update translations for vidalia_completed
---
 zh_CN/qt_zh_CN.po  |4 ++--
 zh_CN/vidalia_zh_CN.po |4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/zh_CN/qt_zh_CN.po b/zh_CN/qt_zh_CN.po
index d3cfc5b..bb6c163 100644
--- a/zh_CN/qt_zh_CN.po
+++ b/zh_CN/qt_zh_CN.po
@@ -9,8 +9,8 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2008-08-20 03:25+\n
-PO-Revision-Date: 2013-06-25 00:11+\n
-Last-Translator: runasand runa.sand...@gmail.com\n
+PO-Revision-Date: 2013-06-28 00:04+\n
+Last-Translator: simabull tsai\n
 Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
diff --git a/zh_CN/vidalia_zh_CN.po b/zh_CN/vidalia_zh_CN.po
index 13f8ba3..5c69e23 100644
--- a/zh_CN/vidalia_zh_CN.po
+++ b/zh_CN/vidalia_zh_CN.po
@@ -12,8 +12,8 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2012-03-21 17:52+\n
-PO-Revision-Date: 2013-06-25 00:11+\n
-Last-Translator: runasand runa.sand...@gmail.com\n
+PO-Revision-Date: 2013-06-27 23:50+\n
+Last-Translator: simabull tsai\n
 Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n

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


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

2013-06-27 Thread translation
commit c9bb5dcdecfb97a889b75aee5dda46769f58
Author: Translation commit bot translat...@torproject.org
Date:   Fri Jun 28 00:15:03 2013 +

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

diff --git a/zh_CN/LC_MESSAGES/bridgedb.po b/zh_CN/LC_MESSAGES/bridgedb.po
index d4d78cc..aec9bc4 100644
--- a/zh_CN/LC_MESSAGES/bridgedb.po
+++ b/zh_CN/LC_MESSAGES/bridgedb.po
@@ -3,6 +3,8 @@
 # This file is distributed under the same license as the BridgeDB project.
 # 
 # Translators:
+# Translators:
+# simabull tsai, 2013
 # simabull tsai, 2013
 # simabull tsai, 2013
 # Christopher Meng cicku...@gmail.com, 2012
@@ -12,7 +14,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2013-03-27 21:41+\n
-PO-Revision-Date: 2013-04-30 20:37+\n
+PO-Revision-Date: 2013-06-28 00:10+\n
 Last-Translator: simabull tsai\n
 Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\n
 MIME-Version: 1.0\n
@@ -42,7 +44,7 @@ msgid 
 Another way to find public bridge addresses is to send an email (from a %s 
 or a %s address) to %s with the line 'get bridges' by itself in the body of 
 the mail.
-msgstr 获取公开的网桥地址还有一种方式:使用 %s 或 %s 
邮箱发送电子邮件,并在邮件正文中包含文字“get 
bridges”。 ( %s )
+msgstr 获取公开的网桥地址还有一种方式:使用 %s 或 %s 
邮箱发送电子邮件至 %s,并在邮件正文中包含文字“get 
bridges”。 
 
 #: lib/bridgedb/templates/base.html:48
 msgid My bridges don't work! I need help!
@@ -61,7 +63,7 @@ msgid 
 To use the above lines, go to Vidalia's Network settings page, and click 
 \My ISP blocks connections to the Tor network\. Then add each bridge 
 address one at a time.
-msgstr 如需使用以上地址,请打开 Vidalia 
网络设置,选中“我的 ISP 阻挡了对 Tor 
网络的连接\,然后依次添加网络地址。
+msgstr 如需使用以上地址,请打开 Vidalia 
网络设置,选中“我的 ISP 阻挡了对 Tor 
网络的连接\,然后依次添加网桥地址。
 
 #: lib/bridgedb/templates/bridges.html:13
 msgid No bridges currently available
@@ -100,4 +102,4 @@ msgstr 第 3 步
 #: lib/bridgedb/templates/index.html:21
 #, python-format
 msgid Now %s add the bridges to Tor %s
-msgstr 现在可%s 将网桥添加到 Tor %s
+msgstr 现在 %s 将网桥添加到 Tor %s

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


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

2013-06-27 Thread translation
commit 93e8e7ca8d7c0c04b7fa3a2348e68f28f1334250
Author: Translation commit bot translat...@torproject.org
Date:   Fri Jun 28 00:15:24 2013 +

Update translations for vidalia
---
 zh_CN/qt_zh_CN.po  |4 ++--
 zh_CN/vidalia_zh_CN.po |4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/zh_CN/qt_zh_CN.po b/zh_CN/qt_zh_CN.po
index d3cfc5b..bb6c163 100644
--- a/zh_CN/qt_zh_CN.po
+++ b/zh_CN/qt_zh_CN.po
@@ -9,8 +9,8 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2008-08-20 03:25+\n
-PO-Revision-Date: 2013-06-25 00:11+\n
-Last-Translator: runasand runa.sand...@gmail.com\n
+PO-Revision-Date: 2013-06-28 00:04+\n
+Last-Translator: simabull tsai\n
 Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
diff --git a/zh_CN/vidalia_zh_CN.po b/zh_CN/vidalia_zh_CN.po
index 13f8ba3..5c69e23 100644
--- a/zh_CN/vidalia_zh_CN.po
+++ b/zh_CN/vidalia_zh_CN.po
@@ -12,8 +12,8 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2012-03-21 17:52+\n
-PO-Revision-Date: 2013-06-25 00:11+\n
-Last-Translator: runasand runa.sand...@gmail.com\n
+PO-Revision-Date: 2013-06-27 23:50+\n
+Last-Translator: simabull tsai\n
 Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n

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


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

2013-06-27 Thread translation
commit c46cec6bc6a1dd1f88b1ee781e418bc701194f7b
Author: Translation commit bot translat...@torproject.org
Date:   Fri Jun 28 00:15:32 2013 +

Update translations for vidalia_alpha
---
 zh_CN/vidalia_zh_CN.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zh_CN/vidalia_zh_CN.po b/zh_CN/vidalia_zh_CN.po
index cd9d69e..d1b81f6 100644
--- a/zh_CN/vidalia_zh_CN.po
+++ b/zh_CN/vidalia_zh_CN.po
@@ -9,7 +9,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2012-03-21 17:46+\n
-PO-Revision-Date: 2013-06-25 00:11+\n
+PO-Revision-Date: 2013-06-27 23:50+\n
 Last-Translator: runasand runa.sand...@gmail.com\n
 Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\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/vidalia_help] Update translations for vidalia_help

2013-06-27 Thread translation
commit 71af24841eea801bf3945abdda6e25db09ce991d
Author: Translation commit bot translat...@torproject.org
Date:   Fri Jun 28 00:15:49 2013 +

Update translations for vidalia_help
---
 zh_CN/index.po |   13 +++--
 zh_CN/log.po   |6 +++---
 2 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/zh_CN/index.po b/zh_CN/index.po
index 9ea92fc..40e74a6 100644
--- a/zh_CN/index.po
+++ b/zh_CN/index.po
@@ -1,14 +1,15 @@
 # 
 # Translators:
+# simabull tsai, 2013
 # runasand runa.sand...@gmail.com, 2011
 msgid 
 msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2010-06-26 16:59+0200\n
-PO-Revision-Date: 2013-04-29 09:25+\n
-Last-Translator: runasand runa.sand...@gmail.com\n
-Language-Team: LANGUAGE l...@li.org\n
+PO-Revision-Date: 2013-06-27 23:50+\n
+Last-Translator: simabull tsai\n
+Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
@@ -18,14 +19,14 @@ msgstr 
 #. type: Content of: htmlbodyh1
 #: en/index.html:16
 msgid Vidalia Help
-msgstr Vidalia帮助
+msgstr Vidalia 帮助
 
 #. type: Content of: htmlbodyp
 #: en/index.html:20
 msgid 
 Select a help topic from the tree on the left or click on the Search button 
 above the list of topics to search through all available help topics.
-msgstr 从左方的树形图中选择一个帮助主题或者
点击在主题列表上方的搜索按钮来搜索所有可用帮助主题。
+msgstr 从左方的树形图中选择一个帮助主题,或者
点击在主题列表上方的搜索按钮来搜索所有可用帮助主题。
 
 #. type: Content of: htmlbodyp
 #: en/index.html:25
@@ -37,7 +38,7 @@ msgstr 利用上方工具æ 
çš„i查找/i可在特定帮助主题中搜索
 #. type: Content of: htmlbodyp
 #: en/index.html:30
 msgid The iHome/i button above will bring you back to this home page.
-msgstr 利用上方的i主页Home/i按钮可返回该主页。
+msgstr 利用上方的i主页/i按钮可返回该主页。
 
 #. type: Content of: htmlbodyp
 #: en/index.html:34
diff --git a/zh_CN/log.po b/zh_CN/log.po
index df8c0ed..364b0b3 100644
--- a/zh_CN/log.po
+++ b/zh_CN/log.po
@@ -9,9 +9,9 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2010-06-26 17:00+0200\n
-PO-Revision-Date: 2013-04-29 09:25+\n
-Last-Translator: runasand runa.sand...@gmail.com\n
-Language-Team: LANGUAGE l...@li.org\n
+PO-Revision-Date: 2013-06-27 23:54+\n
+Last-Translator: simabull tsai\n
+Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n

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


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

2013-06-27 Thread translation
commit fa104993052ca78a2d8c5d093afce2404d4a2cc8
Author: Translation commit bot translat...@torproject.org
Date:   Fri Jun 28 00:15:36 2013 +

Update translations for vidalia_alpha_completed
---
 zh_CN/vidalia_zh_CN.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zh_CN/vidalia_zh_CN.po b/zh_CN/vidalia_zh_CN.po
index cd9d69e..d1b81f6 100644
--- a/zh_CN/vidalia_zh_CN.po
+++ b/zh_CN/vidalia_zh_CN.po
@@ -9,7 +9,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2012-03-21 17:46+\n
-PO-Revision-Date: 2013-06-25 00:11+\n
+PO-Revision-Date: 2013-06-27 23:50+\n
 Last-Translator: runasand runa.sand...@gmail.com\n
 Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\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/liveusb-creator] Update translations for liveusb-creator

2013-06-27 Thread translation
commit 1b8e23a7aa08881d555d555c21ee63030f659250
Author: Translation commit bot translat...@torproject.org
Date:   Fri Jun 28 00:16:27 2013 +

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

diff --git a/pt_BR/pt_BR.po b/pt_BR/pt_BR.po
index 908d266..1640038 100644
--- a/pt_BR/pt_BR.po
+++ b/pt_BR/pt_BR.po
@@ -15,7 +15,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2013-02-14 16:07+0100\n
-PO-Revision-Date: 2013-06-27 23:14+\n
+PO-Revision-Date: 2013-06-27 23:50+\n
 Last-Translator: Communia ameanean...@riseup.net\n
 Language-Team: Portuguese (Brazil) 
(http://www.transifex.com/projects/p/torproject/language/pt_BR/)\n
 MIME-Version: 1.0\n
@@ -352,13 +352,13 @@ msgid 
 optionally downloading a release (if an existing one wasn't selected),  
 extracting the ISO to the USB device, creating the persistent overlay, and 
 installing the bootloader.
-msgstr Este botão iniciará o processo de criação do LiveUSB.  
Opcionalmente uma versão será baixada (se nenhuma versão existente foi 
selecionada), extraindo a ISO para o dispositivo USB, criando a camada 
persistente e instalando o inicializador.
+msgstr Este botão iniciará o processo de criação do LiveUSB.  
Opcionalmente, uma versão será baixada (se nenhuma versão existente tiver 
sido selecionada), extraindo a ISO para o dispositivo USB, criando a camada 
permanente e instalando o inicializador.
 
 #: ../liveusb/dialog.py:158
 msgid 
 This is the USB stick that you want to install your Live system on.  This 
 device must be formatted with the FAT filesystem.
-msgstr Este é o drive USB no qual deseja instalar seu sistema Live.  Este 
dispositivo dese estar formatado com o sistema de arquivos FAT.
+msgstr Este é o drive USB no qual você deseja instalar um sistema Live.  
Este dispositivo deve estar formatado com o sistema de arquivos FAT.
 
 #: ../liveusb/dialog.py:163
 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_completed] Update translations for liveusb-creator_completed

2013-06-27 Thread translation
commit 96da3eae00c54ee658caa69b9fcb18f9fbf5b884
Author: Translation commit bot translat...@torproject.org
Date:   Fri Jun 28 00:16:30 2013 +

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

diff --git a/pt_BR/pt_BR.po b/pt_BR/pt_BR.po
index 908d266..1640038 100644
--- a/pt_BR/pt_BR.po
+++ b/pt_BR/pt_BR.po
@@ -15,7 +15,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2013-02-14 16:07+0100\n
-PO-Revision-Date: 2013-06-27 23:14+\n
+PO-Revision-Date: 2013-06-27 23:50+\n
 Last-Translator: Communia ameanean...@riseup.net\n
 Language-Team: Portuguese (Brazil) 
(http://www.transifex.com/projects/p/torproject/language/pt_BR/)\n
 MIME-Version: 1.0\n
@@ -352,13 +352,13 @@ msgid 
 optionally downloading a release (if an existing one wasn't selected),  
 extracting the ISO to the USB device, creating the persistent overlay, and 
 installing the bootloader.
-msgstr Este botão iniciará o processo de criação do LiveUSB.  
Opcionalmente uma versão será baixada (se nenhuma versão existente foi 
selecionada), extraindo a ISO para o dispositivo USB, criando a camada 
persistente e instalando o inicializador.
+msgstr Este botão iniciará o processo de criação do LiveUSB.  
Opcionalmente, uma versão será baixada (se nenhuma versão existente tiver 
sido selecionada), extraindo a ISO para o dispositivo USB, criando a camada 
permanente e instalando o inicializador.
 
 #: ../liveusb/dialog.py:158
 msgid 
 This is the USB stick that you want to install your Live system on.  This 
 device must be formatted with the FAT filesystem.
-msgstr Este é o drive USB no qual deseja instalar seu sistema Live.  Este 
dispositivo dese estar formatado com o sistema de arquivos FAT.
+msgstr Este é o drive USB no qual você deseja instalar um sistema Live.  
Este dispositivo deve estar formatado com o sistema de arquivos FAT.
 
 #: ../liveusb/dialog.py:163
 msgid 

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


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

2013-06-27 Thread translation
commit dbab9cef88343dad8a9bec52b72384324159c52b
Author: Translation commit bot translat...@torproject.org
Date:   Fri Jun 28 00:16:02 2013 +

Update translations for vidalia_help_completed
---
 zh_CN/index.po |   13 +++--
 zh_CN/log.po   |6 +++---
 2 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/zh_CN/index.po b/zh_CN/index.po
index 9ea92fc..40e74a6 100644
--- a/zh_CN/index.po
+++ b/zh_CN/index.po
@@ -1,14 +1,15 @@
 # 
 # Translators:
+# simabull tsai, 2013
 # runasand runa.sand...@gmail.com, 2011
 msgid 
 msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2010-06-26 16:59+0200\n
-PO-Revision-Date: 2013-04-29 09:25+\n
-Last-Translator: runasand runa.sand...@gmail.com\n
-Language-Team: LANGUAGE l...@li.org\n
+PO-Revision-Date: 2013-06-27 23:50+\n
+Last-Translator: simabull tsai\n
+Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
@@ -18,14 +19,14 @@ msgstr 
 #. type: Content of: htmlbodyh1
 #: en/index.html:16
 msgid Vidalia Help
-msgstr Vidalia帮助
+msgstr Vidalia 帮助
 
 #. type: Content of: htmlbodyp
 #: en/index.html:20
 msgid 
 Select a help topic from the tree on the left or click on the Search button 
 above the list of topics to search through all available help topics.
-msgstr 从左方的树形图中选择一个帮助主题或者
点击在主题列表上方的搜索按钮来搜索所有可用帮助主题。
+msgstr 从左方的树形图中选择一个帮助主题,或者
点击在主题列表上方的搜索按钮来搜索所有可用帮助主题。
 
 #. type: Content of: htmlbodyp
 #: en/index.html:25
@@ -37,7 +38,7 @@ msgstr 利用上方工具æ 
çš„i查找/i可在特定帮助主题中搜索
 #. type: Content of: htmlbodyp
 #: en/index.html:30
 msgid The iHome/i button above will bring you back to this home page.
-msgstr 利用上方的i主页Home/i按钮可返回该主页。
+msgstr 利用上方的i主页/i按钮可返回该主页。
 
 #. type: Content of: htmlbodyp
 #: en/index.html:34
diff --git a/zh_CN/log.po b/zh_CN/log.po
index df8c0ed..364b0b3 100644
--- a/zh_CN/log.po
+++ b/zh_CN/log.po
@@ -9,9 +9,9 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2010-06-26 17:00+0200\n
-PO-Revision-Date: 2013-04-29 09:25+\n
-Last-Translator: runasand runa.sand...@gmail.com\n
-Language-Team: LANGUAGE l...@li.org\n
+PO-Revision-Date: 2013-06-27 23:54+\n
+Last-Translator: simabull tsai\n
+Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n

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


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

2013-06-27 Thread translation
commit 9fa6d3bf716184705bb8cf4bc9d3f9fb5afbac27
Author: Translation commit bot translat...@torproject.org
Date:   Fri Jun 28 01:15:22 2013 +

Update translations for vidalia_completed
---
 zh_CN/qt_zh_CN.po |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/zh_CN/qt_zh_CN.po b/zh_CN/qt_zh_CN.po
index bb6c163..95284f8 100644
--- a/zh_CN/qt_zh_CN.po
+++ b/zh_CN/qt_zh_CN.po
@@ -1,6 +1,7 @@
 # Translators:
 # Translators:
 # Translators:
+# simabull tsai, 2013
 # Christopher Meng cicku...@gmail.com, 2012
 # John dragonandgh...@gmail.com, 2011
 # runasand runa.sand...@gmail.com, 2011
@@ -9,7 +10,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2008-08-20 03:25+\n
-PO-Revision-Date: 2013-06-28 00:04+\n
+PO-Revision-Date: 2013-06-28 01:15+\n
 Last-Translator: simabull tsai\n
 Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\n
 MIME-Version: 1.0\n
@@ -27,12 +28,12 @@ msgstr 激活
 #: qmessagebox.h:319
 msgctxt QApplication
 msgid Executable '%1' requires Qt %2, found Qt %3.
-msgstr 执行“%1”需要 Qt %2,只找到了 Qt %3。
+msgstr 可执行的“%1”需要 Qt %2,已发现 Qt %3。
 
 #: qmessagebox.h:321
 msgctxt QApplication
 msgid Incompatible Qt Library Error
-msgstr 不兼容的 Qt 库错误
+msgstr 不兼容 Qt 库错误
 
 #: qapplication.cpp:2095
 msgctxt QApplication

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


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

2013-06-27 Thread translation
commit 9a479ca275c39a7a7b59119e43f8dfbee5a2d822
Author: Translation commit bot translat...@torproject.org
Date:   Fri Jun 28 01:15:18 2013 +

Update translations for vidalia
---
 zh_CN/qt_zh_CN.po |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/zh_CN/qt_zh_CN.po b/zh_CN/qt_zh_CN.po
index bb6c163..95284f8 100644
--- a/zh_CN/qt_zh_CN.po
+++ b/zh_CN/qt_zh_CN.po
@@ -1,6 +1,7 @@
 # Translators:
 # Translators:
 # Translators:
+# simabull tsai, 2013
 # Christopher Meng cicku...@gmail.com, 2012
 # John dragonandgh...@gmail.com, 2011
 # runasand runa.sand...@gmail.com, 2011
@@ -9,7 +10,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2008-08-20 03:25+\n
-PO-Revision-Date: 2013-06-28 00:04+\n
+PO-Revision-Date: 2013-06-28 01:15+\n
 Last-Translator: simabull tsai\n
 Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\n
 MIME-Version: 1.0\n
@@ -27,12 +28,12 @@ msgstr 激活
 #: qmessagebox.h:319
 msgctxt QApplication
 msgid Executable '%1' requires Qt %2, found Qt %3.
-msgstr 执行“%1”需要 Qt %2,只找到了 Qt %3。
+msgstr 可执行的“%1”需要 Qt %2,已发现 Qt %3。
 
 #: qmessagebox.h:321
 msgctxt QApplication
 msgid Incompatible Qt Library Error
-msgstr 不兼容的 Qt 库错误
+msgstr 不兼容 Qt 库错误
 
 #: qapplication.cpp:2095
 msgctxt QApplication

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


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

2013-06-27 Thread translation
commit 5faa3f560c3d3e8f5ab9b6cb47f9c6d36241cd69
Author: Translation commit bot translat...@torproject.org
Date:   Fri Jun 28 01:45:22 2013 +

Update translations for vidalia_completed
---
 zh_CN/qt_zh_CN.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zh_CN/qt_zh_CN.po b/zh_CN/qt_zh_CN.po
index 95284f8..330d18e 100644
--- a/zh_CN/qt_zh_CN.po
+++ b/zh_CN/qt_zh_CN.po
@@ -10,7 +10,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2008-08-20 03:25+\n
-PO-Revision-Date: 2013-06-28 01:15+\n
+PO-Revision-Date: 2013-06-28 01:20+\n
 Last-Translator: simabull tsai\n
 Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\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/vidalia] Update translations for vidalia

2013-06-27 Thread translation
commit 6c8c1e65609905ecf606335d50be7b80ab33b0d3
Author: Translation commit bot translat...@torproject.org
Date:   Fri Jun 28 01:45:18 2013 +

Update translations for vidalia
---
 zh_CN/qt_zh_CN.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zh_CN/qt_zh_CN.po b/zh_CN/qt_zh_CN.po
index 95284f8..330d18e 100644
--- a/zh_CN/qt_zh_CN.po
+++ b/zh_CN/qt_zh_CN.po
@@ -10,7 +10,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2008-08-20 03:25+\n
-PO-Revision-Date: 2013-06-28 01:15+\n
+PO-Revision-Date: 2013-06-28 01:20+\n
 Last-Translator: simabull tsai\n
 Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\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/vidalia_completed] Update translations for vidalia_completed

2013-06-27 Thread translation
commit 0ee8df1fd6c0e34c4257954736509860b4262ec1
Author: Translation commit bot translat...@torproject.org
Date:   Fri Jun 28 02:15:24 2013 +

Update translations for vidalia_completed
---
 zh_CN/qt_zh_CN.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zh_CN/qt_zh_CN.po b/zh_CN/qt_zh_CN.po
index 330d18e..97379ed 100644
--- a/zh_CN/qt_zh_CN.po
+++ b/zh_CN/qt_zh_CN.po
@@ -10,7 +10,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2008-08-20 03:25+\n
-PO-Revision-Date: 2013-06-28 01:20+\n
+PO-Revision-Date: 2013-06-28 02:15+\n
 Last-Translator: simabull tsai\n
 Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\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/vidalia] Update translations for vidalia

2013-06-27 Thread translation
commit bd7bdfb2c9da475cdcc9d8ba4025ef8da1011d76
Author: Translation commit bot translat...@torproject.org
Date:   Fri Jun 28 02:15:19 2013 +

Update translations for vidalia
---
 zh_CN/qt_zh_CN.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zh_CN/qt_zh_CN.po b/zh_CN/qt_zh_CN.po
index 330d18e..97379ed 100644
--- a/zh_CN/qt_zh_CN.po
+++ b/zh_CN/qt_zh_CN.po
@@ -10,7 +10,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2008-08-20 03:25+\n
-PO-Revision-Date: 2013-06-28 01:20+\n
+PO-Revision-Date: 2013-06-28 02:15+\n
 Last-Translator: simabull tsai\n
 Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\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] r26233: {website} reference new blog posts. (website/trunk/en)

2013-06-27 Thread Andrew Lewman
Author: phobos
Date: 2013-06-28 03:00:24 + (Fri, 28 Jun 2013)
New Revision: 26233

Modified:
   website/trunk/en/index.wml
Log:
reference new blog posts.


Modified: website/trunk/en/index.wml
===
--- website/trunk/en/index.wml  2013-06-26 22:09:49 UTC (rev 26232)
+++ website/trunk/en/index.wml  2013-06-28 03:00:24 UTC (rev 26233)
@@ -158,6 +158,18 @@
   table
 tr
   td
+div class=calendarspan class=monthJun/spanbrspan 
class=day26/span/div
+pUpdated Tor Browser Bundles a 
href=https://blog.torproject.org/blog/new-tor-browser-bundles-and-tor-02414-alpha-packages;now
 available/a./p
+ /td
+   /tr
+tr
+  td
+div class=calendarspan class=monthJun/spanbrspan 
class=day25/span/div
+pTails 0.19 a 
href=https://blog.torproject.org/blog/tails-019-out;is released./a/p
+ /td
+   /tr
+tr
+  td
 div class=calendarspan class=monthJun/spanbrspan 
class=day18/span/div
 pRead about the a 
href=https://blog.torproject.org/blog/facebook-and-tor;current status/a of 
Facebook and Tor./p
  /td
@@ -174,12 +186,6 @@
 pRead our a 
href=https://blog.torproject.org/blog/tors-response-prism-surveillance-program;response/a
 to NSA PRISM and the Snowden interview./p
  /td
/tr
-tr
-  td
-div class=calendarspan class=monthJun/spanbrspan 
class=day8/span/div
-pRead our a 
href=https://blog.torproject.org/blog/prism-vs-tor;thoughts on the NSA 
PRISM/a revelation and how it relates to Tor./p
- /td
-   /tr
   /table
 /div
div id=home-users

___
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

2013-06-27 Thread translation
commit 3622073cc7688f77465572420a3ef2e34e714a1f
Author: Translation commit bot translat...@torproject.org
Date:   Fri Jun 28 03:15:03 2013 +

Update translations for bridgedb
---
 kn/LC_MESSAGES/bridgedb.po |8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/kn/LC_MESSAGES/bridgedb.po b/kn/LC_MESSAGES/bridgedb.po
index 7cb051b..7f3bf66 100644
--- a/kn/LC_MESSAGES/bridgedb.po
+++ b/kn/LC_MESSAGES/bridgedb.po
@@ -3,13 +3,15 @@
 # This file is distributed under the same license as the BridgeDB project.
 # 
 # Translators:
+# Translators:
+# msj2, 2013
 msgid 
 msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2013-03-27 21:41+\n
-PO-Revision-Date: 2013-06-18 22:31+\n
-Last-Translator: runasand runa.sand...@gmail.com\n
+PO-Revision-Date: 2013-06-28 03:11+\n
+Last-Translator: msj2\n
 Language-Team: Kannada 
(http://www.transifex.com/projects/p/torproject/language/kn/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -20,7 +22,7 @@ msgstr 
 
 #: lib/bridgedb/templates/base.html:33
 msgid What are bridges?
-msgstr 
+msgstr ಗಳು ಅಂದರೆ ಏನು?
 
 #: lib/bridgedb/templates/base.html:34
 #, python-format

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


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

2013-06-27 Thread translation
commit 3e3ca0b53fc00959d227d9069811cb67d0a22ca0
Author: Translation commit bot translat...@torproject.org
Date:   Fri Jun 28 03:45:21 2013 +

Update translations for vidalia
---
 zh_CN/qt_zh_CN.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zh_CN/qt_zh_CN.po b/zh_CN/qt_zh_CN.po
index 97379ed..8439b01 100644
--- a/zh_CN/qt_zh_CN.po
+++ b/zh_CN/qt_zh_CN.po
@@ -10,7 +10,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2008-08-20 03:25+\n
-PO-Revision-Date: 2013-06-28 02:15+\n
+PO-Revision-Date: 2013-06-28 03:42+\n
 Last-Translator: simabull tsai\n
 Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\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/vidalia_completed] Update translations for vidalia_completed

2013-06-27 Thread translation
commit cb7f919daea5a3b33d35a08872b1d4fa1db007e6
Author: Translation commit bot translat...@torproject.org
Date:   Fri Jun 28 03:45:26 2013 +

Update translations for vidalia_completed
---
 zh_CN/qt_zh_CN.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zh_CN/qt_zh_CN.po b/zh_CN/qt_zh_CN.po
index 97379ed..8439b01 100644
--- a/zh_CN/qt_zh_CN.po
+++ b/zh_CN/qt_zh_CN.po
@@ -10,7 +10,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2008-08-20 03:25+\n
-PO-Revision-Date: 2013-06-28 02:15+\n
+PO-Revision-Date: 2013-06-28 03:42+\n
 Last-Translator: simabull tsai\n
 Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\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/vidalia] Update translations for vidalia

2013-06-27 Thread translation
commit 33818cc3d1bbd0bc1a7f325a27e9a57eda5afa3b
Author: Translation commit bot translat...@torproject.org
Date:   Fri Jun 28 04:15:19 2013 +

Update translations for vidalia
---
 zh_CN/qt_zh_CN.po  |   22 +++---
 zh_CN/vidalia_zh_CN.po |2 +-
 2 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/zh_CN/qt_zh_CN.po b/zh_CN/qt_zh_CN.po
index 8439b01..50ef6f2 100644
--- a/zh_CN/qt_zh_CN.po
+++ b/zh_CN/qt_zh_CN.po
@@ -10,7 +10,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2008-08-20 03:25+\n
-PO-Revision-Date: 2013-06-28 03:42+\n
+PO-Revision-Date: 2013-06-28 04:10+\n
 Last-Translator: simabull tsai\n
 Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\n
 MIME-Version: 1.0\n
@@ -93,7 +93,7 @@ msgstr 不保存
 #: qdialogbuttonbox.cpp:554
 msgctxt QDialogButtonBox
 msgid Discard
-msgstr 抛弃
+msgstr 放弃
 
 #: qdialogbuttonbox.cpp:557
 msgctxt QDialogButtonBox
@@ -103,7 +103,7 @@ msgstr 是(Y)
 #: qdialogbuttonbox.cpp:560
 msgctxt QDialogButtonBox
 msgid Yes to All
-msgstr 全部选是(A)
+msgstr 全是(A)
 
 #: qdialogbuttonbox.cpp:563
 msgctxt QDialogButtonBox
@@ -113,7 +113,7 @@ msgstr 否(N)
 #: qdialogbuttonbox.cpp:566
 msgctxt QDialogButtonBox
 msgid No to All
-msgstr 全部选否(O)
+msgstr 全否(O)
 
 #: qdialogbuttonbox.cpp:569
 msgctxt QDialogButtonBox
@@ -138,12 +138,12 @@ msgstr 忽略
 #: qdialogbuttonbox.cpp:581
 msgctxt QDialogButtonBox
 msgid Restore Defaults
-msgstr 恢复默认
+msgstr 恢复默认值
 
 #: qdialogbuttonbox.cpp:552
 msgctxt QDialogButtonBox
 msgid Close without Saving
-msgstr 不保存关闭
+msgstr 关闭且不保存
 
 #: qdialogbuttonbox.cpp:525
 msgctxt QDialogButtonBox
@@ -163,7 +163,7 @@ msgstr 大小
 #: qdirmodel.cpp:427
 msgctxt QDirModel
 msgid Kind
-msgstr 类型
+msgstr 种类
 
 #: qdirmodel.cpp:429
 msgctxt QDirModel
@@ -173,7 +173,7 @@ msgstr 类型
 #: qdirmodel.cpp:435
 msgctxt QDirModel
 msgid Date Modified
-msgstr 日期被修改
+msgstr 已修改的日期
 
 #: qfiledialog_win.cpp:126
 msgctxt QFileDialog
@@ -205,7 +205,7 @@ msgctxt QFileDialog
 msgid 
 %1 already exists.\n
 Do you want to replace it?
-msgstr %1已经存在。你想要替换它么?
+msgstr %1 已存在。\n的否替换?
 
 #: qfiledialog.cpp:1690
 msgctxt QFileDialog
@@ -213,12 +213,12 @@ msgid 
 %1\n
 File not found.\n
 Please verify the correct file name was given.
-msgstr 文件 %1 没有找到。\n请æ 
¸å®žå·²ç»™å®šæ–‡ä»¶åçš„文件是否正确。
+msgstr  %1 文件未找到。\n请确认指定文件名是否正确。
 
 #: qdirmodel.cpp:833
 msgctxt QFileDialog
 msgid My Computer
-msgstr 我的计算机
+msgstr 我的电脑
 
 #: qfiledialog.cpp:462
 msgctxt QFileDialog
diff --git a/zh_CN/vidalia_zh_CN.po b/zh_CN/vidalia_zh_CN.po
index 5c69e23..8e8c184 100644
--- a/zh_CN/vidalia_zh_CN.po
+++ b/zh_CN/vidalia_zh_CN.po
@@ -12,7 +12,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2012-03-21 17:52+\n
-PO-Revision-Date: 2013-06-27 23:50+\n
+PO-Revision-Date: 2013-06-28 04:00+\n
 Last-Translator: simabull tsai\n
 Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\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/vidalia_alpha] Update translations for vidalia_alpha

2013-06-27 Thread translation
commit c14d7bb9f7a65ed33423e5b1a02b5cac863cbd0d
Author: Translation commit bot translat...@torproject.org
Date:   Fri Jun 28 04:15:29 2013 +

Update translations for vidalia_alpha
---
 zh_CN/vidalia_zh_CN.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zh_CN/vidalia_zh_CN.po b/zh_CN/vidalia_zh_CN.po
index d1b81f6..cda6085 100644
--- a/zh_CN/vidalia_zh_CN.po
+++ b/zh_CN/vidalia_zh_CN.po
@@ -9,7 +9,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2012-03-21 17:46+\n
-PO-Revision-Date: 2013-06-27 23:50+\n
+PO-Revision-Date: 2013-06-28 04:00+\n
 Last-Translator: runasand runa.sand...@gmail.com\n
 Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\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/vidalia_completed] Update translations for vidalia_completed

2013-06-27 Thread translation
commit a3a51d2404485e847341371e9d62f8a3b7e32d60
Author: Translation commit bot translat...@torproject.org
Date:   Fri Jun 28 04:15:25 2013 +

Update translations for vidalia_completed
---
 zh_CN/qt_zh_CN.po  |   22 +++---
 zh_CN/vidalia_zh_CN.po |2 +-
 2 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/zh_CN/qt_zh_CN.po b/zh_CN/qt_zh_CN.po
index 8439b01..50ef6f2 100644
--- a/zh_CN/qt_zh_CN.po
+++ b/zh_CN/qt_zh_CN.po
@@ -10,7 +10,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2008-08-20 03:25+\n
-PO-Revision-Date: 2013-06-28 03:42+\n
+PO-Revision-Date: 2013-06-28 04:10+\n
 Last-Translator: simabull tsai\n
 Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\n
 MIME-Version: 1.0\n
@@ -93,7 +93,7 @@ msgstr 不保存
 #: qdialogbuttonbox.cpp:554
 msgctxt QDialogButtonBox
 msgid Discard
-msgstr 抛弃
+msgstr 放弃
 
 #: qdialogbuttonbox.cpp:557
 msgctxt QDialogButtonBox
@@ -103,7 +103,7 @@ msgstr 是(Y)
 #: qdialogbuttonbox.cpp:560
 msgctxt QDialogButtonBox
 msgid Yes to All
-msgstr 全部选是(A)
+msgstr 全是(A)
 
 #: qdialogbuttonbox.cpp:563
 msgctxt QDialogButtonBox
@@ -113,7 +113,7 @@ msgstr 否(N)
 #: qdialogbuttonbox.cpp:566
 msgctxt QDialogButtonBox
 msgid No to All
-msgstr 全部选否(O)
+msgstr 全否(O)
 
 #: qdialogbuttonbox.cpp:569
 msgctxt QDialogButtonBox
@@ -138,12 +138,12 @@ msgstr 忽略
 #: qdialogbuttonbox.cpp:581
 msgctxt QDialogButtonBox
 msgid Restore Defaults
-msgstr 恢复默认
+msgstr 恢复默认值
 
 #: qdialogbuttonbox.cpp:552
 msgctxt QDialogButtonBox
 msgid Close without Saving
-msgstr 不保存关闭
+msgstr 关闭且不保存
 
 #: qdialogbuttonbox.cpp:525
 msgctxt QDialogButtonBox
@@ -163,7 +163,7 @@ msgstr 大小
 #: qdirmodel.cpp:427
 msgctxt QDirModel
 msgid Kind
-msgstr 类型
+msgstr 种类
 
 #: qdirmodel.cpp:429
 msgctxt QDirModel
@@ -173,7 +173,7 @@ msgstr 类型
 #: qdirmodel.cpp:435
 msgctxt QDirModel
 msgid Date Modified
-msgstr 日期被修改
+msgstr 已修改的日期
 
 #: qfiledialog_win.cpp:126
 msgctxt QFileDialog
@@ -205,7 +205,7 @@ msgctxt QFileDialog
 msgid 
 %1 already exists.\n
 Do you want to replace it?
-msgstr %1已经存在。你想要替换它么?
+msgstr %1 已存在。\n的否替换?
 
 #: qfiledialog.cpp:1690
 msgctxt QFileDialog
@@ -213,12 +213,12 @@ msgid 
 %1\n
 File not found.\n
 Please verify the correct file name was given.
-msgstr 文件 %1 没有找到。\n请æ 
¸å®žå·²ç»™å®šæ–‡ä»¶åçš„文件是否正确。
+msgstr  %1 文件未找到。\n请确认指定文件名是否正确。
 
 #: qdirmodel.cpp:833
 msgctxt QFileDialog
 msgid My Computer
-msgstr 我的计算机
+msgstr 我的电脑
 
 #: qfiledialog.cpp:462
 msgctxt QFileDialog
diff --git a/zh_CN/vidalia_zh_CN.po b/zh_CN/vidalia_zh_CN.po
index 5c69e23..8e8c184 100644
--- a/zh_CN/vidalia_zh_CN.po
+++ b/zh_CN/vidalia_zh_CN.po
@@ -12,7 +12,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2012-03-21 17:52+\n
-PO-Revision-Date: 2013-06-27 23:50+\n
+PO-Revision-Date: 2013-06-28 04:00+\n
 Last-Translator: simabull tsai\n
 Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\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/vidalia_alpha_completed] Update translations for vidalia_alpha_completed

2013-06-27 Thread translation
commit 93646075e5ce9a3d00a2fe6947198db12c8e11a9
Author: Translation commit bot translat...@torproject.org
Date:   Fri Jun 28 04:15:32 2013 +

Update translations for vidalia_alpha_completed
---
 zh_CN/vidalia_zh_CN.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zh_CN/vidalia_zh_CN.po b/zh_CN/vidalia_zh_CN.po
index d1b81f6..cda6085 100644
--- a/zh_CN/vidalia_zh_CN.po
+++ b/zh_CN/vidalia_zh_CN.po
@@ -9,7 +9,7 @@ msgstr 
 Project-Id-Version: The Tor Project\n
 Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n;
 POT-Creation-Date: 2012-03-21 17:46+\n
-PO-Revision-Date: 2013-06-27 23:50+\n
+PO-Revision-Date: 2013-06-28 04:00+\n
 Last-Translator: runasand runa.sand...@gmail.com\n
 Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/torproject/language/zh_CN/)\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