tor-commits
Threads by month
- ----- 2025 -----
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
July 2011
- 16 participants
- 868 discussions

[metrics-web/master] Enable downloading all descriptors referenced by a consensus.
by karsten@torproject.org 21 Jul '11
by karsten@torproject.org 21 Jul '11
21 Jul '11
commit cfa54b8f076eced634d484e2cdaa4af84ab477fc
Author: Karsten Loesing <karsten.loesing(a)gmx.net>
Date: Thu Jul 21 15:17:03 2011 +0200
Enable downloading all descriptors referenced by a consensus.
---
.../ernie/web/ServerDescriptorServlet.java | 138 +++++++++++++++-----
1 files changed, 104 insertions(+), 34 deletions(-)
diff --git a/src/org/torproject/ernie/web/ServerDescriptorServlet.java b/src/org/torproject/ernie/web/ServerDescriptorServlet.java
index 960bd75..1db68c4 100644
--- a/src/org/torproject/ernie/web/ServerDescriptorServlet.java
+++ b/src/org/torproject/ernie/web/ServerDescriptorServlet.java
@@ -2,6 +2,8 @@ package org.torproject.ernie.web;
import java.io.*;
import java.sql.*;
+import java.text.*;
+import java.util.*;
import java.util.logging.*;
import java.util.regex.*;
@@ -36,56 +38,124 @@ public class ServerDescriptorServlet extends HttpServlet {
HttpServletResponse response) throws IOException,
ServletException {
- /* Check desc-id parameter. */
+ /* Read desc-id and/or valid-after parameters. */
+ String validAfterParameter = request.getParameter("valid-after");
String descIdParameter = request.getParameter("desc-id");
- if (descIdParameter == null || descIdParameter.length() < 8 ||
- descIdParameter.length() > 40) {
- response.sendError(HttpServletResponse.SC_BAD_REQUEST);
- return;
- }
- String descId = descIdParameter.toLowerCase();
- Pattern descIdPattern = Pattern.compile("^[0-9a-f]+$");
- Matcher descIdMatcher = descIdPattern.matcher(descId);
- if (!descIdMatcher.matches()) {
- response.sendError(HttpServletResponse.SC_BAD_REQUEST);
- return;
- }
- /* Look up descriptor in the database. */
- String descriptor = null;
- byte[] rawDescriptor = null;
- try {
- Connection conn = ds.getConnection();
- Statement statement = conn.createStatement();
- String query = "SELECT descriptor, rawdesc FROM descriptor "
- + "WHERE descriptor LIKE '" + descId + "%'";
- ResultSet rs = statement.executeQuery(query);
- if (rs.next()) {
- descriptor = rs.getString(1);
- rawDescriptor = rs.getBytes(2);
+ /* See if we were given a desc-id parameter. If so, look up this
+ * descriptor and return it. */
+ List<byte[]> rawDescriptors = new ArrayList<byte[]>();
+ String filename = null;
+ if (descIdParameter != null && validAfterParameter == null) {
+ if (descIdParameter.length() < 8 ||
+ descIdParameter.length() > 40) {
+ response.sendError(HttpServletResponse.SC_BAD_REQUEST);
+ return;
+ }
+ String descId = descIdParameter.toLowerCase();
+ Pattern descIdPattern = Pattern.compile("^[0-9a-f]+$");
+ Matcher descIdMatcher = descIdPattern.matcher(descId);
+ if (!descIdMatcher.matches()) {
+ response.sendError(HttpServletResponse.SC_BAD_REQUEST);
+ return;
+ }
+
+ /* Look up descriptor in the database. */
+ try {
+ Connection conn = ds.getConnection();
+ Statement statement = conn.createStatement();
+ String query = "SELECT descriptor, rawdesc FROM descriptor "
+ + "WHERE descriptor LIKE '" + descId + "%'";
+ ResultSet rs = statement.executeQuery(query);
+ if (rs.next()) {
+ filename = rs.getString(1);
+ rawDescriptors.add(rs.getBytes(2));
+ }
+ rs.close();
+ statement.close();
+ conn.close();
+ } catch (SQLException e) {
+ response.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
+ return;
}
- rs.close();
- statement.close();
- conn.close();
- } catch (SQLException e) {
- response.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
+
+ /* See if we were given a valid-after parameter. If so, return all
+ * descriptors referenced from the consensus published at that
+ * time. */
+ } else if (descIdParameter == null && validAfterParameter != null) {
+ if (validAfterParameter.length() !=
+ "yyyy-MM-dd-HH-mm-ss".length()) {
+ response.sendError(HttpServletResponse.SC_BAD_REQUEST);
+ return;
+ }
+ SimpleDateFormat parameterFormat = new SimpleDateFormat(
+ "yyyy-MM-dd-HH-mm-ss");
+ parameterFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
+ long parsedTimestamp = -1L;
+ try {
+ parsedTimestamp = parameterFormat.parse(validAfterParameter).
+ getTime();
+ } catch (ParseException e) {
+ response.sendError(HttpServletResponse.SC_BAD_REQUEST);
+ return;
+ }
+ if (parsedTimestamp < 0L) {
+ response.sendError(HttpServletResponse.SC_BAD_REQUEST);
+ return;
+ }
+ filename = validAfterParameter + "-descriptors";
+
+ /* Look up descriptors in the database. */
+ SimpleDateFormat databaseFormat = new SimpleDateFormat(
+ "yyyy-MM-dd HH:mm:ss");
+ databaseFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
+ String databaseParameter = databaseFormat.format(parsedTimestamp);
+ try {
+ Connection conn = this.ds.getConnection();
+ Statement statement = conn.createStatement();
+ String query = "SELECT descriptor.rawdesc FROM statusentry "
+ + "JOIN descriptor ON statusentry.descriptor = "
+ + "descriptor.descriptor WHERE validafter = '"
+ + databaseParameter + "'";
+ ResultSet rs = statement.executeQuery(query);
+ while (rs.next()) {
+ rawDescriptors.add(rs.getBytes(1));
+ }
+ rs.close();
+ statement.close();
+ conn.close();
+ } catch (SQLException e) {
+ response.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
+ return;
+ }
+
+ /* Return an error if neither desc-id nor valid-after parameter was
+ * given (or both of them). */
+ } else {
+ response.sendError(HttpServletResponse.SC_BAD_REQUEST);
return;
}
/* Write response. */
- if (rawDescriptor == null) {
+ if (rawDescriptors.size() == 0) {
response.sendError(HttpServletResponse.SC_NOT_FOUND);
return;
}
try {
response.setContentType("text/plain");
+ int responseLength = 0;
+ for (byte[] rawDescriptor : rawDescriptors) {
+ responseLength += rawDescriptor.length;
+ }
response.setHeader("Content-Length", String.valueOf(
- rawDescriptor.length));
+ responseLength));
response.setHeader("Content-Disposition", "inline; filename=\""
- + descriptor + "\"");
+ + filename + "\"");
BufferedOutputStream output = new BufferedOutputStream(
response.getOutputStream());
- output.write(rawDescriptor);
+ for (byte[] rawDescriptor : rawDescriptors) {
+ output.write(rawDescriptor);
+ }
output.flush();
output.close();
} finally {
1
0

[torspec/master] Spec changes for proposal 181 (client-side optimistic data)
by nickm@torproject.org 21 Jul '11
by nickm@torproject.org 21 Jul '11
21 Jul '11
commit 4212db3cb902a368199d96b3483f4ce15ce4cfed
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Wed Jul 20 11:08:09 2011 -0400
Spec changes for proposal 181 (client-side optimistic data)
---
dir-spec.txt | 5 +++++
proposals/000-index.txt | 4 ++--
proposals/181-optimistic-data-client.txt | 3 ++-
socks-extensions.txt | 13 +++++++++++++
4 files changed, 22 insertions(+), 3 deletions(-)
diff --git a/dir-spec.txt b/dir-spec.txt
index a4dd14f..9a22323 100644
--- a/dir-spec.txt
+++ b/dir-spec.txt
@@ -1207,6 +1207,11 @@
parameters governing behavior" in path-spec.txt for a series of
circuit build time related consensus params.
+ "UseOptimisticData" -- If set to zero, clients by default
+ shouldn't try to send optimistic data to servers until they have
+ received a RELAY_CONNECTED cell.
+ Min: 0, Max: 1
+
The authority section of a vote contains the following items, followed
in turn by the authority's current key certificate:
diff --git a/proposals/000-index.txt b/proposals/000-index.txt
index bd952ad..97248b8 100644
--- a/proposals/000-index.txt
+++ b/proposals/000-index.txt
@@ -101,7 +101,7 @@ Proposals by number:
178 Require majority of authorities to vote for consensus parameters [OPEN]
179 TLS certificate and parameter normalization [DRAFT]
180 Pluggable transports for circumvention [OPEN]
-181 Optimistic Data for Tor: Client Side [OPEN]
+181 Optimistic Data for Tor: Client Side [CLOSED]
182 Credit Bucket [DRAFT]
@@ -133,7 +133,6 @@ Proposals by status:
177 Abstaining from votes on individual flags [for 0.2.3.x]
178 Require majority of authorities to vote for consensus parameters [for 0.2.3.x]
180 Pluggable transports for circumvention [for 0.2.3.x]
- 181 Optimistic Data for Tor: Client Side
ACCEPTED:
110 Avoiding infinite length circuits [for 0.2.3.x] [in 0.2.1.3-alpha]
117 IPv6 exits [for 0.2.3.x]
@@ -186,6 +185,7 @@ Proposals by status:
167 Vote on network parameters in consensus [in 0.2.2]
171 Separate streams across circuits by connection metadata [in 0.2.3.3-alpha]
174 Optimistic Data for Tor: Server Side [in 0.2.3.1-alpha]
+ 181 Optimistic Data for Tor: Client Side [in 0.2.3.3-alpha]
SUPERSEDED:
112 Bring Back Pathlen Coin Weight
113 Simplifying directory authority administration
diff --git a/proposals/181-optimistic-data-client.txt b/proposals/181-optimistic-data-client.txt
index 733b8a1..6d0a929 100644
--- a/proposals/181-optimistic-data-client.txt
+++ b/proposals/181-optimistic-data-client.txt
@@ -2,7 +2,8 @@ Filename: 181-optimistic-data-client.txt
Title: Optimistic Data for Tor: Client Side
Author: Ian Goldberg
Created: 2-Jun-2011
-Status: Open
+Status: Closed
+Implemented-In: 0.2.3.3-alpha
Overview:
diff --git a/socks-extensions.txt b/socks-extensions.txt
index f587d9c..b9f070a 100644
--- a/socks-extensions.txt
+++ b/socks-extensions.txt
@@ -75,6 +75,19 @@ Tor's extensions to the SOCKS protocol
misconfigured. This is helpful for the many users who mistakenly try to
use Tor as an HTTP proxy instead of a SOCKS proxy.
+5. Optimistic data
+
+ Tor allows SOCKS clients to send connection data before Tor has sent a
+ SOCKS response. When using an exit node that supports "optimistic data",
+ Tor will send such data to the server without waiting to see whether the
+ connection attempt succeeds. This behavior can save a single round-trip
+ time when starting connections with a protocol where the client speaks
+ first (like HTTP). Clients that do this must be ready to hear that
+ their connection has succeeded or failed _after_ they have sent the
+ data.
+
+
+
References:
[1] http://archive.socks.permeo.com/protocol/socks4.protocol
[2] http://archive.socks.permeo.com/protocol/socks4a.protocol
1
0

21 Jul '11
commit a2bd0397ff2388a6e5a09e0cb8253f4dccf63e21
Author: Ian Goldberg <iang(a)cs.uwaterloo.ca>
Date: Thu Jul 21 09:49:00 2011 -0400
Improve log messages for optimistic data retry
---
src/or/connection_edge.c | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c
index a7e3c16..4d3e254 100644
--- a/src/or/connection_edge.c
+++ b/src/or/connection_edge.c
@@ -2441,8 +2441,10 @@ connection_ap_handshake_send_begin(edge_connection_t *ap_conn)
if ((connection_get_inbuf_len(TO_CONN(ap_conn)) ||
ap_conn->sending_optimistic_data) &&
connection_ap_supports_optimistic_data(ap_conn)) {
- log_info(LD_APP, "Sending up to %ld bytes of queued-up data",
- connection_get_inbuf_len(TO_CONN(ap_conn)));
+ log_info(LD_APP, "Sending up to %ld + %ld bytes of queued-up data",
+ connection_get_inbuf_len(TO_CONN(ap_conn)),
+ ap_conn->sending_optimistic_data ?
+ generic_buffer_len(ap_conn->sending_optimistic_data) : 0);
if (connection_edge_package_raw_inbuf(ap_conn, 1, NULL) < 0) {
connection_mark_for_close(TO_CONN(ap_conn));
}
1
0

21 Jul '11
commit 2f0fadbe8bc8085558acb654e9e549e769e7401e
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Thu Jul 21 08:40:25 2011 -0400
Add src/test/test{-child}.exe to gitignore. bug3626
---
.gitignore | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
index 867a97d..610965b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -146,6 +146,8 @@
/src/test/Makefile.in
/src/test/test
/src/test/test-child
+/src/test/test.exe
+/src/test/test-child.exe
# /src/tools/
1
0

r24923: {website} revert my changes so that the website builds again (website/trunk)
by Runa Sandvik 21 Jul '11
by Runa Sandvik 21 Jul '11
21 Jul '11
Author: runa
Date: 2011-07-21 10:00:37 +0000 (Thu, 21 Jul 2011)
New Revision: 24923
Modified:
website/trunk/Makefile.common
Log:
revert my changes so that the website builds again
Modified: website/trunk/Makefile.common
===================================================================
--- website/trunk/Makefile.common 2011-07-21 08:48:17 UTC (rev 24922)
+++ website/trunk/Makefile.common 2011-07-21 10:00:37 UTC (rev 24923)
@@ -18,7 +18,7 @@
-D STABLETAG=$(STABLETAG)
#LANGS=ar bms de en es et fa it fi fr ja ko nl no pl pt ru se tr zh-cn
-LANGS=en ar ar-sa es fr hu ru pl da it fa de fi vn cy zh-cn pt pt-br id nl
+LANGS=en ar es fr ru pl da it fa de fi vn cy zh-cn pt pt-br id nl
WMLFILES=$(wildcard $(patsubst %, %/*.wml, $(LANGS)))
WMIFILES=$(wildcard $(patsubst %, %/*.wmi, $(LANGS)) $(WMLBASE)/include/*.wmi )
@@ -35,9 +35,6 @@
%.html.ar: ar/%.wml en/%.wml
lang=`dirname $<` && wml $(WMLOPT) -I $$lang -I $(WMLBASE)/$$lang -D LANG=$$lang $< -o $@
-%.html.ar-sa: ar-sa/%.wml en/%.wml
- lang=`dirname $<` && wml $(WMLOPT) -I $$lang -I $(WMLBASE)/$$lang -D LANG=$$lang $< -o $@
-
%.html.bms: bms/%.wml en/%.wml
lang=`dirname $<` && wml $(WMLOPT) -I $$lang -I $(WMLBASE)/$$lang -D LANG=$$lang $< -o $@
@@ -56,9 +53,6 @@
%.html.fa: fa/%.wml en/%.wml
lang=`dirname $<` && wml $(WMLOPT) -I $$lang -I $(WMLBASE)/$$lang -D LANG=$$lang $< -o $@
-%.html.hu: hu/%.wml en/%.wml
- lang=`dirname $<` && wml $(WMLOPT) -I $$lang -I $(WMLBASE)/$$lang -D LANG=$$lang $< -o $@
-
%.html.id: id/%.wml en/%.wml
lang=`dirname $<` && wml $(WMLOPT) -I $$lang -I $(WMLBASE)/$$lang -D LANG=$$lang $< -o $@
@@ -121,13 +115,6 @@
wml $(WMLOPT) -I $$lang -I $(WMLBASE)/$$lang -D LANG=$$lang $< -o $$OUT --depend | tee $$tmpfile > $@ && \
sed -e s',\(^[^ ]*\):,.deps/\1.d:,' < $$tmpfile >> $@ && \
rm -f $$tmpfile
-.deps/%.html.ar-sa.d: ar-sa/%.wml .deps/.stamp
- tmpfile=`mktemp -t tmp.XXXXXXX` \
- lang=`dirname $<` && \
- OUT=`echo $@ | sed -e 's,\.deps/\(.*\)\.d$$,\1,'` && \
- wml $(WMLOPT) -I $$lang -I $(WMLBASE)/$$lang -D LANG=$$lang $< -o $$OUT --depend | tee $$tmpfile > $@ && \
- sed -e s',\(^[^ ]*\):,.deps/\1.d:,' < $$tmpfile >> $@ && \
- rm -f $$tmpfile
.deps/%.html.bms.d: bms/%.wml .deps/.stamp
tmpfile=`mktemp -t tmp.XXXXXXX` \
lang=`dirname $<` && \
@@ -205,13 +192,6 @@
wml $(WMLOPT) -I $$lang -I $(WMLBASE)/$$lang -D LANG=$$lang $< -o $$OUT --depend | tee $$tmpfile > $@ && \
sed -e s',\(^[^ ]*\):,.deps/\1.d:,' < $$tmpfile >> $@ && \
rm -f $$tmpfile
-.deps/%.html.hu.d: hu/%.wml .deps/.stamp
- tmpfile=`mktemp -t tmp.XXXXXXX` \
- lang=`dirname $<` && \
- OUT=`echo $@ | sed -e 's,\.deps/\(.*\)\.d$$,\1,'` && \
- wml $(WMLOPT) -I $$lang -I $(WMLBASE)/$$lang -D LANG=$$lang $< -o $$OUT --depend | tee $$tmpfile > $@ && \
- sed -e s',\(^[^ ]*\):,.deps/\1.d:,' < $$tmpfile >> $@ && \
- rm -f $$tmpfile
.deps/%.html.ja.d: ja/%.wml .deps/.stamp
tmpfile=`mktemp -t tmp.XXXXXXX` \
lang=`dirname $<` && \
1
0
Author: runa
Date: 2011-07-21 08:48:17 +0000 (Thu, 21 Jul 2011)
New Revision: 24922
Added:
website/trunk/about/ar-sa/
website/trunk/about/ar-sa/sidenav.wmi
website/trunk/about/ar-sa/translators.wml
website/trunk/about/fa/sponsors.wml
website/trunk/docs/ar-sa/
website/trunk/docs/ar-sa/installguide.wml
website/trunk/docs/ar-sa/sidenav.wmi
website/trunk/docs/fa/N900.wml
website/trunk/download/fa/
website/trunk/download/fa/thankyou.wml
website/trunk/getinvolved/ar-sa/
website/trunk/getinvolved/ar-sa/mirrors.wml
website/trunk/getinvolved/ar-sa/sidenav.wmi
website/trunk/getinvolved/hu/
website/trunk/getinvolved/hu/mirrors.wml
website/trunk/getinvolved/hu/sidenav.wmi
website/trunk/projects/ar-sa/
website/trunk/projects/ar-sa/puppettor.wml
website/trunk/projects/ar-sa/sidenav.wmi
website/trunk/torbutton/hu/
website/trunk/torbutton/hu/index.wml
website/trunk/torbutton/hu/sidenav.wmi
Modified:
website/trunk/Makefile.common
website/trunk/docs/ar/bridges.wml
website/trunk/docs/ar/debian.wml
website/trunk/docs/de/bridges.wml
website/trunk/docs/de/tor-doc-windows.wml
website/trunk/docs/fi/debian.wml
website/trunk/docs/fr/bridges.wml
website/trunk/docs/pl/bridges.wml
website/trunk/docs/pl/debian.wml
website/trunk/docs/pl/faq.wml
website/trunk/donate/pl/donate.wml
website/trunk/download/de/download.wml
website/trunk/download/pl/download.wml
website/trunk/getinvolved/pl/volunteer.wml
Log:
new languages for the website, updated translations
Modified: website/trunk/Makefile.common
===================================================================
--- website/trunk/Makefile.common 2011-07-21 08:15:36 UTC (rev 24921)
+++ website/trunk/Makefile.common 2011-07-21 08:48:17 UTC (rev 24922)
@@ -18,7 +18,7 @@
-D STABLETAG=$(STABLETAG)
#LANGS=ar bms de en es et fa it fi fr ja ko nl no pl pt ru se tr zh-cn
-LANGS=en ar es fr ru pl da it fa de fi vn cy zh-cn pt pt-br id nl
+LANGS=en ar ar-sa es fr hu ru pl da it fa de fi vn cy zh-cn pt pt-br id nl
WMLFILES=$(wildcard $(patsubst %, %/*.wml, $(LANGS)))
WMIFILES=$(wildcard $(patsubst %, %/*.wmi, $(LANGS)) $(WMLBASE)/include/*.wmi )
@@ -35,6 +35,9 @@
%.html.ar: ar/%.wml en/%.wml
lang=`dirname $<` && wml $(WMLOPT) -I $$lang -I $(WMLBASE)/$$lang -D LANG=$$lang $< -o $@
+%.html.ar-sa: ar-sa/%.wml en/%.wml
+ lang=`dirname $<` && wml $(WMLOPT) -I $$lang -I $(WMLBASE)/$$lang -D LANG=$$lang $< -o $@
+
%.html.bms: bms/%.wml en/%.wml
lang=`dirname $<` && wml $(WMLOPT) -I $$lang -I $(WMLBASE)/$$lang -D LANG=$$lang $< -o $@
@@ -53,6 +56,9 @@
%.html.fa: fa/%.wml en/%.wml
lang=`dirname $<` && wml $(WMLOPT) -I $$lang -I $(WMLBASE)/$$lang -D LANG=$$lang $< -o $@
+%.html.hu: hu/%.wml en/%.wml
+ lang=`dirname $<` && wml $(WMLOPT) -I $$lang -I $(WMLBASE)/$$lang -D LANG=$$lang $< -o $@
+
%.html.id: id/%.wml en/%.wml
lang=`dirname $<` && wml $(WMLOPT) -I $$lang -I $(WMLBASE)/$$lang -D LANG=$$lang $< -o $@
@@ -115,6 +121,13 @@
wml $(WMLOPT) -I $$lang -I $(WMLBASE)/$$lang -D LANG=$$lang $< -o $$OUT --depend | tee $$tmpfile > $@ && \
sed -e s',\(^[^ ]*\):,.deps/\1.d:,' < $$tmpfile >> $@ && \
rm -f $$tmpfile
+.deps/%.html.ar-sa.d: ar-sa/%.wml .deps/.stamp
+ tmpfile=`mktemp -t tmp.XXXXXXX` \
+ lang=`dirname $<` && \
+ OUT=`echo $@ | sed -e 's,\.deps/\(.*\)\.d$$,\1,'` && \
+ wml $(WMLOPT) -I $$lang -I $(WMLBASE)/$$lang -D LANG=$$lang $< -o $$OUT --depend | tee $$tmpfile > $@ && \
+ sed -e s',\(^[^ ]*\):,.deps/\1.d:,' < $$tmpfile >> $@ && \
+ rm -f $$tmpfile
.deps/%.html.bms.d: bms/%.wml .deps/.stamp
tmpfile=`mktemp -t tmp.XXXXXXX` \
lang=`dirname $<` && \
@@ -192,6 +205,13 @@
wml $(WMLOPT) -I $$lang -I $(WMLBASE)/$$lang -D LANG=$$lang $< -o $$OUT --depend | tee $$tmpfile > $@ && \
sed -e s',\(^[^ ]*\):,.deps/\1.d:,' < $$tmpfile >> $@ && \
rm -f $$tmpfile
+.deps/%.html.hu.d: hu/%.wml .deps/.stamp
+ tmpfile=`mktemp -t tmp.XXXXXXX` \
+ lang=`dirname $<` && \
+ OUT=`echo $@ | sed -e 's,\.deps/\(.*\)\.d$$,\1,'` && \
+ wml $(WMLOPT) -I $$lang -I $(WMLBASE)/$$lang -D LANG=$$lang $< -o $$OUT --depend | tee $$tmpfile > $@ && \
+ sed -e s',\(^[^ ]*\):,.deps/\1.d:,' < $$tmpfile >> $@ && \
+ rm -f $$tmpfile
.deps/%.html.ja.d: ja/%.wml .deps/.stamp
tmpfile=`mktemp -t tmp.XXXXXXX` \
lang=`dirname $<` && \
Added: website/trunk/about/ar-sa/sidenav.wmi
===================================================================
--- website/trunk/about/ar-sa/sidenav.wmi (rev 0)
+++ website/trunk/about/ar-sa/sidenav.wmi 2011-07-21 08:48:17 UTC (rev 24922)
@@ -0,0 +1,56 @@
+## translation metadata
+# Revision: $Revision: 24336 $
+# Translation-Priority: 2-medium
+
+# this structure defines the side nav bar for the /about pages
+# and is the input for include/side.wmi
+
+# fields:
+#
+# url - the path to the wml page, as used the the <page> tag. This tag ensures
+# that links will point to the current language if supported, and alternately
+# the english version
+#
+# txt - the link text to be displayed. Different translations will
+# need to supply alternate txt
+
+<:
+ my $sidenav;
+ $sidenav = [
+ {'url' => 'about/overview',
+ 'txt' => 'Tor Overview',
+ },
+ {'url' => 'about/torusers',
+ 'txt' => 'Users of Tor',
+ },
+
+ {'url' => 'about/corepeople',
+ 'txt' => 'Tor People',
+ 'subelements' => [
+ {'url' => 'about/board',
+ 'txt' => 'Board of Directors',
+ },
+ {'url' => 'about/translators',
+ 'txt' => 'Translators',
+ },
+ {'url' => 'about/volunteers',
+ 'txt' => 'Volunteers',
+ },
+ {'url' => 'about/contributors',
+ 'txt' => 'Past Contributors',
+ }]
+ },
+ {'url' => 'about/sponsors',
+ 'txt' => 'Sponsors',
+ },
+ {'url' => 'about/financials',
+ 'txt' => 'Financial Reports',
+ },
+ {'url' => 'projects/projects',
+ 'txt' => 'Projects',
+ },
+ {'url' => 'docs/documentation',
+ 'txt' => 'Documentation',
+ },
+ ];
+:>
Added: website/trunk/about/ar-sa/translators.wml
===================================================================
--- website/trunk/about/ar-sa/translators.wml (rev 0)
+++ website/trunk/about/ar-sa/translators.wml 2011-07-21 08:48:17 UTC (rev 24922)
@@ -0,0 +1,45 @@
+
+
+
+
+
+## translation metadata
+# Revision: $Revision: 23729 $
+# Translation-Priority: 3-low
+#include "head.wmi" TITLE="Tor Project: Translators" CHARSET="UTF-8" ANNOUNCE_RSS="yes"
+<div id="content" class="clearfix">
+ <div id="breadcrumbs">
+ <a href="<page index>">Home » </a> <a href="<page
+about/overview>">About » </a> <a href="<page
+about/volunteers>">Translators</a>
+ </div>
+ <div id="maincol">
+ <h1>المترجمون</h1>
+<dl>
+<dt>Bogdan Drozdowski</dt><dd>Polish</dd>
+<dt>Tiago Faria</dt><dd>Portuguese.</dd>
+<dt>fredzupy</dt><dd>French</dd>
+<dt>Jens Kubieziel and Oliver Knapp</dt><dd>German</dd>
+<dt>Pei Hanru and bridgefish</dt><dd>Simplified Chinese</dd>
+<dt>Jan Reister</dt><dd>Italian</dd>
+<dt>ygrek and an anonymous translator</dt><dd>Russian</dd>
+<dt>Ghazal Teheri</dt><dd>Persian</dd>
+<dt>Htaike Htaike Aung</dt><dd>Burmese</dd>
+<dt>Osama Khalid</dt><dd>العربية</dd>
+<dt>Alexia Prichard</dt><dd>Spanish</dd>
+</dl>
+ </div>
+
+ <!-- END MAINCOL -->
+<div id = "sidecol">
+
+
+ #include "side.wmi"
+#include "info.wmi"
+</div>
+
+<!-- END SIDECOL -->
+</div>
+
+
+#include "foot.wmi"
Added: website/trunk/about/fa/sponsors.wml
===================================================================
--- website/trunk/about/fa/sponsors.wml (rev 0)
+++ website/trunk/about/fa/sponsors.wml 2011-07-21 08:48:17 UTC (rev 24922)
@@ -0,0 +1,102 @@
+
+
+
+
+
+## translation metadata
+# Revision: $Revision: 24829 $
+# Translation-Priority: 3-low
+#include "head.wmi" TITLE="Tor: Sponsors" CHARSET="UTF-8"
+<div id="content" class="clearfix">
+ <div id="breadcrumbs">
+ <a href="<page index>">خانه »</a> <a href="<page about/overview>">درباره ما
+»</a> <a href="<page about/sponsors>">حامیان</a>
+ </div>
+ <div id="maincol">
+ <h1> حامیان تور</h1>
+ <p>
+ پروژه تور
+ <a href="<page about/torusers>">تنوع کاربران</a>
+ به این معنی است که ما تنوع زیادی از منابع مالی داریم -- و همچنین ما مشتاق
+به تنوع و حتی بیشتر شدن این حمایتها داریم! نحوه حمایتهای مالی مابر اساس
+بودجه کل دریافت شده بطرز زیر تقسیم می شوند :
+ </p>
+
+ <h3><i>Magnoliophyta</i> (بیش از 1 میلیون دلار )</h3>
+ <ul>
+ <li> سازمان ناشناس غیر دولتی در آمریکا (2008-2011 )</li>
+ <li><a href="http://www.bbg.gov/">صدا و سیما</a> (2006-2011)</li>
+ </ul>
+
+ <h3><i>Liliopsida</i> (تا ۷۵۰ هزار دلار)</h3>
+ <ul>
+ <li><a href="http://www.sida.se/English/">Sida -- همکاری آژانس توسعه بین المللی
+سوئد</a> (2010-2011)</li>
+ </ul>
+
+ <h3><i>Asparagales</i> (تا $ 500K)</h3>
+ <ul>
+ <li><a href="http://www.internews.fr/">اینترنیوز اروپا</a> (2006-2008)</li>
+ <li><a href="http://nsf.gov/">بنیاد ملی علوم آمریکا از طریق دانشگاه</a> درکسل
+(2،009-2011 )</li>
+ </ul>
+
+ <h3><i>Alliaceae</i> (تا $ 200k)</h3>
+ <ul>
+ <li>شما و یا سازمان شما</li>
+ </ul>
+
+ <h3><i>سیرها</i> (تا ۱۰۰ هزار دلار)</h3>
+ <ul>
+ <li><a href="http://www.nlnet.nl/">NLnet بنیاد</a> (2008-2009)</li>
+ <li><a href="http://chacs.nrl.navy.mil/">آزمایشگاه تحقیقات نیروی دریایی</a>
+(2006-2010)</li>
+ <li>ناشناس آمریکایی ISP (2009-2011)</li>
+ </ul>
+
+ <h3><i>سیرها CEPA</i> (به دلار 50k)</h3>
+ <ul>
+ <li><a href="<page donate/donate>">بیش از ۶۰۰ فرد حقیقی کمکهای مالی افرادی مثل
+شما</a> (2006-2011)</li>
+ <li><a href="http://code.google.com/opensource/">گوگل</a> (2008-2009)</li>
+ <li><a href="http://code.google.com/soc/">تابستان گوگل </a> (2007-2011)</li>
+ <li><a href="http://www.hrw.org/"> سازمان دیده بان حقوق بشر</a> (2007)</li>
+ <li><a href="http://www.torfox.org/">Torfox</a> (2009)</li>
+ <li><a href="http://www.shinjiru.com/">Shinjiru فناوری</a> (2009-2011)</li>
+ </ul>
+
+ <h3>حامیان مالی گذشته</h3>
+ <p>ما از حمایت توسط حامیان مالی گذشته خود که ما را درحفظ 501 (ج) (3) پروژه
+تور و پیشرفت و رسیدن به اهداف بلند پروازانه این پروژه ما را یاری دادند کمال
+تشکر را داریم</p>
+ <ul>
+ <li><a href="https://www.eff.org/">بنیاد جبهه الکترونیک </a> (2004-2005)</li>
+ <li><a href="http://chacs.nrl.navy.mil/">DARPA و ONR از طریق آزمایشگاه تحقیقات
+نیروی</a> دریایی (2001-2006 )</li>
+ <li><a href="http://www.cyber-ta.org/">سایبر - TA پروژه</a> (2006-2008)</li>
+ <li>راه حل های امنیتی بل وارز (2006)</li>
+ <li><a href="http://www.omidyar.net/"> شبکه آنزیم گرانت امیدیار</a> (2006)</li>
+ <li><a
+href="http://seclab.cs.rice.edu/lab/2005/08/01/seclab-awarded-grant-to-study-secu…">NSF
+از طریق دانشگاه رایس</a> (2006-2007)</li>
+ </ul>
+ <p>تشکر می کنیم از شما و همه مردم و گروه هایی که با کمک خود این پروژه را ممکن
+ساختند را ساخته اند به خصوص به داوطلبانی که کمک های غیر مالی در بخشهای زیر
+ارایه دادند : برنامه نویسی ، آزمایش ، مستند ، آموزش ، تحقیق ، و رله شبکه
+تور
+ </p>
+ </div>
+
+ <!-- END MAINCOL -->
+<div id = "sidecol">
+
+
+ #include "side.wmi"
+#include "info.wmi"
+</div>
+
+<!-- END SIDECOL -->
+</div>
+
+
+#include "foot.wmi"
Modified: website/trunk/docs/ar/bridges.wml
===================================================================
--- website/trunk/docs/ar/bridges.wml 2011-07-21 08:15:36 UTC (rev 24921)
+++ website/trunk/docs/ar/bridges.wml 2011-07-21 08:48:17 UTC (rev 24922)
@@ -4,7 +4,7 @@
## translation metadata
-# Revision: $Revision: 24504 $
+# Revision: $Revision: 24916 $
# Translation-Priority: 1-high
#include "ar/head.wmi" TITLE="Tor Project: Bridges" CHARSET="UTF-8" STYLESHEET="css/master-rtl.css"
<div id="content" class="clearfix">
@@ -125,11 +125,11 @@
</p>
<pre>
Here are your bridge relays:
-
- bridge 60.16.182.53:9001 c9111bd74a710c0d25dda6b35e181f1aa7911133
- bridge 87.237.118.139:444 c18dde4804e8fcb48464341ca1375eb130453a39
- bridge 60.63.97.221:443 ab5c849ed5896d53052e43966ee9aba2ff92fb82
-
+
+ bridge 60.16.182.53:9001
+ bridge 87.237.118.139:444
+ bridge 60.63.97.221:443
+
</pre>
<p>
عندما تتلقى رسالة البريد الإلكتروني، يمكنك مواصلة ضبط ڤيداليا حسب الخطوات
Modified: website/trunk/docs/ar/debian.wml
===================================================================
--- website/trunk/docs/ar/debian.wml 2011-07-21 08:15:36 UTC (rev 24921)
+++ website/trunk/docs/ar/debian.wml 2011-07-21 08:48:17 UTC (rev 24922)
@@ -4,7 +4,7 @@
## translation metadata
-# Revision: $Revision: 24851 $
+# Revision: $Revision: 24910 $
# Translation-Priority: 3-low
#include "ar/head.wmi" TITLE="Tor Project: Debian/Ubuntu Instructions" CHARSET="UTF-8" STYLESHEET="css/master-rtl.css"
<div id="content" class="clearfix">
@@ -15,14 +15,13 @@
</div>
<div id="maincol">
<a id="debian"></a>
-<h2><a class="anchor" href="#debian">الخيار الأول: تور على دِبيان ليني أو دِبيان
-غيرالمستقرة أو دِبيان الإختبارية</a></h2>
+<h2><a class="anchor" href="#debian">Option one: Tor on Debian squeeze, lenny,
+Debian sid, or Debian testing</a></h2>
<br />
<p>
-إذا كنت تستعمل دِبيان المستقرة (ليني) أو غير المستقرة (sid) أو الإختبارية
-(سكوييز)، نفد فقط الأمر <br /> <tt>apt-get install tor tor-geoipdb</tt>
-بصلاحيات الجذر.
+If you're using Debian, just run<br /> <tt>apt-get install tor
+tor-geoipdb</tt> as root.
</p>
<p>
@@ -42,8 +41,9 @@
<br />
<p>
-<b>لا تستخدم حزم أوبنتو universe.</b> فهي لم تعد مدعومة وإصداراتها
-قديمة. وهذا يعني إفتقادها للإستقرار والإصلاحات الأمنية.
+<b>Do not use the packages in Ubuntu's universe.</b> In the past they have
+not reliably been updated. That means you could be missing stability and
+security fixes.
</p>
<p>
@@ -53,6 +53,7 @@
/etc/debian_version</tt>. Here's a quick mapping:
<ul>
<li> دِبيان غير المستقرة (sid) هي "sid"</li>
+<li> Debian testing is "wheezy"</li>
<li> دِبيان 6.0 (سكوييز) هي "squeeze"</li>
<li> دِبيان 5.0 (ليني) هي "lenny"</li>
<li> Ubuntu 11.04 is "natty"</li>
@@ -60,7 +61,6 @@
<li> أو 10.04 أو ترِسكال 4.0 هما "lucid"</li>
<li> أوبنتو 9.10 أو ترِسكال 3.5 هما "karmic"</li>
<li> أوبنتو 8.04 هي "hardy"</li>
-<li> أوبنتو 6.06 هي "dapper"</li>
</ul>
ثم أضف هذا السطر إلى <tt>/etc/apt/sources.list</tt> الملف:<br />
Added: website/trunk/docs/ar-sa/installguide.wml
===================================================================
--- website/trunk/docs/ar-sa/installguide.wml (rev 0)
+++ website/trunk/docs/ar-sa/installguide.wml 2011-07-21 08:48:17 UTC (rev 24922)
@@ -0,0 +1,34 @@
+
+
+
+
+
+## translation metadata
+# Revision: $Revision: 24868 $
+# Translation-Priority: 2-medium
+#include "head.wmi" TITLE="Tor Project: Installation Instructions" CHARSET="UTF-8"
+<div id="content" class="clearfix">
+ <div id="breadcrumbs">
+ صفحة <a href = "<Pageindex>"> الرئيسية »</ أ> صفحة <a href ="
+<Pagedocs/documentation> "> الوثائق» </ أ> صفحة <a href =
+"<Pagedocs/installguide>" > دلائل التثبيت </ أ>
+ </div>
+ <div id="maincol">
+ <h1>دليل تثبيت تور</h1>
+ <br>
+
+ </div>
+
+ <!-- END MAINCOL -->
+<div id = "sidecol">
+
+
+ #include "side.wmi"
+#include "info.wmi"
+</div>
+
+<!-- END SIDECOL -->
+</div>
+
+
+#include "foot.wmi"
Added: website/trunk/docs/ar-sa/sidenav.wmi
===================================================================
--- website/trunk/docs/ar-sa/sidenav.wmi (rev 0)
+++ website/trunk/docs/ar-sa/sidenav.wmi 2011-07-21 08:48:17 UTC (rev 24922)
@@ -0,0 +1,103 @@
+## translation metadata
+# Revision: $Revision: 24865 $
+# Translation-Priority: 2-medium
+
+# this structure defines the side nav bar for the /docs pages
+# and is the input for include/side.wmi
+
+# fields:
+#
+# url - the path to the wml page, as used the the <page> tag. This tag ensures
+# that links will point to the current language if supported, and alternately
+# the english version
+#
+# txt - the link text to be displayed. Different translations will
+# need to supply alternate txt
+
+<:
+ my $sidenav;
+ $sidenav = [
+ {'url' => 'docs/documentation',
+ 'txt' => 'Documentation Overview',
+ },
+ {
+ 'url' => 'docs/installguide',
+ 'txt' => 'Installation Guides',
+ 'subelements' => [
+ {'url' => 'docs/tor-doc-windows',
+ 'txt' => 'Installing on Windows',
+ },
+ {'url' => 'docs/tor-doc-unix',
+ 'txt' => 'Installing on Linux/BSD/Unix',
+ },
+ {'url' => 'docs/debian',
+ 'txt' => 'Installing Tor on Debian/Ubuntu',
+ },
+ {'url' => 'docs/debian-vidalia',
+ 'txt' => 'Installing Vidalia on Debian/Ubuntu',
+ },
+ {'url' => 'docs/tor-doc-osx',
+ 'txt' => 'Installing Tor on Mac OS X',
+ },
+ {'url' => 'docs/android',
+ 'txt' => 'Installing Tor on Android',
+ },
+ {'url' => 'docs/N900',
+ 'txt' => 'Installing Tor on Maemo/N900',
+ },
+ {'url' => 'docs/verifying-signatures',
+ 'txt' => 'Verify our GPG signatures',
+ },
+ {'url' => 'docs/tor-doc-web',
+ 'txt' => 'Configuring your browser to use Tor',
+ }],
+ },
+ {'url' => 'docs/manual',
+ 'txt' => 'Manuals',
+ 'subelements' => [
+ {'url' => 'docs/tor-doc-relay',
+ 'txt' => 'Configuring a Relay',
+ },
+ {'url' => 'docs/tor-hidden-service',
+ 'txt' => 'Configuring a Hidden Service',
+ },
+ {'url' => 'docs/bridges',
+ 'txt' => 'Configuring a Bridge Relay',
+ },
+ {'url' => 'docs/running-a-mirror',
+ 'txt' => 'Configuring a Mirror',
+ },
+ {'url' => 'docs/tor-manual',
+ 'txt' => 'Tor -stable Manual',
+ },
+ {'url' => 'docs/tor-manual-dev',
+ 'txt' => 'Tor -alpha Manual',
+ },
+ {'url' => 'docs/proxychain',
+ 'txt' => 'Configuring Tor to use a Proxy Server',
+ }],
+ },
+ {
+ 'url' => '<wiki>',
+ 'txt' => 'Tor Wiki',
+ },
+ {'url' => 'docs/faq',
+ 'txt' => 'General FAQ',
+ },
+ {'url' => 'torbutton/torbutton-faq',
+ 'txt' => 'Torbutton FAQ',
+ },
+ {'url' => 'docs/faq-abuse',
+ 'txt' => 'Abuse FAQ',
+ },
+ {'url' => 'docs/trademark-faq',
+ 'txt' => 'Trademark FAQ',
+ },
+ {'url' => 'eff/tor-legal-faq',
+ 'txt' => 'Tor Legal FAQ',
+ },
+ {'url' => 'eff/tor-dmca-response',
+ 'txt' => 'Tor DMCA Response',
+ },
+ ];
+:>
Modified: website/trunk/docs/de/bridges.wml
===================================================================
--- website/trunk/docs/de/bridges.wml 2011-07-21 08:15:36 UTC (rev 24921)
+++ website/trunk/docs/de/bridges.wml 2011-07-21 08:48:17 UTC (rev 24922)
@@ -4,7 +4,7 @@
## translation metadata
-# Revision: $Revision: 24504 $
+# Revision: $Revision: 24916 $
# Translation-Priority: 1-high
#include "de/head.wmi" TITLE="Tor Project: Bridges" CHARSET="UTF-8"
<div id="content" class="clearfix">
@@ -140,11 +140,11 @@
</p>
<pre>
Here are your bridge relays:
-
- bridge 60.16.182.53:9001 c9111bd74a710c0d25dda6b35e181f1aa7911133
- bridge 87.237.118.139:444 c18dde4804e8fcb48464341ca1375eb130453a39
- bridge 60.63.97.221:443 ab5c849ed5896d53052e43966ee9aba2ff92fb82
-
+
+ bridge 60.16.182.53:9001
+ bridge 87.237.118.139:444
+ bridge 60.63.97.221:443
+
</pre>
<p>
Sobald du die E-Mail mit den Bridge-Informationen erhalten hast, kannst du
Modified: website/trunk/docs/de/tor-doc-windows.wml
===================================================================
--- website/trunk/docs/de/tor-doc-windows.wml 2011-07-21 08:15:36 UTC (rev 24921)
+++ website/trunk/docs/de/tor-doc-windows.wml 2011-07-21 08:48:17 UTC (rev 24922)
@@ -14,7 +14,7 @@
docs/tor-doc-windows>">Windows-Client</a>
</div>
<div id="maincol">
- <h1><a href="<page index>">Tor</a> als Client auf Microsoft Windows ausführen</h1>
+ <h1><a href="<page index>">Tor</a> als Client auf Microsoft Windows Installieren</h1>
<br>
<p>
Added: website/trunk/docs/fa/N900.wml
===================================================================
--- website/trunk/docs/fa/N900.wml (rev 0)
+++ website/trunk/docs/fa/N900.wml 2011-07-21 08:48:17 UTC (rev 24922)
@@ -0,0 +1,169 @@
+
+
+
+
+
+## translation metadata
+# Revision: $Revision: 23689 $
+# Translation-Priority: 3-low
+#include "head.wmi" TITLE="Tor Project: N900 Instructions" CHARSET="UTF-8"
+<div id="content" class="clearfix">
+ <div id="breadcrumbs">
+ <a href="<page index>">خانه »</a> <a href="<page docs/documentation>">اسناد
+»</a> <a href="<page docs/N900>">N900</a>
+ </div>
+ <div id="maincol">
+ <a id="نرم افزار میمو"></a>
+ <h2><a class="anchor" href="#Maemo">نصب تور در Maemo</a></h2>
+ <br>
+ <p>
+ اگر شما از یک دستگاه مجهز یه نرم افزار میمو استفاده می کنید که <a
+href="#N900">N900</a>
+ نیست، ما پیشنهاد می کنیم بسته تور را از
+<a href="http://maemo.org/packages/view/tor/">نصب کنید</a> شما <a
+href="http://maemo.org/packages/view/tor/">را</a>
+پروژه تور این بسته را تولید نمی کند بلکه این بسته توسط جامعه میمو تولید و
+بروزرسانی می شود
+ </p>
+
+ <a id="N900"></a>
+ <h2><a class="anchor" href="#N900">نصب تور روی N900</a></h2>
+ <br>
+ <p>
+ دستورالعمل های زیر را باید به شما کمک کند
+<a href="https://garage.maemo.org/projects/tor-status">نصب</a> کنترلر و <a
+href="https://garage.maemo.org/projects/tor-status">تور تجربی </a> تور برای
+تلفن نوکیا N900 بسته بندی شده است. این پیکربندی در حال حاضرتست نشده
+است. مرورگر در این پیکربندی دکمه تور ندارد ونباید برای نیازهایی که از لحاظ
+امنیتی مهم هستند استفاده شود.
+ </p>
+
+ <p>
+ مدیریت نرم افزار را باز کنید: <br> <a
+href="$(IMGROOT)/N900/1_app_menu.png"><img alt="N900 منو برنامه"
+src="$(IMGROOT)/N900/1_app_menu-small.png"/></a>
+ </p>
+
+ <p>
+ روی منو مدیر برنامه در بالای صفحه نمایش کلیک کنید : <br> <a
+href="$(IMGROOT)/N900/2_app_manager.png"><img alt="N900 مدیر برنامه"
+src="$(IMGROOT)/N900/2_app_manager-small.png"/></a>
+ </p>
+
+ <p>
+ "کاتالوگ برنامه را انتخاب کنید: <br> <a
+href="$(IMGROOT)/N900/3_app_managermenu.png"><img alt="کاتالوگ نرم افزار
+N900" src="$(IMGROOT)/N900/3_app_managermenu-small.png"/></a>
+ </p>
+
+ <p>
+ دکمه'جدید' را فشار دهید برای فعال کردن مخزن توسعه اضافی میمو - <br> <small>
+توجه : این مخزن حاوی بسته های نرم افزاری آزمایش نشده است که ممکن است به
+دستگاه شما آسیب
+</small> برساند.
+ <small><br> مشاهده <a href="http://wiki.maemo.org/Extras-devel">
+مخزن توسعه اضافی</a>
+را برای برای جزئیات بیشتر ببینید. شما احتمالا باید مخزن توسعه اضافی را پس
+از نصب تور غیر فعال کنید .</small> <br> <a
+href="$(IMGROOT)/N900/4_catalog_list.png"><img alt="N900 لیست فروشگاه"
+src="$(IMGROOT)/N900/4_catalog_list-small.png"/></a>
+ </p>
+
+ <p>
+ اطلاعات زیر را در صفحه نمایش اضافی وارد کنید :
+ <p>
+ <pre>
+ Catalog name: Extras devel
+ Web address: http://repository.maemo.org/extras-devel/
+ Distribution: fremantle
+ Components: free non-free
+ </pre>
+ </p>
+ <br> اطمینان حاصل کنید که آیتم 'غیرفعال' بدون چک مارک است ، دکمه 'ذخیره' را
+بزنید، و برای به روز رسانی آماده شوید. <br> <a
+href="$(IMGROOT)/N900/5_new_catalog.png"><img alt="N900 جدید فروشگاه"
+src="$(IMGROOT)/N900/5_new_catalog-small.png"/></a>
+ </p>
+
+ <p>
+ 'دانلود' را فشار دهید در مدیریت اپلیکیشن : <br> <a
+href="$(IMGROOT)/N900/6_app_manager.png"><img alt="مدیر N900 APP"
+src="$(IMGROOT)/N900/6_app_manager-small.png"/></a>
+ </p>
+
+ <p>
+ شبکه مورد نظر را انتخاب کنید (یا توررا جستجو کنید) : <br> <a
+href="$(IMGROOT)/N900/7_app_categories.png"><img alt="دسته بندی برنامه N900"
+src="$(IMGROOT)/N900/7_app_categories-small.png"/></a>
+ </p>
+
+ <p>
+ پایین رفته و گزینه 'تور به وضعیت اپلت را انتخاب کنید <br> <a
+href="$(IMGROOT)/N900/8_app_list.png"><img alt="N900 لیست برنامه"
+src="$(IMGROOT)/N900/8_app_list-small.png"/></a>
+ </p>
+
+ <p>
+ با موارد قرارداد موافقت کنید و دکمه 'ادامه' را فشار دهید: <br> <a
+href="$(IMGROOT)/N900/9_disclaimer.png"><img alt="N900 قرارداد"
+src="$(IMGROOT)/N900/9_disclaimer-small.png"/></a>
+ </p>
+
+ <p>
+ وقتی نصب انجام شد ، مخازن اضافی توسعه را غیر فعال کنید و دستگاه را مجددا
+راه اندازی کنید: <br> <a href="$(IMGROOT)/N900/10_success.png"><img
+alt="N900 موفقیت" src="$(IMGROOT)/N900/10_success-small.png"/></a>
+ </p>
+
+ <p>
+ پس از راه اندازی مجدد سیستم ، ، منو وضعیت را باز کنید: <br> <a
+href="$(IMGROOT)/N900/11_after_rebooting.png"><img alt="N900 منو وضعیت پس از
+راه اندازی مجدد" src="$(IMGROOT)/N900/11_after_rebooting-small.png"/></a>
+ </p>
+
+ <p>
+ روتر پیاز "را از فهرست انتخاب کنید : <br> <a
+href="$(IMGROOT)/N900/12_status_menu.png"><img alt="انتخاب منو وضعیت N900"
+src="$(IMGROOT)/N900/12_status_menu-small.png"/></a>
+ </p>
+
+ <p>
+ مسیر یابی پیازی را فعال و 'ذخیره' را فشار دهید : <br> <a
+href="$(IMGROOT)/N900/13_enable_tor.png"><img alt="N900 فعالسازی تور"
+src="$(IMGROOT)/N900/13_enable_tor-small.png"/></a>
+ </p>
+
+ <p>
+ به آدرس زیر بروید <a href="https://check.torproject.org/">TorCheck</a> برای
+تایید آن که شما در حال مسیریابی ترافیک مرورگر از طریق «تور »هستید: <br> <a
+href="$(IMGROOT)/N900/14_check_tor.png"><img alt="N900 چک تور"
+src="$(IMGROOT)/N900/14_check_tor-small.png"/></a>
+ </p>
+
+ <p>
+ توجه داشته باشید که این فرایند ممکن است همیشه به شما آخرین نسخه پایدار تور
+رابه شما ندهد. علاوه بر این ، مرورگر وب نوکیا دکمه تور ندارد . این به این
+معنی است که در حالی که ممکن است برای دور زدن فیلترینگ مفید باشد، اما
+احتمالا برای وب گردی گمنام و قوی نامناسب است.
+ </p>
+
+ <hr style=";text-align:right;direction:rtl">
+
+ <p>اگر شما پیشنهادی برای بهبود محتوای این متن دارید ، لطفا <a href="<page
+about/contact>">آن را برای ما بفرستید</a> . با تشکر از شما</p>
+ </div>
+
+ <!-- END MAINCOL -->
+<div id = "sidecol">
+
+
+ #include "side.wmi"
+#include "info.wmi"
+</div>
+
+<!-- END SIDECOL -->
+</div>
+
+
+
+#include "foot.wmi"
Modified: website/trunk/docs/fi/debian.wml
===================================================================
--- website/trunk/docs/fi/debian.wml 2011-07-21 08:15:36 UTC (rev 24921)
+++ website/trunk/docs/fi/debian.wml 2011-07-21 08:48:17 UTC (rev 24922)
@@ -4,7 +4,7 @@
## translation metadata
-# Revision: $Revision: 24851 $
+# Revision: $Revision: 24910 $
# Translation-Priority: 3-low
#include "head.wmi" TITLE="Tor Project: Debian/Ubuntu Instructions" CHARSET="UTF-8"
<div id="content" class="clearfix">
@@ -15,13 +15,13 @@
</div>
<div id="maincol">
<a id="debian"></a>
-<h2><a class="anchor" href="#debian">Ensimmäinen vaihtoehto: Tor Debian lenny,
-Debian sid, tai Debian testing -versioissa</a></h2>
+<h2><a class="anchor" href="#debian">Option one: Tor on Debian squeeze, lenny,
+Debian sid, or Debian testing</a></h2>
<br />
<p>
-Jos käytät Debianin vakaata (lenny), epävakaata (sid) tai testausversiota
-(squeeze), anna roottina komento <tt>apt-get install tor tor-geoipdb</tt>.
+If you're using Debian, just run<br /> <tt>apt-get install tor
+tor-geoipdb</tt> as root.
</p>
<p>
@@ -42,9 +42,9 @@
<br />
<p>
-<b>Älä käytä Ubuntun universestä löytyviä paketteja.</b> Niitä ei ylläpidetä
-ja ne ovat vanhentuneita. Toisin sanoen menetät vakauden ja
-turvallisuuspäivitykset.
+<b>Do not use the packages in Ubuntu's universe.</b> In the past they have
+not reliably been updated. That means you could be missing stability and
+security fixes.
</p>
<p>
@@ -54,6 +54,7 @@
Tässä nopea kartoitus:
<ul>
<li> Debian unstable (sid) on "sid"</li>
+<li> Debian testing is "wheezy"</li>
<li> Debian 6.0 (squeeze) on "squeeze"</li>
<li> Debian 5.0 (lenny) on "lenny"</li>
<li> Ubuntu 11.04 is "natty"</li>
@@ -61,7 +62,6 @@
<li> Ubuntu 10.04 tai Trisquel 4.0 on "lucid"</li>
<li> Ubuntu 9.10 tai Trisquel 3.5 on "karmic"</li>
<li> Ubuntu 8.04 on "hardy"</li>
-<li> Ubuntu 6.06 on "dapper"</li>
</ul>
Lisää sitten tämä rivi tiedostoon <tt>/etc/apt/sources.list<tt> koneellasi:
Modified: website/trunk/docs/fr/bridges.wml
===================================================================
--- website/trunk/docs/fr/bridges.wml 2011-07-21 08:15:36 UTC (rev 24921)
+++ website/trunk/docs/fr/bridges.wml 2011-07-21 08:48:17 UTC (rev 24922)
@@ -4,7 +4,7 @@
## translation metadata
-# Revision: $Revision: 24504 $
+# Revision: $Revision: 24916 $
# Translation-Priority: 1-high
#include "head.wmi" TITLE="Tor Project: Bridges" CHARSET="UTF-8"
<div id="content" class="clearfix">
@@ -144,12 +144,12 @@
les ponts. Presque instantanément, vous recevrez une réponse qui comprend:
</p>
<pre>
- Voici vos relais-ponts:
-
- bridge 60.16.182.53:9001 c9111bd74a710c0d25dda6b35e181f1aa7911133
- bridge 87.237.118.139:444 c18dde4804e8fcb48464341ca1375eb130453a39
- bridge 60.63.97.221:443 ab5c849ed5896d53052e43966ee9aba2ff92fb82
-
+ Here are your bridge relays:
+
+ bridge 60.16.182.53:9001
+ bridge 87.237.118.139:444
+ bridge 60.63.97.221:443
+
</pre>
<p>
Une fois que vous avez reçu l'e-mail avec les informations sur les ponts,
Modified: website/trunk/docs/pl/bridges.wml
===================================================================
--- website/trunk/docs/pl/bridges.wml 2011-07-21 08:15:36 UTC (rev 24921)
+++ website/trunk/docs/pl/bridges.wml 2011-07-21 08:48:17 UTC (rev 24922)
@@ -4,7 +4,7 @@
## translation metadata
-# Revision: $Revision: 24504 $
+# Revision: $Revision: 24916 $
# Translation-Priority: 1-high
#include "pl/head.wmi" TITLE="Tor Project: Bridges" CHARSET="UTF-8"
<div id="content" class="clearfix">
@@ -137,11 +137,11 @@
</p>
<pre>
Here are your bridge relays:
-
- bridge 60.16.182.53:9001 c9111bd74a710c0d25dda6b35e181f1aa7911133
- bridge 87.237.118.139:444 c18dde4804e8fcb48464341ca1375eb130453a39
- bridge 60.63.97.221:443 ab5c849ed5896d53052e43966ee9aba2ff92fb82
-
+
+ bridge 60.16.182.53:9001
+ bridge 87.237.118.139:444
+ bridge 60.63.97.221:443
+
</pre>
<p>
Po otrzymaniu takiego listu z informacją o mostkach, możesz dalej
Modified: website/trunk/docs/pl/debian.wml
===================================================================
--- website/trunk/docs/pl/debian.wml 2011-07-21 08:15:36 UTC (rev 24921)
+++ website/trunk/docs/pl/debian.wml 2011-07-21 08:48:17 UTC (rev 24922)
@@ -4,7 +4,7 @@
## translation metadata
-# Revision: $Revision: 24851 $
+# Revision: $Revision: 24910 $
# Translation-Priority: 3-low
#include "pl/head.wmi" TITLE="Tor Project: Debian/Ubuntu Instructions" CHARSET="UTF-8"
<div id="content" class="clearfix">
@@ -15,14 +15,13 @@
</div>
<div id="maincol">
<a id="debian"></a>
-<h2><a class="anchor" href="#debian">Opcja pierwsza: Tor na Debianie lenny,
-Debianie sid lub Debianie testing</a></h2>
+<h2><a class="anchor" href="#debian">Option one: Tor on Debian squeeze, lenny,
+Debian sid, or Debian testing</a></h2>
<br />
<p>
-Jeśli używasz Debiana stabilnego (lenny), niestabilnego (sid), lub testowego
-(squeeze), uruchom po prostu<br /><tt>apt-get install tor tor-geoipdb</tt>
-jako root.
+If you're using Debian, just run<br /> <tt>apt-get install tor
+tor-geoipdb</tt> as root.
</p>
<p>
@@ -42,9 +41,9 @@
<br />
<p>
-<b>Nie używajcie paczek ze wszechświata Ubuntu.</b> Nikt się nimi nie
-zajmuje i są przestarzałe. To oznacza, że będziecie pozbawieni poprawek
-stabilności i bezpieczeństwa.
+<b>Do not use the packages in Ubuntu's universe.</b> In the past they have
+not reliably been updated. That means you could be missing stability and
+security fixes.
</p>
<p>
@@ -54,6 +53,7 @@
/etc/debian_version</tt>. Poniżej jest proste odwzorowanie:
<ul>
<li> Debian unstable (sid) to "sid"</li>
+<li> Debian testing is "wheezy"</li>
<li> Debian 6.0 (squeeze) to "squeeze"</li>
<li> Debian 5.0 (lenny) to "lenny"</li>
<li> Ubuntu 11.04 to "natty"</li>
@@ -61,7 +61,6 @@
<li> Ubuntu 10.04 lub Trisquel 4.0 to "lucid"</li>
<li> Ubuntu 9.10 lub Trisquel 3.5 to "karmic"</li>
<li> Ubuntu 8.04 to "hardy"</li>
-<li> Ubuntu 6.06 to "dapper"</li>
</ul>
Potem dodajcie tę linię do swojego pliku <tt>/etc/apt/sources.list</tt>:<br
Modified: website/trunk/docs/pl/faq.wml
===================================================================
--- website/trunk/docs/pl/faq.wml 2011-07-21 08:15:36 UTC (rev 24921)
+++ website/trunk/docs/pl/faq.wml 2011-07-21 08:48:17 UTC (rev 24922)
@@ -33,8 +33,8 @@
<li><a href="#Funding">Co Projekt Tor zrobiłby z większymi funduszami?</a></li>
<li><a href="#Metrics">Ilu ludzi używa Tora? Ile jest przekaźników lub węzłów
wyjściowych?</a></li>
- <li><a href="#SSLcertfingerprint">What are your SSL certificate
-fingerprints?</a></li>
+ <li><a href="#SSLcertfingerprint">Jakie są odciski palców Waszych certyfikatów
+SSL?</a></li>
</ul>
<p>Kompilacja i instalacja:</p>
Modified: website/trunk/donate/pl/donate.wml
===================================================================
--- website/trunk/donate/pl/donate.wml 2011-07-21 08:15:36 UTC (rev 24921)
+++ website/trunk/donate/pl/donate.wml 2011-07-21 08:48:17 UTC (rev 24922)
@@ -28,8 +28,8 @@
<li><a href="#amazon">Amazon Payments</a></li>
<li><a href="#google">Google Checkout</a></li>
<li><a href="#givv">Givv.org</a></li>
- <li class="last"><a href="#cash">checks, money orders, bank transfers, stock grants or other
-more sophisticated transactions</a></li>
+ <li class="last"><a href="#cash">czeki, przelewy, transfery bankowe, granty w akcjach lub
+poprzez inne, bardziej wyrafinowane transakcje</a></li>
</ul>
<p>Jeśli chcesz dokonać anonimowej dotacji, zrób to w sposób
anonimowy. Skontaktuj się z nami pod adresem donations(a)torproject.org, by
Modified: website/trunk/download/de/download.wml
===================================================================
--- website/trunk/download/de/download.wml 2011-07-21 08:15:36 UTC (rev 24921)
+++ website/trunk/download/de/download.wml 2011-07-21 08:48:17 UTC (rev 24922)
@@ -4,7 +4,7 @@
## translation metadata
-# Revision: $Revision: 24885 $
+# Revision: $Revision: 24908 $
# Translation-Priority: 3-low
#include "de/head.wmi" TITLE="Download Tor" CHARSET="UTF-8" ANNOUNCE_RSS="yes"
<div id="content" class="clearfix">
@@ -19,7 +19,7 @@
<p>...dann genügt es nicht, es nur zu installieren. Du solltest einige
Gewohnheiten ändern und die Software mit deinen vorhandenen Programmen neu
konfigurieren! Tor selbst ist <em>NICHT</em> alles, was du benötigst, um
-deine Anonymität zu wahren. Lese die <a href="<page
+deine Anonymität zu wahren. Lies die <a href="<page
download/download>#warning">vollständige Liste mit Warnungen</a>.
</p>
</div>
@@ -258,7 +258,7 @@
sicher im Internet zu surfen. Dieses Paket benötigt keine Installation. Nach
dem Entpacken kann es gleich ausgeführt werden. <a href="<page
projects/torbrowser>">Mehr & andere Sprachen »</a></li>
-<li>Lese hier wie du <a href="<page download/download-unix>">unsere
+<li>Lies hier wie du <a href="<page download/download-unix>">unsere
Verzeichnisse der Tor-Software</a> nutzen kannst.</li>
</ul>
</td>
@@ -424,10 +424,9 @@
desto weniger gefahrvoll ist es einer von vielen Tor-Nutzern zu sein.
</li>
-<li> Benütze nicht <a
+<li> Do not use <a
href="https://blog.torproject.org/blog/bittorrent-over-tor-isnt-good-idea">BitTorrent
-und Tor</a> zusammen, außer du verfügst über eine System wie <a
-href="http://tails.boum.org/">TAILS</a>.
+and Tor</a> together.
</li>
</ol>
<br>
Added: website/trunk/download/fa/thankyou.wml
===================================================================
--- website/trunk/download/fa/thankyou.wml (rev 0)
+++ website/trunk/download/fa/thankyou.wml 2011-07-21 08:48:17 UTC (rev 24922)
@@ -0,0 +1,108 @@
+
+
+
+
+ ## translation metadata
+# Revision: $Revision: 23689 $
+# Translation-Priority: 3-low
+#include "head.wmi" TITLE="Thank you for downloading Tor" CHARSET="UTF-8" ANNOUNCE_RSS="yes"
+<div id="content" class="clearfix">
+ <div id="breadcrumbs">
+ <a href="<page index>">صفحه اصلی »</a> <a href="<page
+download/download>">دانلود »</a> <a href="<page download/thankyou>">با تشکر
+از شما</a>
+ </div>
+
+ <h1>سپاس از اینکه تور را دانلود کردید</h1>
+ <p><strong>
+دانلود خود به طور خودکار باید در چند ثانیه آغاز شود، اما اگر نشد ، شما می
+توانید از طریق لینک مستقیم دانلود کنید
+<a href="#">توانید با</a> لینک مستقیم</strong> دانلود.</p>
+ <div id="maincol-left">
+ <div class="focus clearfix">
+ <h2>دستورالعمل های نصب برای سیستم عامل
+ Mac OS X</h2>
+ <div class="fakeol">1. </div>
+ <div class="instructions">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed lorem velit,
+faucibus non suscipit sit amet, iaculis sed lorem. Morbi nec nulla id felis
+dictum porta ut a lacus. Nunc vel est ut nisl tincidunt fermentum nec nec
+quam. In hac habitasse platea dictumst. Aliquam sagittis bibendum rhoncus.</div>
+ <div class="fakeol">2. </div>
+ <div class="instructions">Quisque tincidunt neque condimentum mauris suscipit posuere. Nullam ac nisl
+metus. Nunc vel est ut nisl tincidunt fermentum nec nec quam. In hac
+habitasse platea dictumst. Aliquam sagittis bibendum rhoncus.</div>
+ <div class="fakeol">3. </div>
+ <div class="instructions">Aliquam sagittis bibendum rhoncus. Lorem ipsum dolor sit amet, consectetur
+adipiscing elit. Sed lorem velit, faucibus non suscipit sit amet, iaculis
+sed lorem. Morbi nec nulla id felis dictum porta ut a lacus. Cras egestas
+lorem vitae arcu ullamcorper ut porttitor metus suscipit.</div>
+ <p class="continue"><a href="<page docs/tor-doc-osx>"> :دستورالعمل را کامل بخوانید</a> »</p>
+ </div>
+ <div class="toptwenty">
+ <div class="img-shadow">
+ <div class="sidenav-sub">
+ <h2>نیاز به راهنمایی دارید؟</h2>
+ <ul>
+ <li class="dropdown"><a href="<page docs/installguide>">:</a> راهنمای نصب و راه اندازی را مطالعه
+کنید</li>
+ <li class="dropdown"><a href="<page docs/faq>">پرسشهای متداول</a></li>
+ <li class="dropdown"><a href="http://wiki.torproject.org">Read the Tor Wiki</a></li>
+ <li class="dropdown"><a href="#">ایمیل پشتیبانی ما</a></li>
+ </ul>
+ </div>
+ </div>
+
+ <!-- END SIDENAV -->
+<div class="right">
+ <div class="img-shadow">
+ <div class="custom-infoblock">
+ <h2>آیا نرم افزار شما بخوبی نصب شده؟</h2>
+ <img class="project-icon" src="$(IMGROOT)/icon-default.jpg" alt="آیکون">
+ <h4>استفاده از تورچک برای اطمینان از نصب </h4>
+ <p>به آدرس زیر بروید <a
+href="http://check.torproject.org">check.torproject.org</a> تا ببینید که آیا
+نصب خود کار درست انجام شده ، شما در این مرحله توسط روتر پیاز تور محافظت می
+شوید.</p>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <!-- END MAINCOL -->
+<div id="sidecol-right">
+ <div class="img-shadow">
+ <div class="infoblock clearfix">
+ <h2>با اجرای برنامه رله روی کامپیوتر خود به پروژه تور کمک کنید</h2>
+ <p>We’re trying to reach 5,000 relays by 2011. Help support the Tor Project by
+<a href="<page docs/tor-doc-relay>">running your own</a>! It’s free and
+easy!</p>
+ <div class="fifty left toptwenty">
+ <p class="small"><em>جاری</em></p>
+ <p class="current-relay">3542</p>
+ </div>
+ <div class="fifty left toptwenty">
+ <p class="small"><em>هدف</em></p>
+ <p class="target-relay">5000</p>
+ </div>
+ </div>
+ </div>
+
+ <!-- END INFOBLOCK -->
+<div class="img-shadow">
+ <div class="infoblock">
+ <h2 class="bulb"> نکات مربوط به تور</h2>
+ <p>اگر با دانلود تور یک قدم به سمت امنیت برداشتید به شما تبریک می گوییم ، اما
+به یاد داشته باشید که تور فقط می تواند موثر باشد اگر شما از آن برای برنامه
+هایی که برای تورتوسعه یافته استفاده کنید</p>
+ </div>
+ </div>
+
+ <!-- END INFOBLOCK -->
+</div>
+
+ <!-- END SIDECOL -->
+</div>
+
+
+#include "foot.wmi"
Modified: website/trunk/download/pl/download.wml
===================================================================
--- website/trunk/download/pl/download.wml 2011-07-21 08:15:36 UTC (rev 24921)
+++ website/trunk/download/pl/download.wml 2011-07-21 08:48:17 UTC (rev 24922)
@@ -4,7 +4,7 @@
## translation metadata
-# Revision: $Revision: 24885 $
+# Revision: $Revision: 24908 $
# Translation-Priority: 3-low
#include "pl/head.wmi" TITLE="Download Tor" CHARSET="UTF-8" ANNOUNCE_RSS="yes"
<div id="content" class="clearfix">
@@ -103,8 +103,8 @@
Vidalią</strong>, która jest skonfigurowana, by być <a href="<page
docs/bridges>">mostkiem</a>, aby pomagać ocenzurowanym użytkownikom w
dostępie do sieci Tora.</li>
-<li>The <strong>Expert Bundle</strong> contains just Tor and nothing else.
-You'll need to configure Tor and all of your applications manually.</li>
+<li><strong>Wersja dla Ekspertów</strong> zawiera tylko Tora i nic poza
+tym. Musisz ręcznie skonfigurować Tora i wszystkie swoje aplikacje.</li>
</ul>
<p>Są dwie wersje każdej paczki, wydanie stabilne i alfa.Paczki stabilne są
tworzone, gdy wydaje się, że cechy i kod nie będą się zmieniać przez wiele
@@ -406,10 +406,9 @@
zainteresowania, tym mniej groźne jest to, że jesteś jednym z nich.
</li>
-<li> Nie używaj <a
-href="https://blog.torproject.org/blog/bittorrent-over-tor-isnt-good-idea">BitTorrenta
-i Tora</a> razem, chyba że używasz takigo systemu, jak <a
-href="http://tails.boum.org/">TAILS</a>.
+<li> Do not use <a
+href="https://blog.torproject.org/blog/bittorrent-over-tor-isnt-good-idea">BitTorrent
+and Tor</a> together.
</li>
</ol>
<br>
Added: website/trunk/getinvolved/ar-sa/mirrors.wml
===================================================================
--- website/trunk/getinvolved/ar-sa/mirrors.wml (rev 0)
+++ website/trunk/getinvolved/ar-sa/mirrors.wml 2011-07-21 08:48:17 UTC (rev 24922)
@@ -0,0 +1,60 @@
+
+
+
+
+
+## translation metadata
+# Revision: $Revision: 23689 $
+# Translation-Priority: 3-low
+#include "head.wmi" TITLE="Tor Project: Mirrors" CHARSET="UTF-8"
+<div id="content" class="clearfix">
+ <div id="breadcrumbs">
+ <a href="<page index>">Home » </a> <a href="<page
+getinvolved/mirrors>">Mirrors</a>
+ </div>
+ <div id="maincol">
+ <h2>تور : مرآة</h2>
+ <hr>
+
+ <p>
+ العنوان المعروف لهذا الموقع هو <a
+href="https://www.torproject.org/">https://www.torproject.org/</a>, ، ولكن
+هناك عدد قليل من المرايا لهذا الموقع في أماكن اخرى.
+ </p>
+
+ <p>
+ إذا كنت ترغب في تشغيل المرآة، يرجى زيارة الصفحة <a href =
+"<Pagedocs/running-a-mirror>"> وقراءة تعليمات تشغيل المرآة </ A>.
+ </p>
+
+ <table class="mirrors">
+ <tr>
+ <th>بلد</th>
+ <th>منظمة</th>
+ <th>الولاية</th>
+ <th>ftp</th>
+ <th>http dist/</th>
+ <th>HTTP موقع</th>
+ <th>https dist/</th>
+ <th>https موقع</th>
+ <th>rsync dist/</th>
+ <th>rsync موقع</th>
+ </tr>
+
+ #include "mirrors-table.wmi"
+</table>
+ </div>
+
+ <!-- END MAINCOL -->
+<div id = "sidecol">
+
+
+ #include "side.wmi"
+#include "info.wmi"
+</div>
+
+<!-- END SIDECOL -->
+</div>
+
+
+#include "foot.wmi"
Added: website/trunk/getinvolved/ar-sa/sidenav.wmi
===================================================================
--- website/trunk/getinvolved/ar-sa/sidenav.wmi (rev 0)
+++ website/trunk/getinvolved/ar-sa/sidenav.wmi 2011-07-21 08:48:17 UTC (rev 24922)
@@ -0,0 +1,32 @@
+#!/usr/bin/wml
+
+## translation metadata
+# Revision: $Revision: 24370 $
+# Translation-Priority: 2-medium
+
+# this structure defines the side nav bar for the /getinvolved pages
+# and is the input for include/side.wmi
+
+# fields:
+#
+# url - the path to the wml page, as used the the <page> tag. This tag ensures
+# that links will point to the current language if supported, and alternately
+# the english version
+#
+# txt - the link text to be displayed. Different translations will
+# need to supply alternate txt
+
+<:
+ my $sidenav;
+ $sidenav = [
+ {'url' => 'getinvolved/volunteer',
+ 'txt' => 'Get Involved',
+ },
+ {'url' => 'getinvolved/research',
+ 'txt' => 'Research',
+ },
+ {'url' => 'donate/donate',
+ 'txt' => 'Donate',
+ },
+ ];
+:>
Added: website/trunk/getinvolved/hu/mirrors.wml
===================================================================
--- website/trunk/getinvolved/hu/mirrors.wml (rev 0)
+++ website/trunk/getinvolved/hu/mirrors.wml 2011-07-21 08:48:17 UTC (rev 24922)
@@ -0,0 +1,60 @@
+
+
+
+
+
+## translation metadata
+# Revision: $Revision: 23689 $
+# Translation-Priority: 3-low
+#include "head.wmi" TITLE="Tor Project: Mirrors" CHARSET="UTF-8"
+<div id="content" class="clearfix">
+ <div id="breadcrumbs">
+ <a href="<page index>">Kezdőlap » </a> <a href="<page
+getinvolved/mirrors>">Tükrözések</a>
+ </div>
+ <div id="maincol">
+ <h2>Tor: Tükrözések</h2>
+ <hr>
+
+ <p>
+ A központi címe Tennek az oldalnak <a
+href="https://www.torproject.org/">https://www.torproject.org/</a>, de
+létezik több tükre ennek az oldalnak máshol is.
+ </p>
+
+ <p>
+ Ha szeretne tükrözést végezni kérjük <a href="<page
+docs/running-a-mirror>">olvassa el a tükrözési útmutatónkat</a>.
+ </p>
+
+ <table class="mirrors">
+ <tr>
+ <th>Ország</th>
+ <th>Szervezet</th>
+ <th>Állapot</th>
+ <th>ftp</th>
+ <th>http csomag/</th>
+ <th>http weboldal</th>
+ <th>http csomag/</th>
+ <th>http weboldal</th>
+ <th>rsync csomag/</th>
+ <th>rsync weboldal</th>
+ </tr>
+
+ #include "mirrors-table.wmi"
+</table>
+ </div>
+
+ <!-- END MAINCOL -->
+<div id = "sidecol">
+
+
+ #include "side.wmi"
+#include "info.wmi"
+</div>
+
+<!-- END SIDECOL -->
+</div>
+
+
+#include "foot.wmi"
Added: website/trunk/getinvolved/hu/sidenav.wmi
===================================================================
--- website/trunk/getinvolved/hu/sidenav.wmi (rev 0)
+++ website/trunk/getinvolved/hu/sidenav.wmi 2011-07-21 08:48:17 UTC (rev 24922)
@@ -0,0 +1,32 @@
+#!/usr/bin/wml
+
+## translation metadata
+# Revision: $Revision: 24370 $
+# Translation-Priority: 2-medium
+
+# this structure defines the side nav bar for the /getinvolved pages
+# and is the input for include/side.wmi
+
+# fields:
+#
+# url - the path to the wml page, as used the the <page> tag. This tag ensures
+# that links will point to the current language if supported, and alternately
+# the english version
+#
+# txt - the link text to be displayed. Different translations will
+# need to supply alternate txt
+
+<:
+ my $sidenav;
+ $sidenav = [
+ {'url' => 'getinvolved/volunteer',
+ 'txt' => 'Get Involved',
+ },
+ {'url' => 'getinvolved/research',
+ 'txt' => 'Research',
+ },
+ {'url' => 'donate/donate',
+ 'txt' => 'Donate',
+ },
+ ];
+:>
Modified: website/trunk/getinvolved/pl/volunteer.wml
===================================================================
--- website/trunk/getinvolved/pl/volunteer.wml 2011-07-21 08:15:36 UTC (rev 24921)
+++ website/trunk/getinvolved/pl/volunteer.wml 2011-07-21 08:48:17 UTC (rev 24922)
@@ -4,7 +4,7 @@
## translation metadata
-# Revision: $Revision: 24819 $
+# Revision: $Revision: 24911 $
# Translation-Priority: 4-optional
#include "pl/head.wmi" TITLE="Tor: Volunteer" CHARSET="UTF-8"
<div id="content" class="clearfix">
@@ -345,9 +345,9 @@
<a id="project-vidalia"></a>
<h3><a href="<page projects/vidalia>">Vidalia</a> (<a
-href="https://svn.torproject.org/vidalia/vidalia/trunk/">kod</a>, <a
-href="https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">śledzenie
-błędów</a>)</h3>
+href="https://gitweb.torproject.org/vidalia.git">code</a>, <a
+href="https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug
+tracker</a>)</h3>
<p>
Najczęściej używany interfejs użytkownika dla Tora. Matt Edman zaczął
@@ -365,9 +365,9 @@
<a id="project-arm"></a>
<h3><a href="http://www.atagar.com/arm/">Arm</a> (<a
-href="https://svn.torproject.org/svn/arm/trunk/">kod</a>, <a
-href="https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">śledzenie
-błędów</a>)</h3>
+href="https://gitweb.torproject.org/arm.git">code</a>, <a
+href="https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug
+tracker</a>)</h3>
<p>
Monitor Tora z linii poleceń. Bardzo aktywnie rozwijany przez swojego
@@ -383,10 +383,9 @@
<a id="project-orbot"></a>
<h3><a href="https://guardianproject.info/apps/orbot/">Orbot</a> (<a
-href="https://svn.torproject.org/svn/projects/android/trunk/Orbot/">kod</a>,
-<a
-href="https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">śledzenie
-błędów</a>)</h3>
+href="https://gitweb.torproject.org/orbot.git">code</a>, <a
+href="https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug
+tracker</a>)</h3>
<p>
Dostarcza Tora platformie Android. Był pod bardzo aktywnym rozwojem do
@@ -485,9 +484,9 @@
<a id="project-gettor"></a>
<h3><a
href="https://trac.torproject.org/projects/tor/wiki/projects/EmailAutoResponder">GetTor</a>
-(<a href="https://svn.torproject.org/svn/projects/gettor/">kod</a>, <a
-href="https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">śledzenie
-błędów</a>)</h3>
+(<a href="https://gitweb.torproject.org/gettor.git">code</a>, <a
+href="https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug
+tracker</a>)</h3>
<p>
System automatycznie odpowiadający na e-mail, dostarczający paczki Tora
@@ -1104,13 +1103,13 @@
</p>
<p>
- Większość bardziej interesujących funkcjonalności arma jest w jego <a
-href="https://svn.torproject.org/svn/arm/trunk/src/util/">narzędziach</a>,
-więc nie powinno być dużo pracy z oddzieleniem jego interfejsu od jego
-wnętrzności. Zamiast tego, ten projekt składałby się głównie z hakowania
-interfejsu użytkownika i eksperymentowania, wypróbowując różne interfejsy,
-aby znaleźć coś, co jest eleganckie i proste, ale pasuje do informacji,
-które można znaleźć w aktualnej aplikacji terminalowej.
+ The vast majority of arm's more interesting functionality lies in its
+backend <a
+href="https://gitweb.torproject.org/arm.git/tree/HEAD:/src/util">utilities</a>,
+so there should be little to no work decoupling the CLI from its backend.
+Instead, this project would mostly be UI hacking and experimentation, trying
+different interfaces to find something that's elegant and simple, but
+matches the information found in the current terminal application.
</p>
</li>
Added: website/trunk/projects/ar-sa/puppettor.wml
===================================================================
--- website/trunk/projects/ar-sa/puppettor.wml (rev 0)
+++ website/trunk/projects/ar-sa/puppettor.wml 2011-07-21 08:48:17 UTC (rev 24922)
@@ -0,0 +1,35 @@
+
+
+
+
+
+## translation metadata
+# Revision: $Revision: 23689 $
+# Translation-Priority: 3-low
+#include "head.wmi" TITLE="Tor Project: Projects Overview" CHARSET="UTF-8" ANNOUNCE_RSS="yes"
+<div id="content" class="clearfix">
+ <div id="breadcrumbs">
+ <a href="<page index>">Home » </a> <a href="<page
+projects/projects>">Projects » </a> <a href="<page
+projects/projects>">Sample Project</a>
+ </div>
+ <div id="maincol">
+
+ <h1>عينة المشروع تور</h1>
+ هنا بعض المعلومات
+
+ </div>
+
+ <!-- END MAINCOL -->
+<div id = "sidecol">
+
+
+ #include "side.wmi"
+#include "info.wmi"
+</div>
+
+<!-- END SIDECOL -->
+</div>
+
+
+#include "foot.wmi"
Added: website/trunk/projects/ar-sa/sidenav.wmi
===================================================================
--- website/trunk/projects/ar-sa/sidenav.wmi (rev 0)
+++ website/trunk/projects/ar-sa/sidenav.wmi 2011-07-21 08:48:17 UTC (rev 24922)
@@ -0,0 +1,55 @@
+#!/usr/bin/wml
+
+## translation metadata
+# Revision: $Revision: 24436 $
+# Translation-Priority: 2-medium
+
+# this structure defines the side nav bar for the /projects pages
+# and is the input for include/side.wmi
+
+# fields:
+#
+# name - the $WML_SRC_BASENAME of the file. It should uniquely identify the
+# page because at build-time it is used to determine what view of the
+# navigation menu to generate
+#
+# url - the path to the wml page, as used the the <page> tag. This tag ensures
+# that links will point to the current language if supported, and alternately
+# the english version
+#
+# txt - the link text to be displayed. Different translations will
+# need to supply alternate txt
+
+<:
+ my $sidenav;
+ $sidenav = [
+ {'url' => 'projects/projects',
+ 'txt' => 'Software & Services',
+ 'subelements' => [
+ {'url' => 'torbutton/index',
+ 'txt' => 'TorButton',
+ },
+ {'url' => 'projects/torbrowser',
+ 'txt' => 'Tor Browser Bundle',
+ },
+ {'url' => 'projects/vidalia',
+ 'txt' => 'Vidalia',
+ },
+ {'url' => 'projects/arm',
+ 'txt' => 'Arm',
+ },
+ {'url' => 'https://guardianproject.info/apps/orbot/',
+ 'txt' => 'Orbot',
+ },
+ {'url' => 'https://tails.boum.org/',
+ 'txt' => 'Tails',
+ },
+ {'url' => 'http://torstatus.blutmagie.de/',
+ 'txt' => 'TorStatus',
+ },
+ {'url' => 'https://metrics.torproject.org/',
+ 'txt' => 'Metrics Portal',
+ }
+ ]
+ }];
+:>
Added: website/trunk/torbutton/hu/index.wml
===================================================================
--- website/trunk/torbutton/hu/index.wml (rev 0)
+++ website/trunk/torbutton/hu/index.wml 2011-07-21 08:48:17 UTC (rev 24922)
@@ -0,0 +1,138 @@
+
+
+
+
+
+## translation metadata
+# Revision: $Revision: 24797 $
+# Translation-Priority: 3-low
+#include "head.wmi" TITLE="Tor Project: Torbutton" CHARSET="UTF-8" ANNOUNCE_RSS="yes"
+<div id="content" class="clearfix">
+ <div id="breadcrumbs">
+ <a href="<page index>">Kezdőlap » </a> <a href="<page
+torbutton/index>">Torbutton</a>
+ </div>
+ <div id="maincol">
+
+
+ <!-- PUT CONTENT AFTER THIS TAG -->
+<link rel="search" type="application/opensearchdescription+xml" title="Google Canada" href="search/google-ca.xml"/>
+ <link rel="search" type="application/opensearchdescription+xml" title="Google UK" href="search/google-uk.xml"/>
+ <link rel="search" type="application/opensearchdescription+xml" title="Google USA" href="search/google-us.xml"/>
+ <script type="text/javascript">
+
+ function addSearchProvider(prov) { try {
+window.external.AddSearchProvider(prov); } catch (e) { alert("Search plugins
+require Firefox 2"); return; } } function addEngine(name,ext,cat,pid) { if
+((typeof window.sidebar == "object") && (typeof
+window.sidebar.addSearchEngine == "function")) {
+window.sidebar.addSearchEngine( "http://mycroft.mozdev.org/install.php/" +
+pid + "/" + name + ".src", "http://mycroft.mozdev.org/install.php/" + pid +
+"/" + name + "."+ ext, name, cat ); } else { alert("Egy olyan böngészőre van
+szüksége, amely támogatja a Sherlock-ot ennek a kiegészítőnek a
+telepítéséhez."); } } function addOpenSearch(name,ext,cat,pid,meth) { if
+((typeof window.external == "object") && ((typeof
+window.external.AddSearchProvider == "unknown") || (typeof
+window.external.AddSearchProvider == "function"))) { if ((typeof
+window.external.AddSearchProvider == "unknown") && meth == "p") { alert("Ez
+a kiegészítő POST metódust használ, ami jelenleg nem támogatott az Internet
+Explorer OpenSearch megvalósításában."); } else {
+window.external.AddSearchProvider(
+"http://mycroft.mozdev.org/installos.php/" + pid + "/" + name + ".xml"); } }
+else { alert("Olyan böngészőre van szükésge amely támogatja az OpenSearch-öt
+a kiegészítő telepítéséhez."); } } function
+addOpenSearch2(name,ext,cat,pid,meth) { if ((typeof window.external ==
+"object") && ((typeof window.external.AddSearchProvider == "unknown") ||
+(typeof window.external.AddSearchProvider == "function"))) { if ((typeof
+window.external.AddSearchProvider == "unknown") && meth == "p") { alert("Ez
+a kiegészítő POST metódust használ, ami jelenleg nem támogatott az Internet
+Explorer OpenSearch megvalósításában."); } else {
+window.external.AddSearchProvider(
+"http://torbutton.torproject.org/dev/search/" + name + ".xml"); } } else {
+alert("Olyan böngészőre van szükésge amely támogatja az OpenSearch-öt a
+kiegészítő telepítéséhez."); } } function install (aEvent) { var params = {
+"Torbutton": { URL: aEvent.target.href, Hash:
+aEvent.target.getAttribute("hash"), toString: function () { return this.URL;
+} } }; InstallTrigger.install(params); return false; }
+
+
+ </script>
+
+ <h2>Torbutton</h2>
+ <hr> <strong>Aktuális stabil verzió:</strong><version-torbutton><br/>
+<strong>Aktuális alfa verzió:</strong><version-torbutton-alpha><br/> <br/>
+<strong>Authors:</strong> Mike Perry & Scott Squires<br/> <br/>
+<strong>Stabil verzió telepítése::</strong> Kattintson <a
+href="https://www.torproject.org/dist/torbutton/torbutton-current.xpi"
+hash="<version-hash-torbutton>" onclick="return install(event);">a
+telepítéshez erről a weboldalról</a>.<br/> <strong>Alfa verzió:</strong>
+Kattintson <a
+href="https://www.torproject.org/dist/torbutton/torbutton-current-alpha.xpi"
+hash="<version-hash-torbutton-alpha>" onclick="return install(event);">a
+telepítéshez erről a weboldalról</a> <br/> <strong>Angol Google
+keresés:</strong> Google kereső kiegészítők az <a href="/jsreq.html"
+title="Ref: 14938 (googleCA)"
+onClick="addOpenSearch('GoogleCanada','ico','General','14937','g');return
+false">Google CA</a>, and <a href="/jsreq.html" title="Ref: 14938
+(googleCA)"
+onClick="addOpenSearch('googleuk_web','png','General','14445','g');return
+false">Google UK</a>. <br/> <strong>Past Releases:</strong> <a
+href="https://archive.torproject.org/tor-package-archive/torbutton/">Tor
+Arhívum</a><br/> <br/> <strong>Fejlesztői dokumentáció:</strong> <a
+href="en/design/index.html.en">Torbutton tervezés dokumentáció</a> and <a
+href="en/design/MozillaBrownBag.pdf">Képek (Nincs rendszeresen
+frissítve)</a><br/> <strong>Forráskód:</strong> You can <a
+href="https://gitweb.torproject.org/torbutton.git">tallózza a
+repository-t</a> vagy egyszerűen csomagolja ki az xpi fájlt. <br/>
+<strong>Hibabejelentések:</strong> <a
+href="https://trac.torproject.org/projects/tor/report/14">Torproject
+Hibakövető</a><br/> <strong>Dokumentumok:</strong> <b>[</b> <a href="<page
+torbutton/torbutton-faq>">GYIK</a> <b>|</b> <a
+href="https://gitweb.torproject.org/torbutton.git/blob/HEAD:/src/CHANGELOG">változásjegyzék</a>
+<b>|</b> <a
+href="https://gitweb.torproject.org/torbutton.git/blob/HEAD:/src/LICENSE">licensz</a>
+<b>|</b> <a
+href="https://gitweb.torproject.org/torbutton.git/blob/HEAD:/src/CREDITS">készítők</a>
+<b>]</b><br/> <br/>
+
+ <p>
+ A Torbutton egy 1-gombos lehetőség a Firefox felhasználók részére, hogy be
+és kikapcsolhassák a <a href="<page index>">Tor</a> programot. Az
+állapotsorhoz ad hozzá egy panelt, ami a "Tor bekapcsolva" (zöld színben)
+vagy a "Tor kikapcsolva" (piros színben) állapotot jeleníti meg. Ha a
+felhasználó rákattint a panelra, meg tudja változtani állapotát. Ha a
+felhasználó (vagy egy egyéb kiegészítés) átállítja a proxy beállításokat a
+beállítások azonnal megjelennek ezen az állapot jelzőn.
+ </p>
+
+ <p>
+ Ahhoz, hogy biztonságban böngészhessen a Torbutton letilt több aktív
+tartalmat. Ezekről bővebb infromációt a <a href="<page
+torbutton/torbutton-faq>">Torbutton Gyakori kérdések</a> oldalán találhat,
+illetve további részletekről tájékozódhat a <a href="<page
+torbutton/torbutton-options>">Torbutton beállítások </a> listájában is.
+ </p>
+
+ <p>
+ Néhány felhasználó valószínűleg jobban kedveli az Eszköztár gombokat, mint
+egy panelt az állapotsorban. A Torbutton lehetővé teszi, hogy egy eszköztár
+gombot adjon hozzá bármelyik eszköztárhoz, aon jobb gombbal kattintva, és a
+"Testreszabás..." opciót választva, majd a Torbutton ikont ráhúzva az
+eszköztárra. A panel elrejthető az állapot soron. (Az Eszközök ->
+Kiegészítők, Torbutton kiválasztása, Beállítások gombra kattintással.)
+ </p>
+ </div>
+
+ <!-- END MAINCOL -->
+<div id = "sidecol">
+
+
+ #include "side.wmi"
+#include "info.wmi"
+</div>
+
+<!-- END SIDECOL -->
+</div>
+
+
+#include "foot.wmi"
Added: website/trunk/torbutton/hu/sidenav.wmi
===================================================================
--- website/trunk/torbutton/hu/sidenav.wmi (rev 0)
+++ website/trunk/torbutton/hu/sidenav.wmi 2011-07-21 08:48:17 UTC (rev 24922)
@@ -0,0 +1,36 @@
+#!/usr/bin/wml
+
+## translation metadata
+# Revision: $Revision: 24370 $
+# Translation-Priority: 2-medium
+
+# this structure defines the side nav bar for the /torbutton pages
+# and is the input for include/side.wmi
+
+# fields:
+#
+# name - the $WML_SRC_BASENAME of the file. It should uniquely identify the
+# page because at build-time it is used to determine what view of the
+# navigation menu to generate
+#
+# url - the path to the wml page, as used the the <page> tag. This tag ensures
+# that links will point to the current language if supported, and alternately
+# the english version
+#
+# txt - the link text to be displayed. Different translations will
+# need to supply alternate txt
+
+<:
+ my $sidenav;
+ $sidenav = [
+ {'url' => 'torbutton/index',
+ 'txt' => 'Torbutton',
+ 'subelements' => [
+ {'url' => 'torbutton/torbutton-options',
+ 'txt' => 'Torbutton Options',
+ },
+ {'url' => 'torbutton/torbutton-faq',
+ 'txt' => 'Torbutton FAQ',
+ }]
+ }]
+:>
1
0

21 Jul '11
Author: runa
Date: 2011-07-21 08:15:36 +0000 (Thu, 21 Jul 2011)
New Revision: 24921
Modified:
website/trunk/po2wml.sh
Log:
problem in po2wml finally fixed
Modified: website/trunk/po2wml.sh
===================================================================
--- website/trunk/po2wml.sh 2011-07-21 07:39:29 UTC (rev 24920)
+++ website/trunk/po2wml.sh 2011-07-21 08:15:36 UTC (rev 24921)
@@ -373,14 +373,6 @@
# subdirectory.
if [ $onedirup == $lang ]
then
- # If the current subdirectory is of the form "xx_XX",
- # rename to "xx-xx" instead (except for pl_PL)
- if [[ $subdir =~ "_" && $subdir != "pl_PL" ]]
- then
- subdir="`echo $subdir | sed s/_/-/ | tr '[A-Z]' '[a-z]'`"
- nosubdir
- fi
-
# If the current directory is "pl_PL" use "pl" instead
if [ $subdir = "pl_PL" ]
then
@@ -402,20 +394,20 @@
nosubdir
fi
+ # If the current subdirectory is of the form "xx_XX",
+ # rename to "xx-xx" instead (except for pl_PL)
+ if [[ $subdir =~ "_" && $subdir != "pl_PL" ]]
+ then
+ subdir="`echo $subdir | sed s/_/-/ | tr '[A-Z]' '[a-z]'`"
+ nosubdir
+ fi
+
# Convert everything else
if [[ $subdir != "en" && $subdir != "pl_PL" && ! ($subdir =~ "_") && $subdir != "nb" && $subdir != "sv" ]]
then
nosubdir
fi
else
- # If the current languge is of the form "xx_XX", rename
- # to "xx-xx" instead (except for pl_PL)
- if [[ $lang =~ "_" && $lang != "pl_PL" ]]
- then
- lang="`echo $lang | sed s/_/-/ | tr '[A-Z]' '[a-z]'`"
- subdir
- fi
-
# If the current language is "pl_PL" use "pl" instead
if [ $lang = "pl_PL" ]
then
@@ -436,7 +428,15 @@
lang="se"
subdir
fi
-
+
+ # If the current languge is of the form "xx_XX", rename
+ # to "xx-xx" instead (except for pl_PL)
+ if [[ $lang =~ "_" && $lang != "pl_PL" ]]
+ then
+ lang="`echo $lang | sed s/_/-/ | tr '[A-Z]' '[a-z]'`"
+ subdir
+ fi
+
# Convert everything else
if [[ $lang != "en" && $lang != "pl_PL" && ! ($lang =~ "_") && $lang != "nb" && $lang != "sv" ]]
then
1
0

21 Jul '11
Author: runa
Date: 2011-07-21 07:39:29 +0000 (Thu, 21 Jul 2011)
New Revision: 24920
Modified:
website/trunk/po2wml.sh
Log:
yet another minor fix for po2wml.sh
Modified: website/trunk/po2wml.sh
===================================================================
--- website/trunk/po2wml.sh 2011-07-21 07:33:00 UTC (rev 24919)
+++ website/trunk/po2wml.sh 2011-07-21 07:39:29 UTC (rev 24920)
@@ -419,7 +419,7 @@
# If the current language is "pl_PL" use "pl" instead
if [ $lang = "pl_PL" ]
then
- $lang="pl"
+ lang="pl"
subdir
fi
1
0
Author: runa
Date: 2011-07-21 07:33:00 +0000 (Thu, 21 Jul 2011)
New Revision: 24919
Modified:
translation/trunk/projects/website/po/ar/about/3-low.board.po
translation/trunk/projects/website/po/ar/about/3-low.corepeople.po
translation/trunk/projects/website/po/ar/about/3-low.financials.po
translation/trunk/projects/website/po/ar/about/3-low.sponsors.po
translation/trunk/projects/website/po/ar/about/3-low.translators.po
translation/trunk/projects/website/po/ar/about/3-low.volunteers.po
translation/trunk/projects/website/po/ar/about/4-optional.gsoc.po
translation/trunk/projects/website/po/ar/docs/2-medium.documentation.po
translation/trunk/projects/website/po/ar/docs/2-medium.installguide.po
translation/trunk/projects/website/po/ar/docs/2-medium.tor-doc-osx.po
translation/trunk/projects/website/po/ar/docs/2-medium.tor-doc-relay.po
translation/trunk/projects/website/po/ar/docs/2-medium.verifying-signatures.po
translation/trunk/projects/website/po/ar/docs/3-low.N900.po
translation/trunk/projects/website/po/ar/docs/3-low.android.po
translation/trunk/projects/website/po/ar/docs/3-low.debian-vidalia.po
translation/trunk/projects/website/po/ar/docs/3-low.debian.po
translation/trunk/projects/website/po/ar/docs/3-low.rpms.po
translation/trunk/projects/website/po/ar/docs/3-low.tor-doc-unix.po
translation/trunk/projects/website/po/ar/docs/3-low.tor-doc-web.po
translation/trunk/projects/website/po/ar/docs/3-low.tor-hidden-service.po
translation/trunk/projects/website/po/ar/docs/3-low.trademark-faq.po
translation/trunk/projects/website/po/ar/docs/4-optional.running-a-mirror.po
translation/trunk/projects/website/po/ar/donate/3-low.become-sponsor.po
translation/trunk/projects/website/po/ar/donate/3-low.donate-hardware.po
translation/trunk/projects/website/po/ar/donate/3-low.donate-service.po
translation/trunk/projects/website/po/ar/download/3-low.download-unix.po
translation/trunk/projects/website/po/ar/download/3-low.download.po
translation/trunk/projects/website/po/ar/download/3-low.thankyou.po
translation/trunk/projects/website/po/ar/getinvolved/3-low.mirrors.po
translation/trunk/projects/website/po/ar/getinvolved/3-low.tshirt.po
translation/trunk/projects/website/po/ar/getinvolved/4-optional.open-positions.po
translation/trunk/projects/website/po/ar/getinvolved/4-optional.research.po
translation/trunk/projects/website/po/ar/getinvolved/4-optional.translation-overview.po
translation/trunk/projects/website/po/ar/getinvolved/4-optional.translation.po
translation/trunk/projects/website/po/ar/getinvolved/4-optional.volunteer.po
translation/trunk/projects/website/po/ar/press/3-low.inthemedia.po
translation/trunk/projects/website/po/ar/press/3-low.press.po
translation/trunk/projects/website/po/ar/press/4-optional.2008-12-19-roadmap-press-release.po
translation/trunk/projects/website/po/ar/press/4-optional.2010-03-25-tor-store-press-release.po
translation/trunk/projects/website/po/ar/projects/1-high.torbrowser-split.po
translation/trunk/projects/website/po/ar/projects/3-low.gettor.po
translation/trunk/projects/website/po/ar/projects/3-low.projects.po
translation/trunk/projects/website/po/ar/projects/3-low.puppettor.po
translation/trunk/projects/website/po/ar/projects/3-low.tordnsel.po
translation/trunk/projects/website/po/ar/projects/4-optional.arm.po
translation/trunk/projects/website/po/ar/projects/4-optional.torbrowser-details.po
translation/trunk/projects/website/po/ar/torbutton/3-low.index.po
translation/trunk/projects/website/po/ar/torbutton/3-low.torbutton-faq.po
translation/trunk/projects/website/po/ar/torbutton/3-low.torbutton-options.po
translation/trunk/projects/website/po/de/docs/2-medium.faq.po
translation/trunk/projects/website/po/de/download/3-low.download.po
translation/trunk/projects/website/po/el/about/3-low.translators.po
translation/trunk/projects/website/po/es/docs/3-low.debian.po
translation/trunk/projects/website/po/es/download/3-low.download.po
translation/trunk/projects/website/po/es/getinvolved/4-optional.volunteer.po
translation/trunk/projects/website/po/es/press/4-optional.2010-03-25-tor-store-press-release.po
translation/trunk/projects/website/po/fa/about/2-medium.torusers.po
translation/trunk/projects/website/po/fa/about/3-low.board.po
translation/trunk/projects/website/po/fa/about/3-low.contact.po
translation/trunk/projects/website/po/fa/about/3-low.corepeople.po
translation/trunk/projects/website/po/fa/about/3-low.financials.po
translation/trunk/projects/website/po/fa/about/3-low.translators.po
translation/trunk/projects/website/po/fa/docs/3-low.debian.po
translation/trunk/projects/website/po/fa/download/3-low.download.po
translation/trunk/projects/website/po/fa/getinvolved/4-optional.research.po
translation/trunk/projects/website/po/fa/getinvolved/4-optional.volunteer.po
translation/trunk/projects/website/po/fi/docs/3-low.debian.po
translation/trunk/projects/website/po/fr/download/3-low.download.po
translation/trunk/projects/website/po/hu/getinvolved/3-low.mirrors.po
translation/trunk/projects/website/po/hu/torbutton/3-low.index.po
translation/trunk/projects/website/po/it/docs/3-low.debian.po
translation/trunk/projects/website/po/it/download/3-low.download.po
translation/trunk/projects/website/po/it/getinvolved/4-optional.volunteer.po
translation/trunk/projects/website/po/it/press/4-optional.2010-03-25-tor-store-press-release.po
translation/trunk/projects/website/po/my/1-high.index.po
translation/trunk/projects/website/po/pl_PL/docs/3-low.debian.po
translation/trunk/projects/website/po/pl_PL/download/3-low.download.po
translation/trunk/projects/website/po/pl_PL/getinvolved/4-optional.volunteer.po
translation/trunk/projects/website/po/ru/docs/3-low.debian.po
translation/trunk/projects/website/po/ru/download/3-low.download.po
translation/trunk/projects/website/po/ru/getinvolved/4-optional.volunteer.po
translation/trunk/projects/website/po/ru/press/4-optional.2010-03-25-tor-store-press-release.po
translation/trunk/projects/website/po/vi/download/3-low.download.po
translation/trunk/projects/website/po/zh_CN/about/2-medium.overview.po
translation/trunk/projects/website/po/zh_CN/download/3-low.download.po
Log:
updated translations for the website from transifex
Modified: translation/trunk/projects/website/po/ar/about/3-low.board.po
===================================================================
--- translation/trunk/projects/website/po/ar/about/3-low.board.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/about/3-low.board.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-06-21 08:19+0200\n"
-"PO-Revision-Date: 2011-07-20 20:59+0000\n"
+"PO-Revision-Date: 2011-07-21 07:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/about/3-low.corepeople.po
===================================================================
--- translation/trunk/projects/website/po/ar/about/3-low.corepeople.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/about/3-low.corepeople.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-06-21 08:19+0200\n"
-"PO-Revision-Date: 2011-07-20 20:48+0000\n"
+"PO-Revision-Date: 2011-07-21 07:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/about/3-low.financials.po
===================================================================
--- translation/trunk/projects/website/po/ar/about/3-low.financials.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/about/3-low.financials.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-12-26 14:32+0000\n"
-"PO-Revision-Date: 2011-07-20 20:45+0000\n"
+"PO-Revision-Date: 2011-07-21 07:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/about/3-low.sponsors.po
===================================================================
--- translation/trunk/projects/website/po/ar/about/3-low.sponsors.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/about/3-low.sponsors.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-06-29 20:42+0200\n"
-"PO-Revision-Date: 2011-07-20 21:14+0000\n"
+"PO-Revision-Date: 2011-07-21 07:31+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/about/3-low.translators.po
===================================================================
--- translation/trunk/projects/website/po/ar/about/3-low.translators.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/about/3-low.translators.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-12-26 14:32+0000\n"
-"PO-Revision-Date: 2011-07-20 21:18+0000\n"
+"PO-Revision-Date: 2011-07-21 07:31+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/about/3-low.volunteers.po
===================================================================
--- translation/trunk/projects/website/po/ar/about/3-low.volunteers.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/about/3-low.volunteers.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-07-08 08:44+0200\n"
-"PO-Revision-Date: 2011-07-20 20:58+0000\n"
+"PO-Revision-Date: 2011-07-21 07:28+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/about/4-optional.gsoc.po
===================================================================
--- translation/trunk/projects/website/po/ar/about/4-optional.gsoc.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/about/4-optional.gsoc.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-05-23 17:02+0200\n"
-"PO-Revision-Date: 2011-07-20 20:20+0000\n"
+"PO-Revision-Date: 2011-07-21 07:23+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/docs/2-medium.documentation.po
===================================================================
--- translation/trunk/projects/website/po/ar/docs/2-medium.documentation.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/docs/2-medium.documentation.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-06-29 20:41+0200\n"
-"PO-Revision-Date: 2011-07-20 20:14+0000\n"
+"PO-Revision-Date: 2011-07-21 07:22+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/docs/2-medium.installguide.po
===================================================================
--- translation/trunk/projects/website/po/ar/docs/2-medium.installguide.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/docs/2-medium.installguide.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-12-26 14:32+0000\n"
-"PO-Revision-Date: 2011-07-20 20:32+0000\n"
+"PO-Revision-Date: 2011-07-21 07:25+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/docs/2-medium.tor-doc-osx.po
===================================================================
--- translation/trunk/projects/website/po/ar/docs/2-medium.tor-doc-osx.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/docs/2-medium.tor-doc-osx.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-06-21 08:18+0200\n"
-"PO-Revision-Date: 2011-07-20 20:39+0000\n"
+"PO-Revision-Date: 2011-07-21 07:26+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/docs/2-medium.tor-doc-relay.po
===================================================================
--- translation/trunk/projects/website/po/ar/docs/2-medium.tor-doc-relay.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/docs/2-medium.tor-doc-relay.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-06-21 08:19+0200\n"
-"PO-Revision-Date: 2011-07-20 21:03+0000\n"
+"PO-Revision-Date: 2011-07-21 07:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/docs/2-medium.verifying-signatures.po
===================================================================
--- translation/trunk/projects/website/po/ar/docs/2-medium.verifying-signatures.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/docs/2-medium.verifying-signatures.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-06-21 08:19+0200\n"
-"PO-Revision-Date: 2011-07-20 21:13+0000\n"
+"PO-Revision-Date: 2011-07-21 07:31+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/docs/3-low.N900.po
===================================================================
--- translation/trunk/projects/website/po/ar/docs/3-low.N900.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/docs/3-low.N900.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-12-05 19:13+0000\n"
-"PO-Revision-Date: 2011-07-20 20:31+0000\n"
+"PO-Revision-Date: 2011-07-21 07:25+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/docs/3-low.android.po
===================================================================
--- translation/trunk/projects/website/po/ar/docs/3-low.android.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/docs/3-low.android.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-03-25 16:50+0000\n"
-"PO-Revision-Date: 2011-07-20 20:44+0000\n"
+"PO-Revision-Date: 2011-07-21 07:26+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/docs/3-low.debian-vidalia.po
===================================================================
--- translation/trunk/projects/website/po/ar/docs/3-low.debian-vidalia.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/docs/3-low.debian-vidalia.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-07-08 08:43+0200\n"
-"PO-Revision-Date: 2011-07-20 21:05+0000\n"
+"PO-Revision-Date: 2011-07-21 07:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/docs/3-low.debian.po
===================================================================
--- translation/trunk/projects/website/po/ar/docs/3-low.debian.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/docs/3-low.debian.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,8 +7,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2011-07-08 08:43+0200\n"
-"PO-Revision-Date: 2011-07-09 01:14+0000\n"
+"POT-Creation-Date: 2011-07-20 20:44+0200\n"
+"PO-Revision-Date: 2011-07-21 01:00+0000\n"
"Last-Translator: Mohamed <>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -36,30 +36,25 @@
#. type: Content of: <div><div><h2>
#: /home/runa/tor/website/docs/en/debian.wml:14
msgid ""
-"<a class=\"anchor\" href=\"#debian\">Option one: Tor on Debian lenny, Debian"
-" sid, or Debian testing</a>"
+"<a class=\"anchor\" href=\"#debian\">Option one: Tor on Debian squeeze, "
+"lenny, Debian sid, or Debian testing</a>"
msgstr ""
-"<a class=\"anchor\" href=\"#debian\">الخيار الأول: تور على دِبيان ليني أو "
-"دِبيان غيرالمستقرة أو دِبيان الإختبارية</a>"
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:16 /tmp/hXZfq9nNmb.xml:43
-#: /tmp/hXZfq9nNmb.xml:114 /tmp/hXZfq9nNmb.xml:149
+#: /home/runa/tor/website/docs/en/debian.wml:16 /tmp/zXFkzQsAWX.xml:42
+#: /tmp/zXFkzQsAWX.xml:113 /tmp/zXFkzQsAWX.xml:148
msgid "<br />"
msgstr "<br />"
#. type: Content of: <div><div><p>
#: /home/runa/tor/website/docs/en/debian.wml:19
msgid ""
-"If you're using Debian stable (lenny), unstable (sid), or testing (squeeze),"
-" just run<br /> <tt>apt-get install tor tor-geoipdb</tt> as root."
+"If you're using Debian, just run<br /> <tt>apt-get install tor tor-"
+"geoipdb</tt> as root."
msgstr ""
-"إذا كنت تستعمل دِبيان المستقرة (ليني) أو غير المستقرة (sid) أو الإختبارية "
-"(سكوييز)، نفد فقط الأمر <br /> <tt>apt-get install tor tor-geoipdb</tt> "
-"بصلاحيات الجذر."
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:26
+#: /home/runa/tor/website/docs/en/debian.wml:25
msgid ""
"Note that this might not always give you the latest stable Tor version, but "
"you will receive important security fixes. To make sure that you're running "
@@ -67,8 +62,8 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:32 /tmp/hXZfq9nNmb.xml:95
-#: /tmp/hXZfq9nNmb.xml:140 /tmp/hXZfq9nNmb.xml:183
+#: /home/runa/tor/website/docs/en/debian.wml:31 /tmp/zXFkzQsAWX.xml:94
+#: /tmp/zXFkzQsAWX.xml:139 /tmp/zXFkzQsAWX.xml:182
msgid ""
"Now Tor is installed and running. Move on to <a href=\"<page docs/tor-doc-"
"unix>#polipo\">step two</a> of the \"Tor on Linux/Unix\" instructions."
@@ -77,28 +72,27 @@
"unix>#polipo\">الخطوة الثانية</a> من تعليمات \"Tor on Linux/Unix\"."
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:37
+#: /home/runa/tor/website/docs/en/debian.wml:36
msgid "<hr /> <a id=\"ubuntu\"></a> <a id=\"packages\"></a>"
msgstr "<hr /> <a id=\"ubuntu\"></a> <a id=\"packages\"></a>"
#. type: Content of: <div><div><h2>
-#: /home/runa/tor/website/docs/en/debian.wml:41
+#: /home/runa/tor/website/docs/en/debian.wml:40
msgid "<a class=\"anchor\" href=\"#ubuntu\">Option two: Tor on Ubuntu or Debian</a>"
msgstr ""
"<a class=\"anchor\" href=\"#ubuntu\">الخيار الثاني: تور على أوبنتو أو "
"دِبيان</a>"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:46
+#: /home/runa/tor/website/docs/en/debian.wml:45
msgid ""
-"<b>Do not use the packages in Ubuntu's universe.</b> They are unmaintained "
-"and out of date. That means you'll be missing stability and security fixes."
+"<b>Do not use the packages in Ubuntu's universe.</b> In the past they have "
+"not reliably been updated. That means you could be missing stability and "
+"security fixes."
msgstr ""
-"<b>لا تستخدم حزم أوبنتو universe.</b> فهي لم تعد مدعومة وإصداراتها قديمة. "
-"وهذا يعني إفتقادها للإستقرار والإصلاحات الأمنية. "
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:52
+#: /home/runa/tor/website/docs/en/debian.wml:51
msgid ""
"You'll need to set up our package repository before you can fetch Tor. "
"First, you need to figure out the name of your distribution. A quick command"
@@ -107,11 +101,16 @@
msgstr ""
#. type: Content of: <div><div><p><ul><li>
-#: /home/runa/tor/website/docs/en/debian.wml:57
+#: /home/runa/tor/website/docs/en/debian.wml:56
msgid "Debian unstable (sid) is \"sid\""
msgstr "دِبيان غير المستقرة (sid) هي \"sid\""
#. type: Content of: <div><div><p><ul><li>
+#: /home/runa/tor/website/docs/en/debian.wml:57
+msgid "Debian testing is \"wheezy\""
+msgstr ""
+
+#. type: Content of: <div><div><p><ul><li>
#: /home/runa/tor/website/docs/en/debian.wml:58
msgid "Debian 6.0 (squeeze) is \"squeeze\""
msgstr "دِبيان 6.0 (سكوييز) هي \"squeeze\""
@@ -146,18 +145,13 @@
msgid "Ubuntu 8.04 is \"hardy\""
msgstr "أوبنتو 8.04 هي \"hardy\""
-#. type: Content of: <div><div><p><ul><li>
-#: /home/runa/tor/website/docs/en/debian.wml:65
-msgid "Ubuntu 6.06 is \"dapper\""
-msgstr "أوبنتو 6.06 هي \"dapper\""
-
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:68
+#: /home/runa/tor/website/docs/en/debian.wml:67
msgid "Then add this line to your <tt>/etc/apt/sources.list</tt> file:<br />"
msgstr "ثم أضف هذا السطر إلى <tt>/etc/apt/sources.list</tt> الملف:<br /> "
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:72
+#: /home/runa/tor/website/docs/en/debian.wml:71
#, no-wrap
msgid ""
"deb http://deb.torproject.org/torproject.org <DISTRIBUTION> main\n"
@@ -165,7 +159,7 @@
"deb http://deb.torproject.org/torproject.org <DISTRIBUTION> main\n"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:74
+#: /home/runa/tor/website/docs/en/debian.wml:73
msgid ""
"where you put the codename of your distribution (i.e. lenny, sid, maverick "
"or whatever it is) in place of <DISTRIBUTION>."
@@ -174,7 +168,7 @@
"مكان <DISTRIBUTION>."
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:80
+#: /home/runa/tor/website/docs/en/debian.wml:79
msgid ""
"Then add the gpg key used to sign the packages by running the following "
"commands at your command prompt:"
@@ -183,7 +177,7 @@
"الأوامر :"
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:83
+#: /home/runa/tor/website/docs/en/debian.wml:82
#, no-wrap
msgid ""
"gpg --keyserver keys.gnupg.net --recv 886DDD89\n"
@@ -193,7 +187,7 @@
"gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -\n"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:86
+#: /home/runa/tor/website/docs/en/debian.wml:85
msgid ""
"Now refresh your sources and install Tor by running the following commands "
"(as root) at your command prompt:"
@@ -202,7 +196,7 @@
" محث الأوامر:"
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:89
+#: /home/runa/tor/website/docs/en/debian.wml:88
#, no-wrap
msgid ""
"apt-get update\n"
@@ -212,7 +206,7 @@
"apt-get install tor tor-geoipdb\n"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:101
+#: /home/runa/tor/website/docs/en/debian.wml:100
msgid ""
"The DNS name <code>deb.torproject.org</code> is actually a set of "
"independent servers in a DNS round robin configuration. If you for some "
@@ -222,12 +216,12 @@
msgstr ""
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:109
+#: /home/runa/tor/website/docs/en/debian.wml:108
msgid "<hr /> <a id=\"development\"></a>"
msgstr "<hr /> <a id=\"development\"></a>"
#. type: Content of: <div><div><h2>
-#: /home/runa/tor/website/docs/en/debian.wml:112
+#: /home/runa/tor/website/docs/en/debian.wml:111
msgid ""
"<a class=\"anchor\" href=\"#development\">Option three: Using the "
"development branch of Tor on Debian or Ubuntu</a>"
@@ -236,7 +230,7 @@
" من تور على دِبيان أو أوبنتو.</a>"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:116
+#: /home/runa/tor/website/docs/en/debian.wml:115
msgid ""
"If you want to use the <a href=\"<page "
"download/download>#packagediff\">development branch</a> of Tor instead (more"
@@ -248,7 +242,7 @@
"مجموعة مختلفة من السطور إلى <tt>/etc/apt/sources.list</tt> الملف:<br />"
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:121
+#: /home/runa/tor/website/docs/en/debian.wml:120
#, no-wrap
msgid ""
"deb http://deb.torproject.org/torproject.org <DISTRIBUTION> main\n"
@@ -258,7 +252,7 @@
"deb http://deb.torproject.org/torproject.org experimental-<DISTRIBUTION> main\n"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:124
+#: /home/runa/tor/website/docs/en/debian.wml:123
msgid ""
"where you again substitute the name of your distro (lenny, sid, maverick, "
"...) in place of <DISTRIBUTION>."
@@ -267,12 +261,12 @@
"maverick, ...)"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:130
+#: /home/runa/tor/website/docs/en/debian.wml:129
msgid "Then run the following commands at your command prompt:"
msgstr "ثم شغّل الأوامر التالية في محث الأوامر الخاص بك :"
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:132
+#: /home/runa/tor/website/docs/en/debian.wml:131
#, no-wrap
msgid ""
"gpg --keyserver keys.gnupg.net --recv 886DDD89\n"
@@ -286,17 +280,17 @@
"apt-get install tor tor-geoipdb\n"
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:145
+#: /home/runa/tor/website/docs/en/debian.wml:144
msgid "<hr /> <a id=\"source\"></a>"
msgstr "<hr /> <a id=\"source\"></a>"
#. type: Content of: <div><div><h2>
-#: /home/runa/tor/website/docs/en/debian.wml:148
+#: /home/runa/tor/website/docs/en/debian.wml:147
msgid "<a class=\"anchor\" href=\"#source\">Building from source</a>"
msgstr "<a class=\"anchor\" href=\"#source\">البناء من المصدر</a>"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:152
+#: /home/runa/tor/website/docs/en/debian.wml:151
msgid ""
"If you want to build your own debs from source you must first add an "
"appropriate <tt>deb-src</tt> line to <tt>sources.list</tt>."
@@ -307,7 +301,7 @@
#. PO4ASHARPBEGIN For the stable version.PO4ASHARPEND
#. PO4ASHARPBEGIN For the unstable version.PO4ASHARPEND
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:155
+#: /home/runa/tor/website/docs/en/debian.wml:154
#, no-wrap
msgid ""
"\n"
@@ -325,7 +319,7 @@
"deb-src http://deb.torproject.org/torproject.org experimental-<DISTRIBUTION> main\n"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:162
+#: /home/runa/tor/website/docs/en/debian.wml:161
msgid ""
"You also need to install the necessary packages to build your own debs and "
"the packages needed to build Tor:"
@@ -334,7 +328,7 @@
"المطلوبة لبناء تور:"
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:165
+#: /home/runa/tor/website/docs/en/debian.wml:164
#, no-wrap
msgid ""
"apt-get install build-essential fakeroot devscripts\n"
@@ -344,12 +338,12 @@
"apt-get build-dep tor\n"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:168
+#: /home/runa/tor/website/docs/en/debian.wml:167
msgid "Then you can build Tor in ~/debian-packages:"
msgstr "ثم يمكنك بناء تور في ~/debian-packages:"
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:170
+#: /home/runa/tor/website/docs/en/debian.wml:169
#, no-wrap
msgid ""
"mkdir ~/debian-packages; cd ~/debian-packages\n"
@@ -365,23 +359,23 @@
"cd ..\n"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:176
+#: /home/runa/tor/website/docs/en/debian.wml:175
msgid "Now you can install the new package:"
msgstr "الأن يمكنك تثبيت الحزمة الجديدة:"
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:178
+#: /home/runa/tor/website/docs/en/debian.wml:177
#, no-wrap
msgid "sudo dpkg -i tor_*.deb\n"
msgstr "sudo dpkg -i tor_*.deb\n"
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:188
+#: /home/runa/tor/website/docs/en/debian.wml:187
msgid "<hr />"
msgstr "<hr />"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:190
+#: /home/runa/tor/website/docs/en/debian.wml:189
msgid ""
"If you have suggestions for improving this document, please <a href=\"<page "
"about/contact>\">send them to us</a>. Thanks!"
Modified: translation/trunk/projects/website/po/ar/docs/3-low.rpms.po
===================================================================
--- translation/trunk/projects/website/po/ar/docs/3-low.rpms.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/docs/3-low.rpms.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-04-13 16:27+0200\n"
-"PO-Revision-Date: 2011-07-20 20:15+0000\n"
+"PO-Revision-Date: 2011-07-21 07:22+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/docs/3-low.tor-doc-unix.po
===================================================================
--- translation/trunk/projects/website/po/ar/docs/3-low.tor-doc-unix.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/docs/3-low.tor-doc-unix.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-07-08 08:43+0200\n"
-"PO-Revision-Date: 2011-07-20 20:49+0000\n"
+"PO-Revision-Date: 2011-07-21 07:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/docs/3-low.tor-doc-web.po
===================================================================
--- translation/trunk/projects/website/po/ar/docs/3-low.tor-doc-web.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/docs/3-low.tor-doc-web.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-02-12 12:20+0000\n"
-"PO-Revision-Date: 2011-07-20 20:34+0000\n"
+"PO-Revision-Date: 2011-07-21 07:25+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/docs/3-low.tor-hidden-service.po
===================================================================
--- translation/trunk/projects/website/po/ar/docs/3-low.tor-hidden-service.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/docs/3-low.tor-hidden-service.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-02-12 12:20+0000\n"
-"PO-Revision-Date: 2011-07-20 20:23+0000\n"
+"PO-Revision-Date: 2011-07-21 07:24+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/docs/3-low.trademark-faq.po
===================================================================
--- translation/trunk/projects/website/po/ar/docs/3-low.trademark-faq.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/docs/3-low.trademark-faq.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-03-17 18:04+0000\n"
-"PO-Revision-Date: 2011-07-20 21:04+0000\n"
+"PO-Revision-Date: 2011-07-21 07:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/docs/4-optional.running-a-mirror.po
===================================================================
--- translation/trunk/projects/website/po/ar/docs/4-optional.running-a-mirror.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/docs/4-optional.running-a-mirror.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-12-05 19:13+0000\n"
-"PO-Revision-Date: 2011-07-20 20:54+0000\n"
+"PO-Revision-Date: 2011-07-21 07:28+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/donate/3-low.become-sponsor.po
===================================================================
--- translation/trunk/projects/website/po/ar/donate/3-low.become-sponsor.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/donate/3-low.become-sponsor.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-12-26 14:32+0000\n"
-"PO-Revision-Date: 2011-07-20 21:01+0000\n"
+"PO-Revision-Date: 2011-07-21 07:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/donate/3-low.donate-hardware.po
===================================================================
--- translation/trunk/projects/website/po/ar/donate/3-low.donate-hardware.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/donate/3-low.donate-hardware.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-12-26 14:32+0000\n"
-"PO-Revision-Date: 2011-07-20 21:15+0000\n"
+"PO-Revision-Date: 2011-07-21 07:31+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/donate/3-low.donate-service.po
===================================================================
--- translation/trunk/projects/website/po/ar/donate/3-low.donate-service.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/donate/3-low.donate-service.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-12-26 14:32+0000\n"
-"PO-Revision-Date: 2011-07-20 21:12+0000\n"
+"PO-Revision-Date: 2011-07-21 07:30+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/download/3-low.download-unix.po
===================================================================
--- translation/trunk/projects/website/po/ar/download/3-low.download-unix.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/download/3-low.download-unix.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-06-21 08:18+0200\n"
-"PO-Revision-Date: 2011-07-20 20:47+0000\n"
+"PO-Revision-Date: 2011-07-21 07:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/download/3-low.download.po
===================================================================
--- translation/trunk/projects/website/po/ar/download/3-low.download.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/download/3-low.download.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -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: 2011-07-13 14:56+0200\n"
-"PO-Revision-Date: 2011-07-14 01:02+0000\n"
+"POT-Creation-Date: 2011-07-20 20:43+0200\n"
+"PO-Revision-Date: 2011-07-21 01:01+0000\n"
"Last-Translator: imksa <malham1(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -182,8 +182,8 @@
msgstr ""
#. type: Content of: <div><div><table><tr><td><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:102 /tmp/eCkycGCH9H.xml:165
-#: /tmp/eCkycGCH9H.xml:203
+#: /home/runa/tor/website/download/en/download.wml:102 /tmp/jgw2tk3no1.xml:165
+#: /tmp/jgw2tk3no1.xml:203
msgid ""
"The <strong>Tor Browser Bundle</strong> contains everything you need to "
"safely browse the Internet. This package requires no installation. Just "
@@ -220,7 +220,7 @@
msgstr ""
#. type: Content of: <div><div><table><tr><td><p>
-#: /home/runa/tor/website/download/en/download.wml:110 /tmp/eCkycGCH9H.xml:168
+#: /home/runa/tor/website/download/en/download.wml:110 /tmp/jgw2tk3no1.xml:168
msgid ""
"There are two versions of each package, a stable and alpha release. Stable "
"packages are released when we believe the features and code will not change "
@@ -605,7 +605,7 @@
"(<a href=\"../dist/tor-<version-alpha>.tar.gz.asc\">التوقيع</a>)"
#. type: Content of: <div><div><div>
-#: /home/runa/tor/website/download/en/download.wml:265 /tmp/eCkycGCH9H.xml:344
+#: /home/runa/tor/website/download/en/download.wml:265 /tmp/jgw2tk3no1.xml:343
msgid "<br>"
msgstr "<br>"
@@ -744,12 +744,11 @@
#: /home/runa/tor/website/download/en/download.wml:338
msgid ""
"Do not use <a href=\"https://blog.torproject.org/blog/bittorrent-over-tor-"
-"isnt-good-idea\">BitTorrent and Tor</a> together unless you are using a "
-"system like <a href=\"http://tails.boum.org/\">TAILS</a>."
+"isnt-good-idea\">BitTorrent and Tor</a> together."
msgstr ""
#. type: Content of: <div><div><div><p>
-#: /home/runa/tor/website/download/en/download.wml:346
+#: /home/runa/tor/website/download/en/download.wml:345
msgid ""
"Be smart and learn more. Understand what Tor does and does not offer. This "
"list of pitfalls isn't complete, and we need your help <a href=\"<page "
@@ -761,42 +760,42 @@
"getinvolved/volunteer>#Documentation\">التعرف على كل المشاكل وتوثيقها</a>."
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:358
+#: /home/runa/tor/website/download/en/download.wml:357
msgid "Jump to:"
msgstr "اقفز إلى:"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:360
+#: /home/runa/tor/website/download/en/download.wml:359
msgid "<a href=\"#Windows\">Microsoft Windows</a>"
msgstr "<a href=\"#Windows\">مايكروسوفت وندز</a>"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:361
+#: /home/runa/tor/website/download/en/download.wml:360
msgid "<a href=\"#mac\">Apple OS X</a>"
msgstr "<a href=\"#mac\">Apple OS X</a>"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:362
+#: /home/runa/tor/website/download/en/download.wml:361
msgid "<a href=\"#linux\">Linux/Unix</a>"
msgstr "<a href=\"#linux\">لينكس/يونكس</a>"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:363
+#: /home/runa/tor/website/download/en/download.wml:362
msgid "<a href=\"#smartphones\">Smartphones</a>"
msgstr "<a href=\"#smartphones\">الهواتف الذكية</a>"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:364
+#: /home/runa/tor/website/download/en/download.wml:363
msgid "<a href=\"#source\">Source Code</a>"
msgstr "<a href=\"#source\">الكود المصدري</a>"
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:371
+#: /home/runa/tor/website/download/en/download.wml:370
msgid "What is the (sig) link?"
msgstr "ما هي وصلة (التوقيع)؟"
#. type: Content of: <div><div><div><div><p>
-#: /home/runa/tor/website/download/en/download.wml:372
+#: /home/runa/tor/website/download/en/download.wml:371
msgid ""
"These are GPG signatures to allow you to verify that your downloaded file is"
" really from The Tor Project and not an imposter."
@@ -805,17 +804,17 @@
"مشروع تور وليس شخصًا منتحلا."
#. type: Content of: <div><div><div><div>
-#: /home/runa/tor/website/download/en/download.wml:375
+#: /home/runa/tor/website/download/en/download.wml:374
msgid "<a href=\"<page docs/verifying-signatures>\">Learn more »</a>"
msgstr "<a href=\"<page docs/verifying-signatures>\">تعلم المزيد «</a>"
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:381
+#: /home/runa/tor/website/download/en/download.wml:380
msgid "Having Trouble?"
msgstr "أتواجه مصاعبًا؟"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:383
+#: /home/runa/tor/website/download/en/download.wml:382
msgid "<a href=\"<page docs/documentation>\">Read the fine manuals</a>"
msgstr "<a href=\"<page docs/documentation>\">اقرأ الأدلة</a>"
Modified: translation/trunk/projects/website/po/ar/download/3-low.thankyou.po
===================================================================
--- translation/trunk/projects/website/po/ar/download/3-low.thankyou.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/download/3-low.thankyou.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-12-26 14:31+0000\n"
-"PO-Revision-Date: 2011-07-20 20:50+0000\n"
+"PO-Revision-Date: 2011-07-21 07:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/getinvolved/3-low.mirrors.po
===================================================================
--- translation/trunk/projects/website/po/ar/getinvolved/3-low.mirrors.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/getinvolved/3-low.mirrors.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-12-26 14:32+0000\n"
-"PO-Revision-Date: 2011-07-20 21:10+0000\n"
+"PO-Revision-Date: 2011-07-21 07:30+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/getinvolved/3-low.tshirt.po
===================================================================
--- translation/trunk/projects/website/po/ar/getinvolved/3-low.tshirt.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/getinvolved/3-low.tshirt.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-06-21 08:19+0200\n"
-"PO-Revision-Date: 2011-07-20 21:04+0000\n"
+"PO-Revision-Date: 2011-07-21 07:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/getinvolved/4-optional.open-positions.po
===================================================================
--- translation/trunk/projects/website/po/ar/getinvolved/4-optional.open-positions.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/getinvolved/4-optional.open-positions.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-06-21 08:19+0200\n"
-"PO-Revision-Date: 2011-07-20 20:58+0000\n"
+"PO-Revision-Date: 2011-07-21 07:28+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/getinvolved/4-optional.research.po
===================================================================
--- translation/trunk/projects/website/po/ar/getinvolved/4-optional.research.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/getinvolved/4-optional.research.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-02-12 12:20+0000\n"
-"PO-Revision-Date: 2011-07-20 21:07+0000\n"
+"PO-Revision-Date: 2011-07-21 07:30+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/getinvolved/4-optional.translation-overview.po
===================================================================
--- translation/trunk/projects/website/po/ar/getinvolved/4-optional.translation-overview.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/getinvolved/4-optional.translation-overview.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-01-03 15:54+0000\n"
-"PO-Revision-Date: 2011-07-20 20:37+0000\n"
+"PO-Revision-Date: 2011-07-21 07:26+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/getinvolved/4-optional.translation.po
===================================================================
--- translation/trunk/projects/website/po/ar/getinvolved/4-optional.translation.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/getinvolved/4-optional.translation.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-01-03 14:40+0000\n"
-"PO-Revision-Date: 2011-07-20 20:57+0000\n"
+"PO-Revision-Date: 2011-07-21 07:28+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/getinvolved/4-optional.volunteer.po
===================================================================
--- translation/trunk/projects/website/po/ar/getinvolved/4-optional.volunteer.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/getinvolved/4-optional.volunteer.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -6,8 +6,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2011-06-21 08:19+0200\n"
-"PO-Revision-Date: 2011-07-20 20:40+0000\n"
+"POT-Creation-Date: 2011-07-20 20:44+0200\n"
+"PO-Revision-Date: 2011-07-21 07:26+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -190,19 +190,19 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:86
-#: /tmp/r1AqHDMca8.xml:94
+#: /tmp/iN5ZsD3CzY.xml:94
msgid "Core"
msgstr ""
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:87
-#: /tmp/r1AqHDMca8.xml:119
+#: /tmp/iN5ZsD3CzY.xml:119
msgid "C"
msgstr ""
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:88
-#: /tmp/r1AqHDMca8.xml:112 /tmp/r1AqHDMca8.xml:144 /tmp/r1AqHDMca8.xml:184
+#: /tmp/iN5ZsD3CzY.xml:112 /tmp/iN5ZsD3CzY.xml:144 /tmp/iN5ZsD3CzY.xml:184
msgid "Heavy"
msgstr ""
@@ -218,13 +218,13 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:95
-#: /tmp/r1AqHDMca8.xml:151 /tmp/r1AqHDMca8.xml:183
+#: /tmp/iN5ZsD3CzY.xml:151 /tmp/iN5ZsD3CzY.xml:183
msgid "Java"
msgstr ""
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:96
-#: /tmp/r1AqHDMca8.xml:192 /tmp/r1AqHDMca8.xml:216 /tmp/r1AqHDMca8.xml:240
+#: /tmp/iN5ZsD3CzY.xml:192 /tmp/iN5ZsD3CzY.xml:216 /tmp/iN5ZsD3CzY.xml:240
msgid "None"
msgstr ""
@@ -235,19 +235,19 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:102
-#: /tmp/r1AqHDMca8.xml:110 /tmp/r1AqHDMca8.xml:118 /tmp/r1AqHDMca8.xml:126
+#: /tmp/iN5ZsD3CzY.xml:110 /tmp/iN5ZsD3CzY.xml:118 /tmp/iN5ZsD3CzY.xml:126
msgid "Usability"
msgstr ""
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:103
-#: /tmp/r1AqHDMca8.xml:111 /tmp/r1AqHDMca8.xml:127
+#: /tmp/iN5ZsD3CzY.xml:111 /tmp/iN5ZsD3CzY.xml:127
msgid "Sys Admin"
msgstr ""
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:104
-#: /tmp/r1AqHDMca8.xml:152 /tmp/r1AqHDMca8.xml:160 /tmp/r1AqHDMca8.xml:224
+#: /tmp/iN5ZsD3CzY.xml:152 /tmp/iN5ZsD3CzY.xml:160 /tmp/iN5ZsD3CzY.xml:224
msgid "Moderate"
msgstr ""
@@ -273,9 +273,9 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:120
-#: /tmp/r1AqHDMca8.xml:128 /tmp/r1AqHDMca8.xml:136 /tmp/r1AqHDMca8.xml:168
-#: /tmp/r1AqHDMca8.xml:176 /tmp/r1AqHDMca8.xml:200 /tmp/r1AqHDMca8.xml:208
-#: /tmp/r1AqHDMca8.xml:232
+#: /tmp/iN5ZsD3CzY.xml:128 /tmp/iN5ZsD3CzY.xml:136 /tmp/iN5ZsD3CzY.xml:168
+#: /tmp/iN5ZsD3CzY.xml:176 /tmp/iN5ZsD3CzY.xml:200 /tmp/iN5ZsD3CzY.xml:208
+#: /tmp/iN5ZsD3CzY.xml:232
msgid "Light"
msgstr ""
@@ -301,7 +301,7 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:134
-#: /tmp/r1AqHDMca8.xml:142 /tmp/r1AqHDMca8.xml:150
+#: /tmp/iN5ZsD3CzY.xml:142 /tmp/iN5ZsD3CzY.xml:150
msgid "User Interface"
msgstr ""
@@ -357,7 +357,7 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:161
-#: /tmp/r1AqHDMca8.xml:177 /tmp/r1AqHDMca8.xml:233
+#: /tmp/iN5ZsD3CzY.xml:177 /tmp/iN5ZsD3CzY.xml:233
msgid "mikeperry"
msgstr ""
@@ -373,8 +373,8 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:167
-#: /tmp/r1AqHDMca8.xml:175 /tmp/r1AqHDMca8.xml:199 /tmp/r1AqHDMca8.xml:207
-#: /tmp/r1AqHDMca8.xml:223 /tmp/r1AqHDMca8.xml:231 /tmp/r1AqHDMca8.xml:239
+#: /tmp/iN5ZsD3CzY.xml:175 /tmp/iN5ZsD3CzY.xml:199 /tmp/iN5ZsD3CzY.xml:207
+#: /tmp/iN5ZsD3CzY.xml:223 /tmp/iN5ZsD3CzY.xml:231 /tmp/iN5ZsD3CzY.xml:239
msgid "Python"
msgstr ""
@@ -400,8 +400,8 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:182
-#: /tmp/r1AqHDMca8.xml:190 /tmp/r1AqHDMca8.xml:198 /tmp/r1AqHDMca8.xml:206
-#: /tmp/r1AqHDMca8.xml:214
+#: /tmp/iN5ZsD3CzY.xml:190 /tmp/iN5ZsD3CzY.xml:198 /tmp/iN5ZsD3CzY.xml:206
+#: /tmp/iN5ZsD3CzY.xml:214
msgid "Client Service"
msgstr ""
@@ -427,7 +427,7 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:201
-#: /tmp/r1AqHDMca8.xml:209
+#: /tmp/iN5ZsD3CzY.xml:209
msgid "kaner"
msgstr ""
@@ -453,7 +453,7 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:222
-#: /tmp/r1AqHDMca8.xml:230 /tmp/r1AqHDMca8.xml:238
+#: /tmp/iN5ZsD3CzY.xml:230 /tmp/iN5ZsD3CzY.xml:238
msgid "Backend Service"
msgstr ""
@@ -652,7 +652,7 @@
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:353
msgid ""
"<a href=\"<page projects/vidalia>\">Vidalia</a> (<a "
-"href=\"https://svn.torproject.org/vidalia/vidalia/trunk/\">code</a>, <a "
+"href=\"https://gitweb.torproject.org/vidalia.git\">code</a>, <a "
"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug"
" tracker</a>)"
msgstr ""
@@ -684,7 +684,7 @@
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:372
msgid ""
"<a href=\"http://www.atagar.com/arm/\">Arm</a> (<a "
-"href=\"https://svn.torproject.org/svn/arm/trunk/\">code</a>, <a "
+"href=\"https://gitweb.torproject.org/arm.git\">code</a>, <a "
"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug"
" tracker</a>)"
msgstr ""
@@ -713,8 +713,7 @@
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:390
msgid ""
"<a href=\"https://guardianproject.info/apps/orbot/\">Orbot</a> (<a "
-"href=\"https://svn.torproject.org/svn/projects/android/trunk/Orbot/\">code</a>,"
-" <a "
+"href=\"https://gitweb.torproject.org/orbot.git\">code</a>, <a "
"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug"
" tracker</a>)"
msgstr ""
@@ -886,7 +885,7 @@
msgid ""
"<a "
"href=\"https://trac.torproject.org/projects/tor/wiki/projects/EmailAutoResponder\">GetTor</a>"
-" (<a href=\"https://svn.torproject.org/svn/projects/gettor/\">code</a>, <a "
+" (<a href=\"https://gitweb.torproject.org/gettor.git\">code</a>, <a "
"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug"
" tracker</a>)"
msgstr ""
@@ -1905,8 +1904,8 @@
msgid ""
"The vast majority of arm's more interesting functionality lies in its "
"backend <a "
-"href=\"https://svn.torproject.org/svn/arm/trunk/src/util/\">utilities</a>, "
-"so there should be little to no work decoupling the CLI from its backend. "
+"href=\"https://gitweb.torproject.org/arm.git/tree/HEAD:/src/util\">utilities</a>,"
+" so there should be little to no work decoupling the CLI from its backend. "
"Instead, this project would mostly be UI hacking and experimentation, trying"
" different interfaces to find something that's elegant and simple, but "
"matches the information found in the current terminal application."
Modified: translation/trunk/projects/website/po/ar/press/3-low.inthemedia.po
===================================================================
--- translation/trunk/projects/website/po/ar/press/3-low.inthemedia.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/press/3-low.inthemedia.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-06-29 20:41+0200\n"
-"PO-Revision-Date: 2011-07-20 20:29+0000\n"
+"PO-Revision-Date: 2011-07-21 07:24+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/press/3-low.press.po
===================================================================
--- translation/trunk/projects/website/po/ar/press/3-low.press.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/press/3-low.press.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-03-01 16:37+0000\n"
-"PO-Revision-Date: 2011-07-20 20:43+0000\n"
+"PO-Revision-Date: 2011-07-21 07:26+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/press/4-optional.2008-12-19-roadmap-press-release.po
===================================================================
--- translation/trunk/projects/website/po/ar/press/4-optional.2008-12-19-roadmap-press-release.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/press/4-optional.2008-12-19-roadmap-press-release.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-05-02 17:00+0200\n"
-"PO-Revision-Date: 2011-07-20 20:24+0000\n"
+"PO-Revision-Date: 2011-07-21 07:24+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/press/4-optional.2010-03-25-tor-store-press-release.po
===================================================================
--- translation/trunk/projects/website/po/ar/press/4-optional.2010-03-25-tor-store-press-release.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/press/4-optional.2010-03-25-tor-store-press-release.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-05-02 17:00+0200\n"
-"PO-Revision-Date: 2011-07-20 21:00+0000\n"
+"PO-Revision-Date: 2011-07-21 07:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/projects/1-high.torbrowser-split.po
===================================================================
--- translation/trunk/projects/website/po/ar/projects/1-high.torbrowser-split.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/projects/1-high.torbrowser-split.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-12-26 14:32+0000\n"
-"PO-Revision-Date: 2011-07-20 21:06+0000\n"
+"PO-Revision-Date: 2011-07-21 07:30+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/projects/3-low.gettor.po
===================================================================
--- translation/trunk/projects/website/po/ar/projects/3-low.gettor.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/projects/3-low.gettor.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-12-26 17:27+0000\n"
-"PO-Revision-Date: 2011-07-20 20:35+0000\n"
+"PO-Revision-Date: 2011-07-21 07:25+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/projects/3-low.projects.po
===================================================================
--- translation/trunk/projects/website/po/ar/projects/3-low.projects.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/projects/3-low.projects.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-03-17 18:05+0000\n"
-"PO-Revision-Date: 2011-07-20 21:17+0000\n"
+"PO-Revision-Date: 2011-07-21 07:31+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/projects/3-low.puppettor.po
===================================================================
--- translation/trunk/projects/website/po/ar/projects/3-low.puppettor.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/projects/3-low.puppettor.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-12-26 14:32+0000\n"
-"PO-Revision-Date: 2011-07-20 20:21+0000\n"
+"PO-Revision-Date: 2011-07-21 07:23+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/projects/3-low.tordnsel.po
===================================================================
--- translation/trunk/projects/website/po/ar/projects/3-low.tordnsel.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/projects/3-low.tordnsel.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-12-26 14:32+0000\n"
-"PO-Revision-Date: 2011-07-20 20:18+0000\n"
+"PO-Revision-Date: 2011-07-21 07:23+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/projects/4-optional.arm.po
===================================================================
--- translation/trunk/projects/website/po/ar/projects/4-optional.arm.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/projects/4-optional.arm.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-12-26 14:32+0000\n"
-"PO-Revision-Date: 2011-07-20 21:11+0000\n"
+"PO-Revision-Date: 2011-07-21 07:30+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/projects/4-optional.torbrowser-details.po
===================================================================
--- translation/trunk/projects/website/po/ar/projects/4-optional.torbrowser-details.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/projects/4-optional.torbrowser-details.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-12-26 14:32+0000\n"
-"PO-Revision-Date: 2011-07-20 20:41+0000\n"
+"PO-Revision-Date: 2011-07-21 07:26+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/torbutton/3-low.index.po
===================================================================
--- translation/trunk/projects/website/po/ar/torbutton/3-low.index.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/torbutton/3-low.index.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-06-21 08:19+0200\n"
-"PO-Revision-Date: 2011-07-20 20:46+0000\n"
+"PO-Revision-Date: 2011-07-21 07:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/torbutton/3-low.torbutton-faq.po
===================================================================
--- translation/trunk/projects/website/po/ar/torbutton/3-low.torbutton-faq.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/torbutton/3-low.torbutton-faq.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-03-17 18:05+0000\n"
-"PO-Revision-Date: 2011-07-20 20:52+0000\n"
+"PO-Revision-Date: 2011-07-21 07:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/ar/torbutton/3-low.torbutton-options.po
===================================================================
--- translation/trunk/projects/website/po/ar/torbutton/3-low.torbutton-options.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ar/torbutton/3-low.torbutton-options.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-12-26 14:32+0000\n"
-"PO-Revision-Date: 2011-07-20 20:53+0000\n"
+"PO-Revision-Date: 2011-07-21 07:28+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/de/docs/2-medium.faq.po
===================================================================
--- translation/trunk/projects/website/po/de/docs/2-medium.faq.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/de/docs/2-medium.faq.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-07-13 14:57+0200\n"
-"PO-Revision-Date: 2011-07-20 20:17+0000\n"
+"PO-Revision-Date: 2011-07-21 07:23+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/de/download/3-low.download.po
===================================================================
--- translation/trunk/projects/website/po/de/download/3-low.download.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/de/download/3-low.download.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -10,8 +10,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2011-07-13 14:56+0200\n"
-"PO-Revision-Date: 2011-07-18 13:05+0000\n"
+"POT-Creation-Date: 2011-07-20 20:43+0200\n"
+"PO-Revision-Date: 2011-07-21 01:01+0000\n"
"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -200,8 +200,8 @@
msgstr "Tor für Windows ist in vier verschiedenen Paketen verfügbar:"
#. type: Content of: <div><div><table><tr><td><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:102 /tmp/eCkycGCH9H.xml:165
-#: /tmp/eCkycGCH9H.xml:203
+#: /home/runa/tor/website/download/en/download.wml:102 /tmp/jgw2tk3no1.xml:165
+#: /tmp/jgw2tk3no1.xml:203
msgid ""
"The <strong>Tor Browser Bundle</strong> contains everything you need to "
"safely browse the Internet. This package requires no installation. Just "
@@ -248,7 +248,7 @@
msgstr ""
#. type: Content of: <div><div><table><tr><td><p>
-#: /home/runa/tor/website/download/en/download.wml:110 /tmp/eCkycGCH9H.xml:168
+#: /home/runa/tor/website/download/en/download.wml:110 /tmp/jgw2tk3no1.xml:168
msgid ""
"There are two versions of each package, a stable and alpha release. Stable "
"packages are released when we believe the features and code will not change "
@@ -659,7 +659,7 @@
" (<a href=\"../dist/tor-<version-alpha>.tar.gz.asc\">sig</a>)"
#. type: Content of: <div><div><div>
-#: /home/runa/tor/website/download/en/download.wml:265 /tmp/eCkycGCH9H.xml:344
+#: /home/runa/tor/website/download/en/download.wml:265 /tmp/jgw2tk3no1.xml:343
msgid "<br>"
msgstr "<br>"
@@ -820,15 +820,11 @@
#: /home/runa/tor/website/download/en/download.wml:338
msgid ""
"Do not use <a href=\"https://blog.torproject.org/blog/bittorrent-over-tor-"
-"isnt-good-idea\">BitTorrent and Tor</a> together unless you are using a "
-"system like <a href=\"http://tails.boum.org/\">TAILS</a>."
+"isnt-good-idea\">BitTorrent and Tor</a> together."
msgstr ""
-"Benütze nicht <a href=\"https://blog.torproject.org/blog/bittorrent-over-"
-"tor-isnt-good-idea\">BitTorrent und Tor</a> zusammen, außer du verfügst über"
-" eine System wie <a href=\"http://tails.boum.org/\">TAILS</a>."
#. type: Content of: <div><div><div><p>
-#: /home/runa/tor/website/download/en/download.wml:346
+#: /home/runa/tor/website/download/en/download.wml:345
msgid ""
"Be smart and learn more. Understand what Tor does and does not offer. This "
"list of pitfalls isn't complete, and we need your help <a href=\"<page "
@@ -841,42 +837,42 @@
"ihre Dokumentation</a>. "
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:358
+#: /home/runa/tor/website/download/en/download.wml:357
msgid "Jump to:"
msgstr "Springe zu:"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:360
+#: /home/runa/tor/website/download/en/download.wml:359
msgid "<a href=\"#Windows\">Microsoft Windows</a>"
msgstr "<a href=\"#Windows\">Microsoft Windows</a>"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:361
+#: /home/runa/tor/website/download/en/download.wml:360
msgid "<a href=\"#mac\">Apple OS X</a>"
msgstr "<a href=\"#mac\">Apple OS X</a>"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:362
+#: /home/runa/tor/website/download/en/download.wml:361
msgid "<a href=\"#linux\">Linux/Unix</a>"
msgstr "<a href=\"#linux\">Linux/Unix</a>"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:363
+#: /home/runa/tor/website/download/en/download.wml:362
msgid "<a href=\"#smartphones\">Smartphones</a>"
msgstr "<a href=\"#smartphones\">Smartphones</a>"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:364
+#: /home/runa/tor/website/download/en/download.wml:363
msgid "<a href=\"#source\">Source Code</a>"
msgstr "<a href=\"#source\">Quell Code</a>"
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:371
+#: /home/runa/tor/website/download/en/download.wml:370
msgid "What is the (sig) link?"
msgstr "Was ist der (sig) Link?"
#. type: Content of: <div><div><div><div><p>
-#: /home/runa/tor/website/download/en/download.wml:372
+#: /home/runa/tor/website/download/en/download.wml:371
msgid ""
"These are GPG signatures to allow you to verify that your downloaded file is"
" really from The Tor Project and not an imposter."
@@ -886,17 +882,17 @@
"einem Betrüger."
#. type: Content of: <div><div><div><div>
-#: /home/runa/tor/website/download/en/download.wml:375
+#: /home/runa/tor/website/download/en/download.wml:374
msgid "<a href=\"<page docs/verifying-signatures>\">Learn more »</a>"
msgstr "<a href=\"<page docs/verifying-signatures>\">Erfahren Sie mehr »</a>"
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:381
+#: /home/runa/tor/website/download/en/download.wml:380
msgid "Having Trouble?"
msgstr "Probleme?"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:383
+#: /home/runa/tor/website/download/en/download.wml:382
msgid "<a href=\"<page docs/documentation>\">Read the fine manuals</a>"
msgstr ""
"<a href=\"<page docs/documentation>\">Lesen Sie die ausführlichen "
Modified: translation/trunk/projects/website/po/el/about/3-low.translators.po
===================================================================
--- translation/trunk/projects/website/po/el/about/3-low.translators.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/el/about/3-low.translators.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-12-26 14:32+0000\n"
-"PO-Revision-Date: 2011-07-20 21:18+0000\n"
+"PO-Revision-Date: 2011-07-21 07:31+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/es/docs/3-low.debian.po
===================================================================
--- translation/trunk/projects/website/po/es/docs/3-low.debian.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/es/docs/3-low.debian.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -6,8 +6,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2011-07-08 08:43+0200\n"
-"PO-Revision-Date: 2011-07-09 01:14+0000\n"
+"POT-Creation-Date: 2011-07-20 20:44+0200\n"
+"PO-Revision-Date: 2011-07-21 01:00+0000\n"
"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
"Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/torproject/team/es/)\n"
"MIME-Version: 1.0\n"
@@ -32,25 +32,25 @@
#. type: Content of: <div><div><h2>
#: /home/runa/tor/website/docs/en/debian.wml:14
msgid ""
-"<a class=\"anchor\" href=\"#debian\">Option one: Tor on Debian lenny, Debian"
-" sid, or Debian testing</a>"
+"<a class=\"anchor\" href=\"#debian\">Option one: Tor on Debian squeeze, "
+"lenny, Debian sid, or Debian testing</a>"
msgstr ""
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:16 /tmp/hXZfq9nNmb.xml:43
-#: /tmp/hXZfq9nNmb.xml:114 /tmp/hXZfq9nNmb.xml:149
+#: /home/runa/tor/website/docs/en/debian.wml:16 /tmp/zXFkzQsAWX.xml:42
+#: /tmp/zXFkzQsAWX.xml:113 /tmp/zXFkzQsAWX.xml:148
msgid "<br />"
msgstr ""
#. type: Content of: <div><div><p>
#: /home/runa/tor/website/docs/en/debian.wml:19
msgid ""
-"If you're using Debian stable (lenny), unstable (sid), or testing (squeeze),"
-" just run<br /> <tt>apt-get install tor tor-geoipdb</tt> as root."
+"If you're using Debian, just run<br /> <tt>apt-get install tor tor-"
+"geoipdb</tt> as root."
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:26
+#: /home/runa/tor/website/docs/en/debian.wml:25
msgid ""
"Note that this might not always give you the latest stable Tor version, but "
"you will receive important security fixes. To make sure that you're running "
@@ -58,32 +58,33 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:32 /tmp/hXZfq9nNmb.xml:95
-#: /tmp/hXZfq9nNmb.xml:140 /tmp/hXZfq9nNmb.xml:183
+#: /home/runa/tor/website/docs/en/debian.wml:31 /tmp/zXFkzQsAWX.xml:94
+#: /tmp/zXFkzQsAWX.xml:139 /tmp/zXFkzQsAWX.xml:182
msgid ""
"Now Tor is installed and running. Move on to <a href=\"<page docs/tor-doc-"
"unix>#polipo\">step two</a> of the \"Tor on Linux/Unix\" instructions."
msgstr ""
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:37
+#: /home/runa/tor/website/docs/en/debian.wml:36
msgid "<hr /> <a id=\"ubuntu\"></a> <a id=\"packages\"></a>"
msgstr ""
#. type: Content of: <div><div><h2>
-#: /home/runa/tor/website/docs/en/debian.wml:41
+#: /home/runa/tor/website/docs/en/debian.wml:40
msgid "<a class=\"anchor\" href=\"#ubuntu\">Option two: Tor on Ubuntu or Debian</a>"
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:46
+#: /home/runa/tor/website/docs/en/debian.wml:45
msgid ""
-"<b>Do not use the packages in Ubuntu's universe.</b> They are unmaintained "
-"and out of date. That means you'll be missing stability and security fixes."
+"<b>Do not use the packages in Ubuntu's universe.</b> In the past they have "
+"not reliably been updated. That means you could be missing stability and "
+"security fixes."
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:52
+#: /home/runa/tor/website/docs/en/debian.wml:51
msgid ""
"You'll need to set up our package repository before you can fetch Tor. "
"First, you need to figure out the name of your distribution. A quick command"
@@ -92,11 +93,16 @@
msgstr ""
#. type: Content of: <div><div><p><ul><li>
-#: /home/runa/tor/website/docs/en/debian.wml:57
+#: /home/runa/tor/website/docs/en/debian.wml:56
msgid "Debian unstable (sid) is \"sid\""
msgstr ""
#. type: Content of: <div><div><p><ul><li>
+#: /home/runa/tor/website/docs/en/debian.wml:57
+msgid "Debian testing is \"wheezy\""
+msgstr ""
+
+#. type: Content of: <div><div><p><ul><li>
#: /home/runa/tor/website/docs/en/debian.wml:58
msgid "Debian 6.0 (squeeze) is \"squeeze\""
msgstr ""
@@ -131,39 +137,34 @@
msgid "Ubuntu 8.04 is \"hardy\""
msgstr ""
-#. type: Content of: <div><div><p><ul><li>
-#: /home/runa/tor/website/docs/en/debian.wml:65
-msgid "Ubuntu 6.06 is \"dapper\""
-msgstr ""
-
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:68
+#: /home/runa/tor/website/docs/en/debian.wml:67
msgid "Then add this line to your <tt>/etc/apt/sources.list</tt> file:<br />"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:72
+#: /home/runa/tor/website/docs/en/debian.wml:71
#, no-wrap
msgid ""
"deb http://deb.torproject.org/torproject.org <DISTRIBUTION> main\n"
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:74
+#: /home/runa/tor/website/docs/en/debian.wml:73
msgid ""
"where you put the codename of your distribution (i.e. lenny, sid, maverick "
"or whatever it is) in place of <DISTRIBUTION>."
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:80
+#: /home/runa/tor/website/docs/en/debian.wml:79
msgid ""
"Then add the gpg key used to sign the packages by running the following "
"commands at your command prompt:"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:83
+#: /home/runa/tor/website/docs/en/debian.wml:82
#, no-wrap
msgid ""
"gpg --keyserver keys.gnupg.net --recv 886DDD89\n"
@@ -171,14 +172,14 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:86
+#: /home/runa/tor/website/docs/en/debian.wml:85
msgid ""
"Now refresh your sources and install Tor by running the following commands "
"(as root) at your command prompt:"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:89
+#: /home/runa/tor/website/docs/en/debian.wml:88
#, no-wrap
msgid ""
"apt-get update\n"
@@ -186,7 +187,7 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:101
+#: /home/runa/tor/website/docs/en/debian.wml:100
msgid ""
"The DNS name <code>deb.torproject.org</code> is actually a set of "
"independent servers in a DNS round robin configuration. If you for some "
@@ -196,19 +197,19 @@
msgstr ""
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:109
+#: /home/runa/tor/website/docs/en/debian.wml:108
msgid "<hr /> <a id=\"development\"></a>"
msgstr ""
#. type: Content of: <div><div><h2>
-#: /home/runa/tor/website/docs/en/debian.wml:112
+#: /home/runa/tor/website/docs/en/debian.wml:111
msgid ""
"<a class=\"anchor\" href=\"#development\">Option three: Using the "
"development branch of Tor on Debian or Ubuntu</a>"
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:116
+#: /home/runa/tor/website/docs/en/debian.wml:115
msgid ""
"If you want to use the <a href=\"<page "
"download/download>#packagediff\">development branch</a> of Tor instead (more"
@@ -217,7 +218,7 @@
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:121
+#: /home/runa/tor/website/docs/en/debian.wml:120
#, no-wrap
msgid ""
"deb http://deb.torproject.org/torproject.org <DISTRIBUTION> main\n"
@@ -225,19 +226,19 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:124
+#: /home/runa/tor/website/docs/en/debian.wml:123
msgid ""
"where you again substitute the name of your distro (lenny, sid, maverick, "
"...) in place of <DISTRIBUTION>."
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:130
+#: /home/runa/tor/website/docs/en/debian.wml:129
msgid "Then run the following commands at your command prompt:"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:132
+#: /home/runa/tor/website/docs/en/debian.wml:131
#, no-wrap
msgid ""
"gpg --keyserver keys.gnupg.net --recv 886DDD89\n"
@@ -247,17 +248,17 @@
msgstr ""
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:145
+#: /home/runa/tor/website/docs/en/debian.wml:144
msgid "<hr /> <a id=\"source\"></a>"
msgstr ""
#. type: Content of: <div><div><h2>
-#: /home/runa/tor/website/docs/en/debian.wml:148
+#: /home/runa/tor/website/docs/en/debian.wml:147
msgid "<a class=\"anchor\" href=\"#source\">Building from source</a>"
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:152
+#: /home/runa/tor/website/docs/en/debian.wml:151
msgid ""
"If you want to build your own debs from source you must first add an "
"appropriate <tt>deb-src</tt> line to <tt>sources.list</tt>."
@@ -266,7 +267,7 @@
#. PO4ASHARPBEGIN For the stable version.PO4ASHARPEND
#. PO4ASHARPBEGIN For the unstable version.PO4ASHARPEND
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:155
+#: /home/runa/tor/website/docs/en/debian.wml:154
#, no-wrap
msgid ""
"\n"
@@ -278,14 +279,14 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:162
+#: /home/runa/tor/website/docs/en/debian.wml:161
msgid ""
"You also need to install the necessary packages to build your own debs and "
"the packages needed to build Tor:"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:165
+#: /home/runa/tor/website/docs/en/debian.wml:164
#, no-wrap
msgid ""
"apt-get install build-essential fakeroot devscripts\n"
@@ -293,12 +294,12 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:168
+#: /home/runa/tor/website/docs/en/debian.wml:167
msgid "Then you can build Tor in ~/debian-packages:"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:170
+#: /home/runa/tor/website/docs/en/debian.wml:169
#, no-wrap
msgid ""
"mkdir ~/debian-packages; cd ~/debian-packages\n"
@@ -309,23 +310,23 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:176
+#: /home/runa/tor/website/docs/en/debian.wml:175
msgid "Now you can install the new package:"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:178
+#: /home/runa/tor/website/docs/en/debian.wml:177
#, no-wrap
msgid "sudo dpkg -i tor_*.deb\n"
msgstr ""
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:188
+#: /home/runa/tor/website/docs/en/debian.wml:187
msgid "<hr />"
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:190
+#: /home/runa/tor/website/docs/en/debian.wml:189
msgid ""
"If you have suggestions for improving this document, please <a href=\"<page "
"about/contact>\">send them to us</a>. Thanks!"
Modified: translation/trunk/projects/website/po/es/download/3-low.download.po
===================================================================
--- translation/trunk/projects/website/po/es/download/3-low.download.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/es/download/3-low.download.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -6,8 +6,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2011-07-13 14:56+0200\n"
-"PO-Revision-Date: 2011-07-14 01:02+0000\n"
+"POT-Creation-Date: 2011-07-20 20:43+0200\n"
+"PO-Revision-Date: 2011-07-21 01:01+0000\n"
"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
"Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/torproject/team/es/)\n"
"MIME-Version: 1.0\n"
@@ -174,8 +174,8 @@
msgstr ""
#. type: Content of: <div><div><table><tr><td><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:102 /tmp/eCkycGCH9H.xml:165
-#: /tmp/eCkycGCH9H.xml:203
+#: /home/runa/tor/website/download/en/download.wml:102 /tmp/jgw2tk3no1.xml:165
+#: /tmp/jgw2tk3no1.xml:203
msgid ""
"The <strong>Tor Browser Bundle</strong> contains everything you need to "
"safely browse the Internet. This package requires no installation. Just "
@@ -209,7 +209,7 @@
msgstr ""
#. type: Content of: <div><div><table><tr><td><p>
-#: /home/runa/tor/website/download/en/download.wml:110 /tmp/eCkycGCH9H.xml:168
+#: /home/runa/tor/website/download/en/download.wml:110 /tmp/jgw2tk3no1.xml:168
msgid ""
"There are two versions of each package, a stable and alpha release. Stable "
"packages are released when we believe the features and code will not change "
@@ -518,7 +518,7 @@
msgstr ""
#. type: Content of: <div><div><div>
-#: /home/runa/tor/website/download/en/download.wml:265 /tmp/eCkycGCH9H.xml:344
+#: /home/runa/tor/website/download/en/download.wml:265 /tmp/jgw2tk3no1.xml:343
msgid "<br>"
msgstr ""
@@ -618,12 +618,11 @@
#: /home/runa/tor/website/download/en/download.wml:338
msgid ""
"Do not use <a href=\"https://blog.torproject.org/blog/bittorrent-over-tor-"
-"isnt-good-idea\">BitTorrent and Tor</a> together unless you are using a "
-"system like <a href=\"http://tails.boum.org/\">TAILS</a>."
+"isnt-good-idea\">BitTorrent and Tor</a> together."
msgstr ""
#. type: Content of: <div><div><div><p>
-#: /home/runa/tor/website/download/en/download.wml:346
+#: /home/runa/tor/website/download/en/download.wml:345
msgid ""
"Be smart and learn more. Understand what Tor does and does not offer. This "
"list of pitfalls isn't complete, and we need your help <a href=\"<page "
@@ -632,59 +631,59 @@
msgstr ""
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:358
+#: /home/runa/tor/website/download/en/download.wml:357
msgid "Jump to:"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:360
+#: /home/runa/tor/website/download/en/download.wml:359
msgid "<a href=\"#Windows\">Microsoft Windows</a>"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:361
+#: /home/runa/tor/website/download/en/download.wml:360
msgid "<a href=\"#mac\">Apple OS X</a>"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:362
+#: /home/runa/tor/website/download/en/download.wml:361
msgid "<a href=\"#linux\">Linux/Unix</a>"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:363
+#: /home/runa/tor/website/download/en/download.wml:362
msgid "<a href=\"#smartphones\">Smartphones</a>"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:364
+#: /home/runa/tor/website/download/en/download.wml:363
msgid "<a href=\"#source\">Source Code</a>"
msgstr ""
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:371
+#: /home/runa/tor/website/download/en/download.wml:370
msgid "What is the (sig) link?"
msgstr ""
#. type: Content of: <div><div><div><div><p>
-#: /home/runa/tor/website/download/en/download.wml:372
+#: /home/runa/tor/website/download/en/download.wml:371
msgid ""
"These are GPG signatures to allow you to verify that your downloaded file is"
" really from The Tor Project and not an imposter."
msgstr ""
#. type: Content of: <div><div><div><div>
-#: /home/runa/tor/website/download/en/download.wml:375
+#: /home/runa/tor/website/download/en/download.wml:374
msgid "<a href=\"<page docs/verifying-signatures>\">Learn more »</a>"
msgstr ""
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:381
+#: /home/runa/tor/website/download/en/download.wml:380
msgid "Having Trouble?"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:383
+#: /home/runa/tor/website/download/en/download.wml:382
msgid "<a href=\"<page docs/documentation>\">Read the fine manuals</a>"
msgstr ""
Modified: translation/trunk/projects/website/po/es/getinvolved/4-optional.volunteer.po
===================================================================
--- translation/trunk/projects/website/po/es/getinvolved/4-optional.volunteer.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/es/getinvolved/4-optional.volunteer.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -6,8 +6,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2011-06-21 08:19+0200\n"
-"PO-Revision-Date: 2011-06-22 00:56+0000\n"
+"POT-Creation-Date: 2011-07-20 20:44+0200\n"
+"PO-Revision-Date: 2011-07-21 01:02+0000\n"
"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
"Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/torproject/team/es/)\n"
"MIME-Version: 1.0\n"
@@ -190,19 +190,19 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:86
-#: /tmp/r1AqHDMca8.xml:94
+#: /tmp/iN5ZsD3CzY.xml:94
msgid "Core"
msgstr ""
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:87
-#: /tmp/r1AqHDMca8.xml:119
+#: /tmp/iN5ZsD3CzY.xml:119
msgid "C"
msgstr ""
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:88
-#: /tmp/r1AqHDMca8.xml:112 /tmp/r1AqHDMca8.xml:144 /tmp/r1AqHDMca8.xml:184
+#: /tmp/iN5ZsD3CzY.xml:112 /tmp/iN5ZsD3CzY.xml:144 /tmp/iN5ZsD3CzY.xml:184
msgid "Heavy"
msgstr ""
@@ -218,13 +218,13 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:95
-#: /tmp/r1AqHDMca8.xml:151 /tmp/r1AqHDMca8.xml:183
+#: /tmp/iN5ZsD3CzY.xml:151 /tmp/iN5ZsD3CzY.xml:183
msgid "Java"
msgstr ""
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:96
-#: /tmp/r1AqHDMca8.xml:192 /tmp/r1AqHDMca8.xml:216 /tmp/r1AqHDMca8.xml:240
+#: /tmp/iN5ZsD3CzY.xml:192 /tmp/iN5ZsD3CzY.xml:216 /tmp/iN5ZsD3CzY.xml:240
msgid "None"
msgstr ""
@@ -235,19 +235,19 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:102
-#: /tmp/r1AqHDMca8.xml:110 /tmp/r1AqHDMca8.xml:118 /tmp/r1AqHDMca8.xml:126
+#: /tmp/iN5ZsD3CzY.xml:110 /tmp/iN5ZsD3CzY.xml:118 /tmp/iN5ZsD3CzY.xml:126
msgid "Usability"
msgstr ""
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:103
-#: /tmp/r1AqHDMca8.xml:111 /tmp/r1AqHDMca8.xml:127
+#: /tmp/iN5ZsD3CzY.xml:111 /tmp/iN5ZsD3CzY.xml:127
msgid "Sys Admin"
msgstr ""
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:104
-#: /tmp/r1AqHDMca8.xml:152 /tmp/r1AqHDMca8.xml:160 /tmp/r1AqHDMca8.xml:224
+#: /tmp/iN5ZsD3CzY.xml:152 /tmp/iN5ZsD3CzY.xml:160 /tmp/iN5ZsD3CzY.xml:224
msgid "Moderate"
msgstr ""
@@ -273,9 +273,9 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:120
-#: /tmp/r1AqHDMca8.xml:128 /tmp/r1AqHDMca8.xml:136 /tmp/r1AqHDMca8.xml:168
-#: /tmp/r1AqHDMca8.xml:176 /tmp/r1AqHDMca8.xml:200 /tmp/r1AqHDMca8.xml:208
-#: /tmp/r1AqHDMca8.xml:232
+#: /tmp/iN5ZsD3CzY.xml:128 /tmp/iN5ZsD3CzY.xml:136 /tmp/iN5ZsD3CzY.xml:168
+#: /tmp/iN5ZsD3CzY.xml:176 /tmp/iN5ZsD3CzY.xml:200 /tmp/iN5ZsD3CzY.xml:208
+#: /tmp/iN5ZsD3CzY.xml:232
msgid "Light"
msgstr ""
@@ -301,7 +301,7 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:134
-#: /tmp/r1AqHDMca8.xml:142 /tmp/r1AqHDMca8.xml:150
+#: /tmp/iN5ZsD3CzY.xml:142 /tmp/iN5ZsD3CzY.xml:150
msgid "User Interface"
msgstr ""
@@ -357,7 +357,7 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:161
-#: /tmp/r1AqHDMca8.xml:177 /tmp/r1AqHDMca8.xml:233
+#: /tmp/iN5ZsD3CzY.xml:177 /tmp/iN5ZsD3CzY.xml:233
msgid "mikeperry"
msgstr ""
@@ -373,8 +373,8 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:167
-#: /tmp/r1AqHDMca8.xml:175 /tmp/r1AqHDMca8.xml:199 /tmp/r1AqHDMca8.xml:207
-#: /tmp/r1AqHDMca8.xml:223 /tmp/r1AqHDMca8.xml:231 /tmp/r1AqHDMca8.xml:239
+#: /tmp/iN5ZsD3CzY.xml:175 /tmp/iN5ZsD3CzY.xml:199 /tmp/iN5ZsD3CzY.xml:207
+#: /tmp/iN5ZsD3CzY.xml:223 /tmp/iN5ZsD3CzY.xml:231 /tmp/iN5ZsD3CzY.xml:239
msgid "Python"
msgstr ""
@@ -400,8 +400,8 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:182
-#: /tmp/r1AqHDMca8.xml:190 /tmp/r1AqHDMca8.xml:198 /tmp/r1AqHDMca8.xml:206
-#: /tmp/r1AqHDMca8.xml:214
+#: /tmp/iN5ZsD3CzY.xml:190 /tmp/iN5ZsD3CzY.xml:198 /tmp/iN5ZsD3CzY.xml:206
+#: /tmp/iN5ZsD3CzY.xml:214
msgid "Client Service"
msgstr ""
@@ -427,7 +427,7 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:201
-#: /tmp/r1AqHDMca8.xml:209
+#: /tmp/iN5ZsD3CzY.xml:209
msgid "kaner"
msgstr ""
@@ -453,7 +453,7 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:222
-#: /tmp/r1AqHDMca8.xml:230 /tmp/r1AqHDMca8.xml:238
+#: /tmp/iN5ZsD3CzY.xml:230 /tmp/iN5ZsD3CzY.xml:238
msgid "Backend Service"
msgstr ""
@@ -652,7 +652,7 @@
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:353
msgid ""
"<a href=\"<page projects/vidalia>\">Vidalia</a> (<a "
-"href=\"https://svn.torproject.org/vidalia/vidalia/trunk/\">code</a>, <a "
+"href=\"https://gitweb.torproject.org/vidalia.git\">code</a>, <a "
"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug"
" tracker</a>)"
msgstr ""
@@ -684,7 +684,7 @@
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:372
msgid ""
"<a href=\"http://www.atagar.com/arm/\">Arm</a> (<a "
-"href=\"https://svn.torproject.org/svn/arm/trunk/\">code</a>, <a "
+"href=\"https://gitweb.torproject.org/arm.git\">code</a>, <a "
"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug"
" tracker</a>)"
msgstr ""
@@ -713,8 +713,7 @@
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:390
msgid ""
"<a href=\"https://guardianproject.info/apps/orbot/\">Orbot</a> (<a "
-"href=\"https://svn.torproject.org/svn/projects/android/trunk/Orbot/\">code</a>,"
-" <a "
+"href=\"https://gitweb.torproject.org/orbot.git\">code</a>, <a "
"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug"
" tracker</a>)"
msgstr ""
@@ -886,7 +885,7 @@
msgid ""
"<a "
"href=\"https://trac.torproject.org/projects/tor/wiki/projects/EmailAutoResponder\">GetTor</a>"
-" (<a href=\"https://svn.torproject.org/svn/projects/gettor/\">code</a>, <a "
+" (<a href=\"https://gitweb.torproject.org/gettor.git\">code</a>, <a "
"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug"
" tracker</a>)"
msgstr ""
@@ -1905,8 +1904,8 @@
msgid ""
"The vast majority of arm's more interesting functionality lies in its "
"backend <a "
-"href=\"https://svn.torproject.org/svn/arm/trunk/src/util/\">utilities</a>, "
-"so there should be little to no work decoupling the CLI from its backend. "
+"href=\"https://gitweb.torproject.org/arm.git/tree/HEAD:/src/util\">utilities</a>,"
+" so there should be little to no work decoupling the CLI from its backend. "
"Instead, this project would mostly be UI hacking and experimentation, trying"
" different interfaces to find something that's elegant and simple, but "
"matches the information found in the current terminal application."
Modified: translation/trunk/projects/website/po/es/press/4-optional.2010-03-25-tor-store-press-release.po
===================================================================
--- translation/trunk/projects/website/po/es/press/4-optional.2010-03-25-tor-store-press-release.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/es/press/4-optional.2010-03-25-tor-store-press-release.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-05-02 17:00+0200\n"
-"PO-Revision-Date: 2011-07-20 21:00+0000\n"
+"PO-Revision-Date: 2011-07-21 07:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/torproject/team/es/)\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/fa/about/2-medium.torusers.po
===================================================================
--- translation/trunk/projects/website/po/fa/about/2-medium.torusers.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/fa/about/2-medium.torusers.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-12-05 19:13+0000\n"
-"PO-Revision-Date: 2011-07-20 20:36+0000\n"
+"PO-Revision-Date: 2011-07-21 07:25+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/fa/about/3-low.board.po
===================================================================
--- translation/trunk/projects/website/po/fa/about/3-low.board.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/fa/about/3-low.board.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-06-21 08:19+0200\n"
-"PO-Revision-Date: 2011-07-20 20:59+0000\n"
+"PO-Revision-Date: 2011-07-21 07:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/fa/about/3-low.contact.po
===================================================================
--- translation/trunk/projects/website/po/fa/about/3-low.contact.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/fa/about/3-low.contact.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-07-08 08:44+0200\n"
-"PO-Revision-Date: 2011-07-20 20:19+0000\n"
+"PO-Revision-Date: 2011-07-21 07:23+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/fa/about/3-low.corepeople.po
===================================================================
--- translation/trunk/projects/website/po/fa/about/3-low.corepeople.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/fa/about/3-low.corepeople.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-06-21 08:19+0200\n"
-"PO-Revision-Date: 2011-07-20 20:48+0000\n"
+"PO-Revision-Date: 2011-07-21 07:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/fa/about/3-low.financials.po
===================================================================
--- translation/trunk/projects/website/po/fa/about/3-low.financials.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/fa/about/3-low.financials.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-12-26 14:32+0000\n"
-"PO-Revision-Date: 2011-07-20 20:45+0000\n"
+"PO-Revision-Date: 2011-07-21 07:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/fa/about/3-low.translators.po
===================================================================
--- translation/trunk/projects/website/po/fa/about/3-low.translators.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/fa/about/3-low.translators.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-12-26 14:32+0000\n"
-"PO-Revision-Date: 2011-07-20 21:18+0000\n"
+"PO-Revision-Date: 2011-07-21 07:31+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/fa/docs/3-low.debian.po
===================================================================
--- translation/trunk/projects/website/po/fa/docs/3-low.debian.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/fa/docs/3-low.debian.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,8 +7,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2011-07-08 08:43+0200\n"
-"PO-Revision-Date: 2011-07-09 01:14+0000\n"
+"POT-Creation-Date: 2011-07-20 20:44+0200\n"
+"PO-Revision-Date: 2011-07-21 01:00+0000\n"
"Last-Translator: behravan <behravanhamed(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -33,25 +33,25 @@
#. type: Content of: <div><div><h2>
#: /home/runa/tor/website/docs/en/debian.wml:14
msgid ""
-"<a class=\"anchor\" href=\"#debian\">Option one: Tor on Debian lenny, Debian"
-" sid, or Debian testing</a>"
+"<a class=\"anchor\" href=\"#debian\">Option one: Tor on Debian squeeze, "
+"lenny, Debian sid, or Debian testing</a>"
msgstr ""
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:16 /tmp/hXZfq9nNmb.xml:43
-#: /tmp/hXZfq9nNmb.xml:114 /tmp/hXZfq9nNmb.xml:149
+#: /home/runa/tor/website/docs/en/debian.wml:16 /tmp/zXFkzQsAWX.xml:42
+#: /tmp/zXFkzQsAWX.xml:113 /tmp/zXFkzQsAWX.xml:148
msgid "<br />"
msgstr "<br />"
#. type: Content of: <div><div><p>
#: /home/runa/tor/website/docs/en/debian.wml:19
msgid ""
-"If you're using Debian stable (lenny), unstable (sid), or testing (squeeze),"
-" just run<br /> <tt>apt-get install tor tor-geoipdb</tt> as root."
+"If you're using Debian, just run<br /> <tt>apt-get install tor tor-"
+"geoipdb</tt> as root."
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:26
+#: /home/runa/tor/website/docs/en/debian.wml:25
msgid ""
"Note that this might not always give you the latest stable Tor version, but "
"you will receive important security fixes. To make sure that you're running "
@@ -59,32 +59,33 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:32 /tmp/hXZfq9nNmb.xml:95
-#: /tmp/hXZfq9nNmb.xml:140 /tmp/hXZfq9nNmb.xml:183
+#: /home/runa/tor/website/docs/en/debian.wml:31 /tmp/zXFkzQsAWX.xml:94
+#: /tmp/zXFkzQsAWX.xml:139 /tmp/zXFkzQsAWX.xml:182
msgid ""
"Now Tor is installed and running. Move on to <a href=\"<page docs/tor-doc-"
"unix>#polipo\">step two</a> of the \"Tor on Linux/Unix\" instructions."
msgstr ""
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:37
+#: /home/runa/tor/website/docs/en/debian.wml:36
msgid "<hr /> <a id=\"ubuntu\"></a> <a id=\"packages\"></a>"
msgstr ""
#. type: Content of: <div><div><h2>
-#: /home/runa/tor/website/docs/en/debian.wml:41
+#: /home/runa/tor/website/docs/en/debian.wml:40
msgid "<a class=\"anchor\" href=\"#ubuntu\">Option two: Tor on Ubuntu or Debian</a>"
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:46
+#: /home/runa/tor/website/docs/en/debian.wml:45
msgid ""
-"<b>Do not use the packages in Ubuntu's universe.</b> They are unmaintained "
-"and out of date. That means you'll be missing stability and security fixes."
+"<b>Do not use the packages in Ubuntu's universe.</b> In the past they have "
+"not reliably been updated. That means you could be missing stability and "
+"security fixes."
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:52
+#: /home/runa/tor/website/docs/en/debian.wml:51
msgid ""
"You'll need to set up our package repository before you can fetch Tor. "
"First, you need to figure out the name of your distribution. A quick command"
@@ -93,11 +94,16 @@
msgstr ""
#. type: Content of: <div><div><p><ul><li>
-#: /home/runa/tor/website/docs/en/debian.wml:57
+#: /home/runa/tor/website/docs/en/debian.wml:56
msgid "Debian unstable (sid) is \"sid\""
msgstr ""
#. type: Content of: <div><div><p><ul><li>
+#: /home/runa/tor/website/docs/en/debian.wml:57
+msgid "Debian testing is \"wheezy\""
+msgstr ""
+
+#. type: Content of: <div><div><p><ul><li>
#: /home/runa/tor/website/docs/en/debian.wml:58
msgid "Debian 6.0 (squeeze) is \"squeeze\""
msgstr ""
@@ -132,39 +138,34 @@
msgid "Ubuntu 8.04 is \"hardy\""
msgstr ""
-#. type: Content of: <div><div><p><ul><li>
-#: /home/runa/tor/website/docs/en/debian.wml:65
-msgid "Ubuntu 6.06 is \"dapper\""
-msgstr ""
-
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:68
+#: /home/runa/tor/website/docs/en/debian.wml:67
msgid "Then add this line to your <tt>/etc/apt/sources.list</tt> file:<br />"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:72
+#: /home/runa/tor/website/docs/en/debian.wml:71
#, no-wrap
msgid ""
"deb http://deb.torproject.org/torproject.org <DISTRIBUTION> main\n"
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:74
+#: /home/runa/tor/website/docs/en/debian.wml:73
msgid ""
"where you put the codename of your distribution (i.e. lenny, sid, maverick "
"or whatever it is) in place of <DISTRIBUTION>."
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:80
+#: /home/runa/tor/website/docs/en/debian.wml:79
msgid ""
"Then add the gpg key used to sign the packages by running the following "
"commands at your command prompt:"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:83
+#: /home/runa/tor/website/docs/en/debian.wml:82
#, no-wrap
msgid ""
"gpg --keyserver keys.gnupg.net --recv 886DDD89\n"
@@ -172,14 +173,14 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:86
+#: /home/runa/tor/website/docs/en/debian.wml:85
msgid ""
"Now refresh your sources and install Tor by running the following commands "
"(as root) at your command prompt:"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:89
+#: /home/runa/tor/website/docs/en/debian.wml:88
#, no-wrap
msgid ""
"apt-get update\n"
@@ -187,7 +188,7 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:101
+#: /home/runa/tor/website/docs/en/debian.wml:100
msgid ""
"The DNS name <code>deb.torproject.org</code> is actually a set of "
"independent servers in a DNS round robin configuration. If you for some "
@@ -197,19 +198,19 @@
msgstr ""
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:109
+#: /home/runa/tor/website/docs/en/debian.wml:108
msgid "<hr /> <a id=\"development\"></a>"
msgstr ""
#. type: Content of: <div><div><h2>
-#: /home/runa/tor/website/docs/en/debian.wml:112
+#: /home/runa/tor/website/docs/en/debian.wml:111
msgid ""
"<a class=\"anchor\" href=\"#development\">Option three: Using the "
"development branch of Tor on Debian or Ubuntu</a>"
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:116
+#: /home/runa/tor/website/docs/en/debian.wml:115
msgid ""
"If you want to use the <a href=\"<page "
"download/download>#packagediff\">development branch</a> of Tor instead (more"
@@ -218,7 +219,7 @@
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:121
+#: /home/runa/tor/website/docs/en/debian.wml:120
#, no-wrap
msgid ""
"deb http://deb.torproject.org/torproject.org <DISTRIBUTION> main\n"
@@ -226,19 +227,19 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:124
+#: /home/runa/tor/website/docs/en/debian.wml:123
msgid ""
"where you again substitute the name of your distro (lenny, sid, maverick, "
"...) in place of <DISTRIBUTION>."
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:130
+#: /home/runa/tor/website/docs/en/debian.wml:129
msgid "Then run the following commands at your command prompt:"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:132
+#: /home/runa/tor/website/docs/en/debian.wml:131
#, no-wrap
msgid ""
"gpg --keyserver keys.gnupg.net --recv 886DDD89\n"
@@ -248,17 +249,17 @@
msgstr ""
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:145
+#: /home/runa/tor/website/docs/en/debian.wml:144
msgid "<hr /> <a id=\"source\"></a>"
msgstr ""
#. type: Content of: <div><div><h2>
-#: /home/runa/tor/website/docs/en/debian.wml:148
+#: /home/runa/tor/website/docs/en/debian.wml:147
msgid "<a class=\"anchor\" href=\"#source\">Building from source</a>"
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:152
+#: /home/runa/tor/website/docs/en/debian.wml:151
msgid ""
"If you want to build your own debs from source you must first add an "
"appropriate <tt>deb-src</tt> line to <tt>sources.list</tt>."
@@ -267,7 +268,7 @@
#. PO4ASHARPBEGIN For the stable version.PO4ASHARPEND
#. PO4ASHARPBEGIN For the unstable version.PO4ASHARPEND
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:155
+#: /home/runa/tor/website/docs/en/debian.wml:154
#, no-wrap
msgid ""
"\n"
@@ -279,14 +280,14 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:162
+#: /home/runa/tor/website/docs/en/debian.wml:161
msgid ""
"You also need to install the necessary packages to build your own debs and "
"the packages needed to build Tor:"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:165
+#: /home/runa/tor/website/docs/en/debian.wml:164
#, no-wrap
msgid ""
"apt-get install build-essential fakeroot devscripts\n"
@@ -294,12 +295,12 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:168
+#: /home/runa/tor/website/docs/en/debian.wml:167
msgid "Then you can build Tor in ~/debian-packages:"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:170
+#: /home/runa/tor/website/docs/en/debian.wml:169
#, no-wrap
msgid ""
"mkdir ~/debian-packages; cd ~/debian-packages\n"
@@ -310,23 +311,23 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:176
+#: /home/runa/tor/website/docs/en/debian.wml:175
msgid "Now you can install the new package:"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:178
+#: /home/runa/tor/website/docs/en/debian.wml:177
#, no-wrap
msgid "sudo dpkg -i tor_*.deb\n"
msgstr ""
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:188
+#: /home/runa/tor/website/docs/en/debian.wml:187
msgid "<hr />"
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:190
+#: /home/runa/tor/website/docs/en/debian.wml:189
msgid ""
"If you have suggestions for improving this document, please <a href=\"<page "
"about/contact>\">send them to us</a>. Thanks!"
Modified: translation/trunk/projects/website/po/fa/download/3-low.download.po
===================================================================
--- translation/trunk/projects/website/po/fa/download/3-low.download.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/fa/download/3-low.download.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,8 +7,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2011-07-13 14:56+0200\n"
-"PO-Revision-Date: 2011-07-14 01:02+0000\n"
+"POT-Creation-Date: 2011-07-20 20:43+0200\n"
+"PO-Revision-Date: 2011-07-21 01:01+0000\n"
"Last-Translator: behravan <behravanhamed(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -175,8 +175,8 @@
msgstr ""
#. type: Content of: <div><div><table><tr><td><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:102 /tmp/eCkycGCH9H.xml:165
-#: /tmp/eCkycGCH9H.xml:203
+#: /home/runa/tor/website/download/en/download.wml:102 /tmp/jgw2tk3no1.xml:165
+#: /tmp/jgw2tk3no1.xml:203
msgid ""
"The <strong>Tor Browser Bundle</strong> contains everything you need to "
"safely browse the Internet. This package requires no installation. Just "
@@ -210,7 +210,7 @@
msgstr ""
#. type: Content of: <div><div><table><tr><td><p>
-#: /home/runa/tor/website/download/en/download.wml:110 /tmp/eCkycGCH9H.xml:168
+#: /home/runa/tor/website/download/en/download.wml:110 /tmp/jgw2tk3no1.xml:168
msgid ""
"There are two versions of each package, a stable and alpha release. Stable "
"packages are released when we believe the features and code will not change "
@@ -519,7 +519,7 @@
msgstr ""
#. type: Content of: <div><div><div>
-#: /home/runa/tor/website/download/en/download.wml:265 /tmp/eCkycGCH9H.xml:344
+#: /home/runa/tor/website/download/en/download.wml:265 /tmp/jgw2tk3no1.xml:343
msgid "<br>"
msgstr ""
@@ -619,12 +619,11 @@
#: /home/runa/tor/website/download/en/download.wml:338
msgid ""
"Do not use <a href=\"https://blog.torproject.org/blog/bittorrent-over-tor-"
-"isnt-good-idea\">BitTorrent and Tor</a> together unless you are using a "
-"system like <a href=\"http://tails.boum.org/\">TAILS</a>."
+"isnt-good-idea\">BitTorrent and Tor</a> together."
msgstr ""
#. type: Content of: <div><div><div><p>
-#: /home/runa/tor/website/download/en/download.wml:346
+#: /home/runa/tor/website/download/en/download.wml:345
msgid ""
"Be smart and learn more. Understand what Tor does and does not offer. This "
"list of pitfalls isn't complete, and we need your help <a href=\"<page "
@@ -633,59 +632,59 @@
msgstr ""
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:358
+#: /home/runa/tor/website/download/en/download.wml:357
msgid "Jump to:"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:360
+#: /home/runa/tor/website/download/en/download.wml:359
msgid "<a href=\"#Windows\">Microsoft Windows</a>"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:361
+#: /home/runa/tor/website/download/en/download.wml:360
msgid "<a href=\"#mac\">Apple OS X</a>"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:362
+#: /home/runa/tor/website/download/en/download.wml:361
msgid "<a href=\"#linux\">Linux/Unix</a>"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:363
+#: /home/runa/tor/website/download/en/download.wml:362
msgid "<a href=\"#smartphones\">Smartphones</a>"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:364
+#: /home/runa/tor/website/download/en/download.wml:363
msgid "<a href=\"#source\">Source Code</a>"
msgstr ""
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:371
+#: /home/runa/tor/website/download/en/download.wml:370
msgid "What is the (sig) link?"
msgstr ""
#. type: Content of: <div><div><div><div><p>
-#: /home/runa/tor/website/download/en/download.wml:372
+#: /home/runa/tor/website/download/en/download.wml:371
msgid ""
"These are GPG signatures to allow you to verify that your downloaded file is"
" really from The Tor Project and not an imposter."
msgstr ""
#. type: Content of: <div><div><div><div>
-#: /home/runa/tor/website/download/en/download.wml:375
+#: /home/runa/tor/website/download/en/download.wml:374
msgid "<a href=\"<page docs/verifying-signatures>\">Learn more »</a>"
msgstr ""
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:381
+#: /home/runa/tor/website/download/en/download.wml:380
msgid "Having Trouble?"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:383
+#: /home/runa/tor/website/download/en/download.wml:382
msgid "<a href=\"<page docs/documentation>\">Read the fine manuals</a>"
msgstr ""
Modified: translation/trunk/projects/website/po/fa/getinvolved/4-optional.research.po
===================================================================
--- translation/trunk/projects/website/po/fa/getinvolved/4-optional.research.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/fa/getinvolved/4-optional.research.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -2,14 +2,15 @@
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
#
+# <aalaeiarash(a)gmail.com>, 2011.
# <behravanhamed(a)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: 2011-02-12 12:20+0000\n"
-"PO-Revision-Date: 2011-06-29 15:17+0000\n"
-"Last-Translator: behravan <behravanhamed(a)gmail.com>\n"
+"PO-Revision-Date: 2011-07-21 01:27+0000\n"
+"Last-Translator: arashaalaei <aalaeiarash(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -27,7 +28,7 @@
#. type: Content of: <div><div><h2>
#: /home/runa/tor/website/getinvolved/en/research.wml:13
msgid "Tor: Research"
-msgstr ""
+msgstr "تور : پژوهش"
#. type: Content of: <div><div>
#: /home/runa/tor/website/getinvolved/en/research.wml:14
@@ -123,12 +124,12 @@
#. type: Content of: <div><div>
#: /home/runa/tor/website/getinvolved/en/research.wml:100
msgid "<a id=\"Groups\"></a>"
-msgstr ""
+msgstr "<a id=\"گروه ها\"></a>"
#. type: Content of: <div><div><h2>
#: /home/runa/tor/website/getinvolved/en/research.wml:101
msgid "<a class=\"anchor\" href=\"#Groups\">Research Groups</a>"
-msgstr ""
+msgstr "<a class=\"anchor\" href=\"#Groups\">گروه های پژوهشی</a>"
#. type: Content of: <div><div><p>
#: /home/runa/tor/website/getinvolved/en/research.wml:103
@@ -136,6 +137,8 @@
"Interested to find other anonymity researchers? Here are some research "
"groups you should take a look at."
msgstr ""
+"علاقه مند به پیدا کردن سایر محققان برنامه های آنانومایزر هستید؟ در اینجا "
+"برخی از گروه های تحقیقاتی را برای شما معرفی می کنیم"
#. type: Content of: <div><div><ul><li>
#: /home/runa/tor/website/getinvolved/en/research.wml:107
@@ -143,13 +146,14 @@
"Ian Goldberg's <a href=\"http://crysp.uwaterloo.ca/\">CrySP</a> group at "
"Waterloo."
msgstr ""
+"ایان گلدبرگ <a href=\"http://crysp.uwaterloo.ca/\">CrySP</a> گروه در واترلو."
#. type: Content of: <div><div><ul><li>
#: /home/runa/tor/website/getinvolved/en/research.wml:110
msgid ""
"<a href=\"http://www-users.cs.umn.edu/~hopper/\">Nick Hopper</a>'s group at "
"UMN."
-msgstr ""
+msgstr "<a href=\"http://www-users.cs.umn.edu/~hopper/\">نیک هاپر</a> گروه UMN."
#. type: Content of: <div><div><ul><li>
#: /home/runa/tor/website/getinvolved/en/research.wml:113
@@ -157,21 +161,23 @@
"<a href=\"http://www.hatswitch.org/~nikita/\">Nikita Borisov</a>'s group at "
"Illinois."
msgstr ""
+"<a href=\"http://www.hatswitch.org/~nikita/\">نیکیتا بوریسف</a> گروه در "
+"ایالت ایلینوی است ."
#. type: Content of: <div><div><ul><li>
#: /home/runa/tor/website/getinvolved/en/research.wml:116
msgid "Matt Wright's <a href=\"http://isec.uta.edu/\">iSec</a> group at UTA."
-msgstr ""
+msgstr "مت رایت <a href=\"http://isec.uta.edu/\">iSec</a> گروه در UTA."
#. type: Content of: <div><div>
#: /home/runa/tor/website/getinvolved/en/research.wml:121
msgid "<a id=\"Ideas\"></a>"
-msgstr ""
+msgstr "<a id=\"ایده ها\"></a>"
#. type: Content of: <div><div><h2>
#: /home/runa/tor/website/getinvolved/en/research.wml:122
msgid "<a class=\"anchor\" href=\"#Ideas\">Research Ideas</a>"
-msgstr ""
+msgstr "<a class=\"anchor\" href=\"#Ideas\">ایده های پژوهشی</a>"
#. type: Content of: <div><div><p>
#: /home/runa/tor/website/getinvolved/en/research.wml:125
@@ -197,6 +203,8 @@
"We need people to attack the system, quantify defenses, etc. Here are some "
"example projects:"
msgstr ""
+" برای تعیین کمیت دفاع ،ما از شما می خواهیم به سیستم تور حمله کنید در اینجا"
+" برای مثال برخی از پروژه ها را به شما معرفی می کنید"
#. type: Content of: <div><div><ul><li>
#: /home/runa/tor/website/getinvolved/en/research.wml:141
@@ -267,5 +275,8 @@
"More coming soon. See also the \"Research\" section of the <a href=\"<page "
"getinvolved/volunteer>#Research\">volunteer</a> page for other topics."
msgstr ""
+" تور بزودی از این هم بهتر خواهد شد. همچنین نگاه کنید به بخش «پژوهش» <a "
+"href=\"<page getinvolved/volunteer>#Research\">داوطلب</a> صفحه را برای "
+"موضوعات دیگر ."
Modified: translation/trunk/projects/website/po/fa/getinvolved/4-optional.volunteer.po
===================================================================
--- translation/trunk/projects/website/po/fa/getinvolved/4-optional.volunteer.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/fa/getinvolved/4-optional.volunteer.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,8 +7,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2011-06-21 08:19+0200\n"
-"PO-Revision-Date: 2011-06-29 14:57+0000\n"
+"POT-Creation-Date: 2011-07-20 20:44+0200\n"
+"PO-Revision-Date: 2011-07-21 01:02+0000\n"
"Last-Translator: behravan <behravanhamed(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -197,19 +197,19 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:86
-#: /tmp/r1AqHDMca8.xml:94
+#: /tmp/iN5ZsD3CzY.xml:94
msgid "Core"
msgstr ""
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:87
-#: /tmp/r1AqHDMca8.xml:119
+#: /tmp/iN5ZsD3CzY.xml:119
msgid "C"
msgstr ""
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:88
-#: /tmp/r1AqHDMca8.xml:112 /tmp/r1AqHDMca8.xml:144 /tmp/r1AqHDMca8.xml:184
+#: /tmp/iN5ZsD3CzY.xml:112 /tmp/iN5ZsD3CzY.xml:144 /tmp/iN5ZsD3CzY.xml:184
msgid "Heavy"
msgstr ""
@@ -225,13 +225,13 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:95
-#: /tmp/r1AqHDMca8.xml:151 /tmp/r1AqHDMca8.xml:183
+#: /tmp/iN5ZsD3CzY.xml:151 /tmp/iN5ZsD3CzY.xml:183
msgid "Java"
msgstr ""
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:96
-#: /tmp/r1AqHDMca8.xml:192 /tmp/r1AqHDMca8.xml:216 /tmp/r1AqHDMca8.xml:240
+#: /tmp/iN5ZsD3CzY.xml:192 /tmp/iN5ZsD3CzY.xml:216 /tmp/iN5ZsD3CzY.xml:240
msgid "None"
msgstr ""
@@ -242,19 +242,19 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:102
-#: /tmp/r1AqHDMca8.xml:110 /tmp/r1AqHDMca8.xml:118 /tmp/r1AqHDMca8.xml:126
+#: /tmp/iN5ZsD3CzY.xml:110 /tmp/iN5ZsD3CzY.xml:118 /tmp/iN5ZsD3CzY.xml:126
msgid "Usability"
msgstr ""
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:103
-#: /tmp/r1AqHDMca8.xml:111 /tmp/r1AqHDMca8.xml:127
+#: /tmp/iN5ZsD3CzY.xml:111 /tmp/iN5ZsD3CzY.xml:127
msgid "Sys Admin"
msgstr ""
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:104
-#: /tmp/r1AqHDMca8.xml:152 /tmp/r1AqHDMca8.xml:160 /tmp/r1AqHDMca8.xml:224
+#: /tmp/iN5ZsD3CzY.xml:152 /tmp/iN5ZsD3CzY.xml:160 /tmp/iN5ZsD3CzY.xml:224
msgid "Moderate"
msgstr ""
@@ -280,9 +280,9 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:120
-#: /tmp/r1AqHDMca8.xml:128 /tmp/r1AqHDMca8.xml:136 /tmp/r1AqHDMca8.xml:168
-#: /tmp/r1AqHDMca8.xml:176 /tmp/r1AqHDMca8.xml:200 /tmp/r1AqHDMca8.xml:208
-#: /tmp/r1AqHDMca8.xml:232
+#: /tmp/iN5ZsD3CzY.xml:128 /tmp/iN5ZsD3CzY.xml:136 /tmp/iN5ZsD3CzY.xml:168
+#: /tmp/iN5ZsD3CzY.xml:176 /tmp/iN5ZsD3CzY.xml:200 /tmp/iN5ZsD3CzY.xml:208
+#: /tmp/iN5ZsD3CzY.xml:232
msgid "Light"
msgstr ""
@@ -308,7 +308,7 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:134
-#: /tmp/r1AqHDMca8.xml:142 /tmp/r1AqHDMca8.xml:150
+#: /tmp/iN5ZsD3CzY.xml:142 /tmp/iN5ZsD3CzY.xml:150
msgid "User Interface"
msgstr ""
@@ -364,7 +364,7 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:161
-#: /tmp/r1AqHDMca8.xml:177 /tmp/r1AqHDMca8.xml:233
+#: /tmp/iN5ZsD3CzY.xml:177 /tmp/iN5ZsD3CzY.xml:233
msgid "mikeperry"
msgstr ""
@@ -380,8 +380,8 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:167
-#: /tmp/r1AqHDMca8.xml:175 /tmp/r1AqHDMca8.xml:199 /tmp/r1AqHDMca8.xml:207
-#: /tmp/r1AqHDMca8.xml:223 /tmp/r1AqHDMca8.xml:231 /tmp/r1AqHDMca8.xml:239
+#: /tmp/iN5ZsD3CzY.xml:175 /tmp/iN5ZsD3CzY.xml:199 /tmp/iN5ZsD3CzY.xml:207
+#: /tmp/iN5ZsD3CzY.xml:223 /tmp/iN5ZsD3CzY.xml:231 /tmp/iN5ZsD3CzY.xml:239
msgid "Python"
msgstr ""
@@ -407,8 +407,8 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:182
-#: /tmp/r1AqHDMca8.xml:190 /tmp/r1AqHDMca8.xml:198 /tmp/r1AqHDMca8.xml:206
-#: /tmp/r1AqHDMca8.xml:214
+#: /tmp/iN5ZsD3CzY.xml:190 /tmp/iN5ZsD3CzY.xml:198 /tmp/iN5ZsD3CzY.xml:206
+#: /tmp/iN5ZsD3CzY.xml:214
msgid "Client Service"
msgstr ""
@@ -434,7 +434,7 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:201
-#: /tmp/r1AqHDMca8.xml:209
+#: /tmp/iN5ZsD3CzY.xml:209
msgid "kaner"
msgstr ""
@@ -460,7 +460,7 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:222
-#: /tmp/r1AqHDMca8.xml:230 /tmp/r1AqHDMca8.xml:238
+#: /tmp/iN5ZsD3CzY.xml:230 /tmp/iN5ZsD3CzY.xml:238
msgid "Backend Service"
msgstr ""
@@ -659,7 +659,7 @@
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:353
msgid ""
"<a href=\"<page projects/vidalia>\">Vidalia</a> (<a "
-"href=\"https://svn.torproject.org/vidalia/vidalia/trunk/\">code</a>, <a "
+"href=\"https://gitweb.torproject.org/vidalia.git\">code</a>, <a "
"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug"
" tracker</a>)"
msgstr ""
@@ -691,7 +691,7 @@
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:372
msgid ""
"<a href=\"http://www.atagar.com/arm/\">Arm</a> (<a "
-"href=\"https://svn.torproject.org/svn/arm/trunk/\">code</a>, <a "
+"href=\"https://gitweb.torproject.org/arm.git\">code</a>, <a "
"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug"
" tracker</a>)"
msgstr ""
@@ -720,8 +720,7 @@
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:390
msgid ""
"<a href=\"https://guardianproject.info/apps/orbot/\">Orbot</a> (<a "
-"href=\"https://svn.torproject.org/svn/projects/android/trunk/Orbot/\">code</a>,"
-" <a "
+"href=\"https://gitweb.torproject.org/orbot.git\">code</a>, <a "
"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug"
" tracker</a>)"
msgstr ""
@@ -893,7 +892,7 @@
msgid ""
"<a "
"href=\"https://trac.torproject.org/projects/tor/wiki/projects/EmailAutoResponder\">GetTor</a>"
-" (<a href=\"https://svn.torproject.org/svn/projects/gettor/\">code</a>, <a "
+" (<a href=\"https://gitweb.torproject.org/gettor.git\">code</a>, <a "
"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug"
" tracker</a>)"
msgstr ""
@@ -1912,8 +1911,8 @@
msgid ""
"The vast majority of arm's more interesting functionality lies in its "
"backend <a "
-"href=\"https://svn.torproject.org/svn/arm/trunk/src/util/\">utilities</a>, "
-"so there should be little to no work decoupling the CLI from its backend. "
+"href=\"https://gitweb.torproject.org/arm.git/tree/HEAD:/src/util\">utilities</a>,"
+" so there should be little to no work decoupling the CLI from its backend. "
"Instead, this project would mostly be UI hacking and experimentation, trying"
" different interfaces to find something that's elegant and simple, but "
"matches the information found in the current terminal application."
Modified: translation/trunk/projects/website/po/fi/docs/3-low.debian.po
===================================================================
--- translation/trunk/projects/website/po/fi/docs/3-low.debian.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/fi/docs/3-low.debian.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -6,8 +6,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2011-07-08 08:43+0200\n"
-"PO-Revision-Date: 2011-07-09 01:14+0000\n"
+"POT-Creation-Date: 2011-07-20 20:44+0200\n"
+"PO-Revision-Date: 2011-07-21 01:00+0000\n"
"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -35,29 +35,25 @@
#. type: Content of: <div><div><h2>
#: /home/runa/tor/website/docs/en/debian.wml:14
msgid ""
-"<a class=\"anchor\" href=\"#debian\">Option one: Tor on Debian lenny, Debian"
-" sid, or Debian testing</a>"
+"<a class=\"anchor\" href=\"#debian\">Option one: Tor on Debian squeeze, "
+"lenny, Debian sid, or Debian testing</a>"
msgstr ""
-"<a class=\"anchor\" href=\"#debian\">Ensimmäinen vaihtoehto: Tor Debian "
-"lenny, Debian sid, tai Debian testing -versioissa</a>"
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:16 /tmp/hXZfq9nNmb.xml:43
-#: /tmp/hXZfq9nNmb.xml:114 /tmp/hXZfq9nNmb.xml:149
+#: /home/runa/tor/website/docs/en/debian.wml:16 /tmp/zXFkzQsAWX.xml:42
+#: /tmp/zXFkzQsAWX.xml:113 /tmp/zXFkzQsAWX.xml:148
msgid "<br />"
msgstr "<br />"
#. type: Content of: <div><div><p>
#: /home/runa/tor/website/docs/en/debian.wml:19
msgid ""
-"If you're using Debian stable (lenny), unstable (sid), or testing (squeeze),"
-" just run<br /> <tt>apt-get install tor tor-geoipdb</tt> as root."
+"If you're using Debian, just run<br /> <tt>apt-get install tor tor-"
+"geoipdb</tt> as root."
msgstr ""
-"Jos käytät Debianin vakaata (lenny), epävakaata (sid) tai testausversiota "
-"(squeeze), anna roottina komento <tt>apt-get install tor tor-geoipdb</tt>."
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:26
+#: /home/runa/tor/website/docs/en/debian.wml:25
msgid ""
"Note that this might not always give you the latest stable Tor version, but "
"you will receive important security fixes. To make sure that you're running "
@@ -68,8 +64,8 @@
"käytät Torin viimeisintä vakaata versiota, katso alta vaihtoehto kaksi."
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:32 /tmp/hXZfq9nNmb.xml:95
-#: /tmp/hXZfq9nNmb.xml:140 /tmp/hXZfq9nNmb.xml:183
+#: /home/runa/tor/website/docs/en/debian.wml:31 /tmp/zXFkzQsAWX.xml:94
+#: /tmp/zXFkzQsAWX.xml:139 /tmp/zXFkzQsAWX.xml:182
msgid ""
"Now Tor is installed and running. Move on to <a href=\"<page docs/tor-doc-"
"unix>#polipo\">step two</a> of the \"Tor on Linux/Unix\" instructions."
@@ -79,29 +75,27 @@
"unix>#polipo\">toiseen vaiheeseen</a>."
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:37
+#: /home/runa/tor/website/docs/en/debian.wml:36
msgid "<hr /> <a id=\"ubuntu\"></a> <a id=\"packages\"></a>"
msgstr "<hr /> <a id=\"ubuntu\"></a> <a id=\"packages\"></a>"
#. type: Content of: <div><div><h2>
-#: /home/runa/tor/website/docs/en/debian.wml:41
+#: /home/runa/tor/website/docs/en/debian.wml:40
msgid "<a class=\"anchor\" href=\"#ubuntu\">Option two: Tor on Ubuntu or Debian</a>"
msgstr ""
"<a class=\"anchor\" href=\"#ubuntu\">Toinen vaihtoehto: Tor Ubuntussa tai "
"Debianissa</a>"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:46
+#: /home/runa/tor/website/docs/en/debian.wml:45
msgid ""
-"<b>Do not use the packages in Ubuntu's universe.</b> They are unmaintained "
-"and out of date. That means you'll be missing stability and security fixes."
+"<b>Do not use the packages in Ubuntu's universe.</b> In the past they have "
+"not reliably been updated. That means you could be missing stability and "
+"security fixes."
msgstr ""
-"<b>Älä käytä Ubuntun universestä löytyviä paketteja.</b> Niitä ei ylläpidetä"
-" ja ne ovat vanhentuneita. Toisin sanoen menetät vakauden ja "
-"turvallisuuspäivitykset."
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:52
+#: /home/runa/tor/website/docs/en/debian.wml:51
msgid ""
"You'll need to set up our package repository before you can fetch Tor. "
"First, you need to figure out the name of your distribution. A quick command"
@@ -114,11 +108,16 @@
"kartoitus:"
#. type: Content of: <div><div><p><ul><li>
-#: /home/runa/tor/website/docs/en/debian.wml:57
+#: /home/runa/tor/website/docs/en/debian.wml:56
msgid "Debian unstable (sid) is \"sid\""
msgstr "Debian unstable (sid) on \"sid\""
#. type: Content of: <div><div><p><ul><li>
+#: /home/runa/tor/website/docs/en/debian.wml:57
+msgid "Debian testing is \"wheezy\""
+msgstr ""
+
+#. type: Content of: <div><div><p><ul><li>
#: /home/runa/tor/website/docs/en/debian.wml:58
msgid "Debian 6.0 (squeeze) is \"squeeze\""
msgstr "Debian 6.0 (squeeze) on \"squeeze\""
@@ -153,26 +152,21 @@
msgid "Ubuntu 8.04 is \"hardy\""
msgstr "Ubuntu 8.04 on \"hardy\""
-#. type: Content of: <div><div><p><ul><li>
-#: /home/runa/tor/website/docs/en/debian.wml:65
-msgid "Ubuntu 6.06 is \"dapper\""
-msgstr "Ubuntu 6.06 on \"dapper\""
-
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:68
+#: /home/runa/tor/website/docs/en/debian.wml:67
msgid "Then add this line to your <tt>/etc/apt/sources.list</tt> file:<br />"
msgstr ""
"Lisää sitten tämä rivi tiedostoon <tt>/etc/apt/sources.list<tt> koneellasi:"
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:72
+#: /home/runa/tor/website/docs/en/debian.wml:71
#, no-wrap
msgid ""
"deb http://deb.torproject.org/torproject.org <DISTRIBUTION> main\n"
msgstr "deb http://deb.torproject.org/torproject.org <JAKELUVERSIO> main\n"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:74
+#: /home/runa/tor/website/docs/en/debian.wml:73
msgid ""
"where you put the codename of your distribution (i.e. lenny, sid, maverick "
"or whatever it is) in place of <DISTRIBUTION>."
@@ -181,7 +175,7 @@
"tai mikä se onkaan)."
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:80
+#: /home/runa/tor/website/docs/en/debian.wml:79
msgid ""
"Then add the gpg key used to sign the packages by running the following "
"commands at your command prompt:"
@@ -190,7 +184,7 @@
"suorittamalla päätteessä seuraavat komennot:"
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:83
+#: /home/runa/tor/website/docs/en/debian.wml:82
#, no-wrap
msgid ""
"gpg --keyserver keys.gnupg.net --recv 886DDD89\n"
@@ -200,7 +194,7 @@
"gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -\n"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:86
+#: /home/runa/tor/website/docs/en/debian.wml:85
msgid ""
"Now refresh your sources and install Tor by running the following commands "
"(as root) at your command prompt:"
@@ -209,7 +203,7 @@
"komennot (roottina):"
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:89
+#: /home/runa/tor/website/docs/en/debian.wml:88
#, no-wrap
msgid ""
"apt-get update\n"
@@ -219,7 +213,7 @@
"apt-get install tor tor-geoipdb\n"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:101
+#: /home/runa/tor/website/docs/en/debian.wml:100
msgid ""
"The DNS name <code>deb.torproject.org</code> is actually a set of "
"independent servers in a DNS round robin configuration. If you for some "
@@ -234,12 +228,12 @@
"<code>vidalia.mirror.youam.de</code>."
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:109
+#: /home/runa/tor/website/docs/en/debian.wml:108
msgid "<hr /> <a id=\"development\"></a>"
msgstr "<hr /> <a id=\"development\"></a>"
#. type: Content of: <div><div><h2>
-#: /home/runa/tor/website/docs/en/debian.wml:112
+#: /home/runa/tor/website/docs/en/debian.wml:111
msgid ""
"<a class=\"anchor\" href=\"#development\">Option three: Using the "
"development branch of Tor on Debian or Ubuntu</a>"
@@ -248,7 +242,7 @@
"kehityshaaran käyttö Debianissa tai Ubuntussa</a>"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:116
+#: /home/runa/tor/website/docs/en/debian.wml:115
msgid ""
"If you want to use the <a href=\"<page "
"download/download>#packagediff\">development branch</a> of Tor instead (more"
@@ -261,7 +255,7 @@
"<tt>/etc/apt/sources.list</tt> nämä rivit:<br />"
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:121
+#: /home/runa/tor/website/docs/en/debian.wml:120
#, no-wrap
msgid ""
"deb http://deb.torproject.org/torproject.org <DISTRIBUTION> main\n"
@@ -271,7 +265,7 @@
"deb http://deb.torproject.org/torproject.org experimental-<JAKELUVERSIO> main\n"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:124
+#: /home/runa/tor/website/docs/en/debian.wml:123
msgid ""
"where you again substitute the name of your distro (lenny, sid, maverick, "
"...) in place of <DISTRIBUTION>."
@@ -280,12 +274,12 @@
"sid, maverick, ...)."
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:130
+#: /home/runa/tor/website/docs/en/debian.wml:129
msgid "Then run the following commands at your command prompt:"
msgstr "Suorita sen jälkeen päätteessä seuraavat komennot:"
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:132
+#: /home/runa/tor/website/docs/en/debian.wml:131
#, no-wrap
msgid ""
"gpg --keyserver keys.gnupg.net --recv 886DDD89\n"
@@ -299,17 +293,17 @@
"apt-get install tor tor-geoipdb\n"
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:145
+#: /home/runa/tor/website/docs/en/debian.wml:144
msgid "<hr /> <a id=\"source\"></a>"
msgstr "<hr /> <a id=\"source\"></a>"
#. type: Content of: <div><div><h2>
-#: /home/runa/tor/website/docs/en/debian.wml:148
+#: /home/runa/tor/website/docs/en/debian.wml:147
msgid "<a class=\"anchor\" href=\"#source\">Building from source</a>"
msgstr "<a class=\"anchor\" href=\"#source\">Lähdekoodista rakentaminen</a>"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:152
+#: /home/runa/tor/website/docs/en/debian.wml:151
msgid ""
"If you want to build your own debs from source you must first add an "
"appropriate <tt>deb-src</tt> line to <tt>sources.list</tt>."
@@ -320,7 +314,7 @@
#. PO4ASHARPBEGIN For the stable version.PO4ASHARPEND
#. PO4ASHARPBEGIN For the unstable version.PO4ASHARPEND
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:155
+#: /home/runa/tor/website/docs/en/debian.wml:154
#, no-wrap
msgid ""
"\n"
@@ -338,7 +332,7 @@
"deb-src http://deb.torproject.org/torproject.org experimental-<JAKELUVERSIO> main\n"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:162
+#: /home/runa/tor/website/docs/en/debian.wml:161
msgid ""
"You also need to install the necessary packages to build your own debs and "
"the packages needed to build Tor:"
@@ -347,7 +341,7 @@
"tekemiseen ja Torin rakentamiseen:"
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:165
+#: /home/runa/tor/website/docs/en/debian.wml:164
#, no-wrap
msgid ""
"apt-get install build-essential fakeroot devscripts\n"
@@ -357,12 +351,12 @@
"apt-get build-dep tor\n"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:168
+#: /home/runa/tor/website/docs/en/debian.wml:167
msgid "Then you can build Tor in ~/debian-packages:"
msgstr "Sen jälkeen voit rakentaa Torin ~/debian-packages -hakemistossa:"
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:170
+#: /home/runa/tor/website/docs/en/debian.wml:169
#, no-wrap
msgid ""
"mkdir ~/debian-packages; cd ~/debian-packages\n"
@@ -378,23 +372,23 @@
"cd ..\n"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:176
+#: /home/runa/tor/website/docs/en/debian.wml:175
msgid "Now you can install the new package:"
msgstr "Voit nyt asentaa uuden paketin:"
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:178
+#: /home/runa/tor/website/docs/en/debian.wml:177
#, no-wrap
msgid "sudo dpkg -i tor_*.deb\n"
msgstr "sudo dpkg -i tor_*.deb\n"
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:188
+#: /home/runa/tor/website/docs/en/debian.wml:187
msgid "<hr />"
msgstr "<hr />"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:190
+#: /home/runa/tor/website/docs/en/debian.wml:189
msgid ""
"If you have suggestions for improving this document, please <a href=\"<page "
"about/contact>\">send them to us</a>. Thanks!"
Modified: translation/trunk/projects/website/po/fr/download/3-low.download.po
===================================================================
--- translation/trunk/projects/website/po/fr/download/3-low.download.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/fr/download/3-low.download.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -8,8 +8,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2011-07-13 14:56+0200\n"
-"PO-Revision-Date: 2011-07-14 01:02+0000\n"
+"POT-Creation-Date: 2011-07-20 20:43+0200\n"
+"PO-Revision-Date: 2011-07-21 01:01+0000\n"
"Last-Translator: freda <ecuriesduperche(a)free.fr>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -183,8 +183,8 @@
msgstr "Tor pour Windows est livré de quatre façons différentes:"
#. type: Content of: <div><div><table><tr><td><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:102 /tmp/eCkycGCH9H.xml:165
-#: /tmp/eCkycGCH9H.xml:203
+#: /home/runa/tor/website/download/en/download.wml:102 /tmp/jgw2tk3no1.xml:165
+#: /tmp/jgw2tk3no1.xml:203
msgid ""
"The <strong>Tor Browser Bundle</strong> contains everything you need to "
"safely browse the Internet. This package requires no installation. Just "
@@ -231,7 +231,7 @@
msgstr ""
#. type: Content of: <div><div><table><tr><td><p>
-#: /home/runa/tor/website/download/en/download.wml:110 /tmp/eCkycGCH9H.xml:168
+#: /home/runa/tor/website/download/en/download.wml:110 /tmp/jgw2tk3no1.xml:168
msgid ""
"There are two versions of each package, a stable and alpha release. Stable "
"packages are released when we believe the features and code will not change "
@@ -649,7 +649,7 @@
"instable</a> ( <a href=\"../dist/tor-<version-alpha>.tar.gz.asc\">sig</a> )"
#. type: Content of: <div><div><div>
-#: /home/runa/tor/website/download/en/download.wml:265 /tmp/eCkycGCH9H.xml:344
+#: /home/runa/tor/website/download/en/download.wml:265 /tmp/jgw2tk3no1.xml:343
msgid "<br>"
msgstr "<br>"
@@ -807,16 +807,11 @@
#: /home/runa/tor/website/download/en/download.wml:338
msgid ""
"Do not use <a href=\"https://blog.torproject.org/blog/bittorrent-over-tor-"
-"isnt-good-idea\">BitTorrent and Tor</a> together unless you are using a "
-"system like <a href=\"http://tails.boum.org/\">TAILS</a>."
+"isnt-good-idea\">BitTorrent and Tor</a> together."
msgstr ""
-"N'utilisez pas Bittorrent et Tor en même temps <a "
-"href=\"https://blog.torproject.org/blog/bittorrent-over-tor-isnt-good-"
-"idea\"> à moins d'utiliser un système tel que Tails <a "
-"href=\"http://tails.boum.org/\">TAILS</a>."
#. type: Content of: <div><div><div><p>
-#: /home/runa/tor/website/download/en/download.wml:346
+#: /home/runa/tor/website/download/en/download.wml:345
msgid ""
"Be smart and learn more. Understand what Tor does and does not offer. This "
"list of pitfalls isn't complete, and we need your help <a href=\"<page "
@@ -830,42 +825,42 @@
"les problèmes</a> ."
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:358
+#: /home/runa/tor/website/download/en/download.wml:357
msgid "Jump to:"
msgstr "Aller à:"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:360
+#: /home/runa/tor/website/download/en/download.wml:359
msgid "<a href=\"#Windows\">Microsoft Windows</a>"
msgstr "<a href=\"#Windows\">Microsoft Windows</a>"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:361
+#: /home/runa/tor/website/download/en/download.wml:360
msgid "<a href=\"#mac\">Apple OS X</a>"
msgstr "<a href=\"#mac\">Apple OS X</a>"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:362
+#: /home/runa/tor/website/download/en/download.wml:361
msgid "<a href=\"#linux\">Linux/Unix</a>"
msgstr "<a href=\"#linux\">Linux/Unix</a>"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:363
+#: /home/runa/tor/website/download/en/download.wml:362
msgid "<a href=\"#smartphones\">Smartphones</a>"
msgstr "<a href=\"#smartphones\">Smartphones</a>"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:364
+#: /home/runa/tor/website/download/en/download.wml:363
msgid "<a href=\"#source\">Source Code</a>"
msgstr "<a href=\"#source\">Code Source</a>"
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:371
+#: /home/runa/tor/website/download/en/download.wml:370
msgid "What is the (sig) link?"
msgstr "Quel est le lien (sig)?"
#. type: Content of: <div><div><div><div><p>
-#: /home/runa/tor/website/download/en/download.wml:372
+#: /home/runa/tor/website/download/en/download.wml:371
msgid ""
"These are GPG signatures to allow you to verify that your downloaded file is"
" really from The Tor Project and not an imposter."
@@ -874,17 +869,17 @@
" téléchargé est réellement du projet Tor et non un imposteur."
#. type: Content of: <div><div><div><div>
-#: /home/runa/tor/website/download/en/download.wml:375
+#: /home/runa/tor/website/download/en/download.wml:374
msgid "<a href=\"<page docs/verifying-signatures>\">Learn more »</a>"
msgstr "<a href=\"<page docs/verifying-signatures>\">En savoir plus »</a>"
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:381
+#: /home/runa/tor/website/download/en/download.wml:380
msgid "Having Trouble?"
msgstr "Vous rencontrez des problèmes?"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:383
+#: /home/runa/tor/website/download/en/download.wml:382
msgid "<a href=\"<page docs/documentation>\">Read the fine manuals</a>"
msgstr "<a href=\"<page docs/documentation>\">Lisez les excellents manuels</a>"
Modified: translation/trunk/projects/website/po/hu/getinvolved/3-low.mirrors.po
===================================================================
--- translation/trunk/projects/website/po/hu/getinvolved/3-low.mirrors.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/hu/getinvolved/3-low.mirrors.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -2,19 +2,18 @@
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
#
-# <viktor.varga(a)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-12-26 14:32+0000\n"
-"PO-Revision-Date: 2011-07-16 12:20+0000\n"
-"Last-Translator: vargaviktor <viktor.varga(a)gmail.com>\n"
+"PO-Revision-Date: 2011-07-20 21:59+0000\n"
+"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: hu_HU\n"
+"Language: hu\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <div><div>
Modified: translation/trunk/projects/website/po/hu/torbutton/3-low.index.po
===================================================================
--- translation/trunk/projects/website/po/hu/torbutton/3-low.index.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/hu/torbutton/3-low.index.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -2,19 +2,18 @@
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
#
-# <viktor.varga(a)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: 2011-06-21 08:19+0200\n"
-"PO-Revision-Date: 2011-07-16 12:12+0000\n"
-"Last-Translator: vargaviktor <viktor.varga(a)gmail.com>\n"
+"PO-Revision-Date: 2011-07-20 22:01+0000\n"
+"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: hu_HU\n"
+"Language: hu\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <div><div>
Modified: translation/trunk/projects/website/po/it/docs/3-low.debian.po
===================================================================
--- translation/trunk/projects/website/po/it/docs/3-low.debian.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/it/docs/3-low.debian.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -6,8 +6,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2011-07-08 08:43+0200\n"
-"PO-Revision-Date: 2011-07-09 01:14+0000\n"
+"POT-Creation-Date: 2011-07-20 20:44+0200\n"
+"PO-Revision-Date: 2011-07-21 01:00+0000\n"
"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
"Language-Team: Italian (http://www.transifex.net/projects/p/torproject/team/it/)\n"
"MIME-Version: 1.0\n"
@@ -32,25 +32,25 @@
#. type: Content of: <div><div><h2>
#: /home/runa/tor/website/docs/en/debian.wml:14
msgid ""
-"<a class=\"anchor\" href=\"#debian\">Option one: Tor on Debian lenny, Debian"
-" sid, or Debian testing</a>"
+"<a class=\"anchor\" href=\"#debian\">Option one: Tor on Debian squeeze, "
+"lenny, Debian sid, or Debian testing</a>"
msgstr ""
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:16 /tmp/hXZfq9nNmb.xml:43
-#: /tmp/hXZfq9nNmb.xml:114 /tmp/hXZfq9nNmb.xml:149
+#: /home/runa/tor/website/docs/en/debian.wml:16 /tmp/zXFkzQsAWX.xml:42
+#: /tmp/zXFkzQsAWX.xml:113 /tmp/zXFkzQsAWX.xml:148
msgid "<br />"
msgstr ""
#. type: Content of: <div><div><p>
#: /home/runa/tor/website/docs/en/debian.wml:19
msgid ""
-"If you're using Debian stable (lenny), unstable (sid), or testing (squeeze),"
-" just run<br /> <tt>apt-get install tor tor-geoipdb</tt> as root."
+"If you're using Debian, just run<br /> <tt>apt-get install tor tor-"
+"geoipdb</tt> as root."
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:26
+#: /home/runa/tor/website/docs/en/debian.wml:25
msgid ""
"Note that this might not always give you the latest stable Tor version, but "
"you will receive important security fixes. To make sure that you're running "
@@ -58,32 +58,33 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:32 /tmp/hXZfq9nNmb.xml:95
-#: /tmp/hXZfq9nNmb.xml:140 /tmp/hXZfq9nNmb.xml:183
+#: /home/runa/tor/website/docs/en/debian.wml:31 /tmp/zXFkzQsAWX.xml:94
+#: /tmp/zXFkzQsAWX.xml:139 /tmp/zXFkzQsAWX.xml:182
msgid ""
"Now Tor is installed and running. Move on to <a href=\"<page docs/tor-doc-"
"unix>#polipo\">step two</a> of the \"Tor on Linux/Unix\" instructions."
msgstr ""
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:37
+#: /home/runa/tor/website/docs/en/debian.wml:36
msgid "<hr /> <a id=\"ubuntu\"></a> <a id=\"packages\"></a>"
msgstr ""
#. type: Content of: <div><div><h2>
-#: /home/runa/tor/website/docs/en/debian.wml:41
+#: /home/runa/tor/website/docs/en/debian.wml:40
msgid "<a class=\"anchor\" href=\"#ubuntu\">Option two: Tor on Ubuntu or Debian</a>"
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:46
+#: /home/runa/tor/website/docs/en/debian.wml:45
msgid ""
-"<b>Do not use the packages in Ubuntu's universe.</b> They are unmaintained "
-"and out of date. That means you'll be missing stability and security fixes."
+"<b>Do not use the packages in Ubuntu's universe.</b> In the past they have "
+"not reliably been updated. That means you could be missing stability and "
+"security fixes."
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:52
+#: /home/runa/tor/website/docs/en/debian.wml:51
msgid ""
"You'll need to set up our package repository before you can fetch Tor. "
"First, you need to figure out the name of your distribution. A quick command"
@@ -92,11 +93,16 @@
msgstr ""
#. type: Content of: <div><div><p><ul><li>
-#: /home/runa/tor/website/docs/en/debian.wml:57
+#: /home/runa/tor/website/docs/en/debian.wml:56
msgid "Debian unstable (sid) is \"sid\""
msgstr ""
#. type: Content of: <div><div><p><ul><li>
+#: /home/runa/tor/website/docs/en/debian.wml:57
+msgid "Debian testing is \"wheezy\""
+msgstr ""
+
+#. type: Content of: <div><div><p><ul><li>
#: /home/runa/tor/website/docs/en/debian.wml:58
msgid "Debian 6.0 (squeeze) is \"squeeze\""
msgstr ""
@@ -131,39 +137,34 @@
msgid "Ubuntu 8.04 is \"hardy\""
msgstr ""
-#. type: Content of: <div><div><p><ul><li>
-#: /home/runa/tor/website/docs/en/debian.wml:65
-msgid "Ubuntu 6.06 is \"dapper\""
-msgstr ""
-
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:68
+#: /home/runa/tor/website/docs/en/debian.wml:67
msgid "Then add this line to your <tt>/etc/apt/sources.list</tt> file:<br />"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:72
+#: /home/runa/tor/website/docs/en/debian.wml:71
#, no-wrap
msgid ""
"deb http://deb.torproject.org/torproject.org <DISTRIBUTION> main\n"
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:74
+#: /home/runa/tor/website/docs/en/debian.wml:73
msgid ""
"where you put the codename of your distribution (i.e. lenny, sid, maverick "
"or whatever it is) in place of <DISTRIBUTION>."
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:80
+#: /home/runa/tor/website/docs/en/debian.wml:79
msgid ""
"Then add the gpg key used to sign the packages by running the following "
"commands at your command prompt:"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:83
+#: /home/runa/tor/website/docs/en/debian.wml:82
#, no-wrap
msgid ""
"gpg --keyserver keys.gnupg.net --recv 886DDD89\n"
@@ -171,14 +172,14 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:86
+#: /home/runa/tor/website/docs/en/debian.wml:85
msgid ""
"Now refresh your sources and install Tor by running the following commands "
"(as root) at your command prompt:"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:89
+#: /home/runa/tor/website/docs/en/debian.wml:88
#, no-wrap
msgid ""
"apt-get update\n"
@@ -186,7 +187,7 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:101
+#: /home/runa/tor/website/docs/en/debian.wml:100
msgid ""
"The DNS name <code>deb.torproject.org</code> is actually a set of "
"independent servers in a DNS round robin configuration. If you for some "
@@ -196,19 +197,19 @@
msgstr ""
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:109
+#: /home/runa/tor/website/docs/en/debian.wml:108
msgid "<hr /> <a id=\"development\"></a>"
msgstr ""
#. type: Content of: <div><div><h2>
-#: /home/runa/tor/website/docs/en/debian.wml:112
+#: /home/runa/tor/website/docs/en/debian.wml:111
msgid ""
"<a class=\"anchor\" href=\"#development\">Option three: Using the "
"development branch of Tor on Debian or Ubuntu</a>"
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:116
+#: /home/runa/tor/website/docs/en/debian.wml:115
msgid ""
"If you want to use the <a href=\"<page "
"download/download>#packagediff\">development branch</a> of Tor instead (more"
@@ -217,7 +218,7 @@
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:121
+#: /home/runa/tor/website/docs/en/debian.wml:120
#, no-wrap
msgid ""
"deb http://deb.torproject.org/torproject.org <DISTRIBUTION> main\n"
@@ -225,19 +226,19 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:124
+#: /home/runa/tor/website/docs/en/debian.wml:123
msgid ""
"where you again substitute the name of your distro (lenny, sid, maverick, "
"...) in place of <DISTRIBUTION>."
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:130
+#: /home/runa/tor/website/docs/en/debian.wml:129
msgid "Then run the following commands at your command prompt:"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:132
+#: /home/runa/tor/website/docs/en/debian.wml:131
#, no-wrap
msgid ""
"gpg --keyserver keys.gnupg.net --recv 886DDD89\n"
@@ -247,17 +248,17 @@
msgstr ""
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:145
+#: /home/runa/tor/website/docs/en/debian.wml:144
msgid "<hr /> <a id=\"source\"></a>"
msgstr ""
#. type: Content of: <div><div><h2>
-#: /home/runa/tor/website/docs/en/debian.wml:148
+#: /home/runa/tor/website/docs/en/debian.wml:147
msgid "<a class=\"anchor\" href=\"#source\">Building from source</a>"
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:152
+#: /home/runa/tor/website/docs/en/debian.wml:151
msgid ""
"If you want to build your own debs from source you must first add an "
"appropriate <tt>deb-src</tt> line to <tt>sources.list</tt>."
@@ -266,7 +267,7 @@
#. PO4ASHARPBEGIN For the stable version.PO4ASHARPEND
#. PO4ASHARPBEGIN For the unstable version.PO4ASHARPEND
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:155
+#: /home/runa/tor/website/docs/en/debian.wml:154
#, no-wrap
msgid ""
"\n"
@@ -278,14 +279,14 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:162
+#: /home/runa/tor/website/docs/en/debian.wml:161
msgid ""
"You also need to install the necessary packages to build your own debs and "
"the packages needed to build Tor:"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:165
+#: /home/runa/tor/website/docs/en/debian.wml:164
#, no-wrap
msgid ""
"apt-get install build-essential fakeroot devscripts\n"
@@ -293,12 +294,12 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:168
+#: /home/runa/tor/website/docs/en/debian.wml:167
msgid "Then you can build Tor in ~/debian-packages:"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:170
+#: /home/runa/tor/website/docs/en/debian.wml:169
#, no-wrap
msgid ""
"mkdir ~/debian-packages; cd ~/debian-packages\n"
@@ -309,23 +310,23 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:176
+#: /home/runa/tor/website/docs/en/debian.wml:175
msgid "Now you can install the new package:"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:178
+#: /home/runa/tor/website/docs/en/debian.wml:177
#, no-wrap
msgid "sudo dpkg -i tor_*.deb\n"
msgstr ""
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:188
+#: /home/runa/tor/website/docs/en/debian.wml:187
msgid "<hr />"
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:190
+#: /home/runa/tor/website/docs/en/debian.wml:189
msgid ""
"If you have suggestions for improving this document, please <a href=\"<page "
"about/contact>\">send them to us</a>. Thanks!"
Modified: translation/trunk/projects/website/po/it/download/3-low.download.po
===================================================================
--- translation/trunk/projects/website/po/it/download/3-low.download.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/it/download/3-low.download.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,8 +7,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2011-07-13 14:56+0200\n"
-"PO-Revision-Date: 2011-07-14 01:02+0000\n"
+"POT-Creation-Date: 2011-07-20 20:43+0200\n"
+"PO-Revision-Date: 2011-07-21 01:01+0000\n"
"Last-Translator: zfrns84 <silviazaf(a)gmail.com>\n"
"Language-Team: Italian (http://www.transifex.net/projects/p/torproject/team/it/)\n"
"MIME-Version: 1.0\n"
@@ -181,8 +181,8 @@
msgstr ""
#. type: Content of: <div><div><table><tr><td><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:102 /tmp/eCkycGCH9H.xml:165
-#: /tmp/eCkycGCH9H.xml:203
+#: /home/runa/tor/website/download/en/download.wml:102 /tmp/jgw2tk3no1.xml:165
+#: /tmp/jgw2tk3no1.xml:203
msgid ""
"The <strong>Tor Browser Bundle</strong> contains everything you need to "
"safely browse the Internet. This package requires no installation. Just "
@@ -216,7 +216,7 @@
msgstr ""
#. type: Content of: <div><div><table><tr><td><p>
-#: /home/runa/tor/website/download/en/download.wml:110 /tmp/eCkycGCH9H.xml:168
+#: /home/runa/tor/website/download/en/download.wml:110 /tmp/jgw2tk3no1.xml:168
msgid ""
"There are two versions of each package, a stable and alpha release. Stable "
"packages are released when we believe the features and code will not change "
@@ -525,7 +525,7 @@
msgstr ""
#. type: Content of: <div><div><div>
-#: /home/runa/tor/website/download/en/download.wml:265 /tmp/eCkycGCH9H.xml:344
+#: /home/runa/tor/website/download/en/download.wml:265 /tmp/jgw2tk3no1.xml:343
msgid "<br>"
msgstr ""
@@ -625,12 +625,11 @@
#: /home/runa/tor/website/download/en/download.wml:338
msgid ""
"Do not use <a href=\"https://blog.torproject.org/blog/bittorrent-over-tor-"
-"isnt-good-idea\">BitTorrent and Tor</a> together unless you are using a "
-"system like <a href=\"http://tails.boum.org/\">TAILS</a>."
+"isnt-good-idea\">BitTorrent and Tor</a> together."
msgstr ""
#. type: Content of: <div><div><div><p>
-#: /home/runa/tor/website/download/en/download.wml:346
+#: /home/runa/tor/website/download/en/download.wml:345
msgid ""
"Be smart and learn more. Understand what Tor does and does not offer. This "
"list of pitfalls isn't complete, and we need your help <a href=\"<page "
@@ -639,59 +638,59 @@
msgstr ""
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:358
+#: /home/runa/tor/website/download/en/download.wml:357
msgid "Jump to:"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:360
+#: /home/runa/tor/website/download/en/download.wml:359
msgid "<a href=\"#Windows\">Microsoft Windows</a>"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:361
+#: /home/runa/tor/website/download/en/download.wml:360
msgid "<a href=\"#mac\">Apple OS X</a>"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:362
+#: /home/runa/tor/website/download/en/download.wml:361
msgid "<a href=\"#linux\">Linux/Unix</a>"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:363
+#: /home/runa/tor/website/download/en/download.wml:362
msgid "<a href=\"#smartphones\">Smartphones</a>"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:364
+#: /home/runa/tor/website/download/en/download.wml:363
msgid "<a href=\"#source\">Source Code</a>"
msgstr ""
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:371
+#: /home/runa/tor/website/download/en/download.wml:370
msgid "What is the (sig) link?"
msgstr ""
#. type: Content of: <div><div><div><div><p>
-#: /home/runa/tor/website/download/en/download.wml:372
+#: /home/runa/tor/website/download/en/download.wml:371
msgid ""
"These are GPG signatures to allow you to verify that your downloaded file is"
" really from The Tor Project and not an imposter."
msgstr ""
#. type: Content of: <div><div><div><div>
-#: /home/runa/tor/website/download/en/download.wml:375
+#: /home/runa/tor/website/download/en/download.wml:374
msgid "<a href=\"<page docs/verifying-signatures>\">Learn more »</a>"
msgstr ""
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:381
+#: /home/runa/tor/website/download/en/download.wml:380
msgid "Having Trouble?"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:383
+#: /home/runa/tor/website/download/en/download.wml:382
msgid "<a href=\"<page docs/documentation>\">Read the fine manuals</a>"
msgstr ""
Modified: translation/trunk/projects/website/po/it/getinvolved/4-optional.volunteer.po
===================================================================
--- translation/trunk/projects/website/po/it/getinvolved/4-optional.volunteer.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/it/getinvolved/4-optional.volunteer.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -6,8 +6,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2011-06-21 08:19+0200\n"
-"PO-Revision-Date: 2011-06-22 00:56+0000\n"
+"POT-Creation-Date: 2011-07-20 20:44+0200\n"
+"PO-Revision-Date: 2011-07-21 01:02+0000\n"
"Last-Translator: zfrns84 <silviazaf(a)gmail.com>\n"
"Language-Team: Italian (http://www.transifex.net/projects/p/torproject/team/it/)\n"
"MIME-Version: 1.0\n"
@@ -190,19 +190,19 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:86
-#: /tmp/r1AqHDMca8.xml:94
+#: /tmp/iN5ZsD3CzY.xml:94
msgid "Core"
msgstr ""
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:87
-#: /tmp/r1AqHDMca8.xml:119
+#: /tmp/iN5ZsD3CzY.xml:119
msgid "C"
msgstr ""
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:88
-#: /tmp/r1AqHDMca8.xml:112 /tmp/r1AqHDMca8.xml:144 /tmp/r1AqHDMca8.xml:184
+#: /tmp/iN5ZsD3CzY.xml:112 /tmp/iN5ZsD3CzY.xml:144 /tmp/iN5ZsD3CzY.xml:184
msgid "Heavy"
msgstr ""
@@ -218,13 +218,13 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:95
-#: /tmp/r1AqHDMca8.xml:151 /tmp/r1AqHDMca8.xml:183
+#: /tmp/iN5ZsD3CzY.xml:151 /tmp/iN5ZsD3CzY.xml:183
msgid "Java"
msgstr ""
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:96
-#: /tmp/r1AqHDMca8.xml:192 /tmp/r1AqHDMca8.xml:216 /tmp/r1AqHDMca8.xml:240
+#: /tmp/iN5ZsD3CzY.xml:192 /tmp/iN5ZsD3CzY.xml:216 /tmp/iN5ZsD3CzY.xml:240
msgid "None"
msgstr ""
@@ -235,19 +235,19 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:102
-#: /tmp/r1AqHDMca8.xml:110 /tmp/r1AqHDMca8.xml:118 /tmp/r1AqHDMca8.xml:126
+#: /tmp/iN5ZsD3CzY.xml:110 /tmp/iN5ZsD3CzY.xml:118 /tmp/iN5ZsD3CzY.xml:126
msgid "Usability"
msgstr ""
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:103
-#: /tmp/r1AqHDMca8.xml:111 /tmp/r1AqHDMca8.xml:127
+#: /tmp/iN5ZsD3CzY.xml:111 /tmp/iN5ZsD3CzY.xml:127
msgid "Sys Admin"
msgstr ""
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:104
-#: /tmp/r1AqHDMca8.xml:152 /tmp/r1AqHDMca8.xml:160 /tmp/r1AqHDMca8.xml:224
+#: /tmp/iN5ZsD3CzY.xml:152 /tmp/iN5ZsD3CzY.xml:160 /tmp/iN5ZsD3CzY.xml:224
msgid "Moderate"
msgstr ""
@@ -273,9 +273,9 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:120
-#: /tmp/r1AqHDMca8.xml:128 /tmp/r1AqHDMca8.xml:136 /tmp/r1AqHDMca8.xml:168
-#: /tmp/r1AqHDMca8.xml:176 /tmp/r1AqHDMca8.xml:200 /tmp/r1AqHDMca8.xml:208
-#: /tmp/r1AqHDMca8.xml:232
+#: /tmp/iN5ZsD3CzY.xml:128 /tmp/iN5ZsD3CzY.xml:136 /tmp/iN5ZsD3CzY.xml:168
+#: /tmp/iN5ZsD3CzY.xml:176 /tmp/iN5ZsD3CzY.xml:200 /tmp/iN5ZsD3CzY.xml:208
+#: /tmp/iN5ZsD3CzY.xml:232
msgid "Light"
msgstr ""
@@ -301,7 +301,7 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:134
-#: /tmp/r1AqHDMca8.xml:142 /tmp/r1AqHDMca8.xml:150
+#: /tmp/iN5ZsD3CzY.xml:142 /tmp/iN5ZsD3CzY.xml:150
msgid "User Interface"
msgstr ""
@@ -357,7 +357,7 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:161
-#: /tmp/r1AqHDMca8.xml:177 /tmp/r1AqHDMca8.xml:233
+#: /tmp/iN5ZsD3CzY.xml:177 /tmp/iN5ZsD3CzY.xml:233
msgid "mikeperry"
msgstr ""
@@ -373,8 +373,8 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:167
-#: /tmp/r1AqHDMca8.xml:175 /tmp/r1AqHDMca8.xml:199 /tmp/r1AqHDMca8.xml:207
-#: /tmp/r1AqHDMca8.xml:223 /tmp/r1AqHDMca8.xml:231 /tmp/r1AqHDMca8.xml:239
+#: /tmp/iN5ZsD3CzY.xml:175 /tmp/iN5ZsD3CzY.xml:199 /tmp/iN5ZsD3CzY.xml:207
+#: /tmp/iN5ZsD3CzY.xml:223 /tmp/iN5ZsD3CzY.xml:231 /tmp/iN5ZsD3CzY.xml:239
msgid "Python"
msgstr ""
@@ -400,8 +400,8 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:182
-#: /tmp/r1AqHDMca8.xml:190 /tmp/r1AqHDMca8.xml:198 /tmp/r1AqHDMca8.xml:206
-#: /tmp/r1AqHDMca8.xml:214
+#: /tmp/iN5ZsD3CzY.xml:190 /tmp/iN5ZsD3CzY.xml:198 /tmp/iN5ZsD3CzY.xml:206
+#: /tmp/iN5ZsD3CzY.xml:214
msgid "Client Service"
msgstr ""
@@ -427,7 +427,7 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:201
-#: /tmp/r1AqHDMca8.xml:209
+#: /tmp/iN5ZsD3CzY.xml:209
msgid "kaner"
msgstr ""
@@ -453,7 +453,7 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:222
-#: /tmp/r1AqHDMca8.xml:230 /tmp/r1AqHDMca8.xml:238
+#: /tmp/iN5ZsD3CzY.xml:230 /tmp/iN5ZsD3CzY.xml:238
msgid "Backend Service"
msgstr ""
@@ -652,7 +652,7 @@
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:353
msgid ""
"<a href=\"<page projects/vidalia>\">Vidalia</a> (<a "
-"href=\"https://svn.torproject.org/vidalia/vidalia/trunk/\">code</a>, <a "
+"href=\"https://gitweb.torproject.org/vidalia.git\">code</a>, <a "
"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug"
" tracker</a>)"
msgstr ""
@@ -684,7 +684,7 @@
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:372
msgid ""
"<a href=\"http://www.atagar.com/arm/\">Arm</a> (<a "
-"href=\"https://svn.torproject.org/svn/arm/trunk/\">code</a>, <a "
+"href=\"https://gitweb.torproject.org/arm.git\">code</a>, <a "
"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug"
" tracker</a>)"
msgstr ""
@@ -713,8 +713,7 @@
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:390
msgid ""
"<a href=\"https://guardianproject.info/apps/orbot/\">Orbot</a> (<a "
-"href=\"https://svn.torproject.org/svn/projects/android/trunk/Orbot/\">code</a>,"
-" <a "
+"href=\"https://gitweb.torproject.org/orbot.git\">code</a>, <a "
"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug"
" tracker</a>)"
msgstr ""
@@ -886,7 +885,7 @@
msgid ""
"<a "
"href=\"https://trac.torproject.org/projects/tor/wiki/projects/EmailAutoResponder\">GetTor</a>"
-" (<a href=\"https://svn.torproject.org/svn/projects/gettor/\">code</a>, <a "
+" (<a href=\"https://gitweb.torproject.org/gettor.git\">code</a>, <a "
"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug"
" tracker</a>)"
msgstr ""
@@ -1905,8 +1904,8 @@
msgid ""
"The vast majority of arm's more interesting functionality lies in its "
"backend <a "
-"href=\"https://svn.torproject.org/svn/arm/trunk/src/util/\">utilities</a>, "
-"so there should be little to no work decoupling the CLI from its backend. "
+"href=\"https://gitweb.torproject.org/arm.git/tree/HEAD:/src/util\">utilities</a>,"
+" so there should be little to no work decoupling the CLI from its backend. "
"Instead, this project would mostly be UI hacking and experimentation, trying"
" different interfaces to find something that's elegant and simple, but "
"matches the information found in the current terminal application."
Modified: translation/trunk/projects/website/po/it/press/4-optional.2010-03-25-tor-store-press-release.po
===================================================================
--- translation/trunk/projects/website/po/it/press/4-optional.2010-03-25-tor-store-press-release.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/it/press/4-optional.2010-03-25-tor-store-press-release.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-05-02 17:00+0200\n"
-"PO-Revision-Date: 2011-07-20 21:00+0000\n"
+"PO-Revision-Date: 2011-07-21 07:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Italian (http://www.transifex.net/projects/p/torproject/team/it/)\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/my/1-high.index.po
===================================================================
--- translation/trunk/projects/website/po/my/1-high.index.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/my/1-high.index.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-03-28 12:48+0200\n"
-"PO-Revision-Date: 2011-07-20 20:56+0000\n"
+"PO-Revision-Date: 2011-07-21 07:28+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/pl_PL/docs/3-low.debian.po
===================================================================
--- translation/trunk/projects/website/po/pl_PL/docs/3-low.debian.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/pl_PL/docs/3-low.debian.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,8 +7,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2011-07-08 08:43+0200\n"
-"PO-Revision-Date: 2011-07-09 12:20+0000\n"
+"POT-Creation-Date: 2011-07-20 20:44+0200\n"
+"PO-Revision-Date: 2011-07-21 01:00+0000\n"
"Last-Translator: bogdrozd <bog.d(a)gazeta.pl>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -36,30 +36,25 @@
#. type: Content of: <div><div><h2>
#: /home/runa/tor/website/docs/en/debian.wml:14
msgid ""
-"<a class=\"anchor\" href=\"#debian\">Option one: Tor on Debian lenny, Debian"
-" sid, or Debian testing</a>"
+"<a class=\"anchor\" href=\"#debian\">Option one: Tor on Debian squeeze, "
+"lenny, Debian sid, or Debian testing</a>"
msgstr ""
-"<a class=\"anchor\" href=\"#debian\">Opcja pierwsza: Tor na Debianie lenny, "
-"Debianie sid lub Debianie testing</a>"
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:16 /tmp/hXZfq9nNmb.xml:43
-#: /tmp/hXZfq9nNmb.xml:114 /tmp/hXZfq9nNmb.xml:149
+#: /home/runa/tor/website/docs/en/debian.wml:16 /tmp/zXFkzQsAWX.xml:42
+#: /tmp/zXFkzQsAWX.xml:113 /tmp/zXFkzQsAWX.xml:148
msgid "<br />"
msgstr "<br />"
#. type: Content of: <div><div><p>
#: /home/runa/tor/website/docs/en/debian.wml:19
msgid ""
-"If you're using Debian stable (lenny), unstable (sid), or testing (squeeze),"
-" just run<br /> <tt>apt-get install tor tor-geoipdb</tt> as root."
+"If you're using Debian, just run<br /> <tt>apt-get install tor tor-"
+"geoipdb</tt> as root."
msgstr ""
-"Jeśli używasz Debiana stabilnego (lenny), niestabilnego (sid), lub testowego"
-" (squeeze), uruchom po prostu<br /><tt>apt-get install tor tor-geoipdb</tt> "
-"jako root."
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:26
+#: /home/runa/tor/website/docs/en/debian.wml:25
msgid ""
"Note that this might not always give you the latest stable Tor version, but "
"you will receive important security fixes. To make sure that you're running "
@@ -70,8 +65,8 @@
"najnowszą stabilną wersję Tora, spójrz na opcję drugą poniżej."
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:32 /tmp/hXZfq9nNmb.xml:95
-#: /tmp/hXZfq9nNmb.xml:140 /tmp/hXZfq9nNmb.xml:183
+#: /home/runa/tor/website/docs/en/debian.wml:31 /tmp/zXFkzQsAWX.xml:94
+#: /tmp/zXFkzQsAWX.xml:139 /tmp/zXFkzQsAWX.xml:182
msgid ""
"Now Tor is installed and running. Move on to <a href=\"<page docs/tor-doc-"
"unix>#polipo\">step two</a> of the \"Tor on Linux/Unix\" instructions."
@@ -81,29 +76,27 @@
"Linux/Unix\""
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:37
+#: /home/runa/tor/website/docs/en/debian.wml:36
msgid "<hr /> <a id=\"ubuntu\"></a> <a id=\"packages\"></a>"
msgstr "<hr /> <a id=\"ubuntu\"></a> <a id=\"packages\"></a>"
#. type: Content of: <div><div><h2>
-#: /home/runa/tor/website/docs/en/debian.wml:41
+#: /home/runa/tor/website/docs/en/debian.wml:40
msgid "<a class=\"anchor\" href=\"#ubuntu\">Option two: Tor on Ubuntu or Debian</a>"
msgstr ""
"<a class=\"anchor\" href=\"#ubuntu\">Opcja druga: Tor na Ubuntu lub "
"Debianie</a>"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:46
+#: /home/runa/tor/website/docs/en/debian.wml:45
msgid ""
-"<b>Do not use the packages in Ubuntu's universe.</b> They are unmaintained "
-"and out of date. That means you'll be missing stability and security fixes."
+"<b>Do not use the packages in Ubuntu's universe.</b> In the past they have "
+"not reliably been updated. That means you could be missing stability and "
+"security fixes."
msgstr ""
-"<b>Nie używajcie paczek ze wszechświata Ubuntu.</b> Nikt się nimi nie "
-"zajmuje i są przestarzałe. To oznacza, że będziecie pozbawieni poprawek "
-"stabilności i bezpieczeństwa."
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:52
+#: /home/runa/tor/website/docs/en/debian.wml:51
msgid ""
"You'll need to set up our package repository before you can fetch Tor. "
"First, you need to figure out the name of your distribution. A quick command"
@@ -116,11 +109,16 @@
"/etc/debian_version</tt>. Poniżej jest proste odwzorowanie:"
#. type: Content of: <div><div><p><ul><li>
-#: /home/runa/tor/website/docs/en/debian.wml:57
+#: /home/runa/tor/website/docs/en/debian.wml:56
msgid "Debian unstable (sid) is \"sid\""
msgstr "Debian unstable (sid) to \"sid\""
#. type: Content of: <div><div><p><ul><li>
+#: /home/runa/tor/website/docs/en/debian.wml:57
+msgid "Debian testing is \"wheezy\""
+msgstr ""
+
+#. type: Content of: <div><div><p><ul><li>
#: /home/runa/tor/website/docs/en/debian.wml:58
msgid "Debian 6.0 (squeeze) is \"squeeze\""
msgstr "Debian 6.0 (squeeze) to \"squeeze\""
@@ -155,20 +153,15 @@
msgid "Ubuntu 8.04 is \"hardy\""
msgstr "Ubuntu 8.04 to \"hardy\""
-#. type: Content of: <div><div><p><ul><li>
-#: /home/runa/tor/website/docs/en/debian.wml:65
-msgid "Ubuntu 6.06 is \"dapper\""
-msgstr "Ubuntu 6.06 to \"dapper\""
-
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:68
+#: /home/runa/tor/website/docs/en/debian.wml:67
msgid "Then add this line to your <tt>/etc/apt/sources.list</tt> file:<br />"
msgstr ""
"Potem dodajcie tę linię do swojego pliku <tt>/etc/apt/sources.list</tt>:<br "
"/>"
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:72
+#: /home/runa/tor/website/docs/en/debian.wml:71
#, no-wrap
msgid ""
"deb http://deb.torproject.org/torproject.org <DISTRIBUTION> main\n"
@@ -176,7 +169,7 @@
"deb http://deb.torproject.org/torproject.org <DISTRIBUTION> main\n"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:74
+#: /home/runa/tor/website/docs/en/debian.wml:73
msgid ""
"where you put the codename of your distribution (i.e. lenny, sid, maverick "
"or whatever it is) in place of <DISTRIBUTION>."
@@ -185,7 +178,7 @@
" maverick czy cokolwiek to jest) w miejsce <DISTRIBUTION>."
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:80
+#: /home/runa/tor/website/docs/en/debian.wml:79
msgid ""
"Then add the gpg key used to sign the packages by running the following "
"commands at your command prompt:"
@@ -194,7 +187,7 @@
"następujące komendy w linii poleceń:"
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:83
+#: /home/runa/tor/website/docs/en/debian.wml:82
#, no-wrap
msgid ""
"gpg --keyserver keys.gnupg.net --recv 886DDD89\n"
@@ -204,7 +197,7 @@
"gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -\n"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:86
+#: /home/runa/tor/website/docs/en/debian.wml:85
msgid ""
"Now refresh your sources and install Tor by running the following commands "
"(as root) at your command prompt:"
@@ -213,7 +206,7 @@
"komendy (jako root) w linii poleceń:"
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:89
+#: /home/runa/tor/website/docs/en/debian.wml:88
#, no-wrap
msgid ""
"apt-get update\n"
@@ -223,7 +216,7 @@
"apt-get install tor tor-geoipdb\n"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:101
+#: /home/runa/tor/website/docs/en/debian.wml:100
msgid ""
"The DNS name <code>deb.torproject.org</code> is actually a set of "
"independent servers in a DNS round robin configuration. If you for some "
@@ -238,12 +231,12 @@
"<code>mirror.netcologne.de</code> lub <code>tor.mirror.youam.de</code>."
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:109
+#: /home/runa/tor/website/docs/en/debian.wml:108
msgid "<hr /> <a id=\"development\"></a>"
msgstr "<hr /> <a id=\"development\"></a>"
#. type: Content of: <div><div><h2>
-#: /home/runa/tor/website/docs/en/debian.wml:112
+#: /home/runa/tor/website/docs/en/debian.wml:111
msgid ""
"<a class=\"anchor\" href=\"#development\">Option three: Using the "
"development branch of Tor on Debian or Ubuntu</a>"
@@ -252,7 +245,7 @@
"rozwojowej Tora na Debianie lub Ubuntu</a>"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:116
+#: /home/runa/tor/website/docs/en/debian.wml:115
msgid ""
"If you want to use the <a href=\"<page "
"download/download>#packagediff\">development branch</a> of Tor instead (more"
@@ -264,7 +257,7 @@
"inny zestaw linii do swojego pliku <tt>/etc/apt/sources.list</tt>:<br />"
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:121
+#: /home/runa/tor/website/docs/en/debian.wml:120
#, no-wrap
msgid ""
"deb http://deb.torproject.org/torproject.org <DISTRIBUTION> main\n"
@@ -274,7 +267,7 @@
"deb http://deb.torproject.org/torproject.org experimental-<DISTRIBUTION> main\n"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:124
+#: /home/runa/tor/website/docs/en/debian.wml:123
msgid ""
"where you again substitute the name of your distro (lenny, sid, maverick, "
"...) in place of <DISTRIBUTION>."
@@ -283,12 +276,12 @@
"maverick, ...) zamiast <DISTRIBUTION>."
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:130
+#: /home/runa/tor/website/docs/en/debian.wml:129
msgid "Then run the following commands at your command prompt:"
msgstr "Potem wykonajcie następujące komendy w linii poleceń:"
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:132
+#: /home/runa/tor/website/docs/en/debian.wml:131
#, no-wrap
msgid ""
"gpg --keyserver keys.gnupg.net --recv 886DDD89\n"
@@ -302,17 +295,17 @@
"apt-get install tor tor-geoipdb\n"
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:145
+#: /home/runa/tor/website/docs/en/debian.wml:144
msgid "<hr /> <a id=\"source\"></a>"
msgstr "<hr /> <a id=\"source\"></a>"
#. type: Content of: <div><div><h2>
-#: /home/runa/tor/website/docs/en/debian.wml:148
+#: /home/runa/tor/website/docs/en/debian.wml:147
msgid "<a class=\"anchor\" href=\"#source\">Building from source</a>"
msgstr "<a class=\"anchor\" href=\"#source\">Kompilacja ze źródeł</a>"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:152
+#: /home/runa/tor/website/docs/en/debian.wml:151
msgid ""
"If you want to build your own debs from source you must first add an "
"appropriate <tt>deb-src</tt> line to <tt>sources.list</tt>."
@@ -323,7 +316,7 @@
#. PO4ASHARPBEGIN For the stable version.PO4ASHARPEND
#. PO4ASHARPBEGIN For the unstable version.PO4ASHARPEND
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:155
+#: /home/runa/tor/website/docs/en/debian.wml:154
#, no-wrap
msgid ""
"\n"
@@ -341,7 +334,7 @@
"deb-src http://deb.torproject.org/torproject.org experimental-<DISTRIBUTION> main\n"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:162
+#: /home/runa/tor/website/docs/en/debian.wml:161
msgid ""
"You also need to install the necessary packages to build your own debs and "
"the packages needed to build Tor:"
@@ -350,7 +343,7 @@
" nezbędne do kompilacji Tora:"
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:165
+#: /home/runa/tor/website/docs/en/debian.wml:164
#, no-wrap
msgid ""
"apt-get install build-essential fakeroot devscripts\n"
@@ -360,12 +353,12 @@
"apt-get build-dep tor\n"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:168
+#: /home/runa/tor/website/docs/en/debian.wml:167
msgid "Then you can build Tor in ~/debian-packages:"
msgstr "Wtedy możecie skompilować Tora w ~/debian-packages:"
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:170
+#: /home/runa/tor/website/docs/en/debian.wml:169
#, no-wrap
msgid ""
"mkdir ~/debian-packages; cd ~/debian-packages\n"
@@ -381,23 +374,23 @@
"cd ..\n"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:176
+#: /home/runa/tor/website/docs/en/debian.wml:175
msgid "Now you can install the new package:"
msgstr "Teraz możecie zainstalować nową paczkę:"
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:178
+#: /home/runa/tor/website/docs/en/debian.wml:177
#, no-wrap
msgid "sudo dpkg -i tor_*.deb\n"
msgstr "sudo dpkg -i tor_*.deb\n"
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:188
+#: /home/runa/tor/website/docs/en/debian.wml:187
msgid "<hr />"
msgstr "<hr />"
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:190
+#: /home/runa/tor/website/docs/en/debian.wml:189
msgid ""
"If you have suggestions for improving this document, please <a href=\"<page "
"about/contact>\">send them to us</a>. Thanks!"
Modified: translation/trunk/projects/website/po/pl_PL/download/3-low.download.po
===================================================================
--- translation/trunk/projects/website/po/pl_PL/download/3-low.download.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/pl_PL/download/3-low.download.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,8 +7,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2011-07-13 14:56+0200\n"
-"PO-Revision-Date: 2011-07-17 09:27+0000\n"
+"POT-Creation-Date: 2011-07-20 20:43+0200\n"
+"PO-Revision-Date: 2011-07-21 01:01+0000\n"
"Last-Translator: bogdrozd <bog.d(a)gazeta.pl>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -206,8 +206,8 @@
msgstr "Oprogramowanie Tor dla Windows jest pakowane na cztery różne sposoby:"
#. type: Content of: <div><div><table><tr><td><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:102 /tmp/eCkycGCH9H.xml:165
-#: /tmp/eCkycGCH9H.xml:203
+#: /home/runa/tor/website/download/en/download.wml:102 /tmp/jgw2tk3no1.xml:165
+#: /tmp/jgw2tk3no1.xml:203
msgid ""
"The <strong>Tor Browser Bundle</strong> contains everything you need to "
"safely browse the Internet. This package requires no installation. Just "
@@ -255,7 +255,7 @@
"Musisz ręcznie skonfigurować Tora i wszystkie swoje aplikacje."
#. type: Content of: <div><div><table><tr><td><p>
-#: /home/runa/tor/website/download/en/download.wml:110 /tmp/eCkycGCH9H.xml:168
+#: /home/runa/tor/website/download/en/download.wml:110 /tmp/jgw2tk3no1.xml:168
msgid ""
"There are two versions of each package, a stable and alpha release. Stable "
"packages are released when we believe the features and code will not change "
@@ -666,7 +666,7 @@
"href=\"../dist/tor-<version-alpha>.tar.gz.asc\">sig</a>)"
#. type: Content of: <div><div><div>
-#: /home/runa/tor/website/download/en/download.wml:265 /tmp/eCkycGCH9H.xml:344
+#: /home/runa/tor/website/download/en/download.wml:265 /tmp/jgw2tk3no1.xml:343
msgid "<br>"
msgstr "<br>"
@@ -819,15 +819,11 @@
#: /home/runa/tor/website/download/en/download.wml:338
msgid ""
"Do not use <a href=\"https://blog.torproject.org/blog/bittorrent-over-tor-"
-"isnt-good-idea\">BitTorrent and Tor</a> together unless you are using a "
-"system like <a href=\"http://tails.boum.org/\">TAILS</a>."
+"isnt-good-idea\">BitTorrent and Tor</a> together."
msgstr ""
-"Nie używaj <a href=\"https://blog.torproject.org/blog/bittorrent-over-tor-"
-"isnt-good-idea\">BitTorrenta i Tora</a> razem, chyba że używasz takigo "
-"systemu, jak <a href=\"http://tails.boum.org/\">TAILS</a>."
#. type: Content of: <div><div><div><p>
-#: /home/runa/tor/website/download/en/download.wml:346
+#: /home/runa/tor/website/download/en/download.wml:345
msgid ""
"Be smart and learn more. Understand what Tor does and does not offer. This "
"list of pitfalls isn't complete, and we need your help <a href=\"<page "
@@ -841,42 +837,42 @@
"wszystkich spraw</a>."
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:358
+#: /home/runa/tor/website/download/en/download.wml:357
msgid "Jump to:"
msgstr "Przejdź do:"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:360
+#: /home/runa/tor/website/download/en/download.wml:359
msgid "<a href=\"#Windows\">Microsoft Windows</a>"
msgstr "<a href=\"#Windows\">Microsoft Windows</a>"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:361
+#: /home/runa/tor/website/download/en/download.wml:360
msgid "<a href=\"#mac\">Apple OS X</a>"
msgstr "<a href=\"#mac\">Apple OS X</a>"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:362
+#: /home/runa/tor/website/download/en/download.wml:361
msgid "<a href=\"#linux\">Linux/Unix</a>"
msgstr "<a href=\"#linux\">Linux/Unix</a>"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:363
+#: /home/runa/tor/website/download/en/download.wml:362
msgid "<a href=\"#smartphones\">Smartphones</a>"
msgstr "<a href=\"#smartphones\">Smartfony</a>"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:364
+#: /home/runa/tor/website/download/en/download.wml:363
msgid "<a href=\"#source\">Source Code</a>"
msgstr "<a href=\"#source\">Kod Źródłowy</a>"
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:371
+#: /home/runa/tor/website/download/en/download.wml:370
msgid "What is the (sig) link?"
msgstr "Czym jest link (sig)?"
#. type: Content of: <div><div><div><div><p>
-#: /home/runa/tor/website/download/en/download.wml:372
+#: /home/runa/tor/website/download/en/download.wml:371
msgid ""
"These are GPG signatures to allow you to verify that your downloaded file is"
" really from The Tor Project and not an imposter."
@@ -885,18 +881,18 @@
"pochodzi rzeczywiście od Projektu Tor, a nie od oszusta."
#. type: Content of: <div><div><div><div>
-#: /home/runa/tor/website/download/en/download.wml:375
+#: /home/runa/tor/website/download/en/download.wml:374
msgid "<a href=\"<page docs/verifying-signatures>\">Learn more »</a>"
msgstr ""
"<a href=\"<page docs/verifying-signatures>\">Dowiedz się więcej »</a>"
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:381
+#: /home/runa/tor/website/download/en/download.wml:380
msgid "Having Trouble?"
msgstr "Masz kłopoty?"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:383
+#: /home/runa/tor/website/download/en/download.wml:382
msgid "<a href=\"<page docs/documentation>\">Read the fine manuals</a>"
msgstr "<a href=\"<page docs/documentation>\">Przeczytaj dobre podręczniki</a>"
Modified: translation/trunk/projects/website/po/pl_PL/getinvolved/4-optional.volunteer.po
===================================================================
--- translation/trunk/projects/website/po/pl_PL/getinvolved/4-optional.volunteer.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/pl_PL/getinvolved/4-optional.volunteer.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -8,8 +8,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2011-06-21 08:19+0200\n"
-"PO-Revision-Date: 2011-06-26 10:28+0000\n"
+"POT-Creation-Date: 2011-07-20 20:44+0200\n"
+"PO-Revision-Date: 2011-07-21 01:02+0000\n"
"Last-Translator: bogdrozd <bog.d(a)gazeta.pl>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -235,19 +235,19 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:86
-#: /tmp/r1AqHDMca8.xml:94
+#: /tmp/iN5ZsD3CzY.xml:94
msgid "Core"
msgstr "Główny"
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:87
-#: /tmp/r1AqHDMca8.xml:119
+#: /tmp/iN5ZsD3CzY.xml:119
msgid "C"
msgstr "C"
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:88
-#: /tmp/r1AqHDMca8.xml:112 /tmp/r1AqHDMca8.xml:144 /tmp/r1AqHDMca8.xml:184
+#: /tmp/iN5ZsD3CzY.xml:112 /tmp/iN5ZsD3CzY.xml:144 /tmp/iN5ZsD3CzY.xml:184
msgid "Heavy"
msgstr "Dużo"
@@ -263,13 +263,13 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:95
-#: /tmp/r1AqHDMca8.xml:151 /tmp/r1AqHDMca8.xml:183
+#: /tmp/iN5ZsD3CzY.xml:151 /tmp/iN5ZsD3CzY.xml:183
msgid "Java"
msgstr "Java"
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:96
-#: /tmp/r1AqHDMca8.xml:192 /tmp/r1AqHDMca8.xml:216 /tmp/r1AqHDMca8.xml:240
+#: /tmp/iN5ZsD3CzY.xml:192 /tmp/iN5ZsD3CzY.xml:216 /tmp/iN5ZsD3CzY.xml:240
msgid "None"
msgstr "Brak"
@@ -280,19 +280,19 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:102
-#: /tmp/r1AqHDMca8.xml:110 /tmp/r1AqHDMca8.xml:118 /tmp/r1AqHDMca8.xml:126
+#: /tmp/iN5ZsD3CzY.xml:110 /tmp/iN5ZsD3CzY.xml:118 /tmp/iN5ZsD3CzY.xml:126
msgid "Usability"
msgstr "Uzyteczność"
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:103
-#: /tmp/r1AqHDMca8.xml:111 /tmp/r1AqHDMca8.xml:127
+#: /tmp/iN5ZsD3CzY.xml:111 /tmp/iN5ZsD3CzY.xml:127
msgid "Sys Admin"
msgstr "Sys Admin"
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:104
-#: /tmp/r1AqHDMca8.xml:152 /tmp/r1AqHDMca8.xml:160 /tmp/r1AqHDMca8.xml:224
+#: /tmp/iN5ZsD3CzY.xml:152 /tmp/iN5ZsD3CzY.xml:160 /tmp/iN5ZsD3CzY.xml:224
msgid "Moderate"
msgstr "Średnia"
@@ -318,9 +318,9 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:120
-#: /tmp/r1AqHDMca8.xml:128 /tmp/r1AqHDMca8.xml:136 /tmp/r1AqHDMca8.xml:168
-#: /tmp/r1AqHDMca8.xml:176 /tmp/r1AqHDMca8.xml:200 /tmp/r1AqHDMca8.xml:208
-#: /tmp/r1AqHDMca8.xml:232
+#: /tmp/iN5ZsD3CzY.xml:128 /tmp/iN5ZsD3CzY.xml:136 /tmp/iN5ZsD3CzY.xml:168
+#: /tmp/iN5ZsD3CzY.xml:176 /tmp/iN5ZsD3CzY.xml:200 /tmp/iN5ZsD3CzY.xml:208
+#: /tmp/iN5ZsD3CzY.xml:232
msgid "Light"
msgstr "Mało"
@@ -346,7 +346,7 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:134
-#: /tmp/r1AqHDMca8.xml:142 /tmp/r1AqHDMca8.xml:150
+#: /tmp/iN5ZsD3CzY.xml:142 /tmp/iN5ZsD3CzY.xml:150
msgid "User Interface"
msgstr "Interfejs użytkownika"
@@ -402,7 +402,7 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:161
-#: /tmp/r1AqHDMca8.xml:177 /tmp/r1AqHDMca8.xml:233
+#: /tmp/iN5ZsD3CzY.xml:177 /tmp/iN5ZsD3CzY.xml:233
msgid "mikeperry"
msgstr "mikeperry"
@@ -418,8 +418,8 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:167
-#: /tmp/r1AqHDMca8.xml:175 /tmp/r1AqHDMca8.xml:199 /tmp/r1AqHDMca8.xml:207
-#: /tmp/r1AqHDMca8.xml:223 /tmp/r1AqHDMca8.xml:231 /tmp/r1AqHDMca8.xml:239
+#: /tmp/iN5ZsD3CzY.xml:175 /tmp/iN5ZsD3CzY.xml:199 /tmp/iN5ZsD3CzY.xml:207
+#: /tmp/iN5ZsD3CzY.xml:223 /tmp/iN5ZsD3CzY.xml:231 /tmp/iN5ZsD3CzY.xml:239
msgid "Python"
msgstr "Python"
@@ -445,8 +445,8 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:182
-#: /tmp/r1AqHDMca8.xml:190 /tmp/r1AqHDMca8.xml:198 /tmp/r1AqHDMca8.xml:206
-#: /tmp/r1AqHDMca8.xml:214
+#: /tmp/iN5ZsD3CzY.xml:190 /tmp/iN5ZsD3CzY.xml:198 /tmp/iN5ZsD3CzY.xml:206
+#: /tmp/iN5ZsD3CzY.xml:214
msgid "Client Service"
msgstr "Usługa kliencka"
@@ -472,7 +472,7 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:201
-#: /tmp/r1AqHDMca8.xml:209
+#: /tmp/iN5ZsD3CzY.xml:209
msgid "kaner"
msgstr "kaner"
@@ -498,7 +498,7 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:222
-#: /tmp/r1AqHDMca8.xml:230 /tmp/r1AqHDMca8.xml:238
+#: /tmp/iN5ZsD3CzY.xml:230 /tmp/iN5ZsD3CzY.xml:238
msgid "Backend Service"
msgstr "Usługa wspierająca"
@@ -756,14 +756,10 @@
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:353
msgid ""
"<a href=\"<page projects/vidalia>\">Vidalia</a> (<a "
-"href=\"https://svn.torproject.org/vidalia/vidalia/trunk/\">code</a>, <a "
+"href=\"https://gitweb.torproject.org/vidalia.git\">code</a>, <a "
"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug"
" tracker</a>)"
msgstr ""
-"<a href=\"<page projects/vidalia>\">Vidalia</a> (<a "
-"href=\"https://svn.torproject.org/vidalia/vidalia/trunk/\">kod</a>, <a "
-"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">śledzenie"
-" błędów</a>)"
#. type: Content of: <div><div><p>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:359
@@ -801,14 +797,10 @@
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:372
msgid ""
"<a href=\"http://www.atagar.com/arm/\">Arm</a> (<a "
-"href=\"https://svn.torproject.org/svn/arm/trunk/\">code</a>, <a "
+"href=\"https://gitweb.torproject.org/arm.git\">code</a>, <a "
"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug"
" tracker</a>)"
msgstr ""
-"<a href=\"http://www.atagar.com/arm/\">Arm</a> (<a "
-"href=\"https://svn.torproject.org/svn/arm/trunk/\">kod</a>, <a "
-"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">śledzenie"
-" błędów</a>)"
#. type: Content of: <div><div><p>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:378
@@ -840,16 +832,10 @@
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:390
msgid ""
"<a href=\"https://guardianproject.info/apps/orbot/\">Orbot</a> (<a "
-"href=\"https://svn.torproject.org/svn/projects/android/trunk/Orbot/\">code</a>,"
-" <a "
+"href=\"https://gitweb.torproject.org/orbot.git\">code</a>, <a "
"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug"
" tracker</a>)"
msgstr ""
-"<a href=\"https://guardianproject.info/apps/orbot/\">Orbot</a> (<a "
-"href=\"https://svn.torproject.org/svn/projects/android/trunk/Orbot/\">kod</a>,"
-" <a "
-"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">śledzenie"
-" błędów</a>)"
#. type: Content of: <div><div><p>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:396
@@ -1072,15 +1058,10 @@
msgid ""
"<a "
"href=\"https://trac.torproject.org/projects/tor/wiki/projects/EmailAutoResponder\">GetTor</a>"
-" (<a href=\"https://svn.torproject.org/svn/projects/gettor/\">code</a>, <a "
+" (<a href=\"https://gitweb.torproject.org/gettor.git\">code</a>, <a "
"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug"
" tracker</a>)"
msgstr ""
-"<a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/projects/EmailAutoResponder\">GetTor</a>"
-" (<a href=\"https://svn.torproject.org/svn/projects/gettor/\">kod</a>, <a "
-"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">śledzenie"
-" błędów</a>)"
#. type: Content of: <div><div><p>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:492
@@ -2540,19 +2521,12 @@
msgid ""
"The vast majority of arm's more interesting functionality lies in its "
"backend <a "
-"href=\"https://svn.torproject.org/svn/arm/trunk/src/util/\">utilities</a>, "
-"so there should be little to no work decoupling the CLI from its backend. "
+"href=\"https://gitweb.torproject.org/arm.git/tree/HEAD:/src/util\">utilities</a>,"
+" so there should be little to no work decoupling the CLI from its backend. "
"Instead, this project would mostly be UI hacking and experimentation, trying"
" different interfaces to find something that's elegant and simple, but "
"matches the information found in the current terminal application."
msgstr ""
-"Większość bardziej interesujących funkcjonalności arma jest w jego <a "
-"href=\"https://svn.torproject.org/svn/arm/trunk/src/util/\">narzędziach</a>,"
-" więc nie powinno być dużo pracy z oddzieleniem jego interfejsu od jego "
-"wnętrzności. Zamiast tego, ten projekt składałby się głównie z hakowania "
-"interfejsu użytkownika i eksperymentowania, wypróbowując różne interfejsy, "
-"aby znaleźć coś, co jest eleganckie i proste, ale pasuje do informacji, "
-"które można znaleźć w aktualnej aplikacji terminalowej."
#. type: Content of: <div><div><ol><li>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:1206
Modified: translation/trunk/projects/website/po/ru/docs/3-low.debian.po
===================================================================
--- translation/trunk/projects/website/po/ru/docs/3-low.debian.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ru/docs/3-low.debian.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -6,8 +6,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2011-07-08 08:43+0200\n"
-"PO-Revision-Date: 2011-07-09 01:14+0000\n"
+"POT-Creation-Date: 2011-07-20 20:44+0200\n"
+"PO-Revision-Date: 2011-07-21 01:00+0000\n"
"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
"Language-Team: Russian (http://www.transifex.net/projects/p/torproject/team/ru/)\n"
"MIME-Version: 1.0\n"
@@ -32,25 +32,25 @@
#. type: Content of: <div><div><h2>
#: /home/runa/tor/website/docs/en/debian.wml:14
msgid ""
-"<a class=\"anchor\" href=\"#debian\">Option one: Tor on Debian lenny, Debian"
-" sid, or Debian testing</a>"
+"<a class=\"anchor\" href=\"#debian\">Option one: Tor on Debian squeeze, "
+"lenny, Debian sid, or Debian testing</a>"
msgstr ""
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:16 /tmp/hXZfq9nNmb.xml:43
-#: /tmp/hXZfq9nNmb.xml:114 /tmp/hXZfq9nNmb.xml:149
+#: /home/runa/tor/website/docs/en/debian.wml:16 /tmp/zXFkzQsAWX.xml:42
+#: /tmp/zXFkzQsAWX.xml:113 /tmp/zXFkzQsAWX.xml:148
msgid "<br />"
msgstr ""
#. type: Content of: <div><div><p>
#: /home/runa/tor/website/docs/en/debian.wml:19
msgid ""
-"If you're using Debian stable (lenny), unstable (sid), or testing (squeeze),"
-" just run<br /> <tt>apt-get install tor tor-geoipdb</tt> as root."
+"If you're using Debian, just run<br /> <tt>apt-get install tor tor-"
+"geoipdb</tt> as root."
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:26
+#: /home/runa/tor/website/docs/en/debian.wml:25
msgid ""
"Note that this might not always give you the latest stable Tor version, but "
"you will receive important security fixes. To make sure that you're running "
@@ -58,32 +58,33 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:32 /tmp/hXZfq9nNmb.xml:95
-#: /tmp/hXZfq9nNmb.xml:140 /tmp/hXZfq9nNmb.xml:183
+#: /home/runa/tor/website/docs/en/debian.wml:31 /tmp/zXFkzQsAWX.xml:94
+#: /tmp/zXFkzQsAWX.xml:139 /tmp/zXFkzQsAWX.xml:182
msgid ""
"Now Tor is installed and running. Move on to <a href=\"<page docs/tor-doc-"
"unix>#polipo\">step two</a> of the \"Tor on Linux/Unix\" instructions."
msgstr ""
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:37
+#: /home/runa/tor/website/docs/en/debian.wml:36
msgid "<hr /> <a id=\"ubuntu\"></a> <a id=\"packages\"></a>"
msgstr ""
#. type: Content of: <div><div><h2>
-#: /home/runa/tor/website/docs/en/debian.wml:41
+#: /home/runa/tor/website/docs/en/debian.wml:40
msgid "<a class=\"anchor\" href=\"#ubuntu\">Option two: Tor on Ubuntu or Debian</a>"
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:46
+#: /home/runa/tor/website/docs/en/debian.wml:45
msgid ""
-"<b>Do not use the packages in Ubuntu's universe.</b> They are unmaintained "
-"and out of date. That means you'll be missing stability and security fixes."
+"<b>Do not use the packages in Ubuntu's universe.</b> In the past they have "
+"not reliably been updated. That means you could be missing stability and "
+"security fixes."
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:52
+#: /home/runa/tor/website/docs/en/debian.wml:51
msgid ""
"You'll need to set up our package repository before you can fetch Tor. "
"First, you need to figure out the name of your distribution. A quick command"
@@ -92,11 +93,16 @@
msgstr ""
#. type: Content of: <div><div><p><ul><li>
-#: /home/runa/tor/website/docs/en/debian.wml:57
+#: /home/runa/tor/website/docs/en/debian.wml:56
msgid "Debian unstable (sid) is \"sid\""
msgstr ""
#. type: Content of: <div><div><p><ul><li>
+#: /home/runa/tor/website/docs/en/debian.wml:57
+msgid "Debian testing is \"wheezy\""
+msgstr ""
+
+#. type: Content of: <div><div><p><ul><li>
#: /home/runa/tor/website/docs/en/debian.wml:58
msgid "Debian 6.0 (squeeze) is \"squeeze\""
msgstr ""
@@ -131,39 +137,34 @@
msgid "Ubuntu 8.04 is \"hardy\""
msgstr ""
-#. type: Content of: <div><div><p><ul><li>
-#: /home/runa/tor/website/docs/en/debian.wml:65
-msgid "Ubuntu 6.06 is \"dapper\""
-msgstr ""
-
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:68
+#: /home/runa/tor/website/docs/en/debian.wml:67
msgid "Then add this line to your <tt>/etc/apt/sources.list</tt> file:<br />"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:72
+#: /home/runa/tor/website/docs/en/debian.wml:71
#, no-wrap
msgid ""
"deb http://deb.torproject.org/torproject.org <DISTRIBUTION> main\n"
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:74
+#: /home/runa/tor/website/docs/en/debian.wml:73
msgid ""
"where you put the codename of your distribution (i.e. lenny, sid, maverick "
"or whatever it is) in place of <DISTRIBUTION>."
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:80
+#: /home/runa/tor/website/docs/en/debian.wml:79
msgid ""
"Then add the gpg key used to sign the packages by running the following "
"commands at your command prompt:"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:83
+#: /home/runa/tor/website/docs/en/debian.wml:82
#, no-wrap
msgid ""
"gpg --keyserver keys.gnupg.net --recv 886DDD89\n"
@@ -171,14 +172,14 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:86
+#: /home/runa/tor/website/docs/en/debian.wml:85
msgid ""
"Now refresh your sources and install Tor by running the following commands "
"(as root) at your command prompt:"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:89
+#: /home/runa/tor/website/docs/en/debian.wml:88
#, no-wrap
msgid ""
"apt-get update\n"
@@ -186,7 +187,7 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:101
+#: /home/runa/tor/website/docs/en/debian.wml:100
msgid ""
"The DNS name <code>deb.torproject.org</code> is actually a set of "
"independent servers in a DNS round robin configuration. If you for some "
@@ -196,19 +197,19 @@
msgstr ""
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:109
+#: /home/runa/tor/website/docs/en/debian.wml:108
msgid "<hr /> <a id=\"development\"></a>"
msgstr ""
#. type: Content of: <div><div><h2>
-#: /home/runa/tor/website/docs/en/debian.wml:112
+#: /home/runa/tor/website/docs/en/debian.wml:111
msgid ""
"<a class=\"anchor\" href=\"#development\">Option three: Using the "
"development branch of Tor on Debian or Ubuntu</a>"
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:116
+#: /home/runa/tor/website/docs/en/debian.wml:115
msgid ""
"If you want to use the <a href=\"<page "
"download/download>#packagediff\">development branch</a> of Tor instead (more"
@@ -217,7 +218,7 @@
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:121
+#: /home/runa/tor/website/docs/en/debian.wml:120
#, no-wrap
msgid ""
"deb http://deb.torproject.org/torproject.org <DISTRIBUTION> main\n"
@@ -225,19 +226,19 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:124
+#: /home/runa/tor/website/docs/en/debian.wml:123
msgid ""
"where you again substitute the name of your distro (lenny, sid, maverick, "
"...) in place of <DISTRIBUTION>."
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:130
+#: /home/runa/tor/website/docs/en/debian.wml:129
msgid "Then run the following commands at your command prompt:"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:132
+#: /home/runa/tor/website/docs/en/debian.wml:131
#, no-wrap
msgid ""
"gpg --keyserver keys.gnupg.net --recv 886DDD89\n"
@@ -247,17 +248,17 @@
msgstr ""
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:145
+#: /home/runa/tor/website/docs/en/debian.wml:144
msgid "<hr /> <a id=\"source\"></a>"
msgstr ""
#. type: Content of: <div><div><h2>
-#: /home/runa/tor/website/docs/en/debian.wml:148
+#: /home/runa/tor/website/docs/en/debian.wml:147
msgid "<a class=\"anchor\" href=\"#source\">Building from source</a>"
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:152
+#: /home/runa/tor/website/docs/en/debian.wml:151
msgid ""
"If you want to build your own debs from source you must first add an "
"appropriate <tt>deb-src</tt> line to <tt>sources.list</tt>."
@@ -266,7 +267,7 @@
#. PO4ASHARPBEGIN For the stable version.PO4ASHARPEND
#. PO4ASHARPBEGIN For the unstable version.PO4ASHARPEND
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:155
+#: /home/runa/tor/website/docs/en/debian.wml:154
#, no-wrap
msgid ""
"\n"
@@ -278,14 +279,14 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:162
+#: /home/runa/tor/website/docs/en/debian.wml:161
msgid ""
"You also need to install the necessary packages to build your own debs and "
"the packages needed to build Tor:"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:165
+#: /home/runa/tor/website/docs/en/debian.wml:164
#, no-wrap
msgid ""
"apt-get install build-essential fakeroot devscripts\n"
@@ -293,12 +294,12 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:168
+#: /home/runa/tor/website/docs/en/debian.wml:167
msgid "Then you can build Tor in ~/debian-packages:"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:170
+#: /home/runa/tor/website/docs/en/debian.wml:169
#, no-wrap
msgid ""
"mkdir ~/debian-packages; cd ~/debian-packages\n"
@@ -309,23 +310,23 @@
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:176
+#: /home/runa/tor/website/docs/en/debian.wml:175
msgid "Now you can install the new package:"
msgstr ""
#. type: Content of: <div><div><p><pre>
-#: /home/runa/tor/website/docs/en/debian.wml:178
+#: /home/runa/tor/website/docs/en/debian.wml:177
#, no-wrap
msgid "sudo dpkg -i tor_*.deb\n"
msgstr ""
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/debian.wml:188
+#: /home/runa/tor/website/docs/en/debian.wml:187
msgid "<hr />"
msgstr ""
#. type: Content of: <div><div><p>
-#: /home/runa/tor/website/docs/en/debian.wml:190
+#: /home/runa/tor/website/docs/en/debian.wml:189
msgid ""
"If you have suggestions for improving this document, please <a href=\"<page "
"about/contact>\">send them to us</a>. Thanks!"
Modified: translation/trunk/projects/website/po/ru/download/3-low.download.po
===================================================================
--- translation/trunk/projects/website/po/ru/download/3-low.download.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ru/download/3-low.download.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,8 +7,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2011-07-13 14:56+0200\n"
-"PO-Revision-Date: 2011-07-14 01:02+0000\n"
+"POT-Creation-Date: 2011-07-20 20:43+0200\n"
+"PO-Revision-Date: 2011-07-21 01:01+0000\n"
"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
"Language-Team: Russian (http://www.transifex.net/projects/p/torproject/team/ru/)\n"
"MIME-Version: 1.0\n"
@@ -182,8 +182,8 @@
msgstr ""
#. type: Content of: <div><div><table><tr><td><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:102 /tmp/eCkycGCH9H.xml:165
-#: /tmp/eCkycGCH9H.xml:203
+#: /home/runa/tor/website/download/en/download.wml:102 /tmp/jgw2tk3no1.xml:165
+#: /tmp/jgw2tk3no1.xml:203
msgid ""
"The <strong>Tor Browser Bundle</strong> contains everything you need to "
"safely browse the Internet. This package requires no installation. Just "
@@ -220,7 +220,7 @@
msgstr ""
#. type: Content of: <div><div><table><tr><td><p>
-#: /home/runa/tor/website/download/en/download.wml:110 /tmp/eCkycGCH9H.xml:168
+#: /home/runa/tor/website/download/en/download.wml:110 /tmp/jgw2tk3no1.xml:168
msgid ""
"There are two versions of each package, a stable and alpha release. Stable "
"packages are released when we believe the features and code will not change "
@@ -615,7 +615,7 @@
")"
#. type: Content of: <div><div><div>
-#: /home/runa/tor/website/download/en/download.wml:265 /tmp/eCkycGCH9H.xml:344
+#: /home/runa/tor/website/download/en/download.wml:265 /tmp/jgw2tk3no1.xml:343
msgid "<br>"
msgstr "<br>"
@@ -761,12 +761,11 @@
#: /home/runa/tor/website/download/en/download.wml:338
msgid ""
"Do not use <a href=\"https://blog.torproject.org/blog/bittorrent-over-tor-"
-"isnt-good-idea\">BitTorrent and Tor</a> together unless you are using a "
-"system like <a href=\"http://tails.boum.org/\">TAILS</a>."
+"isnt-good-idea\">BitTorrent and Tor</a> together."
msgstr ""
#. type: Content of: <div><div><div><p>
-#: /home/runa/tor/website/download/en/download.wml:346
+#: /home/runa/tor/website/download/en/download.wml:345
msgid ""
"Be smart and learn more. Understand what Tor does and does not offer. This "
"list of pitfalls isn't complete, and we need your help <a href=\"<page "
@@ -780,42 +779,42 @@
"возможных проблем</a>."
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:358
+#: /home/runa/tor/website/download/en/download.wml:357
msgid "Jump to:"
msgstr "Перейти к:"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:360
+#: /home/runa/tor/website/download/en/download.wml:359
msgid "<a href=\"#Windows\">Microsoft Windows</a>"
msgstr "<a href=\"#Windows\">Microsoft Windows</a>"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:361
+#: /home/runa/tor/website/download/en/download.wml:360
msgid "<a href=\"#mac\">Apple OS X</a>"
msgstr "<a href=\"#mac\">Apple OS X</a>"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:362
+#: /home/runa/tor/website/download/en/download.wml:361
msgid "<a href=\"#linux\">Linux/Unix</a>"
msgstr "<a href=\"#linux\">Linux/Unix</a>"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:363
+#: /home/runa/tor/website/download/en/download.wml:362
msgid "<a href=\"#smartphones\">Smartphones</a>"
msgstr "<a href=\"#smartphones\">Смартфоны</a>"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:364
+#: /home/runa/tor/website/download/en/download.wml:363
msgid "<a href=\"#source\">Source Code</a>"
msgstr "<a href=\"#source\">Исходный код</a>"
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:371
+#: /home/runa/tor/website/download/en/download.wml:370
msgid "What is the (sig) link?"
msgstr "Что такое ссылка (подпись)?"
#. type: Content of: <div><div><div><div><p>
-#: /home/runa/tor/website/download/en/download.wml:372
+#: /home/runa/tor/website/download/en/download.wml:371
msgid ""
"These are GPG signatures to allow you to verify that your downloaded file is"
" really from The Tor Project and not an imposter."
@@ -824,17 +823,17 @@
"файл на самом деле от Tor Project, а не \"подстава\"."
#. type: Content of: <div><div><div><div>
-#: /home/runa/tor/website/download/en/download.wml:375
+#: /home/runa/tor/website/download/en/download.wml:374
msgid "<a href=\"<page docs/verifying-signatures>\">Learn more »</a>"
msgstr "<a href=\"<page docs/verifying-signatures>\">Узнать больше »</a>"
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:381
+#: /home/runa/tor/website/download/en/download.wml:380
msgid "Having Trouble?"
msgstr "Проблемы?"
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:383
+#: /home/runa/tor/website/download/en/download.wml:382
msgid "<a href=\"<page docs/documentation>\">Read the fine manuals</a>"
msgstr "<a href=\"<page docs/documentation>\">Читайте документацию</a>"
Modified: translation/trunk/projects/website/po/ru/getinvolved/4-optional.volunteer.po
===================================================================
--- translation/trunk/projects/website/po/ru/getinvolved/4-optional.volunteer.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ru/getinvolved/4-optional.volunteer.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -6,8 +6,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2011-06-21 08:19+0200\n"
-"PO-Revision-Date: 2011-06-22 00:56+0000\n"
+"POT-Creation-Date: 2011-07-20 20:44+0200\n"
+"PO-Revision-Date: 2011-07-21 01:02+0000\n"
"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
"Language-Team: Russian (http://www.transifex.net/projects/p/torproject/team/ru/)\n"
"MIME-Version: 1.0\n"
@@ -190,19 +190,19 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:86
-#: /tmp/r1AqHDMca8.xml:94
+#: /tmp/iN5ZsD3CzY.xml:94
msgid "Core"
msgstr ""
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:87
-#: /tmp/r1AqHDMca8.xml:119
+#: /tmp/iN5ZsD3CzY.xml:119
msgid "C"
msgstr ""
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:88
-#: /tmp/r1AqHDMca8.xml:112 /tmp/r1AqHDMca8.xml:144 /tmp/r1AqHDMca8.xml:184
+#: /tmp/iN5ZsD3CzY.xml:112 /tmp/iN5ZsD3CzY.xml:144 /tmp/iN5ZsD3CzY.xml:184
msgid "Heavy"
msgstr ""
@@ -218,13 +218,13 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:95
-#: /tmp/r1AqHDMca8.xml:151 /tmp/r1AqHDMca8.xml:183
+#: /tmp/iN5ZsD3CzY.xml:151 /tmp/iN5ZsD3CzY.xml:183
msgid "Java"
msgstr ""
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:96
-#: /tmp/r1AqHDMca8.xml:192 /tmp/r1AqHDMca8.xml:216 /tmp/r1AqHDMca8.xml:240
+#: /tmp/iN5ZsD3CzY.xml:192 /tmp/iN5ZsD3CzY.xml:216 /tmp/iN5ZsD3CzY.xml:240
msgid "None"
msgstr ""
@@ -235,19 +235,19 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:102
-#: /tmp/r1AqHDMca8.xml:110 /tmp/r1AqHDMca8.xml:118 /tmp/r1AqHDMca8.xml:126
+#: /tmp/iN5ZsD3CzY.xml:110 /tmp/iN5ZsD3CzY.xml:118 /tmp/iN5ZsD3CzY.xml:126
msgid "Usability"
msgstr ""
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:103
-#: /tmp/r1AqHDMca8.xml:111 /tmp/r1AqHDMca8.xml:127
+#: /tmp/iN5ZsD3CzY.xml:111 /tmp/iN5ZsD3CzY.xml:127
msgid "Sys Admin"
msgstr ""
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:104
-#: /tmp/r1AqHDMca8.xml:152 /tmp/r1AqHDMca8.xml:160 /tmp/r1AqHDMca8.xml:224
+#: /tmp/iN5ZsD3CzY.xml:152 /tmp/iN5ZsD3CzY.xml:160 /tmp/iN5ZsD3CzY.xml:224
msgid "Moderate"
msgstr ""
@@ -273,9 +273,9 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:120
-#: /tmp/r1AqHDMca8.xml:128 /tmp/r1AqHDMca8.xml:136 /tmp/r1AqHDMca8.xml:168
-#: /tmp/r1AqHDMca8.xml:176 /tmp/r1AqHDMca8.xml:200 /tmp/r1AqHDMca8.xml:208
-#: /tmp/r1AqHDMca8.xml:232
+#: /tmp/iN5ZsD3CzY.xml:128 /tmp/iN5ZsD3CzY.xml:136 /tmp/iN5ZsD3CzY.xml:168
+#: /tmp/iN5ZsD3CzY.xml:176 /tmp/iN5ZsD3CzY.xml:200 /tmp/iN5ZsD3CzY.xml:208
+#: /tmp/iN5ZsD3CzY.xml:232
msgid "Light"
msgstr ""
@@ -301,7 +301,7 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:134
-#: /tmp/r1AqHDMca8.xml:142 /tmp/r1AqHDMca8.xml:150
+#: /tmp/iN5ZsD3CzY.xml:142 /tmp/iN5ZsD3CzY.xml:150
msgid "User Interface"
msgstr ""
@@ -357,7 +357,7 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:161
-#: /tmp/r1AqHDMca8.xml:177 /tmp/r1AqHDMca8.xml:233
+#: /tmp/iN5ZsD3CzY.xml:177 /tmp/iN5ZsD3CzY.xml:233
msgid "mikeperry"
msgstr ""
@@ -373,8 +373,8 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:167
-#: /tmp/r1AqHDMca8.xml:175 /tmp/r1AqHDMca8.xml:199 /tmp/r1AqHDMca8.xml:207
-#: /tmp/r1AqHDMca8.xml:223 /tmp/r1AqHDMca8.xml:231 /tmp/r1AqHDMca8.xml:239
+#: /tmp/iN5ZsD3CzY.xml:175 /tmp/iN5ZsD3CzY.xml:199 /tmp/iN5ZsD3CzY.xml:207
+#: /tmp/iN5ZsD3CzY.xml:223 /tmp/iN5ZsD3CzY.xml:231 /tmp/iN5ZsD3CzY.xml:239
msgid "Python"
msgstr ""
@@ -400,8 +400,8 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:182
-#: /tmp/r1AqHDMca8.xml:190 /tmp/r1AqHDMca8.xml:198 /tmp/r1AqHDMca8.xml:206
-#: /tmp/r1AqHDMca8.xml:214
+#: /tmp/iN5ZsD3CzY.xml:190 /tmp/iN5ZsD3CzY.xml:198 /tmp/iN5ZsD3CzY.xml:206
+#: /tmp/iN5ZsD3CzY.xml:214
msgid "Client Service"
msgstr ""
@@ -427,7 +427,7 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:201
-#: /tmp/r1AqHDMca8.xml:209
+#: /tmp/iN5ZsD3CzY.xml:209
msgid "kaner"
msgstr ""
@@ -453,7 +453,7 @@
#. type: Content of: <div><div><table><tr><td>
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:222
-#: /tmp/r1AqHDMca8.xml:230 /tmp/r1AqHDMca8.xml:238
+#: /tmp/iN5ZsD3CzY.xml:230 /tmp/iN5ZsD3CzY.xml:238
msgid "Backend Service"
msgstr ""
@@ -652,7 +652,7 @@
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:353
msgid ""
"<a href=\"<page projects/vidalia>\">Vidalia</a> (<a "
-"href=\"https://svn.torproject.org/vidalia/vidalia/trunk/\">code</a>, <a "
+"href=\"https://gitweb.torproject.org/vidalia.git\">code</a>, <a "
"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug"
" tracker</a>)"
msgstr ""
@@ -684,7 +684,7 @@
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:372
msgid ""
"<a href=\"http://www.atagar.com/arm/\">Arm</a> (<a "
-"href=\"https://svn.torproject.org/svn/arm/trunk/\">code</a>, <a "
+"href=\"https://gitweb.torproject.org/arm.git\">code</a>, <a "
"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug"
" tracker</a>)"
msgstr ""
@@ -713,8 +713,7 @@
#: /home/runa/tor/website/getinvolved/en/volunteer.wml:390
msgid ""
"<a href=\"https://guardianproject.info/apps/orbot/\">Orbot</a> (<a "
-"href=\"https://svn.torproject.org/svn/projects/android/trunk/Orbot/\">code</a>,"
-" <a "
+"href=\"https://gitweb.torproject.org/orbot.git\">code</a>, <a "
"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug"
" tracker</a>)"
msgstr ""
@@ -886,7 +885,7 @@
msgid ""
"<a "
"href=\"https://trac.torproject.org/projects/tor/wiki/projects/EmailAutoResponder\">GetTor</a>"
-" (<a href=\"https://svn.torproject.org/svn/projects/gettor/\">code</a>, <a "
+" (<a href=\"https://gitweb.torproject.org/gettor.git\">code</a>, <a "
"href=\"https://trac.torproject.org/projects/tor/query?status=accepted&status=assig…">bug"
" tracker</a>)"
msgstr ""
@@ -1905,8 +1904,8 @@
msgid ""
"The vast majority of arm's more interesting functionality lies in its "
"backend <a "
-"href=\"https://svn.torproject.org/svn/arm/trunk/src/util/\">utilities</a>, "
-"so there should be little to no work decoupling the CLI from its backend. "
+"href=\"https://gitweb.torproject.org/arm.git/tree/HEAD:/src/util\">utilities</a>,"
+" so there should be little to no work decoupling the CLI from its backend. "
"Instead, this project would mostly be UI hacking and experimentation, trying"
" different interfaces to find something that's elegant and simple, but "
"matches the information found in the current terminal application."
Modified: translation/trunk/projects/website/po/ru/press/4-optional.2010-03-25-tor-store-press-release.po
===================================================================
--- translation/trunk/projects/website/po/ru/press/4-optional.2010-03-25-tor-store-press-release.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/ru/press/4-optional.2010-03-25-tor-store-press-release.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-05-02 17:00+0200\n"
-"PO-Revision-Date: 2011-07-20 21:00+0000\n"
+"PO-Revision-Date: 2011-07-21 07:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Russian (http://www.transifex.net/projects/p/torproject/team/ru/)\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/vi/download/3-low.download.po
===================================================================
--- translation/trunk/projects/website/po/vi/download/3-low.download.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/vi/download/3-low.download.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -6,8 +6,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2011-07-13 14:56+0200\n"
-"PO-Revision-Date: 2011-07-20 20:25+0000\n"
+"POT-Creation-Date: 2011-07-20 20:43+0200\n"
+"PO-Revision-Date: 2011-07-21 07:24+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -174,8 +174,8 @@
msgstr ""
#. type: Content of: <div><div><table><tr><td><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:102 /tmp/eCkycGCH9H.xml:165
-#: /tmp/eCkycGCH9H.xml:203
+#: /home/runa/tor/website/download/en/download.wml:102 /tmp/jgw2tk3no1.xml:165
+#: /tmp/jgw2tk3no1.xml:203
msgid ""
"The <strong>Tor Browser Bundle</strong> contains everything you need to "
"safely browse the Internet. This package requires no installation. Just "
@@ -209,7 +209,7 @@
msgstr ""
#. type: Content of: <div><div><table><tr><td><p>
-#: /home/runa/tor/website/download/en/download.wml:110 /tmp/eCkycGCH9H.xml:168
+#: /home/runa/tor/website/download/en/download.wml:110 /tmp/jgw2tk3no1.xml:168
msgid ""
"There are two versions of each package, a stable and alpha release. Stable "
"packages are released when we believe the features and code will not change "
@@ -518,7 +518,7 @@
msgstr ""
#. type: Content of: <div><div><div>
-#: /home/runa/tor/website/download/en/download.wml:265 /tmp/eCkycGCH9H.xml:344
+#: /home/runa/tor/website/download/en/download.wml:265 /tmp/jgw2tk3no1.xml:343
msgid "<br>"
msgstr ""
@@ -618,12 +618,11 @@
#: /home/runa/tor/website/download/en/download.wml:338
msgid ""
"Do not use <a href=\"https://blog.torproject.org/blog/bittorrent-over-tor-"
-"isnt-good-idea\">BitTorrent and Tor</a> together unless you are using a "
-"system like <a href=\"http://tails.boum.org/\">TAILS</a>."
+"isnt-good-idea\">BitTorrent and Tor</a> together."
msgstr ""
#. type: Content of: <div><div><div><p>
-#: /home/runa/tor/website/download/en/download.wml:346
+#: /home/runa/tor/website/download/en/download.wml:345
msgid ""
"Be smart and learn more. Understand what Tor does and does not offer. This "
"list of pitfalls isn't complete, and we need your help <a href=\"<page "
@@ -632,59 +631,59 @@
msgstr ""
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:358
+#: /home/runa/tor/website/download/en/download.wml:357
msgid "Jump to:"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:360
+#: /home/runa/tor/website/download/en/download.wml:359
msgid "<a href=\"#Windows\">Microsoft Windows</a>"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:361
+#: /home/runa/tor/website/download/en/download.wml:360
msgid "<a href=\"#mac\">Apple OS X</a>"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:362
+#: /home/runa/tor/website/download/en/download.wml:361
msgid "<a href=\"#linux\">Linux/Unix</a>"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:363
+#: /home/runa/tor/website/download/en/download.wml:362
msgid "<a href=\"#smartphones\">Smartphones</a>"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:364
+#: /home/runa/tor/website/download/en/download.wml:363
msgid "<a href=\"#source\">Source Code</a>"
msgstr ""
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:371
+#: /home/runa/tor/website/download/en/download.wml:370
msgid "What is the (sig) link?"
msgstr ""
#. type: Content of: <div><div><div><div><p>
-#: /home/runa/tor/website/download/en/download.wml:372
+#: /home/runa/tor/website/download/en/download.wml:371
msgid ""
"These are GPG signatures to allow you to verify that your downloaded file is"
" really from The Tor Project and not an imposter."
msgstr ""
#. type: Content of: <div><div><div><div>
-#: /home/runa/tor/website/download/en/download.wml:375
+#: /home/runa/tor/website/download/en/download.wml:374
msgid "<a href=\"<page docs/verifying-signatures>\">Learn more »</a>"
msgstr ""
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:381
+#: /home/runa/tor/website/download/en/download.wml:380
msgid "Having Trouble?"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:383
+#: /home/runa/tor/website/download/en/download.wml:382
msgid "<a href=\"<page docs/documentation>\">Read the fine manuals</a>"
msgstr ""
Modified: translation/trunk/projects/website/po/zh_CN/about/2-medium.overview.po
===================================================================
--- translation/trunk/projects/website/po/zh_CN/about/2-medium.overview.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/zh_CN/about/2-medium.overview.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,7 +7,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-06-29 20:42+0200\n"
-"PO-Revision-Date: 2011-07-20 21:02+0000\n"
+"PO-Revision-Date: 2011-07-21 07:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/website/po/zh_CN/download/3-low.download.po
===================================================================
--- translation/trunk/projects/website/po/zh_CN/download/3-low.download.po 2011-07-21 07:22:34 UTC (rev 24918)
+++ translation/trunk/projects/website/po/zh_CN/download/3-low.download.po 2011-07-21 07:33:00 UTC (rev 24919)
@@ -7,8 +7,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2011-07-13 14:56+0200\n"
-"PO-Revision-Date: 2011-07-14 01:02+0000\n"
+"POT-Creation-Date: 2011-07-20 20:43+0200\n"
+"PO-Revision-Date: 2011-07-21 01:01+0000\n"
"Last-Translator: xtoaster <zhazhenzhong(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -177,8 +177,8 @@
msgstr ""
#. type: Content of: <div><div><table><tr><td><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:102 /tmp/eCkycGCH9H.xml:165
-#: /tmp/eCkycGCH9H.xml:203
+#: /home/runa/tor/website/download/en/download.wml:102 /tmp/jgw2tk3no1.xml:165
+#: /tmp/jgw2tk3no1.xml:203
msgid ""
"The <strong>Tor Browser Bundle</strong> contains everything you need to "
"safely browse the Internet. This package requires no installation. Just "
@@ -214,7 +214,7 @@
msgstr ""
#. type: Content of: <div><div><table><tr><td><p>
-#: /home/runa/tor/website/download/en/download.wml:110 /tmp/eCkycGCH9H.xml:168
+#: /home/runa/tor/website/download/en/download.wml:110 /tmp/jgw2tk3no1.xml:168
msgid ""
"There are two versions of each package, a stable and alpha release. Stable "
"packages are released when we believe the features and code will not change "
@@ -527,7 +527,7 @@
"href=\"../dist/tor-<version-alpha>.tar.gz.asc\">数字签名</a> )"
#. type: Content of: <div><div><div>
-#: /home/runa/tor/website/download/en/download.wml:265 /tmp/eCkycGCH9H.xml:344
+#: /home/runa/tor/website/download/en/download.wml:265 /tmp/jgw2tk3no1.xml:343
msgid "<br>"
msgstr ""
@@ -627,12 +627,11 @@
#: /home/runa/tor/website/download/en/download.wml:338
msgid ""
"Do not use <a href=\"https://blog.torproject.org/blog/bittorrent-over-tor-"
-"isnt-good-idea\">BitTorrent and Tor</a> together unless you are using a "
-"system like <a href=\"http://tails.boum.org/\">TAILS</a>."
+"isnt-good-idea\">BitTorrent and Tor</a> together."
msgstr ""
#. type: Content of: <div><div><div><p>
-#: /home/runa/tor/website/download/en/download.wml:346
+#: /home/runa/tor/website/download/en/download.wml:345
msgid ""
"Be smart and learn more. Understand what Tor does and does not offer. This "
"list of pitfalls isn't complete, and we need your help <a href=\"<page "
@@ -641,59 +640,59 @@
msgstr ""
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:358
+#: /home/runa/tor/website/download/en/download.wml:357
msgid "Jump to:"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:360
+#: /home/runa/tor/website/download/en/download.wml:359
msgid "<a href=\"#Windows\">Microsoft Windows</a>"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:361
+#: /home/runa/tor/website/download/en/download.wml:360
msgid "<a href=\"#mac\">Apple OS X</a>"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:362
+#: /home/runa/tor/website/download/en/download.wml:361
msgid "<a href=\"#linux\">Linux/Unix</a>"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:363
+#: /home/runa/tor/website/download/en/download.wml:362
msgid "<a href=\"#smartphones\">Smartphones</a>"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:364
+#: /home/runa/tor/website/download/en/download.wml:363
msgid "<a href=\"#source\">Source Code</a>"
msgstr ""
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:371
+#: /home/runa/tor/website/download/en/download.wml:370
msgid "What is the (sig) link?"
msgstr ""
#. type: Content of: <div><div><div><div><p>
-#: /home/runa/tor/website/download/en/download.wml:372
+#: /home/runa/tor/website/download/en/download.wml:371
msgid ""
"These are GPG signatures to allow you to verify that your downloaded file is"
" really from The Tor Project and not an imposter."
msgstr ""
#. type: Content of: <div><div><div><div>
-#: /home/runa/tor/website/download/en/download.wml:375
+#: /home/runa/tor/website/download/en/download.wml:374
msgid "<a href=\"<page docs/verifying-signatures>\">Learn more »</a>"
msgstr ""
#. type: Content of: <div><div><div><div><h2>
-#: /home/runa/tor/website/download/en/download.wml:381
+#: /home/runa/tor/website/download/en/download.wml:380
msgid "Having Trouble?"
msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
-#: /home/runa/tor/website/download/en/download.wml:383
+#: /home/runa/tor/website/download/en/download.wml:382
msgid "<a href=\"<page docs/documentation>\">Read the fine manuals</a>"
msgstr ""
1
0

r24918: {translation} updated translation template for the website (translation/trunk/projects/website/po/templates/docs)
by Runa Sandvik 21 Jul '11
by Runa Sandvik 21 Jul '11
21 Jul '11
Author: runa
Date: 2011-07-21 07:22:34 +0000 (Thu, 21 Jul 2011)
New Revision: 24918
Modified:
translation/trunk/projects/website/po/templates/docs/1-high.bridges.pot
Log:
updated translation template for the website
Modified: translation/trunk/projects/website/po/templates/docs/1-high.bridges.pot
===================================================================
--- translation/trunk/projects/website/po/templates/docs/1-high.bridges.pot 2011-07-21 07:07:23 UTC (rev 24917)
+++ translation/trunk/projects/website/po/templates/docs/1-high.bridges.pot 2011-07-21 07:22:34 UTC (rev 24918)
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2011-03-01 16:36+0000\n"
+"POT-Creation-Date: 2011-07-21 08:20+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -35,8 +35,8 @@
msgstr ""
#. type: Content of: <div><div>
-#: /home/runa/tor/website/docs/en/bridges.wml:15 /tmp/mX6VGOF12v.xml:79
-#: /tmp/mX6VGOF12v.xml:102 /tmp/mX6VGOF12v.xml:125 /tmp/mX6VGOF12v.xml:149
+#: /home/runa/tor/website/docs/en/bridges.wml:15 /tmp/YXED4Th9dW.xml:79
+#: /tmp/YXED4Th9dW.xml:102 /tmp/YXED4Th9dW.xml:125 /tmp/YXED4Th9dW.xml:149
msgid "<hr>"
msgstr ""
@@ -209,11 +209,11 @@
#, no-wrap
msgid ""
" Here are your bridge relays:\n"
-" \n"
-" bridge 60.16.182.53:9001 c9111bd74a710c0d25dda6b35e181f1aa7911133\n"
-" bridge 87.237.118.139:444 c18dde4804e8fcb48464341ca1375eb130453a39\n"
-" bridge 60.63.97.221:443 ab5c849ed5896d53052e43966ee9aba2ff92fb82\n"
-" \n"
+"\n"
+" bridge 60.16.182.53:9001\n"
+" bridge 87.237.118.139:444\n"
+" bridge 60.63.97.221:443\n"
+"\n"
" "
msgstr ""
1
0