tor-commits
Threads by month
- ----- 2025 -----
- June
- 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
May 2011
- 15 participants
- 1011 discussions
commit f88678b9432e120e434d1d87f9b26cf0ae8bcc02
Author: George Kadianakis <desnacked(a)gmail.com>
Date: Tue May 24 00:37:08 2011 +0200
Added SOCKS4{,a} unit tests
---
src/test/unittest_socks.c | 216 +++++++++++++++++++++++++++++++++++++++++++--
1 files changed, 208 insertions(+), 8 deletions(-)
diff --git a/src/test/unittest_socks.c b/src/test/unittest_socks.c
index 9e971d8..ca2ab09 100644
--- a/src/test/unittest_socks.c
+++ b/src/test/unittest_socks.c
@@ -14,7 +14,7 @@
#include "../protocols/obfs2.h"
/**
- This unit test tests the negotiation phase of the SOCKS5 protocol.
+ This function tests the negotiation phase of the SOCKS5 protocol.
It sends broken 'Method Negotiation Packets' and it verifies that
the SOCKS server detected the errors. It also sends some correct
packets and it expects the server to like them.
@@ -34,7 +34,6 @@ test_socks_socks5_send_negotiation(void *data)
/* First test:
Only one method: NOAUTH.
SOCKS proxy should like this. */
-
uchar req1[2];
req1[0] = 1;
req1[1] = 0;
@@ -127,7 +126,7 @@ test_socks_socks5_send_negotiation(void *data)
}
/**
- This unit test tests the 'Client Request' phase of the SOCKS5
+ This function tests the 'Client Request' phase of the SOCKS5
protocol.
It sends broken 'Client Request' packets and it verifies that
the SOCKS server detected the errors. It also sends some correct
@@ -136,7 +135,6 @@ test_socks_socks5_send_negotiation(void *data)
static void
test_socks_socks5_request(void *data)
{
-
struct evbuffer *dest = NULL;
struct evbuffer *source = NULL;
dest = evbuffer_new();
@@ -236,7 +234,7 @@ test_socks_socks5_request(void *data)
evbuffer_add(source, req5, 24);
tt_int_op(1, ==, socks5_handle_request(source,&pr1));
- tt_assert(strcmp(pr1.addr, "www.test.example") == 0);
+ tt_str_op(pr1.addr, ==, "www.test.example");
tt_int_op(pr1.port, ==, 80);
/* Sixth test:
@@ -280,7 +278,7 @@ test_socks_socks5_request(void *data)
}
/**
- This unit test tests the 'Server reply' phase of the SOCKS5
+ This function tests the 'Server reply' phase of the SOCKS5
protocol.
We ask the server to send us 'Server reply' packets to different
requests and with different status codes, and check if the server
@@ -301,8 +299,7 @@ test_socks_socks5_request_reply(void *data)
/* First test:
We ask the server to send us a reply on an IPv4 request with
- succesful status.
- */
+ succesful status. */
tt_int_op(1, ==, socks5_send_reply(reply_dest,
state, SOCKS5_REP_SUCCESS));
@@ -373,6 +370,207 @@ test_socks_socks5_request_reply(void *data)
evbuffer_free(reply_dest);
}
+/**
+ This function tests the 'Server reply' phase of the SOCKS4
+ *and* SOCKS4a protocol.
+ It sends broken client request packets and it verifies that the
+ SOCKS server detected the errors. It also sends some correct
+ packets and it expects the server to like them.
+*/
+static void
+test_socks_socks4_request(void *data)
+{
+ struct evbuffer *dest = NULL;
+ struct evbuffer *source = NULL;
+ dest = evbuffer_new();
+ source = evbuffer_new();
+
+ const uint32_t addr = htonl(0x7f000001); /* 127.0.0.1 */
+ const uint16_t port = htons(80); /* 80 */
+
+ socks_state_t *state;
+ state = socks_state_new();
+ tt_assert(state);
+
+ /* First test:
+ Correct SOCKS4 req packet with nothing in the optional field. */
+ struct parsereq pr1;
+ state->parsereq = pr1;
+ uchar req1[8];
+ req1[0] = 1;
+ memcpy(req1+1,&port,2);
+ memcpy(req1+3,&addr,4);
+ req1[7] = '\x00';
+
+ evbuffer_add(source,req1,8);
+
+ tt_int_op(1, ==, socks4_read_request(source,state));
+ tt_str_op(state->parsereq.addr, ==, "127.0.0.1");
+ tt_int_op(state->parsereq.port, ==, 80);
+
+ /* emptying source buffer before next test */
+ size_t buffer_len = evbuffer_get_length(source);
+ tt_int_op(0, ==, evbuffer_drain(source, buffer_len));
+
+ /* Second test:
+ Broken SOCKS4 req packet with incomplete optional field */
+ char req2[10];
+ req2[0] = 1;
+ memcpy(req2+1,&port,2);
+ memcpy(req2+3,&addr,4);
+ strcpy(req2+7,"KO");
+
+ evbuffer_add(source,req2,9);
+
+ tt_int_op(0, ==, socks4_read_request(source,state));
+
+ /* emptying source buffer before next test */
+ buffer_len = evbuffer_get_length(source);
+ tt_int_op(0, ==, evbuffer_drain(source, buffer_len));
+
+ /* Third test:
+ Correct SOCKS4 req packet with optional field. */
+ char req3[16];
+ req3[0] = 1;
+ memcpy(req3+1,&port,2);
+ memcpy(req3+3,&addr,4);
+ strcpy(req3+7,"iamalive");
+
+ evbuffer_add(source,req3,16);
+
+ tt_int_op(1, ==, socks4_read_request(source,state));
+ tt_str_op(state->parsereq.addr, ==, "127.0.0.1");
+ tt_int_op(state->parsereq.port, ==, 80);
+
+ /* emptying source buffer before next test */
+ buffer_len = evbuffer_get_length(source);
+ tt_int_op(0, ==, evbuffer_drain(source, buffer_len));
+
+ /* Fourth test:
+ Correct SOCKS4a req packet with optional field. */
+ const uint32_t addr_4a = htonl(0x00000042); /* 127.0.0.1 */
+ char req4[33];
+ req4[0] = 1;
+ memcpy(req4+1,&port,2);
+ memcpy(req4+3,&addr_4a,4);
+ strcpy(req4+7,"iamalive");
+ strcpy(req4+16, "www.test.example");
+
+ evbuffer_add(source,req4,33);
+
+ tt_int_op(1, ==, socks4_read_request(source,state));
+ tt_str_op(state->parsereq.addr, ==, "www.test.example");
+ tt_int_op(state->parsereq.port, ==, 80);
+
+ /* emptying source buffer before next test */
+ buffer_len = evbuffer_get_length(source);
+ tt_int_op(0, ==, evbuffer_drain(source, buffer_len));
+
+ /* Fifth test:
+ Broken SOCKS4a req packet with incomplete optional field. */
+ char req5[33];
+ req5[0] = 1;
+ memcpy(req5+1,&port,2);
+ memcpy(req5+3,&addr_4a,4);
+ strcpy(req5+7,"iamalive");
+ strcpy(req5+16, "www.test.example");
+
+ evbuffer_add(source,req5,28);
+
+ tt_int_op(0, ==, socks4_read_request(source,state));
+
+ /* emptying source buffer before next test */
+ buffer_len = evbuffer_get_length(source);
+ tt_int_op(0, ==, evbuffer_drain(source, buffer_len));
+
+ /* Sixth test:
+ Broken SOCKS4a req packet with a HUGE domain name. */
+ #define HUGE 256
+
+ char req6[283];
+ req6[0] = 1;
+ memcpy(req6+1,&port,2);
+ memcpy(req6+3,&addr_4a,4);
+ strcpy(req6+7,"iamalive");
+ memset(req6+16,'2', HUGE);
+ req6[16+HUGE] = '\x00';
+
+ evbuffer_add(source,req6,16+HUGE+1);
+
+ tt_int_op(-1, ==, socks4_read_request(source,state));
+ #undef HUGE
+
+ end:
+ if (state)
+ socks_state_free(state);
+
+ if (source)
+ evbuffer_free(source);
+ if (dest)
+ evbuffer_free(dest);
+}
+
+static void
+test_socks_socks4_request_reply(void *data)
+{
+ struct evbuffer *reply_dest = NULL;
+ reply_dest = evbuffer_new();
+
+ socks_state_t *state;
+ state = socks_state_new();
+ tt_assert(state);
+
+ state->parsereq.af = AF_INET;
+ strcpy(state->parsereq.addr, "127.0.0.1");
+ state->parsereq.port = 7357;
+
+ /* First test:
+ We ask the server to send us a reply on an IPv4 request with
+ succesful status. */
+ tt_int_op(1, ==, socks4_send_reply(reply_dest,
+ state, SOCKS5_REP_SUCCESS));
+
+ uchar rep1[255];
+ evbuffer_remove(reply_dest,rep1,255); /* yes, this is dirty */
+
+ tt_assert(rep1[0] == '\x00');
+ tt_assert(rep1[1] == SOCKS4_SUCCESS);
+ /* check port */
+ tt_int_op(0, ==, memcmp(rep1+2,"\x1c\xbd",2));
+ /* check address */
+ tt_int_op(0, ==, memcmp(rep1+2+2,"\x7f\x00\x00\x01", 4));
+
+ /* emptying reply_dest buffer before next test */
+ size_t buffer_len = evbuffer_get_length(reply_dest);
+ tt_int_op(0, ==, evbuffer_drain(reply_dest, buffer_len));
+
+ /* Second test :
+ We ask the server to send us a reply on an FQDN request with
+ failure status.
+ */
+ const char *fqdn = "www.test.example";
+ state->parsereq.af = AF_UNSPEC;
+ strcpy(state->parsereq.addr, fqdn);
+
+ tt_int_op(-1, ==, socks4_send_reply(reply_dest,
+ state, SOCKS5_REP_FAIL));
+
+ uchar rep2[255];
+ evbuffer_remove(reply_dest,rep2,255);
+
+ tt_assert(rep2[1] == SOCKS4_FAILED);
+ /* check port */
+ tt_int_op(0, ==, memcmp(rep1+2,"\x1c\xbd",2));
+ /* check address */
+ /* tt_str_op(rep1+2+2, ==, "www.test.example"); */
+
+ end:
+ if (state)
+ socks_state_free(state);
+
+ if (reply_dest)
+ evbuffer_free(reply_dest);
+}
#define T(name, flags) \
{ #name, test_socks_##name, (flags), NULL, NULL }
@@ -381,5 +579,7 @@ struct testcase_t socks_tests[] = {
T(socks5_send_negotiation, 0),
T(socks5_request, 0),
T(socks5_request_reply, 0),
+ T(socks4_request, 0),
+ T(socks4_request_reply, 0),
END_OF_TESTCASES
};
1
0
commit aefb1ef5ecf0cd522aafc91ac93834dfa05ff70e
Author: George Kadianakis <desnacked(a)gmail.com>
Date: Mon May 23 17:41:53 2011 +0200
Added IPv6 SOCKS5 unit tests
---
src/test/unittest_socks.c | 141 ++++++++++++++++++++++++++++++++++-----------
1 files changed, 106 insertions(+), 35 deletions(-)
diff --git a/src/test/unittest_socks.c b/src/test/unittest_socks.c
index 017e624..9e971d8 100644
--- a/src/test/unittest_socks.c
+++ b/src/test/unittest_socks.c
@@ -13,8 +13,14 @@
#include "../util.h"
#include "../protocols/obfs2.h"
+/**
+ This unit test tests the negotiation phase of the SOCKS5 protocol.
+ It sends broken 'Method Negotiation Packets' and it verifies that
+ the SOCKS server detected the errors. It also sends some correct
+ packets and it expects the server to like them.
+*/
static void
-test_socks_send_negotiation(void *data)
+test_socks_socks5_send_negotiation(void *data)
{
struct evbuffer *dest = NULL;
struct evbuffer *source = NULL;
@@ -120,6 +126,13 @@ test_socks_send_negotiation(void *data)
evbuffer_free(dest);
}
+/**
+ This unit test tests the 'Client Request' phase of the SOCKS5
+ protocol.
+ It sends broken 'Client Request' packets and it verifies that
+ the SOCKS server detected the errors. It also sends some correct
+ packets and it expects the server to like them.
+*/
static void
test_socks_socks5_request(void *data)
{
@@ -133,7 +146,8 @@ test_socks_socks5_request(void *data)
state = socks_state_new();
tt_assert(state);
- const uint32_t addr = htonl(0x7f000001); /* 127.0.0.1 */
+ const uint32_t addr_ipv4 = htonl(0x7f000001); /* 127.0.0.1 */
+ const uint8_t addr_ipv6[16] = {0,13,0,1,0,5,0,14,0,10,0,5,0,14,0,0}; /* d:1:5:e:a:5:e:0 */
const uint16_t port = htons(80); /* 80 */
/* First test:
@@ -143,7 +157,7 @@ test_socks_socks5_request(void *data)
req1[0] = 1;
req1[1] = 0;
req1[2] = 1;
- memcpy(req1+3,&addr,4);
+ memcpy(req1+3,&addr_ipv4,4);
evbuffer_add(source, "\x05", 1);
evbuffer_add(source, req1, 7);
@@ -160,7 +174,7 @@ test_socks_socks5_request(void *data)
req2[1] = 0;
req2[2] = 3;
req2[3] = 15;
- memcpy(req1+4,&addr,3);
+ memcpy(req1+4,&addr_ipv4,3);
evbuffer_add(source, "\x05", 1);
evbuffer_add(source, req2, 7);
@@ -171,12 +185,12 @@ test_socks_socks5_request(void *data)
tt_int_op(0, ==, evbuffer_drain(source, buffer_len));
/* Third test:
- Correct IPV4 req packet. */
+ Correct IPv4 req packet. */
uchar req3[9];
req3[0] = 1;
req3[1] = 0;
req3[2] = 1;
- memcpy(req3+3,&addr,4);
+ memcpy(req3+3,&addr_ipv4,4);
memcpy(req3+7,&port,2);
evbuffer_add(source, "\x05", 1);
@@ -190,46 +204,65 @@ test_socks_socks5_request(void *data)
tt_int_op(0, ==, evbuffer_drain(source, buffer_len));
/* Fourth test:
- Correct FQDN req packet. */
- const char fqdn[17] = "www.test.example";
+ Correct IPv6 req packet. */
uchar req4[24];
req4[0] = 5;
req4[1] = 1;
req4[2] = 0;
- req4[3] = 3;
- req4[4] = strlen(fqdn);
- strcpy((char *)req4+5,fqdn);
- memcpy(req4+5+strlen(fqdn),&port,2);
+ req4[3] = SOCKS5_ATYP_IPV6;
+ memcpy(req4+4,&addr_ipv6,16);
+ memcpy(req4+20,&port,2);
- evbuffer_add(source, req4, 24);
+ evbuffer_add(source,req4,22);
tt_int_op(1, ==, socks5_handle_request(source,&pr1));
- tt_assert(strcmp(pr1.addr, "www.test.example") == 0);
+ tt_str_op(pr1.addr, ==, "d:1:5:e:a:5:e:0");
tt_int_op(pr1.port, ==, 80);
- /* Third test:
- Small request packet */
- uchar req5[3];
+ /* emptying source buffer before next test */
+ buffer_len = evbuffer_get_length(source);
+ tt_int_op(0, ==, evbuffer_drain(source, buffer_len));
+
+ /* Fifth test:
+ Correct FQDN req packet. */
+ const char fqdn[17] = "www.test.example";
+ uchar req5[24];
req5[0] = 5;
req5[1] = 1;
req5[2] = 0;
+ req5[3] = 3;
+ req5[4] = strlen(fqdn);
+ strcpy((char *)req5+5,fqdn);
+ memcpy(req5+5+strlen(fqdn),&port,2);
+
+ evbuffer_add(source, req5, 24);
+ tt_int_op(1, ==, socks5_handle_request(source,&pr1));
+ tt_assert(strcmp(pr1.addr, "www.test.example") == 0);
+ tt_int_op(pr1.port, ==, 80);
- evbuffer_add(source,req5,3);
+ /* Sixth test:
+ Small request packet */
+ uchar req6[3];
+ req6[0] = 5;
+ req6[1] = 1;
+ req6[2] = 0;
+
+ evbuffer_add(source,req6,3);
tt_int_op(0, ==, socks5_handle_request(source,&pr1));
/* emptying source buffer before next test */
buffer_len = evbuffer_get_length(source);
tt_int_op(0, ==, evbuffer_drain(source, buffer_len));
- /* Fourth test:
+ /* Seventh test:
Wrong Reserved field */
- uchar req6[5];
- req6[0] = 5;
- req6[1] = 1;
- req6[2] = 1;
- req6[3] = 42;
- req6[4] = 42;
-
- evbuffer_add(source,req6,5);
+ uchar req7[5];
+ req7[0] = 5;
+ req7[1] = 1;
+ req7[2] = 1;
+ req7[3] = 42;
+ req7[4] = 42;
+
+ evbuffer_add(source,req7,5);
tt_int_op(-1, ==, socks5_handle_request(source,&pr1));
/* emptying source buffer before next test */
@@ -246,6 +279,12 @@ test_socks_socks5_request(void *data)
evbuffer_free(dest);
}
+/**
+ This unit test tests the 'Server reply' phase of the SOCKS5
+ protocol.
+ We ask the server to send us 'Server reply' packets to different
+ requests and with different status codes, and check if the server
+ composed the packets well. */
static void
test_socks_socks5_request_reply(void *data)
{
@@ -260,6 +299,10 @@ test_socks_socks5_request_reply(void *data)
strcpy(state->parsereq.addr, "127.0.0.1");
state->parsereq.port = 7357;
+ /* First test:
+ We ask the server to send us a reply on an IPv4 request with
+ succesful status.
+ */
tt_int_op(1, ==, socks5_send_reply(reply_dest,
state, SOCKS5_REP_SUCCESS));
@@ -276,23 +319,51 @@ test_socks_socks5_request_reply(void *data)
size_t buffer_len = evbuffer_get_length(reply_dest);
tt_int_op(0, ==, evbuffer_drain(reply_dest, buffer_len));
+ /* Second test:
+ We ask the server to send us a reply on an IPv6 request with
+ succesful status.
+ */
+ state->parsereq.af = AF_INET6;
+ strcpy(state->parsereq.addr, "d:1:5:e:a:5:e:0");
+
+ tt_int_op(1, ==, socks5_send_reply(reply_dest,
+ state, SOCKS5_REP_SUCCESS));
+
+ uchar rep2[255];
+ evbuffer_remove(reply_dest,rep2,255);
+
+ tt_assert(rep2[3] = SOCKS5_ATYP_IPV6);
+ /* Test returned address against inet_pton(d:1:5:e:a:5:e:0) */
+ tt_int_op(0, ==, memcmp(rep2+4,
+ "\x00\x0d\x00\x01\x00\x05\x00\x0e\x00"
+ "\x0a\x00\x05\x00\x0e\x00\x00",
+ 16));
+ tt_int_op(0, ==, memcmp(rep2+4+16, "\x1c\xbd", 2));
+
+ /* emptying reply_dest buffer before next test */
+ buffer_len = evbuffer_get_length(reply_dest);
+ tt_int_op(0, ==, evbuffer_drain(reply_dest, buffer_len));
+
+ /* Third test :
+ We ask the server to send us a reply on an FQDN request with
+ failure status.
+ */
const char *fqdn = "www.test.example";
state->parsereq.af = AF_UNSPEC;
strcpy(state->parsereq.addr, fqdn);
- state->parsereq.port = 7357;
tt_int_op(-1, ==, socks5_send_reply(reply_dest,
state, SOCKS5_REP_FAIL));
- uchar rep2[255];
- evbuffer_remove(reply_dest,rep2,255);
+ uchar rep3[255];
+ evbuffer_remove(reply_dest,rep3,255);
- tt_assert(rep2[3] == SOCKS5_ATYP_FQDN);
- tt_assert(rep2[4] == strlen(fqdn));
+ tt_assert(rep3[3] == SOCKS5_ATYP_FQDN);
+ tt_assert(rep3[4] == strlen(fqdn));
/* check fqdn */
- tt_int_op(0, ==, memcmp(rep2+5,fqdn,strlen(fqdn)));
+ tt_int_op(0, ==, memcmp(rep3+5,fqdn,strlen(fqdn)));
/* check port */
- tt_int_op(0, ==, memcmp(rep2+5+strlen(fqdn),"\x1c\xbd",2));
+ tt_int_op(0, ==, memcmp(rep3+5+strlen(fqdn),"\x1c\xbd",2));
end:
if (state)
@@ -307,7 +378,7 @@ test_socks_socks5_request_reply(void *data)
{ #name, test_socks_##name, (flags), NULL, NULL }
struct testcase_t socks_tests[] = {
- T(send_negotiation, 0),
+ T(socks5_send_negotiation, 0),
T(socks5_request, 0),
T(socks5_request_reply, 0),
END_OF_TESTCASES
1
0

[obfsproxy/master] I decided against the stupid return game in socks{4, 5}_send_reply(). It had no use.
by nickm@torproject.org 24 May '11
by nickm@torproject.org 24 May '11
24 May '11
commit 0e37d9f8dabb35fff81ccb08466a2fb6f7e6588e
Author: George Kadianakis <desnacked(a)gmail.com>
Date: Tue May 24 01:21:33 2011 +0200
I decided against the stupid return game in socks{4,5}_send_reply(). It had no use.
---
src/socks.c | 12 ++----------
src/test/unittest_socks.c | 4 ++--
2 files changed, 4 insertions(+), 12 deletions(-)
diff --git a/src/socks.c b/src/socks.c
index 5a97b83..6144e26 100644
--- a/src/socks.c
+++ b/src/socks.c
@@ -214,11 +214,7 @@ socks5_send_reply(struct evbuffer *reply_dest, socks_state_t *state,
state->state = ST_SENT_REPLY; /* SOCKS phase is now done. */
- if (status == SOCKS5_REP_SUCCESS) {
- return 1;
- } else {
- return -1;
- }
+ return 1;
}
/**
@@ -386,11 +382,7 @@ socks4_send_reply(struct evbuffer *dest, socks_state_t *state, int status)
memcpy(msg+4, &in.s_addr, 4);
evbuffer_add(dest, msg, 8);
- /* ASN: Do we actually like this return tactic? Check out why I do it. */
- if (status == SOCKS5_REP_SUCCESS)
- return 1;
- else
- return -1;
+ return 1;
}
/**
diff --git a/src/test/unittest_socks.c b/src/test/unittest_socks.c
index 510ede5..cc68528 100644
--- a/src/test/unittest_socks.c
+++ b/src/test/unittest_socks.c
@@ -347,7 +347,7 @@ test_socks_socks5_request_reply(void *data)
state->parsereq.af = AF_UNSPEC;
strcpy(state->parsereq.addr, fqdn);
- tt_int_op(-1, ==, socks5_send_reply(reply_dest,
+ tt_int_op(1, ==, socks5_send_reply(reply_dest,
state, SOCKS5_REP_FAIL));
uchar rep3[255];
@@ -557,7 +557,7 @@ test_socks_socks4_request_reply(void *data)
state->parsereq.af = AF_UNSPEC;
strcpy(state->parsereq.addr, fqdn);
- tt_int_op(-1, ==, socks4_send_reply(reply_dest,
+ tt_int_op(1, ==, socks4_send_reply(reply_dest,
state, SOCKS5_REP_FAIL));
uchar rep2[255];
1
0

[obfsproxy/master] * Fixed a small bug in socks5_send_reply() found by the unit tests.
by nickm@torproject.org 24 May '11
by nickm@torproject.org 24 May '11
24 May '11
commit d9c15cebf1ace2bf4e14022f9711bfee275aca05
Author: George Kadianakis <desnacked(a)gmail.com>
Date: Tue May 24 00:43:54 2011 +0200
* Fixed a small bug in socks5_send_reply() found by the unit tests.
* de-staticed the socks4_* functions, so that they can be unit tested.
* Changed the way socks4_send_reply() returns, to something I'm not
sure I like or find useful; but that's how socks5_send_reply() was.
---
src/socks.c | 15 +++++++++++----
src/socks.h | 5 ++++-
2 files changed, 15 insertions(+), 5 deletions(-)
diff --git a/src/socks.c b/src/socks.c
index a1f794a..5a97b83 100644
--- a/src/socks.c
+++ b/src/socks.c
@@ -202,7 +202,7 @@ socks5_send_reply(struct evbuffer *reply_dest, socks_state_t *state,
} else {
addrlen = (state->parsereq.af == AF_INET) ? 4 : 16;
p[3] = (state->parsereq.af == AF_INET) ? SOCKS5_ATYP_IPV4 : SOCKS5_ATYP_IPV6;
- evutil_inet_pton(AF_INET, state->parsereq.addr, addr);
+ evutil_inet_pton(state->parsereq.af, state->parsereq.addr, addr);
}
port = htons(state->parsereq.port);
@@ -293,7 +293,8 @@ socks5_do_negotiation(struct evbuffer *dest, unsigned int neg_was_success)
return 1;
}
-static int
+/* rename to socks4_handle_request or something. */
+int
socks4_read_request(struct evbuffer *source, socks_state_t *state)
{
/* Format is:
@@ -366,7 +367,7 @@ socks4_read_request(struct evbuffer *source, socks_state_t *state)
return 1;
}
-static int
+int
socks4_send_reply(struct evbuffer *dest, socks_state_t *state, int status)
{
uint16_t portnum;
@@ -381,9 +382,15 @@ socks4_send_reply(struct evbuffer *dest, socks_state_t *state, int status)
/* convert to socks4 status */
msg[1] = (status == SOCKS5_REP_SUCCESS) ? SOCKS4_SUCCESS : SOCKS4_FAILED;
memcpy(msg+2, &portnum, 2);
+ /* ASN: What should we do here in the case of an FQDN request? */
memcpy(msg+4, &in.s_addr, 4);
evbuffer_add(dest, msg, 8);
- return 1;
+
+ /* ASN: Do we actually like this return tactic? Check out why I do it. */
+ if (status == SOCKS5_REP_SUCCESS)
+ return 1;
+ else
+ return -1;
}
/**
diff --git a/src/socks.h b/src/socks.h
index 36a5a32..37c94cc 100644
--- a/src/socks.h
+++ b/src/socks.h
@@ -84,9 +84,12 @@ int socks5_handle_negotiation(struct evbuffer *source,
struct evbuffer *dest, socks_state_t *state);
int socks5_handle_request(struct evbuffer *source,
struct parsereq *parsereq);
-
int socks5_send_reply(struct evbuffer *reply_dest, socks_state_t *state,
int status);
+
+int socks4_read_request(struct evbuffer *source, socks_state_t *state);
+int socks4_send_reply(struct evbuffer *dest,
+ socks_state_t *state, int status);
#endif
#endif
1
0

[obfsproxy/master] Updated the documentation of the SOCKS unit tests.
by nickm@torproject.org 24 May '11
by nickm@torproject.org 24 May '11
24 May '11
commit 292a9cbd1292ea334a73598eae314805bedb65ae
Author: George Kadianakis <desnacked(a)gmail.com>
Date: Tue May 24 00:49:10 2011 +0200
Updated the documentation of the SOCKS unit tests.
---
src/test/unittest_socks.c | 27 ++++++++++++++++-----------
1 files changed, 16 insertions(+), 11 deletions(-)
diff --git a/src/test/unittest_socks.c b/src/test/unittest_socks.c
index ca2ab09..510ede5 100644
--- a/src/test/unittest_socks.c
+++ b/src/test/unittest_socks.c
@@ -98,8 +98,7 @@ test_socks_socks5_send_negotiation(void *data)
/* Fifth test:
nmethods field = 3 but 4 actual methods.
- Should be okay; the next byte is part of the request.
- */
+ Should be okay; the next byte is part of the request. */
uchar req5[5];
req5[0] = 3;
memset(req5+1,0x0,4);
@@ -279,10 +278,11 @@ test_socks_socks5_request(void *data)
/**
This function tests the 'Server reply' phase of the SOCKS5
- protocol.
+ protocol.
We ask the server to send us 'Server reply' packets to different
- requests and with different status codes, and check if the server
- composed the packets well. */
+ requests and with different status codes, and we check if the server
+ composed the packets well.
+*/
static void
test_socks_socks5_request_reply(void *data)
{
@@ -318,8 +318,7 @@ test_socks_socks5_request_reply(void *data)
/* Second test:
We ask the server to send us a reply on an IPv6 request with
- succesful status.
- */
+ succesful status. */
state->parsereq.af = AF_INET6;
strcpy(state->parsereq.addr, "d:1:5:e:a:5:e:0");
@@ -343,8 +342,7 @@ test_socks_socks5_request_reply(void *data)
/* Third test :
We ask the server to send us a reply on an FQDN request with
- failure status.
- */
+ failure status. */
const char *fqdn = "www.test.example";
state->parsereq.af = AF_UNSPEC;
strcpy(state->parsereq.addr, fqdn);
@@ -475,6 +473,7 @@ test_socks_socks4_request(void *data)
strcpy(req5+7,"iamalive");
strcpy(req5+16, "www.test.example");
+ /* Don't send it all. */
evbuffer_add(source,req5,28);
tt_int_op(0, ==, socks4_read_request(source,state));
@@ -510,6 +509,13 @@ test_socks_socks4_request(void *data)
evbuffer_free(dest);
}
+/**
+ This function tests the 'Server reply' phase of the SOCKS4/SOCKS4a
+ protocol.
+ We ask the server to send us server reply packets to different
+ requests and with different status codes, and we check if the server
+ composed the packets well.
+*/
static void
test_socks_socks4_request_reply(void *data)
{
@@ -546,8 +552,7 @@ test_socks_socks4_request_reply(void *data)
/* Second test :
We ask the server to send us a reply on an FQDN request with
- failure status.
- */
+ failure status. */
const char *fqdn = "www.test.example";
state->parsereq.af = AF_UNSPEC;
strcpy(state->parsereq.addr, fqdn);
1
0
Author: mikeperry
Date: 2011-05-24 00:55:39 +0000 (Tue, 24 May 2011)
New Revision: 24782
Added:
projects/articles/browser-privacy/W3CIdentity-Tor-slides.odp
projects/articles/browser-privacy/W3CIdentity-Tor-slides.pdf
Log:
Add slides.
Added: projects/articles/browser-privacy/W3CIdentity-Tor-slides.odp
===================================================================
(Binary files differ)
Property changes on: projects/articles/browser-privacy/W3CIdentity-Tor-slides.odp
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: projects/articles/browser-privacy/W3CIdentity-Tor-slides.pdf
===================================================================
--- projects/articles/browser-privacy/W3CIdentity-Tor-slides.pdf (rev 0)
+++ projects/articles/browser-privacy/W3CIdentity-Tor-slides.pdf 2011-05-24 00:55:39 UTC (rev 24782)
@@ -0,0 +1,1501 @@
+%PDF-1.4
+%äüöß
+2 0 obj
+<</Length 3 0 R/Filter/FlateDecode>>
+stream
+x��XMo7���9��~0ر477z(zj���"�!��A�rm�n�E`$��}|Cg�C�ͷ����3��}6����4��3Oh������<NLJb���4���ЧM�{S�}'�gy0�G�����<TC��^�}y�*ix�ġ*�����O���F�#-��FN>M��T��W|��E<����y>�V~v,r��X:���W&ϳ���d)?W���Y�Vʞ��������������s�Jjl#m
+v{��QA�H�����T�3]ЈN�e��9��B��z�.�F��mW�Ft�ą�
+��u1W4�g�EEш�����
+�C��tgSE#:.�lo�lK�,E��;��sE#z�A�hCu�ݩ�ht@��@�H�"�G�6TϮ�UE#���S4�{��hCu��+�K�##hD�X,qW��z�IѨ]p��������hCu��|T4����V4��eO��P9���H��t����om�#5Gh���������������]����������8>�:�7��k>l�$�)���0&B� ��a���R�z~��EC�Y��.F�_��_��==�I�B4�O�m��,��p
+��"vƉ��V��8��P@�a�(�:��3T�+���s��*�Z���Z�b;�����a�*o?XRi;�R��f�R#6��Ito�U^'0p�� �%C�r��PGP�� ����U�Je�����^v���i��v��#�Ļ���Y�V�=6fy�8�Ut2�<J~'�Z{��z��#�H�<NX���2
+t����+i<Jgy�"�?\46��xA�����
+U�Je�/�p��HX�)%�'ΠHQR��]I����bd1O3�5E�
+PD�+(�65 9�֨2W*�\�r�@=r�m�"��{���R8À4'紹D����\*�\�k[oϬNa�w�SI6G��6�P�m$�6��rAM�W��f9�9)ԶAr�b��7�\�E۳$7�"l0�\����e�fyDI��VΫ26J�T!E.�O?_-A>U�99�Y��^~{��W�j�(�g?7z�8���G�Y��P2:&+"EI;��#�)s����S�&�<��Gw�%ٸ�F��kH�h�y�eH�S�HN�}�5$�����l���s�K?~6u7�oOa+��r}���S�q8���;�X�9>\�_��#��#>��9YD�N����9>�z ����<$�!C���W�>��0ދy���1��@�'H2Wj� I_�<�O<�v��K8;��Av1.K�sD�#y^�#�B�)�:+q��{��o�w�y��x�qn[����� ���rع*��$���cxÇ�� K^v��^^�Ԩ#���Y�&1y5�MOX�+7�\
+{�KD���x�l�s�m���,s��_C��j��$�^ܛ�"_^
+endstream
+endobj
+
+3 0 obj
+1413
+endobj
+
+7 0 obj
+<</Type/XObject/Subtype/Image/Width 347 /Height 221 /BitsPerComponent 8 /ColorSpace/DeviceRGB/Filter/DCTDecode/Length 12428 /Mask 8 0 R >>
+stream
+����JFIF��C
+
+
+
+
+��C
+
+���["�� ����� h�ruy�}��,��K���2��y�d^e�FE�Q�y�d^e�H-�iX��vUy��G���\$�c���xH/���M�G3|���k~o1�\e�-�������_��"�f��4}���c�K&���nm=����@�� ڜ[(�-�� 9{�Ų�r*���l1�L��k�/��:+ͪ�s^��9|#��t�����c�����X�[�?Eh/[\�ٵ"�X B�5��[dJ�ؖ�96���.���n^A�FeԥQ�.��@=@p�ߪ��#F@щD^Q��b�¬$٧��m�<p�T'Ϯ�U�ۅ�m�f��)��c��|�|������А��(-���mr4d=�E����<���fNF�|���S�a��Z<<b�َ�U���$��֨���zy��g|s����}h]Y� <#
+��k[a�(-���mr4d=�E����*��>���5�.�#dx��s�m�r��&֜�㾾ã����귧�5������@u�1�!����;K���T��F��������Rsl��]`[����Îq���@&�S�R]���{����m��|}���$�������������d�[;\�fL P[�Az��h�z1(��1!On��2�V{�l�\J"^0��΄���COε�J������|p�w_ˌ���9�G���^n�s��@-���v3&�(-���mr4d
=�E���vP��2 ���hr�#Y���G�1�^' ��:�W���F2�|��t��q�/��u4
+�����_���jC�ic+��ɀ�
+~��SV�)F%�$#{��ٻ����m�G+���ީ�i��W_�[�2���=߽�9��Æ�<��ʢ�R�[K_,L D�hv�X���4<�l �v�ڋ&�b��U�E�QIY��o��� h~}�:} ��1 065!P#%&1@"$2���e���R�ۧ.��`Յ��a�p?�
+��t��|(<���)�[ӽ'�y�T�U�)uJE]R�WT�U�)uJE]R�WT�U�)uJE]R�WT�U�)uJED�iFF$ɚ5w�� �ƀI�����ֶQ��
+���Ҥ�N��I7��p�9���b�����cL�ÆB��w(w ED.���a�ӑ�Ǣε�� �����ߌm��;���% �"UľF�F�"`�#�xo�6�����܉4rKZ�C�\Xج��KG���g��mr�������'����kk���V����+6 a�F5���^�Sg��c2I*�0�[�Whm���_�'�E����>kqlХ1K�5��C�Gӳ�{�!1vlN�o���C��8�L��I�H�Ȥ�'9����z��1�W<o��+�N{F��䋾��%�q��Y�,��
+r7�#m/�_\;���E�cJ�d�O,��k(p1*BP���}�w�"T�"�N�L�L�w���ѾVF��!���w"y����h~�#� rxz�n�hB�{pOP����)N��?\�VIKJpfR¢�A ���f�M��r'��x�ק��-Ɯ�$lL)#�hc @��7L������&�x' ��dF��Is(C���k�5��D�n`r����z��1�%�͑�ģEFZ������mP�-���!}H3ҐyN����q��B����dž���vf%���SLe����22l߇U��ND�=Qo�4|�z7��8�J|y2fFA�3b�*������ps��:��Ў-.}�Oِq30��ԯ���y��E�cfnq�����m�p n�(w�@���Ȼ��x����'���M.:��⫊��9,�d��vK�
+����dO3�ۛ,FM�$���nX�ы��*D�����m�%�_��8������5�W\U�NW�Z��y-?��/o�{��E�cf]����{_�rIU�B4d���
+JC�� qIe�
+W�1���q���ޭ�s�������wN���D�=QoٛQ�;0,��G����E��8l�7�RN-K:�`�3xx��ۯ�ս[սI�����m��;��gc"y����l�mq�bg�,d�4�ݑ��ms7�%�no���H�^��a^/y�Hw.ޭ���vح��ݏ�;��gc"y����lR�
+Ӥ��lY�8��}5)[�Υ���vC���w�B�`���c�Q�V�ֽk֖��ű˱��?��/�z��1�#B��n��~T9K>l(�Oc'�<��HT���8��pgW���*x$�C�_�������C�8[_�wN���D�=Qo�>��*=9q����������B�a�J̦k,�ʐ!��Ŧہ��UX5 �*���FKz]��;��gc&%i���J��Cn��N9�ݽ̹Zu�M��ս��a��8�⨍�l%t�
+}��1����kz[D�)��p�q����n�ѶZ��-tm��6�]e�ld�̫���+��(�˝��GC�)or��RL<��F��Ċ�&�F�k�l�ѶZ��-���1"BP&���$!01@ 2A"QR��?�&:����M�컦�|Ld����FV��%���������o�GHFBg�Qd���l5r�!�'48'�VQ�O"�G��yMlڗ�U�G���6���O|x��D�S�9�~L#P�<���S���1 !12Q"A#0a��@q�B������?��O���SI#�@�8�����z�w���z�ޟ���-��;ƃ��i���N����C���<~�~�%��^���a�������3�6���3��`�Oa�E��P����ᆗ5�MB������'AQ|6�;a{�l�)�ُ���5q�o��)��J�ٛO)�,� �Gg���!�� 4
+Ic�
+ur�g�}I�]U�ML.E�O����S�=��C��K�3NEz�w����Su�k��S�,*X�n�Q��Mё���7,�t�ե�IJq����h�h��F}��g8�i�*)�Qsx�������!�1G�kq�'����f*���|~uc�K�������nY��S�)i@��j��~�ңm$p��d*+K���
+����f��u���3tw��V��_d��&6�y���gm#N!��O)y�m|��K7,�{���P�r�LЩl�� ��Y�š��Zcfک�&K������.�������ϾV���(���Q$�H�+��+��7���M
+ !"1AQ�024BRaqrt����#����3CPSbs���$%��@cd�5D���?�YV3�]���0�Q|�O\_�ľ�j�y�-�M��\V,���3D�jY�Y�T�E�^h�h�S���|�}��O�o�w)����>Q��ܧ�7�;��F�Gr�(�h�S���|�}��O�o�w)����>Q��ܧ�7�;��@R�e��T5:аN
+��+5�L'r�%FƖU��8���sA�*n���&dTC� ���]8�(î&���!�0��ͣ�<��ujO5QL��h"��V�k<���v�S�d-�+Dl��}W�Q���h"�,Z�mH�1�/«�92����\V�.$�YZUG�,kd^��d�_�'�U����|��j�6�� m9>����E��U��7�?�c�|��G�1x-IY���4ZV��J��4�g�M�]�?c��D��u�7�M�W.c������1���Zu�ւ6���V��"�������1���ِ�qg h�%�#d8��b�{�.i�D��]c�DC���E�;jn������Җs���)n(! �T�P[��H�>��?�*�D��~�m+��T�áR|#�-7ޘJ��-�8aL?0�W�0�Wܭ��K�,T�(VOI4ki�0+͌]ʾ�
+�6�u�2�o���]�p�v�,������������
+�J���q��7�X�hY�X*U�mgʝ�^�U��l�t���d9b^�tn��I�Ӣ.莦�
+V�~r�t���dM��Q�c��Xn]��i���N���lAӯ#����WihF:��'M�mт&����AhU����~���GY;96�n�ԑ�rm��M:"��l���0�Yi��j��!*����WDd�9M�HJ������9!K��ZE��
+��x����3ze�6Ϻ�oW��4)ֽ�bW<kF��W}�/�]�+�^�07r��1w�[Ur�X7�����۩>�tE����*��r�x)���� �,�y��lgQ��6D��L,xf�(I�Y�t�C��td�q������-;�z���A�a3����p���
+Z�8+ė�[���_�[*�9-śKY�I�v�O��wDu6tó�J��c�G0��(�Q ��EC���Y�u
+֠��䜑fN�$�SG�� i��B`�ߚ��y'ұʜ��ËO�1�y��x�We���O�F��W���}�s��3(
+Fi�����}4苺#���.FJzFX^�����_(C ���'��+Q%�N:ᩦ�ØK��UcD�
+hGK�}��r�~x1��κ�/'l%��i��D̪�������U��[A�D��[�SYO������/�O�Wu��8�q[ğY���Q踅xiə��>���V��R}4苺#���5g&�jv͆�G�=I�-&^�+���Q*�_�t�b]8�T*z}bf�wt�c���U-���`�e��17.�mr��!F��,�U�z�b�k"�~��'�/����V
+ƺ���|����9c��]1(����#�?`v�a���IBE�6�O��wDu6t�"
+�T��$�XN�^Wo�T-���(��zi$E�6��Mg�V��d&fF�_F�H��N�ᘚ^��x�,�V�JT���5�-�����tP��ʯ�۟l%\d���M�jH|W�8�iUWX3N���ꕘ;�����6�O��wDu6t�M�D�G��
+M�'�"���j���Z��7��)��Jȸ�z5�e��n�9P��b]��Iđ��2�[�D�(��¬=�ڱ��[��K���ب�X���ܡc@�.q��#�\�7T���i��i�tGSg@j�G����_EF�H�._�ԗ�%[zhZ}��i���↥��e�e)�yՄ6�Z�rD�"�Khq U�l�ȯ�_lLK��AL8��ZX��t���G��\��%ә��f�#�\�7T��'�i��i�tGSg@j�MUy�J=G���k�I<�E4o56���yk��n�3I����2��6���V�:6�P�2:�nd���|iU�j%f2��'�,|�k#Sn v��-��L��E̤���:�����YsH�R?��
+���D]�M����V�E띘�.EG�J*�D��K;�`�v�~%gQ������=qI�*�� �I��be�9�)n��'_uGR���'6�:P�����#��C�j��DN(bY�
+� �L�,��դz˚F��d�m4�M:"��l�
+WtZmĔ�rB�z��]�}�# Z�
+Q4Z�d�뙕��DK��eiT�wN@���Z��N=���S�l!_����'Of;A]�6� �2�0��Ƶz�,���33���'�?y�i�摺�>M'�N���:�:�^�H� �������m�l�����O$T����N�,��C��/H���6��L��֦[8^�q��д���
+�t�z=��/�ހ��3�ɳx����M�|W�̢%�V�0�s����h��ʲ�"�\R=e�#uH�2|6�O��wDu6tʧ�Z�8I��c�}&ˎ˶l�_�5��ɗ����Ħ"�3��:W>б=G��Nb3���]|v��1�6�:���G��oWUR����P�R��L�'�㫶�¾�,�\��7�"nt*Z��h������K,6,� �qH��4��#����gJ��할�G���1�RP�r͡I9H��6Ϥ��yi퍑F8fЛ�M.�(.)�y�^.�Y�g�6�CR�g%m��D9%IɱKK�|샸|�
+��7U55G�o �l9dpI���ꂝp�Y�D�H�G
+0Ep2�m���`&����L����ٗ�*��&ӂ�l���kS��5!ǪI�P�R��mnI�I��?�#��?�#��?�#��?�#��?�#��;4�
+i�*$�6�R�L'3� ���ȏG54�{'��Q��V�a�3
+�H[�"g��C��Q�4�³Z�gh�iI|
+��*�7��x��7��x��7��x��7��x�����È�GԘn^]���b��8����*!1AQaq��� @���0P�����?!��A���+�(�i(%v��be��F"�֊\/F+;�p��M"߸�@ ��Y�*�7X�i�?<�ӧN�:t�ӧN�9ͅ����ڹ�q�y&��GMى�l�� !<Z��ʅ%��j<`�?MQ˄�����Z &���M�9����������,����w[�AޕT�w�C������*C�L�Jd������@P��L�\�yohf���ŝj�,͝��qs('ſQRㅩ�ns���f���B,wo�����EGq�1�T��'���5��e!����}����_o��J�g����NE}����_o��!��SR!�0��g�//�/�T��XO�(�,`��~CK��j�J��,y
+8��ݭ�&{����}�Fj�܅EG���<�|;Gr�"0C���.m�5&�v�ŨZ�
+��Z�*����[�L�%G�g�������'jNs�㋫w��GD���o�Rh1�3_�C,��P��Q>�Φ��ܺ��U��G�������-���`�9�z�tFR{���oI3?qlxQ�@XuE*���
+ӫg
+�r�qY\r��>h��H��c�2�e�|��;y����5z�tbIZ�@R��lu��`A���`�W��2�*�m���ʴ2M���ۧ�J���~YT2;CM�委����:Ln�����trn��n5}��߿�Q:����<�U�[�����Cb����\x=Ԙ�:�6��Ճ�&&j0r��:ި�95x�/���=�L�c>��>X�q���n(�0����À�p0<>Ғ���҄ڍ_��Z ��n�*��<�b�V�`�K��C���S��ݢ@ɚ���U��զn��!�`D���y;"�j\��%��E��#TX��G�GG�"�r�Vm�͙���2f,�C5Ƞ�v�3#���E�t�Ɔ+J�8wɬM�B�C�lU��'��w��4�r���h�H|J�1y��8���h�ƴG�GF�dxZ�q�yC�>�:���H�k8���m�k!r��g��逜ƶ��?�ܥe�A#��]��(U�������#���`��s��pGFWX���.�M�B�>l�A| P��ZPF�}-�����k���Vh%�Х/�&���7!^IV�b\858c����h�S���ى���LBa�$���,�肯T�$( ZX�3&�eD|��-L�F\s����7��Z�i���{��}�GEJ�.�װ��{�/ ���ᎳN�L�)Q�P�5mM/%H�#��|���?!kQat��4h�S�A��0=_nQ�W,��/*���WGOb���ins�qU�A+������%ᬌv������ʄ�(�do��X�,�? ����4h���%��=������GD&���3o�<,�9�vD�+mo{�
+ibqp{�>*�k�XZ7on�������2�h��|T�V�wS��4K�"��۔t@�S�]|oH�;%��˧czZ��8wʌ���PS���C��f���V�bdCW q��c�Y-*�Gg-{�ދ�����qt�hl]`R
$�cb˶����ݹGF�?vo�=i�
+9�M�Tr@O�rs�0*F��&:Y�5!�Mk3�ɂ�;h'�ʘr+� J���}�8�_I-���P` �`^�Zx�������4�$��䯁�&r^lh���G��-����R&���Vm�Gi�r>���'�P��ci��E�L��ONg,�QX'@�CIl]�p�YNҳ�7yMKtf�|(�yQ�LR��y��`��Ͽ�Sb�~<�hѣF[��P�/�<*BzԸ��+%:���쭆��i�v�[Ol��<?���WN#�|�hѢF�!� {�x�������<��<��<�i���<��}��}��|����<��<��}��}��8�<��<��}��}��C���<��<��������*��<��5�<?�}{�<�-2��8;�}��}��mp���_}��<��}��d�u+�4��w��}�ߺ�?��R��}��<��}��De���>��|��}�߽�����u��}��<��}���.4>)_>��|����ݼ�z�^�o}��<�����<��}��<�ϼ��'! 1A�0@Qaq��ᑡ���?�@[�*T�R�J��%���
+r���ɍ���]�����L? �O-L�W���J�vs��\�����;3P+D={|Ͷ�����C��Rg����@c�O������|�=e�����̙)T��Y�uʬG"�"��̽_�����3�,|ity����F�3���>�~��I���i�0m�l�� T��ؼ�T{��.�H�b��_6��p�^y�m���K��5,���Y��N�9���WMN��/HE�A-w�z?��)!1AQaq ������0�@��?�Zadb�A��2�9��{�5�zF��H�=�ǽ#X��k�p9�FhO��,x��/���=r`�{��W
+n����|�֮5�S7�.�o���4��
+�;(wXc�s�o���?�9�&q9ۑB�&qqU��xg\Y;�,J_��)o ���� r2��+_m�c�*+[��R��D��k̻������;@`{���MJ�D�Qܪ�.y��;��p����~3Ň=ݼ����2�������K�?~��%&��^"Os��8L�c�B*�'���xK��R�&�7v�r_� S�aA���ݛ���lc��� 𱀾�CTRL�CԧX�w��H5���hqL��wo'%����HL��p����nF,HX8g��ՈI�!��
+\P[5!(�2�S싒�\���NK��z����Y,��!nH{��
+�:5z�����|C��G��,��W�\-s��y9/���c*.{��� ���SX���r�F�I�Gˤ&,���.8da��-s��~r^��416��6|?�`���fM�b����-�
+��H�ީ�h"J����օ�?�����X�H�ƪ5P�J堩�0'c�=dE�>@�%��Bί��*!1AQaq�� 0@P���������?���u�E���D� ����w�6�K���Z$��[�{��v���^���R"�%o�r�.�\L���VX �g�T@0N����D��',�#`���ܸ���˅ԟ�5jիV�Z�jիV�Fx i7�aV���U �{�
+�H�{�ݫF�ah���s,#�u#�΅�O��3��=�^!���9�>��u�x ���� r��
+�U��~2o�zxĚ�x��9�Ŧ¾$3t�yo�� }�F5����j~��1�;��0'�y#�\_�C�"�!�/�2���A]�����&�l�,9DZ�j�X$�ɓg�G��Gg�\��
+�ٗ�� q�:H=j]�Ww x:�4͆q0eݓ˵�D�Hf�)!lû�Dr� K�УĜVP/I.�I�[�����H�Ě~M���2��������J����<| 8ռ `�T�Qx�Y���u@ըf��\FX�B$��M�x���N�Ex
+��g3r_�CT���8]�9*
+ڷ��E�s�6��HgH��e��5(�+`ft邿��i�&�2�9S�:� �Re���6r��J_T����B�n��o�b`���̖����妤��7I�p�%��;4�F���4�Öl!-�82�j�D
+Pe�b�D0v���E1�dd���-�t�6� ;vWA��iɑ`r������˺�uZu����Z
+t[ը1ڰkЅ��i��<BB�-T2��|(`k�"���c�pX�4��*����� ��D��X8��*Fs����P�YYQ�*�j�r�h ��[���XZ�I����3��9��I��M�;SPl�q����r��_Xo����y���T�������)�\1e�T��Q�2j���*Ď[a�'M=�!w*��ں��\9� ��R&�O��F`�@2 0���:Ky�h�]��W.]����1��g��>�i=F�J$r���,W#a�mR�u��7��e�����
+�N�ǣ��� Q`7j�!� �b5Q�4H�e�U*����g����I$�)h���v�Le�0;#P�������&�T�:�+"%{�e.`�?�Ԏ\����{t��X�yt�
+��U�.�����}%XؒTԫ�3Af[������t���/��ɵ2NT1�%r4���"@�48���@�j%��6#���)#wȉ�_Yb+����p�< -uʉ�����D�0NR:��(*K!KA�ɇ�oC�
+T;7固i�,v�ړ�`�
+��㺧,�0zO�� a^������dָ�&a���6����T��vc�Y�^�`�^,w$�ʶ� ��&���#�\�ۯ��R�A�������R���f%D%=���Ɨx|�`��8-���H1�b��'$�/���
+쁱8�W�h5R!#�i�BZ�`�����MZ�v��Z�/+.�k����Ҳ�L]����ү+��0V�B��t�$ӕP��x��Gh�T�<0be�G.�h`#�m�PѠ`,6��e%�7F�*���H���|S\̾�IC��A^$H����0}��*k��֑@h�?�F
+�s#��
+�t����,R�Г��ʅ���k{qe���v�˃EK����$���n��}UJ��hf�R�:�\����.�=�$3=b�S�N�����k%��k�҂.09T"!̅�|���t�% �k!=�� �B=@;P����������L��>�o{�ZI�$hK@�����~�va؎���X8
+Z�S$A��k5�u��\�i��?���
+��C��N�&z/ b��#�
+�bob�;����<�ٺT����Az;�gAc�#����Y&���P8F�)�-s�2eZU��4���5��V�ڳ�)9�'JK�d����H���?F�4�\sZj�3WBh�
+""4:��BR$иh�<�%&�}E
+~�*��Lv�r�<tw&��Vu,XR���Ψn�~Z�%����i��
+���.) �����������UP�"�ռ0�(�u�%�!s��A��,��aA0�䌗r�F�%DN����;"�Ұ�Z.u�2F�m^ �y,�q��RF��&�摘�Z�4�@:��#�!�x�f�kFXP��!�
+�+K�(������W�A��ܵ �I��� �/� �1��`3b?S�C0����@��SuE�"��-���Ő:0T��]x�1ýa8�5h��2�A� �1g�
+%1��n�*�����"���aT��������@
+����s���iV��y#��7D�K$���C�ȑj�8���A�DO<��Ⱥ�e��?9 m %:��@J��(D&<B�8:��Q�Zs1l/����zh�8����c���?"0���E|�{�ph�F '&��q�˲Y�`��Ă.�}�lٳ@�D$`�B �,���;P�<��0v(��+L$w�G�P͢-�
+2>��@FS'e��K�0�����b��A�kM"Y�3f͚���V�'j5cuU[����C��
+endstream
+endobj
+
+8 0 obj
+<</Type/XObject/Subtype/Image/Width 347 /Height 221 /BitsPerComponent 1 /Length 9 0 R
+/Filter/FlateDecode /ImageMask true
+/Decode[ 0 1 ]
+>>
+stream
+x���M��0`GEd��$�\)GN�-� e2b�ƣ6�,YD1�4Nߟ_�R��������g�u� !���ih��{t�S��m~���[�����O�q�/վ���%����*|�]�m�ܸ~����uux����m��L�wi��/�[��ۮ�ͳu��M�a�M�
+�H��r�(�Co͕ɵ�yo�DKڮ7�<�R��Lc�yq۶p�ƶ5���y��mCllh)C����w;�ʴ_v
+t�Q�~�;%��1e?N��}vH'��L;��<;VްU�*����W���δ�a�U�ʹ����W���I�yy5K���v� n�k^^�R�Ȧ���P$�:>�eC��°)�
+[�n�0la#ڻA�r��0�){%q"�\�D\i�)�q�v�jS,�3�~A�F[g������o����M[w���q���⚍-�Z��O�y�Pk%���yj�-Q�O-UG�J���N��"�=�a��p,<h���ցrE';�
+�dG0h�3hqN�z�M�V�ka#�����>
+,)�
+���r\��X~�x���e���h.D�Zb}�~G�iv����r�S�U,���J5�m�s~�~)��;�(9�hkl����5���g[��};|c����@�I�s��6Ⱥ����=�}!�sg}� 9�������]!��
+��#q=��m��0)n��n!�����; [�β�=��j�o�
+Z���7�,87��9ղy�`k���t[�;�ζE{M-�ㄘl5��̱5���lm��Sc`q{b��X,�4a[���f��9$m�s^{͖�Y�ù,��k���]`3�SlFɸ
+�6�\�·s��9�K����{�B�z��4�dm.��-+|�]����-��,�W���-�K��'8��0ɾ-��Z��fY�[{.�
+����,��ۧ���t\��2��5$<�s��Y�m�����ݲ�M�o�9V���x�����[�˞����h����*4K߁̖�t��vS�[�~G�>Z��s��Ƅ�+�5��c�kb�����&�%%/�J��6Z��p*^t�&� �8���l�o᳔�����M�K�K�����5�
+endstream
+endobj
+
+9 0 obj
+1088
+endobj
+
+4 0 obj
+<</Type/XObject/Subtype/Image/Width 800 /Height 600 /BitsPerComponent 8 /ColorSpace/DeviceRGB/Filter/DCTDecode/Length 4804 /SMask 10 0 R >>
+stream
+����JFIF��C
+
+
+
+
+��C
+
+��X "�������
+@
�����jg�����?m������?m������?jg�����?!jg��������������������������������������������������������������������������������������������
���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������
��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������
���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������?m������?m������?jg��
+endstream
+endobj
+
+10 0 obj
+<</Type/XObject/Subtype/Image/Width 800 /Height 600 /BitsPerComponent 8 /Length 11 0 R
+/Filter/FlateDecode/ColorSpace/DeviceGray
+/Decode [ 1 0 ]
+>>
+stream
+x����gWYƙdH%�L3i+e�I#�2�e��%�X�,�D��`]Q��D�KQ�XQ������ ��PĆ�����g�����}�~������ó>�{��<�'����m���O{���5����G{o�ߛ�Xs��6���>�ܿ�����Ss��އ��Psl�ͽ���5������x���{O{�����������;�{Gs���������7��usom�-����7�������_�w�}��e{�ܟ�������?m�O�������?l�����~���m�w�{]s�m���~���4���zs��ޯ��+��r{��{�/�����Bs�W��U?��+����~���i���t{?��O����xs?�ޏ6�#��p{/o�ڻ�{^����җ��%��@s�������澷�5�=�}w{���w6���������澽�ok���������on����澡����澾��<�9_�������3�{FsOo�i�=���i﮻��������l�+�{�S����=��/k�K�{ғ��%�}q{_�������������>���5�؍�����|n{���g��Y�=�я�����#�������Oo������>��;��]>�xt�X��z>�����ý�x�ˇ�Ǒ|ܿ5�r����|�����c=�w��ӭ�X��z>\<�|t����x����|�x���/�l�GO>�����z���c*[�1��g�|x�Xχ�G���x����� �Xχ�G���x�䣉�#��/$|��[��x}>^�Ƈ�(||���7��dzB��)>��я�G�q�r||��G>F����Kb|�t>^&�G>���d >��Q�q>ޒ����H��oR����U|x����i|��ʇ�(��O���+(|<-%>� ����� ��q|<����!�x�8>��a��x���\���T�G��W��qx>>���7��c��yL|��y��O��
����ˤ�8� >9���c�����������*>^k/���!���Oʌ�������!�68���o�����T�x�
+>�������|��qX������R|�����Ǐ����)w��>�/��;C��q|��s7+>�>-I�����R|<U�����|���G��W%��7�1��D���|����u.���P��||z/>�ć��<9>����`N|��LL���S�����|x�H�/���=��D(|�7����*��Q�!z����\<�/E�xL>>�����x|B��������H�|��
+>�����q{���mP �a�!�6(�����]>>�5���E��ǯ�#ȋ�#��a^��r$�����T�!~�n/���/��xv�������6=>^n�������!��c��#i���VK��$>�Q>�����v��.I�(1>¾
+��Z��(|i�b|P�
+�G>е�ܭ5i�U�2t�x�Z�V�0��>�j���H��HZ�>*�j���V+��#,{QE�2P�
+�G�5��`+�|��2i���Ȯ�:|<�0>��L�H�������c(˵Z1>��(%|P���j>��� �v�j#zQb|�jo��Za+�طA1>�������j1�q[!Z->�i���J^T
+|���a{D|��j��6�V��0�v�ih����EQ��GT�v4&��ʠ��Z�������]�����C�������j���j������/0��V ɴ�R[�x����EM�#����@�6�V{$�Z�xۓ�#�%�G�Ӓ��q[R�2�|�\�-e����m�Z��`+CN�V�B�2P��V�W�ݚ�e�(ыBme�V����ǭZ���s�\O�㣨��������Z�Vp�V��!�V���[�|P�5��b��q�Z��[1���c��j������Q�ع|d;�ƋZ���:�����Eq�\��['��;����fje�V;��[P�Z1>��r[j;��q�8>���21b+�]���GZ�6�ع�[����uαs�����I|�ղ�AO�U;��պx�B�le@�j{�a:c籼����V��p�<�V����Պ�8v��Ey����Zm%�Z-�·�q�Z`�6>�i�fZ�|��E��Q�Vk�jc��f$|����H1v�eb�V�^�卝���9;G��ڥZ�����Zm%�Z-[��ck>j�j���js�2P����:|ܼЋ�c�;�y�7��@[´ڈ�v�Z���|�2P��;�ϋZ��f+��V[>�[��\��ˋ��#����@�6��)�űs`|p�<7Q��me�6hs_&���χ���ne(C�u�Ɏ%��Z{Zm�ع�e���܋�ÂUJ+�Z!>n2���������09v���&�2@�C��\�U�ǘ���M�j��ʐ
+7���V;����H^T�Vj�>>nL�Պ����>,���j{�aW����B�-x���Ǎ;/9[�=lLJ�a�>nL���Z-���^�*7R�Uhe�j#�2��j�x����qcz|$;��A|X;G�j]<n��c�����ke���B����J/j-7���N��Z-��/7�q�˴Z�#w+�Z>��a��s�#u�������s/�j����ⱞ]��c��i�e�2tV���y�<">RxQ�c�)��m�����E�T�V7T��V�����;�����8��E����#�V[��9�Z3Z������Պ�<v��!�%��ع�?k�����E��N����zj��j��0�/�[�Ֆ��P�V��q=�V+Ƈ���^�U����؞�H����1��`ʮպx\�����Zۭ&�ځ|�<l�ke�;��*�j]<�O�� /J��"�����(K���|��;��L�����N�E��X��LjU>�k���������a�����u��Z�>���#yQ9[
+�j��˴Z���2�պx\WB+C���V�v!>�L�c"�Z-���P�V{�*ׁ�2�q>�բk��c�>>�SƇm�6>�����y��8�>lߌ�uV�Z1>p����Q�ع���
+ke���V���բ�2t�Z����Z�k��q�z+�2/J��c�^T�Z�*�^�x�M�#H����P�V��q�A�6>�|�������|���>��j���a��f��Z`|T�ծ热��ܕ�#��9����Z�_&n��ڜ�˴Z�#r+�ȷA1>�k�.���(P��c絵2t�84����2�yQ&�Q�V�����E��A��Z����ǡI|��ʠ��Fhe�j#�ðV�ţ?��|$�j��P=>����8d��A��V=vN�V�����`+�Z=�6g+�V��q�$�V��`x�<�U�ع��C���jZj�j��q�4�v>b�Ld+C�c�>>�)���ZmyZm�V�k{����#������Ve�V��0�V���{Qb|yQ��q�&>�����V[Zm4|\C��Z-[��2t��f�V�V�V�HOKr�G�u��˼(1>8v��!��D1>�o��2���`+CiZ���5��僭�i��Z�{Q[�ۋJ�Պ[8v^�V��qu<�V���Z�|D��me��q�!|,�j���J;���ع��.�j�i��[�i��1�2q#WS��V�V�A|\]�M��eZ->t��!�(�Z���Ն�A/*AZm�VZ�z>��j��@|�yQ�x\�ʋb+CqZ�)|,�j]>������V�[c�>>�|XjeH��f�G��s/
+�^�
+W����ع9/*b+�ȷA9>�j�^>*�j�2D�j��`W!�۩�f�j>��ƋJ:v��9>8v��ʐI�u�������c�<�����
+]>�2��(�#���P;��q%����Q�V���A��:|\����2T�EI�ɋRjeP��V���!Ƈm�6>8v^Z+á5|\���le0��+G������V;�����ʰ��e���Zrh�6����j7�q�z>t�(|P���j�ZT�Z��+ʹ2��Պ�Q�ع�}|��8hO�%>0�1��0�mP���Z����H��j��Z�j��8AZ-[`�Ω���8��=>~�c�z�H��:|ć�V+�G�Z-h+C�^�l|���Vs^Tz�V��!����x���Z��G���V[>��Z����`+>"}��ʠ�E��qpv+�V;�Z1>��Z1>���Y�;��q�Z-�UG+�V��q�V���@�^������㊤��V����c�s��պx\������c�zc�1[4���|�ke��jS���u�V=�v;>�܌��GR|P��V�E��qEyZ�aZ-�[��}|\�����&LJ �v:c�h���qE�Z����c�ŵ2,�j]<��VkB����A�]���Z�2P����0�i�F<�a�\O�E���ѵ�.����E��<v��!�����|�xQb��p+Cn/�|ȵڭ�X�E錝S��ع>n���Gi��V�
+��ڜ�c/]>"�2�zQ�Z�;��j��aA�Uje�P�������#�����k�jqZ"h�ć>�Aە�A��a�
+>.���*�2yQb|�{Q���E�2��j���VsZ-�Γh�.�W�ղ��f+�ȷ�Hc���VK��
+>����?-i�q9>��(�V</�ܱ������L����eZ�%zQ���Z����U����ղ�!�Vۓ�Z�R+��ѵ�%c�>>.;/�ع)����B���`���=vˋ��� �\>�Z�Պ����c�>>.S��VK|�leH��n�����aҋR��Zt�6>.Ň��9�Z���k���a
+�˾
+�[f�L܈�e�Z-(>������s�<=����ѵ��c���U��e��VK��|i���������T��;��պ|\���AG�M��eZ�PZm���Zmn�v>"h���2��j�|d����Z�բk�b|\�j��(��g�G����|��!>��Z1>���ӵ2t���Y�e+>�Z��#">��R���պx\j܋Bme�Vk��a[>b�2���Eq�؋���Kl�#L�Uje��*ie����Z-�V;�j��2t�$%>8v�j�s�џs�P�j�����(���ie��q >�V/�4|i�b|<v>30^�V�V`�v/j�K�2P�-E�e+�>��aa�uZ�( >���a�Z�K´Z�sE�v.>�yQb|ЋZ�����bt���zZ��������Z�2�����X��:|\���s<|P�ͤ���p>��Z1>´Z�Vp�v�^��������P+�Z���yQ�L�Z��V�Zm�>.�VK���|��Co�\�m����E��i�<���äU>J��P��|�;/������V���G�V�V���A|��:?p`�?w�Z��j���S�U�����;/����ع���ǁ���V+neX��IZ��A�ʋJ��ZmU�]<L�܋R��O��2�yQ&�@�ݒ�TZ��j��(1>�������`+��V���ۋ��T����V��P����b���x��jc�2P����4>�S��zQ:��j�j��1[�������y<�v^>�k�E�2�k�5�c?�ZU����x�އ�������9^+�V��ÈV��?��y�^��1�qY>���ʠ��&��2�V��c�����c�@+�����V\|\��cαszQ�jQ��U<fɋR�G�V�V�V�XZ�Z>��2i�ć˼(1>�<lO����LjV��!L����s�V�
���G�A�6>�|��Q�������A���A��Z-�����Q��ie�V;K_&n��>�i����j��c�V+�G]c�~<��EQ�����V�����c��sj�leH��:|쳋�s<|<m>*;��o��K�@�A�6�ع��}PZmխ�Z�aZ�9��}|���ښ��+�j>�%�Dz��/u�A�����Q|�+�ZmT|i��[�yQb|�<v��c�f+����A�6�V��Z-�Z���c[Jje�VI�u�(����o�b|(���i�b|yQb|9v��c �[2i�~<���x����⌝S�M��ne��E-��E�c��j�2t�h��<v^�V���P����㢼���mP����ΗyQ�����h>�Նk��n+�z>2�2P�
+�j�ʠ�պx\dʋB�G����@���Dž��Z1>L<lO���2P���G�?w���>�ʠ��F�G��s1>��U<.����W���r�<i+���L��V�����G�
+����!����P�V�=9[�����(Q��c�2|\hY����AY�M���9>.�VkleH�����B|,;�w.>��έk����}|\@�K�e+B+�E]>�Z�i����Z�\|,�j����}|����V[
+>&�o�G�V˱�TZ�N+��)|\P3>8v�EE��ع����Ϋ�ju�Q�
+d�G2����g��#]+���\��(Z�|P�
+�8v��бs��#����Vj��j����}�<9>Lh��H�2q#�;��2Q:Z�>�;��q>�Zj�*����f����Z�;��j�ʠ��z��Gqc�z^T�����ŇA�����ŭEzQx��ie0�զ;�G��tZ�^+�V+���y���U<���E�Zm�Z����d��V���ȇ�|l��>´Z1>�����Z1>*;��q[�ჭ)��u|�W��y�V�"�Zí~>����(�V�����G:�v<����s=�V��!�i�H^�*�leȧ����j����}$��j�j��0�Y��Ω��oe�G�V�"�(бs�2D;_��f>
+he���(|=v��'0��Q��y�Z���s�R��^�����O�u�8��P�j���V�U�u�8�c�j^�AZ�R+�8v���\X|��������l�6>�h�.;/I���H�6
+>��ع��퀭���3k������7vN�Vً��Q��y!^j+��v1>.؊��|�#�V�����.�P���j�z�>�Ʉc�h�J�Ei��}������c���D>"�2p�K�M��eZ���η�c3����_�8�P�j>���n����s�%�G����`����j�Q�ع��k^����8g��`��xZ-[P�q�V|�cX�]�G2�V�Z-j+C*����l���%��Z-�V;g����01v^�V��ʀ������ć�����\c�>>�|��ʀ���ʀ��N��l4|P�Ň�V��/�j�Z1>����j]<�Fć��sL/
+�Z�0>���EU�����^��ع���;/ċJ��*�2`k�����Gm��V��\Z���Y���g�Ld+��yi�K���|`�#���ܧ%b|�k�J��r��[0��V]��\?&����jõ��Z�x���a{�(m�Z��� |����01v�\��#H�Uje��ִZ���[�:^TZ|,�jU�qF+��vj�X^��V��7�V+�G�c�Z�>���}|���P�U��yqZm������=k�ތ��3v��E����:|�Ey��������c�>>��#�V���@���V����c/�p�^�U���co>Jy؎���s����Zf>-Y�vZ0�[��Vۓ�2��jA[t��T�ث8v��զhe������Z�i�.{@�(@|,;�VkJ�u�س���Z->4��ke��V��cJc�ɴZ=| k�s��:|��؞�j���oe��j>�D�G
+/J�c�ɽ(1>¼(�V�|Z���zQZZ��jC�(1>��ˇX�e+�V[T+��ع��=��Zm�������V�l/m�2 ���oe�j��ÀV+LJ��sL/
+��AY�u�x([�ne�^����5|<ԊV�c�ϋ����leP�j]<���Vc��jӷ2��#>�i��[����Z.^������Gm��0v>�� 0>�Z��s��՚��V��ʠ����C��0�j��j3h�H�����[rk�]<���h��H��$�����90>T�(>�d+CR|���8v�0v���� |L�L��9�V�4v��Y�]<ά^�M��@�ֺVۛ�2�����h�.g&�j��(w�O���#H����3�=-a+��V���i|�9�a�N+�Zj��}��V�7vN�6�V��qf�V���4��j��@;Wke�F�qFQZ��V</�����j��R������j9v�V���8��P�Dz��Z��sgh�c��!�ű�ܭ#�S�2,�j��c0�jŭ�j�Zi�g,��2P��V+je��q�1�E�he�u+b+�����0���E���Պ�8v��E%;������\Z-[��GH+��V��q:�ZSZ-[TZ:|�G�Uje�V˱s���G�Z���K�j[�x�O�U��Z�����Em�GN��ܱsj�V�Z�ӣzQJ��Vk�a��V�}�0����������j�xc��������G.���leH���Z���ix^ >����#����H^�R+�%�Dz��^T�V�Z���i�B��D/
+U�����j�X�s��(�2�j�K��}|���9vnS���G�V+�Gd���c{>j�8v���ke��q��V���`���;O�E�[l����8�n|p�\�M��0�E��q�V[4>�i����Z�{z�q��V��j���0��:|�ʱ�Z-��Q��a�&>N����Zm,|�xZB|T?v�5���#7>0�Z�Vj���q*��K�jc��[ke�����V[��y�Z��ǩK[8vne��V���/e�c��G�V{Z��Z-[�Z�E��2t�؝~�|�۠R+�Zj���؍�E��j9v�����]<v�s�V+��AZ�zc�!�ӵ2������P1>Rk���8�j�uk���0�E�oe��D�Uje�V�ʀ��:|�&>�����y!Zm�V�����X��^TR|��6��ʐw����nj�;/@���cҋZ�c7�α�A������)�h�b|yQb|Ћ
+;ϫ�:|��V����ع�V����ղ��Z:|x��V���=�jռ�>N��G��D�Vp/�c�!Z��V���Q���#�U��yr/J��LZ���)�Z-[�[´Z1>���8�8�<|p���5|��ղ��c��j�]>��#�V����E��Q���������Khe��9.>��څ�8�l�� |���Z�V�v>N��j��^T!�P�j�����yi�&������ؽ��5�S�������j�!�H�E���Zme������Z1>��af�|/�Ƈu�'פ�F;�V�ʋR;<l��Ǯ�a^Ti�&��l�V��]�i�>>Rh��Gh+���Ǯq|P���9v+C�V;�yQQ�1��]�V^ >,k�����a��J�Z1>�;zQ:c��𱋭�GB|`k����U�%�jA[�����2t��E����i������:|��j��j�'w��V����c�s[R?l�;��I:Z��V(/��P��q��L����[�x�ds�|��`i�e���k���ȁ��Zm���/�ܱ�S{�q[��c�|�A1>���}|�D���������㤬Z�,|P��V��՞����j���ʀ��v�8��s�����D(|�L���C
+;/J�s�Z1>��Z�����̋J���o�le��j����S�h�f[�Z��|����2Ћ2>v��:�ȇ^+C�?w��#�V+Ƈ����Z����7�j��ieH��:|<$������V�c�Z�>������ab�<�%��,/��GmZm$|ЋJ�����D�2�����9�V�'R���2���H�u�8qk�`+�ښ�ڵ|�;��Ֆ��`b�V��q�<|���F��Z�6ۏ�Z->���'�j������0���2P����n���U��E�����%c�>>N��jG�Q�-
+�Z�5|��V�p����Z�Y��U<N��9�Ze�'��8�Z�n+C��C��պx���s#Z-��U�1+�j��n+��V��q��(Zm٭���%�8�d|yQle�V��� ��V���!�Vk��!�ع���ʐ*�Z�m>�'>bj�;�ne��E��q<�����3v^�V��æV+�G��V�j�Z��ժ�#��D9>8v.Ň�@|��s��V��E�����ji�le�ne�z�>���רզhe0�պxO���8�Xke��E
+䃭��B���c��q<�Z3^T���j�A�v��+�Vj�zZ�>����C�(�Vl�vǩ=lϋ��Z�>b�L���܇��c�~<��ع�V[w+�V;���
+�8v^�V����z�q\>��V�ՊZzQjc���(�c�ć��yr/ʋ�q�[rj����e��Z���y_>��R����`_�]�DZ�j�yQvZ�����e��ع>´Z1>j;�Z�x��#���Z�2菝�����c��9[��Z1>8v��ʰ�ǖ|�Z�%|���:|��ʰ���~�����a;
+>0������yF�֏G/J������x[�V�Vl/J�ժ��Xj�Z-��!�q�
+|��t�Ή��Z��c8v�B��ie���02vU�u�8G�e+CiZm�8�Z-�V[t+C2�6�ع���|,�GMc��j-�2�k�ǔ�E��������y�u�H>��2,�� ��#zQ:���y>&��:f#��c��Z����Z��#��V����ʐa����1���c�9�Zi+�V;��ڴ�|D�j�Z��(1>���/zؾ����>�h�b|`k�b|�؏?����S��ZԼ�U<�|P�U�j�Z8v�P�ݚt�V�����jKhe��5�ju�Z�Vl�Vy�<�e��:>*je��unp^�"|��#�E���V,���c'��si�J��jC�Z�����ȤՊ�A�V��AˋZ�c'[rj���D��#����o�b|��H|���X���y��Zm�s�V���c��?w�aw�<�3��4v��cg&|X�j�ʀ�ʐԋZ�c��A�Vkx�ܜV��ʀ��
+�Ӳűs`|,;ϩ�:|����Z��V��ʀ���;���0>8v��`n�������܇��Z�/Q�a�<����|P��V˱�A|=�j�[���j��#�V+Ƈݱ�Z�>��Z1>���׃��a�\�me(R���Üu$
+Z��V��Z�R+�V�s����hj��j����h>�_&&�G&�V�� /��V�sGs�]����^.>��(G��E���c�>>��V[�V[r+C2�vG��c��j��-�Xˇ`c癴Z1>��Z�Vl�6��y>��G�V��^T,|��j��ǃ��c:�j��Bi����g?l�!\��;���*�αs���#؋�H���ع���l��[�jG�Q�U��V+Ƈ��`s;j�j�me��j펝���A��&���c�L<�χ|T4vN�6�V��#���Պ�<v^X+C��s;F��V�2�ZH^Tz|Lk�;r�X����[:|���Z=|�i���2@h�;�����9�Z||�V�����ʐi�����2ԭ���xPQ۩�B���ع���?a�^
+endstream
+endobj
+
+11 0 obj
+11958
+endobj
+
+5 0 obj
+<</Type/XObject
+/Subtype/Form
+/BBox[ 0 -5.1 799.9 595.1 ]
+/Length 85
+/Filter/FlateDecode
+>>
+stream
+x�E�1�0w^�RQ !�U���&���ْ��0��ˋNM�_�7I�A��(��h���f�>2SẩW�����>�@0<
+endstream
+endobj
+
+6 0 obj
+<</CA 0.4
+ /ca 0.4
+>>
+endobj
+
+13 0 obj
+<</Length 14 0 R/Filter/FlateDecode>>
+stream
+x��XKo7���9��"����u���,�C�Sۤ�N���C���^�6�a��E��G��v����Xsa�Τ�لH������{��~�X~`6��D�7*�Z$`gA�����nsg�yߙ��yk���{KZni�*���Սʶ<AUiZx��
+����9�m�)�o�?P_V����nÑ�?��5Xd'5$��<]K���8Im�]���^�L;O��Ϊ&$~4]�H�)X˲g�5e���w�P4R��O�����H�Դ�lSҠ;�4�
+��4�+Z�Lu:����|>�F�9lì.hE� ��+U�Ǯ��q��+Z��\�H=�.+�F��v9W�����\�@�a�2�h��m�׳�%w-Kъ~�R=�<W4R�kD�V��늊F
+�#���u���h=��T��������]��hc�wE#�����S.�+Z�z�I�h\p�ˌ��:�|W��u��?*�Spsi+���LY^�r�KC���3��}�Ց:�p�>��as�Ӄ7��ݏ�۫£�<���|��\��B�^|w$o�u��)�L;51�Rv�x~.u�4
+E��w{5j{������ǘ�URS�ް�v���iu�[�^���R�6�Re(�h8J�C]�<AUqa���R����V��!^�Pd��`�vX��7��T��D}�ɖ<��Z#2л��-|�KT�:�m���
+Rp��*��
+�j��R�N�DUsae����N/'�x �t@";���\���dՙ���[�,止{�ȃ�;����M��0�m6R5(�?��������\���#:˝
+4q�``�zA�-� '�@Usaep.��� �R�qE��x��rU��b���y�c��+@��:�$`&-Q�\Xq�K����0!:rE.V��9Rͅ��f�|rN�Kp ��R�rM_�zy��,�x=�d�]�� E<Hrs����5�QT���3)T� ��e�x��L�E�$�E�����:��2f�
+����U��jH�z����%�]����2>}��j�5WH�6��<�)b�3
+!������0:VVD%�1R�\LK��+��
+���z����m�A/���%͗ w[�I�����
+��kH�����Iz�m�K?ޛz������i�9��p�����&oN��,�N_6����%~�K�G3}
+M�¨�9���=��~�B�iwW��/��]�������>�nG���t�=��PU�G��^���5�P��v���6O���kP�ҡx ���uW�B�YFǮӇ(�(�@Б$dv��l�*�r���>]���r���=l��Ve����Y�5��U�
+_� ����`_ʌ�.��ef0�3��3��y�3`�:9�
+F
+�w��u�zj�w��3q��]lQ"H�8�@���D��!&���fޒ��W�x��{���{+<��%x��{��5�9^� i�z��tH��=�X��
+��[6�!PZ9��Q�u9��OO��9G=b-2r���}��:����?m�z7e�Zk�l BZ�<Q���(c���ྫ�J9���5��2��b&��^W*�Lh[�(<�
+�|�N���>X�|R��/��-m:nx�q��������ŭ�{+DP~�;�nEn8�zHT�|�9�";H�&����HA�N\G�7�8D��i'~�-�۷"�b�k��#t@?�(#DIs���Y�F�W�@���z�&^���_*�Y�yE�A=LWS�[s��~������Z�
+�lW�B3qxC>��>��4T� S?�-T�|���CIj�|E3
+�]7k}lJR�+}���zox����_�r V� M���^�$�ٹ;�!V�y
+endstream
+endobj
+
+14 0 obj
+1857
+endobj
+
+15 0 obj
+<</Type/XObject
+/Subtype/Form
+/BBox[ 0 -5.1 799.9 595.1 ]
+/Length 85
+/Filter/FlateDecode
+>>
+stream
+x�E�1�0w^�RQ !�U���&���ْ��0��ˋNM�_�7I�A��(��h���f�>2SẩW�����>�@0<
+endstream
+endobj
+
+16 0 obj
+<</CA 0.4
+ /ca 0.4
+>>
+endobj
+
+18 0 obj
+<</Length 19 0 R/Filter/FlateDecode>>
+stream
+x��YKo7��W�9����!@�䠹�5�C�S�(�I���w���4���-�Cr���Y%la�w�i�M��P&ڎC��?�:��f�k��}�}�cxڈQ���`m��Ұ�?6���|�}l���}����V��<�7�Q��D�v:Cn4|�����w��m %
+�2~ϛ��J�������ڿxa�0�3�#���X���cA�T�*��_5�˞y�ٱ��Eӂ̏j��c�
+Uc���d�XAo{�`ꙇ�Z�����3�Z+���As���ki_�3�������9�-�c�g>�mZ�]�{�&�z��IC=s\�"�+zjbn�g>�&*�z�%417tE贈���9ai"c�g�oi_�3Nc#Y����4�-�
+��Sj����GhT�PO��y�H/rd��GjN�P�{�M��������cn�n�g>�62�z��%�=��d�W.��D�P�[���w�F
+��ysKjꙧ�L�}E�c����:����wVRg.�`�ޟ�6o�{�����÷*��§�������o>c�U|�$��5�NJS,#�T���&i~���S�~�kSЄR`T� y��jT���W����XL�'6��� �M
+��A�j�ט�0 �P��=mR��0��@
+���t��p�n�xKE�D�C�塶����gX#�[�w���4d{��(�k���ߝ��$G�Fn�8�LS��-�� �9��GQ�W�W�(����K'p��N��'D2D�|@�&��(T䴚��,c;��Q���
+�����`(��H�ڶ�U�3�qЬy��$�a)4��#���j��<�Gg�S� IL�FC<^��bLz+�+/�s�I�8ȓ�Q(�@.`Ҥdގ���;{�Y�E^��)�C|��XYS@��Fn����ZT� �c��!�#�\y�L xMDV^�R��KC�5{qk۳U�ǻ9%�DH���\�BR��ZV.��o��v��꺐�ژ�aZZ2�*]��
+��Z+�ڋJT:�+m�6�J��m6�`V��#C����)(�
+D*��0�S�����Ew^@j�!�Rϐ�_PJc�@+Q��(��$Ɔ�b5F�$�����r���E�p��?��@T�I�
+�0٥W����)��6��Uu�������*RU���0���ڹ�ҷ_����m9lS���=H( ��/��{�X����m��ß����%~�G�O��34;�c�#���_o�(��
+�㏓4��A֑��&m�
+�] ��+[��� �l�v?=��e�v}]\5r�S]��f�ӗ"�;ٖ7&�����0�cJ/��x�v7���[�� �mڡn�n���"H��|�i����Z���.�?���B�AC5�(��l�ܙw�7�Y�=w�cb�A�pRbx|�@���0�J�����%K<uTJ��O� �?D��^8D�j�x1^��a�AaQ{��D��g;Z����@u_���Up8RwoE�^��d�hy��4/,X��k��|
�_x�~<[�0��a���\��@=��|2S����4����?��'�^t7{L��|0�sNF{ga8sI_
+���+�<z��\�A ]�������(~���R��}JMQ���'ް6�w�۶�?�f��s�ѱ��!.>֏�s�b�4b.��_'���L��ꐉ�����)�H�ɥ�`{��M���2F���L9��M*��T��֙OrtQ4�C���B��b�)�j���2�,T LyM��l�`��s��I�lKj��^���<�&���i� ���;p�n���k��n��W ?䴅�t+;pf{��,/DlTN~�)�;��9�\�-����<���oGp~9T�Ue��s�~�DO;��Y�����R�����Ѿ�G�3����M�U��_���V���6�֬b89�����Ic[�C)TaC�8SF�Qf�Fƌ�N��K����W���3n�I��iO�=w�c6*�g�0q�$�)�tv��<�A�E�s":]f�J�Q��K�i���18��:�z�ֽ�hUXe�J~5�2� ��S\�v���X/!;�P��g�z�J�4��Dž�۬�|iY�[6k2
+e�I�[蕱LLAb�:��X���@_��|�r����Wć�?\PC�
+endstream
+endobj
+
+19 0 obj
+2150
+endobj
+
+20 0 obj
+<</Type/XObject
+/Subtype/Form
+/BBox[ 0 -5.1 799.9 595.1 ]
+/Length 85
+/Filter/FlateDecode
+>>
+stream
+x�E�1�0w^�RQ !�U���&���ْ��0��ˋNM�_�7I�A��(��h���f�>2SẩW�����>�@0<
+endstream
+endobj
+
+21 0 obj
+<</CA 0.4
+ /ca 0.4
+>>
+endobj
+
+23 0 obj
+<</Length 24 0 R/Filter/FlateDecode>>
+stream
+x��XMo�6��W��k� l����r(zj�����C�~g�Q+�^3 �W��Gr8C
+ewd�N�ƚ3��&W�+&����_����DF��>OV��IHY탁�m�x�����to�|���Q��c�`��w�{h���]}����0i�P���Lk�m��+��<�/u�a��d����e������<�mI�4�U��?��ie��(���*5;����`@��I3Y�V�A�l&+M�B�����ъ�S/�3if+i�Ө[�<�
+�EZ�
+�]�<=���L[�hD/q��
+�3u.eNp]:��n��*��|4���yhD϶�9І�s�ݻ�yhD�E[��]-ݖ�����8�c�6"�
+�u�"�h�&��H�=�lG@�߭*�H=�.�F�`;�m��R�w����3�Ft���w�
+�S�M@�r���3@#���hCu�n�yrKj��qYS�7T.}j��M�{���-%u��L{���t��C0o�5�?�䞏
+��������������6�o��so]�᪆�˅{����,j~��p5�s�k��I�1���=��� �}e��elՕi�F���-Z���5�}v��M��a��3�g#��+t2���g�W��N�[�( ���j{��&K��5��~0���&�XS,�(�X�6��Iu�,�5^'0�&s�S�Q.��cC�E��&����kԘ+��㒗w"]!/M��R�{ɏ쳬Vg����&�*\*���$qt0@�4��ԭ�=�z�AG��Y�0Q��)d0zǻy]ٍtl<
+g}�@�4.����"�-��+�B��R���R�Q��IH)������em7R�~0��D,�HeN�J��*���&�D�5�JekAw������ȧ&�_"0W*��(��{���IC�%b
+��>�:�Qܥ�)9w�|�h����9�2����{�Ѭ\�}]����.�t��J�QE���X����j/�����c�vE�I����yU�%��&�#�|������������������\+ �ڐ�RH�_P�eT�� �-iD�*d ʨ1rI�Lk�Jey���E�y~�ϣg4ؤ�&�x��Hi�F}��������Hw��3c����X���i�!;v[M��T�^ܹ�Ӝ�q���Ӆ�����v��_�O�~4���,��{��:������{{yF����K�p��Joy��W���{v���c�v�v��uy[
+z������������{�Դ�|�N���Qz��tE��/�]ʍ�[EQy�<� ��o�=��7_����(J����aݫ��_J7j[X�� �Ofy[��|SG�1��������]�r迻���<���˾��Y����쿮��'���W.�%N�ՌӒ�8�03���υX@�7���+
+endstream
+endobj
+
+24 0 obj
+1423
+endobj
+
+27 0 obj
+<</Type/XObject/Subtype/Image/Width 481 /Height 556 /BitsPerComponent 8 /Length 29 0 R
+/Filter/FlateDecode/ColorSpace/DeviceRGB
+/SMask 30 0 R
+>>
+stream
+x�� \T���}�����{O�E@|�l���"�e������
+�E�f�bX&�d.�*��"Ȣ(0��/�>wŜ�/���o�ܙ�������}��{�l��������i��چ�������������������������������������������������������������ѓ�X_WS}���U�H���N�zTx����L?�����>�>�1000�����ee���ަpI*0���r� �?�Ws�F]m-���FuuvV�7k���.�_��RQ?%6}������;w�={�G�UU��7<~�H�TTT_�
+?(`��~F�k<}����D�T��}}��
+E�� "A��Q���w<�:V��� ]H��(���p}�:T4� '��y�w�gH���W���d綟�j��`ń����[D�!E_�X:}��[o���/*++;9M�~�**A�KޥF�/�|_�����>�T�2d��Q�n1���]�=�� �p�R���cbbr���y��q�nnn�e��YgcC=*A��ȝ���=��X�����n.�B�n۵{o���o������Uo�ž��� EW��
+4�X�Qᗚ�}||���
+<x���'RSH��͛��G@�?����}V_WK��l��ɓ&������8�6&皚�{�C�~4k�+������{�NT4� �b���i_ƻ.�M�tٶc���[ZZ�<y�����W���H�]���`�@��P4�o��ҥ>�-�/��������ϗ���[U��!����0�.�p>1�7��{/^L��o;����g�\\���89�9G�2$<|SA�Yh���^�Q}ҿ
+ ���Q8��<�`�q���}�9''����ѣ����/,,t[������*�l{�BǶ�^�u�O����\�~��K/�"�ٌ���FF
+�ݿ̐��?�?�l_�R�g�@~��ټyd��� M&�1���g��FD����;O��f�a߇館�|����?}�����ǰ�1|����۶���y�@��{�&��_�|�����fef�$$D��Ր�xR�رc^y��������&�d��K�S��BC鮊�
+�"M�����}�(i���-Q�ܸQ���g���nٺk����/�w(��575>��Of��ܨ�PW[��o�����|&�0~��W�~�@E3o��ٳ� wp^��i��)ۼ��_�v�� (�w]O���Gx��l{���upp W*v���������^غu"M��<��F�o�}L�����w��Oi鹷n�wti�9�&~?���#!�@��PtU�ekk��fefB�~�6GD�K����ݻ.�^H?��l��ܜlp�˃���
+TUUD*��.KC�G��Ų(�E#���{8j���Lv�9a�Πu�Og]�
+=d�~�3��ūXy��o�@��PtCC�עE��#^~�;xĈT�-�M+����0~�wf89]�U@���?
+6LIIi��16�����%K���Bq--�_�ˢh|�A�p����Sf���_l������){m�����s�j����W�G�j���f��ޝ@E#�k��
+����INQ�?��4{���M��*[y����Ro��5~�:Z%�E�HO(Z��
+�
��FD�ܹ�pcL�E[t>X��#z�H���ml���-����p�gѨhA��S`��&ZM?�����hT4� \����ц�?��6���hT4� �����Fu���AApa,��l^n���
+AApy�Ɔ����o�U��� K�o� ���@J���w��W�T`ܺ�^R\��wa����g1��tR*).z����%��w�����x������)���Gf�[�7��O������_}�U�l�k�ow9�RIO �:���Oű��
+�ǣ��N�
+���Q4��־p�����,������>�$�
+ �:).Ǝ�mHHU���Z�蛂�����*&1m�T�[_W�E/��>�Qb6�+�Sѝ�K46�w�ll }s}B����}S08�ϟ?~�xf
+&((�Y�^y�%%�ݻv���F���_�=z��������l|��ِR[sc��9o��&T5eʔ�KINq����]jj�$�[#����X�njl�l)��*��/_����0��������_VWS�:E��qٲ�Æ
+{��555�����(ĥ3��d���JqQ�@'�
+�mQ��_��3���߯-�7�돀R�a�g��)�6
+=�<i�o��Z�%��Y3g�w�w�a?Fi��SS�~H���=�E�9K"�G0�ZZZt���*ٷ�W�:UTTv���"П��D����G�⎎��������N;���add����&L�?-!|0&N���Ȑ:�uO�M7�,G��wC����� ��ҥ>���ڍ�����fff���%�����ު��,P�"OO'��t�y�(��}���
+j� |�xE���2>��.�B�^���۾��`����
+�'���F�_%��p&+*����o��.��(++<p������G�DZ��t��/��U ����(/�^m����y�9�[��_p�:z�0ԙ������x1=j0Ʊc m���f�kK`��r��4��N��`ءf�c�҄����s�Q'O��]��СCA_,u�(�y8]�H�>�i�l^.�>|8�
+��O�ikk3߬�_��j�SX��<�� �)�F[�(����ԁ�;!Rџ͛G�[���_+����K m����xkd�@mLEW^���/�O������_�'�t�%?|Էo� 6`������������@%��~I��LJ6�(xj�Y
+I��H����*p|e���z��[�@غu.�ݦ�+f'�
+f��,���O\�߿�5��d[�7K\[L����H��II$�"<��M����)���ٶ���/��`��E��p���h��wN|p������|�
+��5g���%��F�,o��Q�DGC�R~�08"�.4����~��'P��b�j�SLE�w��_�0��&F�,��c�^E����w�
+���ɳ���W_�
+T��ܐ���:|���C���s���pXz��[�����y̪h'�
+&t����Y��~�ZW[#�~A���� �`@�Q�o�4o����6`?F������ȴ���t��U�3�~Fc߾_�y���� o(LV��dQ�ȋ�2}$�;�%�VTTHv�m��S6}��ش�b/����{�7���w}:D*�y�>6���M>�57��kVtC}}UE��������`�H}�����o�_�mB��7-�+��Bf89��P�*�#9���Ç�x{khhhii ����d~G���Ond��o�ȶ�-�%6cN&WH<X�Kl���M���}��_�21b��:UU��@8�QE���+�GB����b����֦oVp�Z��/� ��=�7E䛫���=R*���۵S�@_�_I�{05%���B����9�����&���묙3��O?�-������������q��c�䢝�f0�� ϑÇ����L9��D*Z�7Kd[��t�'�ٛ#�����s��.tHl�M��!�-rt�?���Xꄓ;q)�(���+Z��D�,��:�CZ�����!�{�7���EE�ːRѰ���3�=�w�g~Q.[�47'[�6�ۅ0�9u��C'��B��!�
+N&��?��FFF�!��n{~�0�Lt��;o�0����$��#�ɣ#�z%.�v�K���
+wR�`��:���_���]��e�f8F�3�|=_<�L�
+���K���y�ĵ�iӦV��]����ٛ98844�76ԃHAe"oJӄ8EC)�A�g^�W'�����q�1��]Ѳ~$�W�o�6�t�4((�ONd�'�m���k��#�WtKs�Ć]��;������ )�g��${{{�݉�����x�����~�$i
+o�4T���
+op��0����gɒ��p���~A��J\:��Q�EcvR�`������������H��ھ�'8[)))���
+S��7K\[0Q��ӃD�|�4����S@�C��&6m�^�CwR6!N�$�ĉ��>`-H���H2�E�S�L �
+�e���i��,|ٻ'�m���':0�n��§�> ,8a��ӏ
+��W$00��̇��._�eef��'0���3��o�}�����q<P��q��aMMM�m���O�6��� ^}�աC�0������������������������������������������������������������C�!GE�A�!_E?~�C^�������l�Wя=������W�W�>���g������S�wc����Y��c`������
+��=�������V����Z
+�7�|Sz�!cc�M�/��_��=������Jg�o��/����2s�scc���ڣG��<���֯_/�E���d(//�;w�����^zIII��ͭ��rE�����̯�4��4hϞ=4e����S�Hb�=��{�Q�F���&%%%$��/�\��3n(:L\
+�
+�M�jII��o�mee��>�s�����/��P��7v��~���MWW�Ν�����?svvV�Hb�=��w���*8�'O~ >�߆����4�9��.�ܾ����������������Y9��q��aY_�����9a�c��Ǖ�Xs��mnn���go��櫯�2���*/�Wť}�q#��]�LMM�ҥ��_�{�}/>tp������?���I���Pt�vT�#G���a��KkK3m=8x����+�����w&++/7g�h�_~��vbC}����K�����p�47����W���}K�%�셄|C�a�����_�3&�tZY٥���o��֍��"����2>��C�^>|H R ^Y�|SD�T}��_��];w�|u�̙0���pA���㭍�����6K:ll��l,����Ԭ(/'�0�&�|/<<ܿ^�VCC�V{�|���g�W�q[�o�A�)ɣF����th}�СQ?l-*<=��с�%%&�9�5|�p�
+���=�h�����?�����Y{���p����#�VV�!�|C��P��ud���楗^*.*�5�=z[T���10� �-L�4�K����
+)���,E�)"_:�v
+~����~����/���o�#�� �S'O�K�m##��6�w]��x�ǣUѯ����)���M���t��H��y�3fw2.����ن�?�?�l�+ȇ�:�?�]jjj*}0���h��Ɔ��ؕ+�G���7rss�W4|b ��A���A-~��Bx�&v?�骢O���K�M�_������Hq�w:%���KYI��*fU�k"���(6և�Am�-�LEC�?lI����$Z߰>�l�y^*�p�����'8kH��DO(�fk��W��Ofφm��D�ǎ���vRR"���J�
+10d�����lm�a`RX�o�ȗ._�A
+;v�,��3k�yA\:l:99���k?l�ʬ�~M��^��۹�.�����aÆ��~;w����!���ƛo���z�N8z��W_%��u�#1�������<Y[[[�`�%zB��K���S��|���אDss�o���lWU^~��w�DKY!�L?�m;-
+��6{f�M����1c`��L�]�U���G�!)Η��/IN>..�A��օ���)�Ν1�6�5��{aog�`����w���`hG��H?
+GMy]跠h�MZ�_�y(����FE����r��P4�Zx�����Fn����U��#
+?0�%��5A$�Lg�S?�t�>ް����];cΗ��:yr��ϙ3Y"����B�|���+�WbN�M�j����z���r��_�23b�����\�NNzzz��)g�2�+`h8����%6օ����];���'M0�&�|/���,p!�0]WSS{�嗧;:�n��˃�ޱ���橨���IN�:��]Tx��F��U[[K�`�%zB��I�xz.1b|N^z�%�p�//��� �}:픮��_���w�yv�7ڊ���7 ��!e���e�.���G�|SX2���Y .���������Ɛ~��O?���7�߂6I"K��Q�������ڱ���?M��^��h��e���ё���-
+:�4lؘ1faa�@�W��A��sd���[������\����ѧC��10z"zB�p����gA�)
+��@��P4�
+���gA�)
+��@��PtC}F?�MQx70Z���j10000��hΆ|]W[�����!������C^!_E�AV*�.�>ub���!_����x�@NT4� Hor&3}s��J��߿��ɓǏ=z<�{�Ν�����o�T_��Ίشr������%v8��ɕ�._�����Z�}��9�
+� ��ٸa���ӧ�?~����{�:�|���������������Fb�Q��ӊ4h�DK-J<~�x������%����/�~�����BQ�����0�c�,^�ׯ^�����C��[z����Ľ�$6lZ�2`���"c��{j�Az�А���w�����9{g�n�e_}~ �'��������<VUU,�.傥{p�AzaE���+�.�47)D���+�,�^�t���>��C�\�剓�.d���
+�wnɲ��`GGGXX���������eJJ
+$���mܸq��������III$��t&"+�����������ojj�nٲ���CSSs .\(++���WWW�={6���"�oP���ws�d�uO^Ι���(��jio�ϲs����C�����'���?uj�p��f/�C���������������dff�;�i``P\\ۇ>|�ݻwYҙ��������
+�x��3gB=Ϟ=��߿���
+�?^�R������!!!rx/�w0�����3YI G�&;����X_�Ek֬�]��
+��b��/�-K�������}�6�uA���9�!�����\�t��
+��ڔ������nCC���Raa!���Ϗ�WVV6,55��n߾�����=Bd��T�ٜ3���K�inj����3\�E��ϼx1;#3^b������$�
+
+
+��>�
+�MwnjC/��L���P8�����#�ر�$��![uu5ٍ���I��wA�S�ׯ^�ܻ{��.l����~�fk��E����K9ٹ�$̢!3)Ţ蘘�*NNNfI��(F��0M+$����!��hkkk��� �>�Dǧs>�x)'� Yb����I)r]�����uY�"+$:�%r�������F�KpM�����c�K�E%i���,�L��{ U0gvvvFF_vEo߾��ח�BOOO[[ے��7k�,��BT4� ��5EK���3&����/H-8q�ܹ��
+O��$^�8Wx�i�dZ���#44���f�VVV'N��ˮ�U�V�K,w�>t����|�� ��pJ���N3�?}�0ظ�$��Ŝ�����k�.^�r��+,+˻p!��(�� 5.�'���?d� ��gA�J\���V�^�l��ݻC$d[��G�Å қ�x���y$�5�lK\nӁ���gw��ۙV��d�ϩ�?�To;~=��u�(f�>>S����
+2�w�Az��=��;���궟��1�&�k��~w���C��q�C�hA���ݎ ����F�,�R��c�$v8%5A`Օ���9�=06�
+�S�4h�DK��^u%`͢��2������������V����L�4i�֭ܩA�~�=d�vK˴�JԶ0ZhaaQVVVSS#��CE#ңpM����얖u�Zp���,Wm�@E#ңpM��ο1d������Rs�����BJtt������ڈ#�,Y���Hr�����������Ǔ�5k�A�>� #���A��֭�7o����������{yy���jjj«<�=��蠠 ���ŋ.�c,�_����:fmm������7y�duuuggg9��@�Gᠢ�--�+��U����;w&''����<y���6 ��/]����$!!^JIIIJJ�D???{{{0�K�6lؠ��w�ڵ�N������7nTUU-..�t777+++�_PP0}�t����ƒN�bŊq��A��.�c,�9:VTTy,--�U(������ �ᦢ��W]�Y�@YW]����ѣ0/����j��������������Ĵw��Y�~��z����2��$VTT())�IG\:�'22���\Jg�LDv��Booo�^XX�:Dv#""���D�� \���f�E˺�
+-(�贴4MMMr�&�$��Etf��ׯo�4�M�hΕ+W~��'��wǎ��I=FFF�G��r�ȷId��+�D09d+--%�{����V�T4��hYW]���nhh���
+
+
+}�������'�XLXWW'�9*���U[[{]"���������mP�����V�\S��':d]u�d*://�)7�pE�� ��ă
+w��Bh�$
+\�Non���D�����
+7$�c+��P��Gᚢ%>-�+� S�`<uu����������߳��r�0^rr2h���v�Q���� 1;;;88�ܹs��]���߫���w�ų�����*((prrb�.�N�
+M����7ҙ��///��I��� }�)Z�_ʺ�
+-(p-z���ƣG�vpp�����nii
+
+244�Y+����Ðx�����PSSSH400puu%�����駟���@�����:�,�ܹs�@q�L��B���O�:۾���KǤ�� }N)Z���C�UWz`�Az N)ZV��~�??/�� Ho����U,^�*ͪ+�
+2�w�Az�>�hA��.�� �YP�� ��S�NOO���3'V] Z�}��9�
+� ��ᔢ�_�w8 h��+��^��������m�&�}��ݹs窩�ikk�������aoB"r�A���=t�PvK˴����7҂L-GFF�>}�l�3�������ܹ��.*A�އk�?�[Z�UWhA���|��7_|�āR���<y����spM���+�,��u�ZP����.Y�R:::֭[gll������P\\L��]�nݺx�b---SSӤ�$���~[[[Ȭ���|���t�',,���DUU���2%%��gE����;�ƍ�B%s�����ݲe=��߿���WOOz�`����&Z ������Ԝ0a
���������gϞ���A��AE�Y--�+���k�k���/i�����S��$kkk###G����������{�^�
+z>|�ݻw!=666;;�����ٳ�'O !�����������K999���|��Ycaa/Il������40����===mll��7s�L(���3�s8�TUUA����ëP�����ښvA�ME��A�UWhAi
+SJ����i�)S�<x��):???����SP41'�S�N��6n߾
+��B2@%���+V�O�Y.{��Y������)++�ɂ�644())
+����~/������۷ä�� WᦢYfѲ��BJ�h����7o�w�nǎ��1cƐ����ZZZ$���.I�mzу��������D�F�����\8������9��UWW����x8Y2� ���f�-�+��4�&��w�p�w�@����<����={�����=E/\�f�qqq4Q�F��E*�ѣG4��hZ QtMM
+�E[[[�� G���%>�!�+��4�&����貲2������I=��>�J222`�Mo8J�(3�@��B��B.t�Q�җᚢ%>-�+��������?�+--
+�|�2_�������Įׯ_;v,��rGD
+�dgg����@Y�4=Riݾ}���/K垞����%%%<o֬Y�ۅ�h�pM���P�UWhA)������p00�T
+
+
+.\H��T4l9r���������q]T���� ^�����ĉ�:th������R6�j�*�e��{��;�Cw�h�pJ������"�!C�-8�hiX�z�����\�#��B�M���||<�Yu�Af�� Ho��� 2p���A8*A��pJ�ǎ�����UW���f��� �(N)zРA-�:�SxՕ�5�**��;2ӦM۴i�|�D� �)zȐ!얖iՕ�ma������͛��
+6О���*A���5E����[Z�UWh��x���nnn�Z��d��h~���XZ�UWH)��|��ř����v�� �������Ң�� hg\�(+�Z[[Ycdd�����dd�����I����gϞ����~�zz�ҍ��UTT������!������KWW:0o�<�G+��...������yyy�'OVWWwvv�����gA��AE�[Z�UWhA����ի X�A����ڵka�
+&$3^�h�Y������=��t�҆
+����]���iWP�'�;
+L�/]����$!!���<%%%)) ��ܬ��������ӧCٶ�6R�ȑ#������ ���%�
+���]{��pS��竮0�F�u�ZP��ຽ{���cCCCAȰ
+Nvtt$�T4�cUUU������~LLL{�]}||�_]]
+�g�33N������d���BII�L�ooo�N���C��݈�;;;�aD���ME�̢e]u��,xf�UUU:::0���Ԅ��9s���k�AJECW��L!�5������ Ccc#{"L�w��A*���$�d�_ZZJv���'q�,� �*��Z����Ђ�ݽ{���������G�� N�<���O.;�K�hb�:ᮂ]�n�*��E�J��/^�HvA�"G A���-�YW]�A�tD������Nf�������T�LE�e��HE��H.t����]��h�pM����u�Z���WVV^�~���O�:�����ɓ'��LE�����5jT\\�5;;;88�ܹs��+(��ˋl�ۅp��?99�<L���fcc���UPP���ļ]��F��-�e]u����?~<x�<)��iE����������LE�ؽy�fhh���)L�!����ʕ+��+��a�l���B~p��Ç!f�����s�2�CE#Ȁ�S�����uՕ3A�^�S���+��_u���K�Å қ�9E�x��J��
+d���.A�ޤ�)Ad��c!�pT4� gᔢ���%v8��I�UW��z��pN�C� �h8�h�ׅ�Z$��J`�W}}-{Agg�m۶ua��)hggӅ�9N�
+A��5E:���2����獴`dd��ӧ�0D��hGG�����%�.� r�k�?�[Z�UWzp�(P�O�<���Q \S4��4��e]u�d�f�nܸq��������III$=>>���BEE�.\(\�֭[������Ǐ������%nݺu���ZZZ�B///�ߓBJGGǺu댍�������!���iĈ����������"Ն��~��'&&&�bJJ
+�XX�ܹsuuu�l�"�Zq�#2q������P�/_���C�cg-B�W�������c��������ӃA���㢽�NzxxhjjN�0�
eee������gϾs��7A>'�g�����Ђ�600 *;t������������TVV8p@� �XQQ���f͚����½{�^�z�E*�͢�N�
+����FFF�����I@�
+
+
+W�\��:u��SGG���������H:��4
+bY���w�p���ή��?{���ɓCBB���������t ����dffB������
+tg�̙��gϞ����@UU�?~<�
+�JKK���i[��ME��#�+�����~����E�Ʉ�yLI��K�`zL���Gҟ>}
+�&�LE�t��Ӛ�L�r��A����SJ���e�h���;g�"4H_�b{�"G�12�L���r��m���LlkkSVVϓ]8��X
+�`�RSS�.2Kgd��ME�̢e]u�Pttt4}i̘1�S����<0]�x1�3<x P0??,�H:L���;vT����ɲVl��
+��3��� �?T˜���7�}��@��jE��c,((��jii��0�4
+d�<�b��D�f�۷O`p�䐭�������äZ�]F��AE�_��u�ZP@�̻{`���d~��������[+++2��R�"+d*�H�{"���`�}��
+��FEE�]��SE��X�y8 j8;����?ᠠ'���FaQ��G�h
+SѴ�D�555dmmm-r@�sO���u�ZPES�x �3g���!��3fPE������͍;6""bѢE���K�uww�٦N�J/t��X�y8eeeL���vE��#:�h�_�(**⣢�pM����u�ZP��ϟ?��O?UVV655�߿_EE��y������E*������L��422:~�8���4,,���˗���wtt@6����?�~����\���q�֭�\UU�ps"�y8"A����D�ׯ_���HEù��חl�ۅ`ih1;;;##��y���ֶ����Ke�.DE#H����%�u����Ђ
+���A\666 �A�`i
+
+�q�Ɓ�l�E>C�0A�8q"TH�{��ixx8�
+��������ߠB�j~��:---r������χ`NhQd�EV+�p��#GLLLLMMw��%RѫV��v�6�MBCC�-ZYY�8q��9-�ݹ��0�CE#H������?:d]uE�C��k�m@�=�D��rA��S���ի�I���ʕ>�.�3gffy�������O>�o���d���������!ͪ+�
+2�w����---������{�N���h��9E#�pa,A�F�,�R��c�$v8%5A`Օ���9�=06�
+�S�4h�DK��^u%`͢��2����Vjj�\�B���$.ݵn�5E2���2���-L�AE#H����҇�B4����������tvK˺ꊬ��F���\��Y�sm���CK˺�
+-mcc���6bĈ%K�466������cƌ�����gϸq㔕�!����pOZ[[������UTT������!qҤI!!!��̓R�G����%�ťK�������KWWWSS��x<Z����]\\��������yyy�'OVWWwvv����#� }�^S�L&���9�hvK˺�
+-�s��������'O����t������@�����J�ؽ{7(����.ܓ�K����$$$@�)))III��9rdF��/A���ڵ��,�+tss�����ӧO�z���h�б��"�cii �B)p���=:��(��=:�څ��6Yu�yd]uE�Q=z���q��U�'����t0!Yt
+��v횸q�����S�t0���?݅�/���Kg��t�,d���BII �_�Booo�N�W�C��݈�;;;q=G�~�ۣ��s�hYW]���0I���$����@�S�@z���$�͛7A� Oؘ6m������Ǯ]���A%�j �IwMMM����
+'�4{ǎ��![ii)مY:L���A�%
+W�@S4��hYW]!���0q
+
+
+����������;
+N&�jjjd~�NJJ
+7n�����|�E�[�n���⸸8�t�
+�M+$��x�"�EC�E���?���T��/tH|�C�UWH���<��`�IM�$����r���b]]������Ǚ�亄p?��h�����\�@E#H�S��g����u�R
+���~���>����Q40��y��555577����A�gΜ /,,��x����Ir!""��ˋ$w���`�������v�-�B777������'''��BT4�n݁�h�](�+��{���G����E
+�E�9���꧟~"���|���r��}���̾���F����dhh�_P��Ç�eW��
+aO��;w.�;T4�P.ށ�hi��YW]�i4�(\��U�Ұb�������yu�A�=��P4�W�x��4��@6�ܵVAP�� }�^�s�B��+� �t�̢e� "y]�N):==]b��ΜXu%h����d=pAi��hᔢ�_�w8 h��+��^����;� ��{�Pv���C��[Z�UW����c�5�oǫ7ҏ��������얖uՕ.�Iא���<y��J�.r�s�P4��4��e]u��s玻�������yrr���vnn.��3&11�f����|�ؿ�������������>|H2���mܸq���njj����^^^Þchh)���***�m�
�lGGǺu댍��Z���bZgXX�ܹsuuuG�eccC�E��0Kq&��211QUU���LII�����������iiiAϛ��h�[�l�����Ԝ0a
���������gϞ
+#&�� ����sQ4��Ҳ��B���H���3f���+:666;;�����ٳ�'O !���C�
+>��ݻ�?Ϣ�������8�aee�Hz@@�ԩS�lmmmdd�#�xҲ�N�'�������HZZx����,ř������A)�yNNNff&$zzz��� �Ǜ9s&4���3z,p2����<�Ǐ�W�Tii���5=dX��������W]��@YW]!�����{%%%d��0�eW4�S�N���l�֠o�%�V��A��h¤��4eʔ)$u�X����d���dۻ��۷oC�33�;�n�nCC���Raa!i��Ϗ�é��G�d�&�|hp��|�*�e-�+�X4��ᅮ]ؐ8�.((�jii��0�%@k���4?'�������a��x�b�K?x���Ul��ɼ��k�.+++�3�K��R�}�DzMF\"L����G�ݱcI�C���j��j��G�~K�ɹ)��Z�����R,�
;v,S��d�R��qxx8��ٳg��M2��bbbh~P4�P,p��������o-,,���s���{�%Pgkk���ʥK�@�#G�����?7���E?z�0M�%����!��hkkk���_�M�EK|�C�UWH)��������貲2��`�,Q�3f��DHNgΜ!W!���@����n�:OOOz!��8��9}�43�;9X��EEE|T4�z���E����u�Z����T� �va``����N����f�hp���:�����a�-Q�^^^�Dss�[�Ο?��O?UVV655�߿����eddt��q�diiiXX��˗����>�N��S���/�Cn��!OvvvFF��v���-��x<ެY���Q��@��.z��|�)Z�_ʺ�
+-�uuu��� W6�Cw`�9s�������9r�^��mSSSGG�]�vIT4L�'N�6644�������.T���@2?}�4<<�� �-\����U�N���0�"4Q\�U�VA
+$OGGGhh(��XYY�8q��9��ݹ��0�CE#y]X0�����u�q�PE#2�������pJ�Ұz�2�W]Y��G\=�h����R��U���||<�Yu�Afq���d�"G9KYa7�s�F�"�<K_m7���t��ݬ�;�FE#��� 9K_swz�)E;vLb�SRV] ^���ѝA@��s~����t�S�4h�DK��^u%`͢����6mڦM��A��G�,e���?�=d�vK˴�JԶ��N�ذa�4?$���y���׃ .���):==��Ҳ��"������ZF�.�e9�dԞ�s;����CK˺�
+-8iҤ���ٳg���_����u͚5FFFjjj|�AF�W�A�VVV�HKKˈ#���`{Ϟ=�ƍSVV�WWW�*�:���UTT��������_����̛7j=ztll,�D�'�500��[� ���
+u�X8�hvK˺�
+-����=q�l��������ۃ/]��a�==�k�x<��(�"G����S@»w�������$�ҥKMLL���SRR����Y=r�Hb`���vmm-l��I;�K����l����ME.�#�+� ��LJl��Ԩ���W�������N��]��$~� l��A�Ĝ���jH?��E����t����,=AE#������o��G�ME�̢e]u�CR�A��+��_�^�������
+�<����͛ ^��zxx�ڵ�����ҠTcc�@YIwMMM���Yz��F���ɳ�-v��8�h�kѲ��B�!�n�J��]����r�
+�������---$,���8n�8p8Lﻠhځ�NE��ű�� R��~�����-�YW]���$�(<(� gg�5kָ��y{{�
+:��Ǐ'�wU&E��ꉈ�7��g)����qM����u�ZP��~~~�F�IVTTdgg�;w���c�333mmm�0I9s�Lxxxaa!�Nj���iviii��ۅ�a�$99911��ϊ�zyy��Q4KO<<<>�������ׯ���"�@A!r�����5EK��YW]�y�����P�$Lb
+\]]�\�B^�����*$B�RTT��䤣�r���ڷoIoii
+
+244�J,,,>��gE���B�";@-�'yyy�Ǐ��;FQ�g�[�~+�S�4�'�+r%A8�b�,e���-
++VxK�ꊟ��\F A�X9K��4����U,^�*ͪ+�
+2�e��\�ݐKC}N��X��������X� �._VHO�*A��e9����쏜������%v8��I�UW��z��pN^� �����쒜����_�w8 h��+��^���2���vnn�LEvvv111�����۶m�B�̂+�:��O8�g){%'���C��[Z�UW���Q\=�Ttdd��ӧ��zwpttܾ�;!܃�r��c�k�?�[Z�UW���MEw��F87'��wO~pM���+�,��u�Z�Ν;���������T�������������Z�`ASS�?f̘��DZ�����;%9555Ǎ���B20M��ѱn�:ccc555���b�fbb���jiiIʊ��!23Sѡ��cǎ�q��A��7B���MMM���Xz���E�TCCC��
+��}���]�|VK˺�
+-���1y�䲲���
+�7����===mll�W<o�̙�gϞ�Y���������~��r�
+��v
+�:u*�Y[[9bĈ?����������������srr233��-23U��5k���*<D������СCÇ�{�.K�p�p��Y��n*��|���
+�u�R���MYY����삦`��&����$���AII����Ϫ�/����O�>=$$�ϰ+L���W�^�y�L�r���۷oC:(W��D*Z\fh=::zŊ�Ǐ�~�<0zt~ �����p��Y�N�n*�e-�+�������ӧOUTT@\ mp�Çi�0qݷo�U��K�����}��aW0��B*�7on� R��2C���Ʀ�������S�q����"�W|T4��?y���f�-�+�Y|�\� ���QE?z�SE�;��h---)M�w�@���><..N����n)����������FN�4��+\S��':d]u��"4�����kט:��BGQQl���{��@KK��B�F��;��?S�r�C83�oFF�2�}@�y�.Q��^3f�@E#
+��Y���)Z�sѲ��B������>~��ɓ'�bz���ֶ�����͚5��.a>����L.|�0**
+�G��4-�522:~�88���4,,������wA�����
+��K�](������c����%�"��+///����[�n���A�����,M��
+�-�e]u��i$(�������_~���o�Н�����3g�C�#G�0�E���ϟ?_CCc�ر`<��iקO�Bp#���p�
��qGGGhh(xҭ��N�8�g}�N83S��i
+ҫU�V�K$]�������l�ĉ***��ҫ�E?K칼ᔢ��?:d]uE�#� ��~&�V�8�hiX�z�����\�#��BD�u?�"}Nэ�
+>>Ҭ�� �|�A�n�e9H?����髠�e�B�貜�q��F�G���Y�}W<�R��c�$v8%5A`Օ���9�=06�t�s7ᔢ
+$�ҫ=�W] X�������I��n������iӦmڴ�ך��^d �~�>\S��!C�--Ӫ+Q��h�^Vӆ
+��Q�������,�����tvK˺�
+-؛jjnn�@wƁ�Džp�<��)���7�,��u�Z���w�yxxhjj�=:66AV4OSS����#GH�����3g�3&>>��imm]�f�������|���A��={�������:��뽼��fhzy<� ��#F�. p��uȠ��}������JMM����h��]�dIcc#$B333Rp�ΝÆ
+KLL�햖h��ϊ���/^���h� ?��ਨ������a9R(���bmm������7y�duuugg皚��5�A?�*��Ҳ��B�%F��}����bp���vmm-����I�8p�?��ȇ�>|8y)!!�a������v�ҥ
+6���]�v��5�8q���TLE���YYYA�����ӧCζ�6�%"�={��. /����.??�:99�����������'O����
+�īW����A����k�mh�O��T�+V�7n�@��hǖ.]jbb#5���$%%I<R8�AKKKxJ���I:����r����?_u������Ђ` ooo�}��M�!q������+��駟._���_�h-��G�I`����J\Mx���cbbH~�N
+�TVV���
+%%%:�����E���K(��cd777,�8z�(�c�6�o��)����
+؆�8::�㊌���BN:˕�����p�?���H����:Dv#""�Ԏ�}P�=7�2��u�Z�������G�� ^KK4E}��4��ի?�����%��?�y3�O���yȅL>w����%ʩS�@zpB!�0#�EC�����:::$��UUU��`���9s�|��������F�}��ڐ��E>(鏔L�KKK�.�|��E;��A?�T4��hYW]�n������;���5�����f�����X�M,TWW'�1���T��.Q�)�����0I�A"�hii�<�w�?~����a��&L8y>�Auuu��v��
+I\��2)�VBM.��w*�y;鋠�{�)Z����B��pժU...�Ӟ�d�?���m��� ?�<(�1q�&?��� ����w�#//�)C8�PE������;����zxx@�~I����0��7(�?.f~��I�#EE�3��=
+�-�hYW]�Y|XPP�S��6K�����$���;�PTT��y[
+f�P�>w�p��a~���En�1o���RDD���I���r��ĉ`Huu�@���ϛ��QE���p,0��}�����ɓ���K���o$]��bv��.�7�'''�GG�9RTt�o�\S��?��u�Z�}�
+�Μ9������~���@���͛��������.��aKE�;w.�Q4�]��/�D�Cw�`f2/ݻw/�x���QQQLE�'�����yS��(y���\��bv���%((����c>,呢����ށS�����d]uE�A;��~��f"�
+����Ƽ͇
+��kpJ�Ұb�������yI�&u[�l������EÜ9)) :y��٩S�
+L�����s/����U,^�*ͪ+�
+2K�PKKk�ȑ�.�(:99���\EEe����9N��~�}���Q�g��c!"�.��D�G�[�϶��6�i��q�麝i�;N���Z�cJ����Q�2@���Y�]��x���Vtzz��g�9)��J�Z����hA?+Pe���J�/����iE��.d�p@�"�UW����k{b|���sss{�f�:�g�5E:���2�����G���q�v�W]dU4{m�g@9s�)��niYW]�8�h����h~�iK˺�
+-��~[[[555}}��˗?|�������ihh)w��qww���077ONN�����۲eY�e .\(++���WWW�={6�Y������0UUUKK˔�H�����������ւ���Hfi�C���%8�h>��e]u������ή��?{���ɓCBBH������+**�%�)U���x������s���3g����)--���W33���4���̄D���Ʀ�����A��ʳgϤoQ$�u��׆~��T4���+0��#�+"��ԩS0�%�L����)++�]0'̇�����Hzee%�OA�.wpp����۷���gf"iNd���AII���P��E��ʫ�.��ܓpS�,�hYW]�A��O---r!BWW��3�������� �O�>UQQ��ޱcI�B
+���d7>>f�µ1�֡����}��I��H.U9ֆ~�*T4��hYW]!�<x����{��XW[[��$�hp2��@PSS�����!�ę555d�imm-\E?z�0-Ms�"�7�F9s�)Z����BJ���1eM=c��UUUd�ڵk��8�Yr������D�}b�\�(**��9D�pE#��-�hYW]!�����ꉉ��}����c�RE{yy���777���ö����Ǐ�<y���ΔI����}}}�K�v!XT��������]hkk[RR���f͚ż]���:Y�Ho�5EK��BYW]��9bbbbjj���k�.�h�`O�8QEE�<&2E������/̇�q�@m�V���䥎����P###�N[YY�8q�ݻG�sqqa>t���:V�H/�)EK�tȺ���AP�H��)EK���ˤ_ue�J���?Mш"�s�nll���f����;\��(E#
+��)A�B�Q����gn�@E+z���*�u�z߭M����D^���k(\��V�@8��cǎI�pJj���+���sr3z`l�
+.K�o���
+$�ҫ=�W] X����L��2mڴM�6ɱB���e����
+\S��!C�--Ӫ+Q�º6,�hD"\�**���5E����[Z�UW�6,�hD"\�**���5E�;�Ɛ�Ҳ��B�ٳgܸq���#F�puu%����666jjj��dɒ��F��Tt}}����������y�x<I�4iRHH�@�ѣG���
+����588���XEE���<>>�������hhhX[[ggg���M�<Y]]��ٹ��F���A�,UTt����f������R��� �ݻw���$}�Ν������'O����
+ �LE���YYYeddL�>D�����iԑ#GBz{�����kkkz�t�R���h"%%%))Ib�з��"�cii �B)p������,UTt�����?_u&�yd]u��"���k�X���ѣ0�%�T�W�^��7h��WTT())���Ө����8̊SSS�VWWC��gf"{����$�#Æ
+;t�ٍ�����c�<��pY���~7�2��u�R��͛`]===�]�v544����4MMM����I����N/�0+ޱcG{�Q###i���)��A.+}�`r�VZZJva��j��&қpY���~�~-Z�UWhA�tRRR``�q�,,,`~���ohh(����
+��ZZZ$���u+ME���1��E�
+��/^�HvA��g �%һpY���~�-�YW]����NEE����yyyL[�VX����!p]�]��B���HY!*��pY���~�-�hYW]!�Μ9^XX��A�����Puu�@���ϛ�� +����MVVVAA�����HEGDDxyy�Dr��T������(e��h��e����
+\S�Ŀ.�u�R���d���r���ڷoIw�����ѣ���D*f����s�2���h___x�$����t{��a)+DEs.K�o�����?:d]u��A���REE�8�hiX��[�UW����;\B�TQ���>�h�b�bWiV]�l�Y�Å .K�o�s�F��e����
+�0�t!
+�ᅱ���F�.�e�����Rtzz��g�9)��J�Z����h�.K�_����_�w8 h��+��^���=2@�8;;o۶���Ed��5E:���2�����=5p�DFF�>}�G�@d �5E���--�+��'O�t�A�.�5E�;�H�XZ�UWh���x}}���Ď��u�����988�t;;�����s����5��Ɔ�E����d��/t@��7.X�^555MJJ"�n�ruu���077?~����vnn��q w/&&��ʊfx������ɓ'��$����DUU���2%%�߿����hiiA?���hϷl���ᡩ�9a.�����۫��Ϟ=�Ν;"�Az*��jiYW]!����AVqqq������S���kkk###G������������t�HZZx��R������C��~��]����8�Ǜ5kt���;�*�<�;���9�sNOO��9����� �,bh5"��`�j4��*
+A���
+"����+.6q}. ���d�Ec�Q��{�SyK�W䁅�>�O�}w�z�����*Zm��v\8���X���$\,�
^M}�l�24��������7o�5h!Z2y�d4��˗��{��-))A�#F�S����wuu
+��D"�3����^�����R����\0$�������00�7n�����ڭ�t�R���^��m/l�m+)m�Y�ᛚ����y)��q�F�>}T��y���wŊl{�̙!!!"�9���C�Y��܌�B�`����hXNNky`` ������Ǐ�ݘ�\_4UDDg#OE�̢����r�x�:�$y���>z��l�)%����ڭ;�J�o���9`�)4�������x��C����eeeA���Eb��f�ǎ3xEii���'N���ۘ9C�Ȉi������FG?~,�i��={X�cccY$*B���J�����I��Q �k�����EK]u�g��Ξ=��7�899����3k=x�@�X+>>��666¥�úVVVp&�WR�0����I�?��S�+��H�浵�R<xpzz:����.�a�E���#T4o9StUUۅ�]]]�B�o2�{�o
+rS��7:����Z�O�;w��HJJRM��[�?�iժU������tP��7:�6��~��W~~~�ƍ۴i����/��ٍ^5�ё���F��0r�*)�MAn���^��UWX��W�nٲ������~�������������@Y����n�jS�hL8�
+ֿ��*�M�%kz\��y���Y�_�Д8&&& ��a�ai�K�Pddd��?.�T<//�=�>.$Ew9K��� 7Ek�߅RW]a�JJJ %���-11��?�<22:�mll�Ν���ئN�lj�4��#uQ�ݻwaiGGG\�����U����N��5���ˑ�m��������6��������O��Kw����H�A�R%E�)�JѺ�������~��� �
+�ȋ/���>�y�":���J�~S���uaŊ�t_u�/�w�:�̙��MMM7oޜ4i�p>��i�n�jee��쏐r�*)�M��)���v�"?]V]A2$��pu�B���lhh8`�___IShssskkk�4���J�~S�v�&� g����ha,� �B�&��-�R��cǴ68�x�Ҫ+���_�脱!�x��Jѽz��j���TW] Z9���@/bffv��ql�5j�ƍZ�O�0���K�AJ�Mѽ{����UW6m��: R�f��`OOϨ�(�5AhBn�>s挸����"u@$)���A�K�&B��M�m���P��RW]������܌���駟��ձ�����3g���:����BE�Z�jƌ����!!!��G|hh�)S�z�j~���Ϗ�ESkkk�466�\�r����������Ps�iP����������Y-555������h@QQ�5z{{�I���
+���ŋ�G�666���BG:x!Wd�hqKK]u�gܶm[jj�͛7O�8�����a<��uYYY�C�\ѐ0�C�]�����ʕ+,�LOOoiw��^��,:00���f�q�ƚ5k,--��˕��x�b;;���D4,---99�s��qqqA������5677�����Ф��\�qvvƧ�W;99��� OE��ZuTJ#u���>z�(���`�^�:u��Êl͑�vΞ��I���?2"~ѢE<^��1��Vg�3&>>^،��J\�ga$k�&l����o߾�f��.\���z�b��ׯ;v����}���Ef�RW]��a(��Ԕ��'O��Y���&�+Z���_|1u�T/�*kR4������ի�}A��o�h��4;66�U�"ar$���g�;w�ĤZ�Q&��"CE�ߋ���
+�U[[kaa�577C�fff-튆��m����VE#jR43��۷E���U3E_�~��B�NNN"u�������!u����ŋB�a.���*������<]nthR4�ׯ_϶�M�����>K��Y�$ֆ��h��Q�M�Zߋ���
+��۷�W�^upp`�3gΜ1cF}}}CC���7|���pݺu�����"����5kVqqqEEEK���w�y����ЬB�
+
+�|�rK�}c��=.D��&555))���q����ٳg���'M�$|\H�&�����J]u�gܽ{����!C<==7m��
+{C�VVV...[�l�t>m�4��L�ҋ(s�#F`�^�kjjB ����*#��ǧ���(�e�s�NHH���
+����F��۷�KwӧO�tG�&������萺�J'�AD!+E��ҥu_u%0�_��Eѕt;E.X�˪+H���.� ����)� ��@cA�R4A�l���Ϝ9���gϝPZu%�˅W�]���A�nd�h���2_uՕ�P����N�����^w+�0v�������
+�x�z�-qKKZu%f����.�M=�)~���UW:iܞ={�e�UtgT� Mu�� �k������H�XZ�+<cBB��������A��Ν�"[[[#""���
+
+���������À�KKK33�ٳg��׳��O�>���bÆ
+Ȼj�*[[[###OO�+W����w�^www�D�K�,y����2�߿���kbb2|����T�h���G��ul��� �ƍ,X�!���ONNV=RR�u�������9�ڵk���S�L�������"CE��ZZ�+,WCCDq��A8���x߾},~ٲe�N����9�|ff&"�͛����M�<�x��e[�F��L�&((h���HV]]=p����Me8p@�P �ҥK�G�c
+P*�§�Saa�ĉ�f�h�Uk꣦v��$��Akk�ݻw���������駟���ԱE��j��� ͈#�)r��绺��DOC��n{��
+��F�+,�}15q�ݻ�H8D���ܯ_?���������7''��]#K�.e��!/�3�7n���j�T��ɓ�U�ma�����l����Ӈ+Zk�j��)��M��� d�ϟ?���n�t`ly����? �vcbb0�WF�� �S�"�h����\/^�������1�|��"!C����g�Fb*�gϞ�v�@,��K�DTT��2Y����=Kiaa��efeeAY���l�300���Z��>jJ�c�4uibcc��СC�}�a�:��@��*++�nBB&�m�#�����EK]u�g��Ξ=��7�899���`~.��'O���F�32����J�S[&liii ��w=�knn�>� E���?��Ȉ+Zk�"}TM�c�D-|\E���jǖ)�����BѮ����%������������_�7��s�؏�ӧO?e?���v�c<77���ay����
+W[fAA�PMqqqj}Ȫ.))a�����Z��jb���;m:(���-)� 8rS��������r]�zu˖-������{���d���f��`�B�Pddd��?�rww���+**�������^
+<xpJJ
+����GDDܺuKm�1�dEEŰa���������<}��ٳg~~~0���5U���j��$�C�I�111"u[R4Ap�h���P�+,��������斘���[[[���a0L�\\\����ڧ���0ooo�aB/=�<22vB^��s�666j*�ȑ#vvv���'Nܾ}�&P���5�k�.�KwZ���GM�ԱIj��I�˗/�G�plI�����u�RW]���At�R�.�X�|��"�ADW��]WW�h��.�� �w�� ��n�h� ��-�E![H�A�EV�>v���OTZu%8t���06A�Y)�W�^Z-�"x��+A+�t�A�6��{�[ZҪ+�6G�����QQQ�A� �NCn�>s挸�����3v@�
+
+
+��A��)�����XZ�+,����S���ֈ���߷o/�����ɓ�5jThh�)S�z�j솅�͘1c���C�9p��j��������`��� ����������055E���"��XoooWWW�Bq���ѣG{yyUUU���Iě�-ni�����J�hEë���-�Ů��UF�?G�ܹ��ܼ��Z�I�/���KLL�y�fZZZrr2"�̙��₌�����>�innf�������\�qvvƧ�W;99���Iě�<��j�HR)��UWxF��h�"��e˖�]�������TVVb�?#�����뗚��v����+p�
,����C�����;V�#�'!OE�̢����3�ha2�FGGs���S�NA�uuuf���*�#Y~~>��,�j�NJ ��-~/Z�+<�����655�q#�Wڅ�<(lO�d��~�:ۅ����4(� z"rS��7:����3N�0a���|w�ȑ̙����옢ٍ�����ҍR4A:"7Ek}/Z�+<���߬Y����+**�
8q�ĺv�����
+�����H��͆�SSS���Z�����={6;;{ҤI�Dž�h� tDn��������3^�xqĈP1{���裏,,,\\\v��-�������s�NHH���
+��p��Çy��m�����Ӆ/ݑ� ��Y)Z���!uՕN3� �.BV�օ�K��J`��~�� �+�v�.**\��G�UW���;\A]I�S4ADρ�"��-�h� �"+E�9sFk�Ϟ;���Jȗ�^����!�x��J���78(d��+���55�zss�.襨N*� ������[o�[ZҪ+1[�JR4A�An����--u��B�&B>�M�m�w�E,-u��q����FFF�
+Z�d��ǏY����}}}MLL����ʍ������d``��s��Um�����x���f�֭��{�.�ǎ>u�T;;;dIKKci>|`iiiff6{�l����6���uժU���h����+WT�4������ٙU���jÆ
+~~~���#G��v�ZAA�������)S�G��AzE��n���UWxF�Q�P���\�ti���aaa,�.�SXX8q�D�Fmhh���������}����DR��?t萅�Emmmii)�ۧ,=d8`����<l�:u
+nGlϛ7���
+�-**�<y2��|�RSÂ��Ə�������Ѹ���(5xٲe�m>�|ff��ZX����q*))A�#F�S����wuu�%�S����^���9�R�����5�i$6�����뗝���a�>}����+L�j9Mh-��bv�)(f��}��
+w?��c���K�����훓���a��"����nj7n����4���C�Y��֪��@�kzq��q��.�82A��h�Y��UWxFhsZ��g��bB�Ȭ�,H�����y���������///�E,X�)�G�T["�@����diiigg'�QBz|�믿��OP8��7O&�{��Q�0���QQQJ�U*Pm$���*66�E��HVYY�v0�V� �-~/Z�+,T7FFF�6�!g�����
+e?�FFF̨��ٳg���'''��|
+��T���?��Onڴ����W��'Ox<��j�X��hE������g�L�UUUl�vuu�� }!7Ek}�C�+,WAA��Eqqq̨�~II �///ޗ`@}��s焑(�6l�������L�k2����%�?����-a� rss�6���HJJ�4hm�nt�>}Z)R)� �����h����\���1�XEETɌ��~�����ӧϞ=����W�nٲ������~�����111(�K�,���hmm�{������n���C������mܸ"e��7o���{^^^QQч~��ijXpp0�LII�f���#""nݺ%lp۫Dž�4�(���M���� B�M�Z�w��UWx�#G�������O�8q���ܨ�-�jmm���k�.��$ _��p �Y��˗�](>411a�lk�hff�����ș3g"TͲ4�$��Ἵ���p����s2t�P���f�ܹ���J
+��!<<&G���tM���� B�JѺ��������P�ABd�h]X��3�W]��E��M�&�����j-��e�$Cb�Wg@�&B�N�A=Z� B��� � d��}��1�
+N;����Jp��2:al� ^3�Rt�^��ZzE�<�UW�V�/,,�ˀ���?~\/EA�B��{�[ZҪ+�6GHR4A�An�>s挸����"u@H�A��)�����XZ�+<c\\���������?��Ӻ�:_UU����СC<�]TTdii�m�6�fÆ
+666�5jTHH��ɓmmm�%!!�����������055�1cJ`�;w�ttt�ׯ����a����+W�<x0���{�ed����4�������`���"M��U�W����FG\]]
+�ŋG�mll���>J;-��2T�������3·���7o�<q℻�{PP��ְ�eeeyzzl
+�0����ʕ+��ѣGYzȰ������NLL�GH��9s游�@������>�577��;v��999�L�B=<<��ƍk֬�堼�\���/���ChsZZZrr��ZX����P~nn.�8;;�S䂫���xg ��^�S�m�V]��Q)��UW���żeee�ߞ:u��C}ly���5��cǎ�?>�
+w?��#���K������
+���J�Ŝ��А��1f̘��xa���Jd�����ja�Z�p!�g��СClw�����q B��S�"�h������0&ɦ��lQ̐y��IX�����ijj����D[[[����+V��:u*
+G��� �866N�0�d??��۷����#�Nu��իW��Z��HVkUtt4o6����]���Z� @�������EK]u��!���p諹�633kiW4���0���������������y�pݺu|w�ҥ"�ni�~rrrpp������~�ķo�9.P�ƍY$S4o3�zE�"B��M�Z�萺�
+�u��E��0�d�f�rssY|^^���:88�Z����3a�q�p���{
+����otp�oApP �����nb�߿_丰4J� R)� �H�h��EK]u����ۇ��W�½L�-�7�g̘Q__������
+�1~�駣G�nll������ٰaK0sע��o����А~Μ9nnngϞ��Ξ4i{�w�ܹ��Ȝ�$����`������w�y����ЬB�
+
+�|�rK�}cV{\��@���Ԥ�$M���� �
+En��������3����vȐ!����6m⊆��h+++�-[�����C�͖�Nj����d>m�4$��Y��d�:������p�7D
+�C�(Ϟ=,qSS
+����T�����ǧ���(���s�NHH�H�>|XS--�h�xC���u�RW]��� eHѩ�JѺ�t�B�W] ���p��� ��B�����
+,��e�$Cb�W)� �.��)� ��@cA�R4A�l���Ϝ9���gϝPZu%�˅W�]���A�nd�h���2_uՕ�P���j������tL���y����TA=�)�������UWb���: ��}��i�4�h� :��
+?�[Z�+RD��|���ٳ����A�M�m�w�E,-u��q����FFF�
+Z�d��ǏY����}}}MLL���������x����SKK�'N��\�����V����E���W�\a��4��;v�
+���LMMG�y�ڵ��cc�)S� �x�}�ڵ�g�F���}rr�x��w�����f����fh�ʏ���>}����ɇ�oggghh��윖��ȇ`����Ф��z^�.}$B��&ji�����P(555�.]=ztXX��4�]N�8�QR4�e���ݤ��w�yvj��~���Ə�UWWGGG8���E)����/kkk���dy#F��<y�������]]]yS5u�egF=t�P�����'��0'�6}�ᇼ����\��#�l�2�S�N�
+�633�h���
+A���|�R�>!D��n{��P������ɓ'1��Fsss�~����Y<�ҧO՛���X��mϜ93$$�ms�bѕ���,�ƍۿ�0�H]�W`` �/..f�����@�"]`�1\�#�S�雚����I,��q�k�HP�ҥK�
+�w�����H�G\�nmm-�����X ����Ef�RW]��FL\�뛭r�����ʂCؔ<����@�o'N�x����
+��0�c�\�l-*%����iDꂾbccY<�@���J����� �HX���8�ڡC��{����x�%��͢E���aQ�1A�H�o�h��4{Ϟ=��� !2T���h����\�=��222r��`$ss�v_���8���HU���������aBwww����������.�+>>�E2}UUU�]����U�J������*�e���R�E?y�����A(!7Ek}�C�+,WAA�P0-��a^RR��������_}����~�oڴ�Gr��_�III��nt��K}i�B�EkJ��F�H�*��Wz��� �ё���c �PBn���^��UWX.���ؘ����bذa�o���>>>O�>}��$�0��}@@����F�4������G�����i����K����n�RJ��.]�%���I����Dž�� ,_8,�q!,��
+�"##���q!~h���g��Dž�h������J]u�g<r䈝�����ĉ�o��}�A����nnn�v��o�-_�VV�ݩS�
+c��}��ydd$�����̝;���Q)���tԗ�.�U�H��w���&&&���2L�&��� ,_8,������:һ�����#�����;ooo�Kw�h�������萺ꊾ�ŋp��Ç�U�L`�[�� ���R�.�X�|��"��f}[�n���Rz:�M��933�����͛�&MR�i@�|�v����]��O�UW���2J������j�uG
+�������|}}i
+M���)� ��@cA�R4A�l����;���i��V] ]p�BF'�
+A�kFV��ի�VK�����J������3B]�������_w+��rSt��--iՕM�#:m����%%�� �PBn�>s挸����ҙ��3H�A��)�����XZ�+<ccc�ʕ+ldd��{�ed���5������ܹsg���Ԕ�5*,,lƌH9dȐ ��Ϗ�Okkk�6��Ź���d���O���X|UU�̙3MLL��J�����,--�m���lذ��Ʀ���U2y�d[[[dIHH`ijjj���-,,LMM�0���w�����د_?����#2J Mhh(j100>|8�HS-h��ի����WWW�Bq���ѣG{yy��j�#A� CE�[Z�+<c``����t�ƍ5k�@����������=zt������ҷ���ʊ�
+477���n�E÷���7o�<q℻�{PP��ְ����Y4�E3
+�\��U,=��߿ff&��`{Μ9�РI�����>�577��;v��999�L���R�/^lgg�*�洴���dM��A����H���O��vrr�%��S�m�V]��M)��UWX.��
+
+��cƌ����Ƅ ���K��v���H˖-��U2��x��żeee�:�:u��C}l!���5��cǎ�?>ϋ���}����%�EB�}���5��yj%���SYY���0RS-�U.d�l]�C�����ףZDŽ M�S�"�h����\(PuI�<�G�6m�d�<c���$�F��������g�D
+�SSSSVjA�ɓ'a���F���� 䊆![[[�T
+���+VL�:��L~�`�q��$���o���������V�@����A��,??����&�jDŽ ]�����EK]u��b��}��j������ô�
+�s�xzi�ƍ|�f��5)n�l��á���fH��̬�]Ѩ��+`qEcSYss��ׯ�^�n�]�t���[ڵ�������~����E�a��m���� ��!7Ek}�C�+,���~�ezyy�\�rΜ9��HzM�ƔU8��\�xQ(7L8��٭���\����ot@��V����E�\�z���{����otp�oApP ����">¾+�ZH��y�M�Zߋ���
+���;�@�ЋB�
+
+�|�2��A(SVHLkzM����5kVqq1{�����oi7����}��}��UT���~�yƌ���
+
+
+��ސsয়~:z����Fecc�a��U0�-**���o
+
+
+��qqqss;{�lvv��I��s��EFF��� q\\��?h�op˫Dž8H���������R4At&rS���](u�������aTL���}||JKK�G�(t�H�њ^��1[1bL�^�@J�f��ݶ��C����ܴiW4ꅢ���\\\�l��^��MLL����ѣ����
+D��M��P=���}��_��>}:{��H�t4 ��ٳG�_�߹s'$$W��c>���R4At&�R�.�C�+�0f�
+��Ao<�R�.,]�P�UW��;\�R4A�4�����
+,��e�$Cb���M=�n�h� ��-�E![H�A�EV�>s���=wBiՕ�/^�vY�CC���.opP�|�UW�C�kj�;e��1v�����.��5VJ��En�~뭷�--iՕ��kyƉ'�����
+)� ��An����--u��QD�Ϟ=�4h�N�R;H�L������H�XZ�+,���?�ۛ666m�Ƌ���>}���ņ
+������ndd4hР%K�<~��elmmE2;;;CCCgg紴����2<<|ذa?���R;����cbb2|��ss�. ^mEH����28p����`�������T�4�V����E����W�\ai�:���G>���Du�gϮ��� �������ȑ#�]�VPP���all<eʔ����r��ad��6QKK]u�gT�EC>0�&1*����K�.�=:,,�%[�l���éS������333��\�r%�#���� ���¢��?�>du�������5<lC�VVV�W��6|7�9��J���Ə��������liiQ� o��͛7���
+����'OFޗ/_�B���qY)))A�#F�S����wuu�DD'!OE��ZuE���UWxFUE/]�T혜<y�Klܻwj�͔ o\\�CY|�)��۷/�l�ƍ00��ڊ�:r�6��`{���^^^"�b�����2Ǎ��~MTۣ���~�����vkkk�x>ud�����ϥ�]&�Aj� }!OE�̢����3�*Z��������n�XXX�Hl�¼���������jG5++�{���Ō�Ϣ�V`B�o�ܹ������1y�5k֚5kD*eQ)��A�M��Fb��g�VHll,��ɑ�����&$$�b���A�*Z�^��UWxFUE�[��=������N�Rss�6QEϝ;���T�HM��T@Q����������9�?��ҥKVVV�F��JY<x����E���#T4/�)�����BѮ��j�O��������!u���>Ф肂�����9�m�ӧO+�������\799Y���nth�@}�2�|�ho������\�j+e-LJJRm�ZE������ð���m�h�x��M�Zߋ���
+�����644ܽ{�������***�
+�����i�B�`/Z�&o0.l�?.�u�\(R�����1�vbb"�=<<���*
+<xpJJ
+Z�����:(l��͛7���=//�=�>.$E�kDn��������3b����{��;�$�ȑ#0����ĉ�o������±...���Jy:Կ�UL}��Dž�611qtt�?af6/�TQ[�'����Q__�\������ϟGFF:-D��Ν�nV���G�����/ݑ� �5"+E��7:�����!�Nyy9���"A�&d�h]X��3�W]��E�.���933�����͛�&M�:u��j Aݗn�躺�E��tYuɐX�å;
+�������p�����4�&�t;EA�ha,� �B�&��-�R��cǴ68�x�Ҫ+���_�脱!�x��Jѽz��j���TW] Z9���@<�Q�6n����+&L���^w+��;rSt��--iՕM�#xFY)z͚5��d ��#7E�9sF��RW]��^�
+
+
+]YAorSt[��1���UWxF(zժU3f�011qppHHH`�;w�ttt�ׯ���}||TkT����q�ʕ�622z��222x-���S�L0`��o�����˹s�J8x�`��ot KXX�O�r��_QQ�Z;t�P�233;~��.�Õ��ɉ'������8r�.�E��~[[[��Ç�Q������G!���hRQQo��ի����HWWW�Bq���ѣG{yyUUU�=�A�-ni������ �ì]�����ʕ+���pю;����O��Ӕ 00���f�q�ƚ5k,--���Y-PYzz:�Q>d���Ų=z
+�0[Tmee�$����WWWc2;v,�gggO�4 �PU������pdff�4��������Y�x�b;;���ě7o���%''#rΜ9�֠�h��ᅬ777��\�qvvƧ�W���#BG��W��`���F�+<#|2{��������@����Z�&����nj3&>>�ղh�"��l�/��x���-[Ƴ��PqYYY߾}�:y����.�3g��������iӖ,Y"��SYY��0-��&55���a����/\��ų�:�vׯ_�닦���y*Zd-u��>�D��_L�:��� �����o������JթM�橮u�������(�}ӦM�&ϘBs�)):::�g���OHH8y�$Ĉ�Y$f��(@�{����
+\#4��ȑ#��s�EF�z��=u�[BQ<����X���"$���g��9�I���#B2T���h�����j��..��vttd˶*ը��Y���۪�Sz(YZZ��Z>�;h� 8��+)Z��>x�&EWWW羂=�T�����w�y����P����H_��y˙��_��v�h��p� :����������jotK�r�3?%%ES�<�!��~�4��xyy�\�rΜ9��@����F�H��/_���=f̘u��iM�`�R|v��W�t��M������h������Dž�&����;w.222''��.b?�ׯ_���
+M 1M�K�,�444����-�� �������ЇZ�"x\����B�R�����l�1���my����JMMMJJji\���ٳgكK��BR4At*rS����!u��> �6m{�i��s�n����eϞ=,q@@ҋ$hjjBi�)�imm���SZZڢNј�B�H��Z��h��k���1��
+��<^��ɓ�&�mi30$$�����c>��>��/�M�>]��)� :Y)Z��p'uՕN��@^^Ȯ:�+!Cv���y�"�����ua�҅�������J0gNNN���ҥK�Ǐ·��\6l4h�ҳ?� ��N�EE����
+�!�~��+IMM>|���A���g͚%i
+mfffee�o߾�kA]@�S4ADρ�"��-�h� �"+E�9sFk�Ϟ;���Jȗ�^����!�x��J���78(d��+���55�����6o����#"-177�p�B�B�̑���z�-qKKZu%f�Z�1::����z����t�Mo�a_��f-ni����k��={��r:{L�&�7��ŋϟ?omm�=�>y��1x��������{w��m�������5�nk�#-bi�����B1�;vÆ
+~~~���#G��v�ZAA�������)S�u�,""b����ƍsttd��ӧOFF�1nfff999�~��a@@���%bfϞ]__�Z��u������><55��5%%Ek]Za�W�Zekkkdd���y����D����������9--M�#��A��)r���=z��A���5�ih�������]}�ꇪʊ.St�������3*)���z�%%%���1b��ɓϟ?������ƓASLwUUU�orb����Z�z5��=��ͱQ���b���P ��|�R��O��n���]aa�ĉ�I$kjj�Z��B4~�x䪮����8p`KK��x.[�����ԩS555���L��2nA�y*��ժ+�R�����J�d������|�ݘ�L8y��K��`�#G�`�����>��(%c����_�~
+��%����۷/��*��[²dgg�x(-av�K�Bp�겲2^/~�߿_8����C�Y)�]ƍ }!OE�̢����3*):66�m�HPMee%�MHH�y2���;a�y������d�q�5k֚5k�)$�r?~��cv�g��rxK���`���V���s�h�t)��T�DTT�p0U۬�#��A�B��}{�ޮ�抾UT���-~/Z�+<�������6SMUUۅj�]58x���������?����t钕��9�̆a��f�#�+t��!0�������ҥ֞h:�m�����q#B_�=k�����~��.�u�k돧M�bEk}�C�+<�/W4�`�:��
+6`w�������#� �?�_�`�rssU�Q�GQRR��������t)���HJJ9�,���{:v�M]�P�<��OLMM�ϟgbb2m�Ԛ��]�h��EK]u�g��vvv�$&��NLLĶ���ty���yyyEEE~���)�ZE___��O�����A�܍�u�RHpp0��)))�l~~~DDĭ[�������q!,�4
+���:�KGH��(����3f@�ӦM�����{�Z�w��UWxF�(��ŋ�SQ__��+W��b���U������Iј�®���nnn�v���,^�.�<�<22r�С�*���̝;�����}N�&��������09Ҹ�������R4At���w�o�77��u��B]�F��UW�?dA]����Ѕ+>�}Օ/�X���"��JV}�5~�jUtEY)R�A�hӢE~����dH���"��J֮Yu��I��NJ<��rP4AD��\晨�uWrs����ZEWUV�?�����HIcAt%��O�L�����0�����̩H�_ES�@��})�
+(P�@�
+(P�@�
+(P�@�
+(P�@�
+(P�@�
+��p��������6����::�=H=�=6���+O����+9�;��G}���C���vl�˾t#L���DZdž�sw�)����kWc�l.-)nmm}I菧O�bls/ga��@tS$�z� ܕ���wl+/+}ݝ~c)++ٵc���J:��c�
+=��S���6&�o�U�5�.F����D�F���cC<�����F}�ս :
+�pyi1��.DZdž�yw�)�3��!E����V��f@�~3 E� �D�)u='2$**J5~Ĉ�W��Z��~#�p�:6����B�~�'p�?����'L�Ы���666���/[[[�r$QZZ:s�������կ~կ_�?��ϕ��(G����o�INN�ZZ�ݽ��ǣ�_}��0RGE��� !E��HB��@�V��8q�7�\����������v��ѕ��;�{��A<z��իWSSS?�����k�1~�����3F�igg7`�a�.����B��%&����'+�U�Ƈ�4h����x���ҥK��������ϟg � �<y���fee����k�o��o�F�jjjb��ݻ��������7��
+,��? rݺu�����G�����OHH�N������#R
+#���5U'Ͼ�l{ɒ%�����`��!,^�&1$)��>���_��_�����?�C�P�x� �����m߾����Y��?��O8�=6h5���P{u��JBV�F�;ܹs'v�ϟ�aDO���O�����dc�/���mݺs�)S�XXX`fu�ĉ��lL�>��sV,>���ڵkH�\Ϟ=�oL���X�cǎ����}���Hu������������j���_��p����r�g��&I:�⊖��3������{>>>~~~<^��er쪫�q�ٶm��ׯ_�����q�A_�?�Q� �� ��m��L��% ����+<<�����W��y�&Ofoo����7�Eb������lw�ڵC�mm?
+�Azz:����@��Νö������Y��vī�`�Q~�vASu"�@/֯_��r���*8Cti���I��b����{����ٳg�`zo�A�29vh��"�\R�/1������P{%}[%!Et����...���O�>�P�R�믿nm��DFF��F��]���������>����0&&���������������c[�:�ȑ�T�H3��&200�����]�$�8jRt�|�L�e��w�^�Ak���<v[�A/>��������DZdž.V��@�A��m�D�)�ɓ'��6���,�.++���w�� ����^5�����uk��?T"YAAۍ�݊o.6X���F�_�����ب�(Ǥ�
��������nO��:X];w�P�HSu"�@/&O������11[�E���|�c�x�]�J��>����^�o�00����4hJ�2<v�������>�l���)~444H=�=6h5��A�dP=�jOՃ(��*)t�����}������wg͚ek;���
+�&v�ޥ���75ۮ��h��
+��u�?,���#%%%���}��)����|��d��bD�777GG�{��
+#q�5U'��G���7����w��p������$�(�g��>�)�u��o�ʺ�Bbb"r��� Mi[�Ǯ��i�M�z{l�j݃��Ax�Oc��(��*)t��?~�K��KL�6��^�x_������_���_����s��~�������-K�Y߸q��n�K�m�s
+��q_g7������G7F�7fAǎ��j�N._����~7b���/]�x�������Hu��y/���;�G�fU��!_��$tW�ҁ�.��}�v(���Iiii�jU�Ҡ ��v�233�ÿAKn�*��_7�@~�5�DZ��&�=�����tu��J
+]��G����9nڴ���ҤI�ZZ�W�X��<������Wii >�@}����(X���|����ۮ�����^�K�*���x��\��W�B���Gj�N)\�vu��)8H֧O�ٳg��5U�)^��
+�JKKk���_-�IR���]̘1}��R�?����~[iЄ�r;v�^�1ⷿ�-��۶�w�8�ؠ�$����Ax՞����VI�����C����IAwEӁ�s E� ���؇�miV
+��A9j�SPtW��!��C�Rt����\�:E?x���D���EӁ�q E� ����~z��
+�+���)Z$������O��P褠���@�9�����S��8V__w�N��[��.��!��q챡��]sJ������z~C}��7���sGey)�nt<�=6���kN \
+���n�|�ꕺښ��Z
+�
+O�j\�߮�d�ޮ��M����cC�:����@�Y;��c���Z
+�
+��;�e]<�CE����z� ������?TV����S�c�(+�]�����z� L�
+(��� � � ��+j�j
+endstream
+endobj
+
+29 0 obj
+41283
+endobj
+
+30 0 obj
+<</Type/XObject/Subtype/Image/Width 481 /Height 556 /BitsPerComponent 8 /Length 31 0 R
+/Filter/FlateDecode/ColorSpace/DeviceGray
+/Decode [ 1 0 ]
+>>
+stream
+x���1 �Om
+���
+endstream
+endobj
+
+31 0 obj
+282
+endobj
+
+28 0 obj
+<</Type/XObject/Subtype/Image/Width 434 /Height 487 /BitsPerComponent 8 /ColorSpace/DeviceRGB/Filter/DCTDecode/Length 25703 /SMask 32 0 R >>
+stream
+����JFIF��C
+
+
+
+
+��C
+
+����"�� �����ƀ�QUPUAUTPUAUTPUAUTPUAUTPUAUTPUAUT�2D�r�N�|�y�1�-ܷS��6�O�9�e8ɏ�}�}���qt� :?�7>W���������ݙ�����`��1l�fh�Ez�ƞ�����0��c@[�n�E�<���no��JO̭��~�����|xt~<���<���{��GkG^�'��
+��.9{`<W�OD�\v���Xy#��>]{�����1�4���tX��F��Иls��g��#��E�3��p$�fΌh�#`Z�%��<!cͩ�e,%�[b!���.��;�����1�4���o�ޛY���o�,rn�9���8�'{kك�vq�nw!�.���E����!{h�0��p���"4��8vGi&�����0������;�=7ч4�냗�v����1�4���tX#�#�a�n庝��c@[�n�E�8�n�Ϟ�ih�|����o�}���چ�|�D�u���%|�y�1�-ܷS��K���|�c\ݷ���U���=���
+�t�?�� �6-3��}�<ӥ�>��hu@!chw-���}\��F��c�{�ޗ�zi^@�ǜKn-�:T����0ƀ�r�N�^�gy{b;����+�e��pM���Q�v�=����\�$�@��|�5
�a�=�#�3,��s�����1�4���tX#�#�a�n庝��c@[�n�E�>B<���[��`���1�4���tX#�#�a�n庝��c@[�`��+gj�ij�ij�ij�ij�ij�ij�6��Cgj�ij�ij�ij�ij�ij�ij�ij�ij�ij�ij�F��F��F��F��F�3D/ʵo�����J��%;/�2��v1�ukx�<�C)p[������l�F��U��ɲ��V���[Ý���)ȳ�9O�Up[���_�δc`gԈ����`�#T�~���km�ˏ��*�/k��[͗�u�����~�A � 5\����4�E�7��L�B�Кrvgͮ�����W��Wr���%�W���u+:�عy��E �f�^+�u�p��.5�=��7ߍ{6���]��!��b�C�|� �w��/�t����(:�fXj�6A���r��,k�8�>�A����d��c���as?cİLj���P�䳆�zhk�B������|���x���YgRq쓬4�C|y�p:��tz��;��� �r�Re�xR�e�|#��2эm&`e��!�2������g#�@�C�vk�5��{�yg}kd�#�l=Pq;ݘq݇��'؇�����{X�݄�1he�[e�[e�r��[e�[e�Z��Ԭ>�=�n>&���s���>#���îY噦�*T�,�^³��|6��C����w�6{*� �ps� �ǹ��mO�0�^��vr�$��rF2L��&5 vx��b���1�q�%��
��14 P0@6!135"$p&���ɫܼ�B�P��B�!j�Z�-B�P��B�!j�Z�-B�P��B�!j�Z�-B�P��B�!j�Z�-B�P��B�!j�Z�-B�P��B�!j�Z�-B
+��
+s��C���?�d8
+s�i�ϯ�g�׳���>�S2���
+ψN\�g4%��T�~�w3&6a+#&232b�L�]`��f+�!��k����5s8s���2CђЗ��>"�X$[�4�%dJP����
+����z���:сi���������,�fBD�~3��!�ӱ�>"���XNFL�VDL�������b���)�,�}�y�;�C���?�ۗqU��}��w6£~^�ǝr��|����ϻ���4�d�I�c�ɹk�|;��!��k���}���_@@����"8Ǿ��_MD/���4#>2��}�Z���B>d%l�A ��B���ܠo|����&!�7(��(e�/me[vǛ�P'nP7K�\�@SSR_'���j$h܉��dg�B|q�E5��A��MU�5֥!��e Ҥ�[*�)�\�җR�l���(3/�eo,���
+e�DZّZ�P��ʧJ�>W�u�_�~���kz�q�;��@�27���E�5H� �cF*��$yv��7|�GU�ZݔG+Pn��j(��[N�ߋz �V:F"�b�[)Y{�πK�&��;K�%09��Z�v�lY��Z����q��Qg�d��K�L{��x5���\�q��x5���\�q��x5���\�������/ޘE���ͲHg��x5��%鯈O5%�O���)�[���[�I̍heP�?"C���?�
+��|S��
+��:�ٹ��&)�[��G�D0�i�e�T�Nf��m�U��!��k��]շ6���X��Af�eюC�S���z`q^� �)�@Y�m:i����2'���ɐ�����m��]��l��9�0�kxX��]��&C���?�d8
+s��$[��IO��X['O0��3ğ+�; �d�?dÏ����䬆AY#�>^)?�!��k����mc��̺@�Ę���\FY����P��#ls [��V���Q1٩�
+�r_+��b�hFĊ�=?�?Y0
+������`⦳�ˍW�aqˣ̋�6*/��1�dD�Pp!n8M!C���?�d8
+s��C���?�d8
+s��C���?�d8
+s��C���?�d8
+s��C���?�d8
+s��C���?�d8
+s��C���?�d82��Hu�:�j
+�Z��AV��PU�*�j
+�Z��AV��ZC�1��Z��AV��PU�*�j
+�Z��AV��PU�*�j
+�Z��AV��PU�5V��Hu�:�i��ZC�!�H7����2��Tu���kU�2�j����]����k���^'U����aR��y�z�V�
+��j쌭lK�QǢ�0��{��A���|n���`z+X���aj��v�G�;�sn��8�$���cd21y�78�#%*��/��� �w�G�$k!vU)�����["�zڛ��]t]t]tCz]��a![aG�K�),�X$d�ҒV�;�����X��s��d��H6L��CH��Yl�@M�Q�\X=t]t]tU��?���]���H?+�2�<61{(x����ڱH$��r���c7��KϘL��[V�r��9>��z��4�c��#l|�Z��{@�6,(�5`�b��� lơ�N@�>�����犂��۷�ߪ�^��O�8ݮS�E٢��vh�4]�.�f��E٢��vh�4V�oRq�n�f��E٢��vh�4]�.�f��E٢��vh�4]�.�f��E٢��vh�n�+�S���V�>&F�V�Tu�:�j��GCk�T쌵GN��_����22qQnY+���-a֨�XuSb�)ߏ��Ng1��A�Qָ�Xu�:��ް�2�Lo�:-�A��X������J���6�dq�9�T�if�.d�'�zJ<��$G�oR�VJ*,�A8�ɓ�fdȋ{� �ݻ���}
+����,�ѐ$��x�7F8�hᘠ�94�\���"���c��
+����E�ծ�J��#��6�L�+&Ţn�h�`[���b�7H�c�8D9���d�nT♑�\~��{�I����Y��j�~�K4%�`l`��V-�;Hdt�r��9'�&�`�!�@�>V=e�A�-��k�Z�G� �f��$_�`�r�@�9�1����xx`� (#�b�1
+�����[��ۣ��Z�]k�u��ֺ�Z�]k�uk���i}uֺ�Z�]k�u��ֺ�Z�]k�u��ֺ�Z�]X���<��7�oCnQ��Ӯ��~�kw8�����ļM���'�
+/y."�e�k�l�=�G3uAdiIB�#(,n`���_�w�LZ����^����_Ҍ�k��3dXM�|0'c�|�Bw��Yt`w��:���lfں<[��=�����k�v���mԾ�e� �l��&ޱ惔G���\�q���#tv˝�8h�� =�9kp���ݘ�ml���X�T8G^~
+ہ�,���#�LXx�m��h#z�d�3�#H�!2&G.���̔��pe���A�`�rߕ��2�(u��Z���{ޭ/�}u���]o���[�����}X����u��}u���]o���[�����}4��� �q����tCl)��}�?�(�'�I�����ȃ/8���5}�ʼhK�����/�F��U#�@�d%�,��HHI�R%�]�
+������^�i2/z�8�#]yխ��b^u$o�]i��_�5_C�����X���K"1!$��z?�H`�OA�o@��ǎ+�W�A_��K�JD���ی���[k%o�]HnO�:۶��Z�-u���]e���Yk���Zi�o}R�]e���Yk���Z�-u���]e����z��6 !01Qq2@A�3B`PSab��������?�_G��R^r�x����2<�|<�H�Hiv�sp�5�0�E%kQ����D�2�s����"c�GQ4���]}�Q;vV;o��bf3�w
+7)U59�;��4�{r���S��{B����:���Օu3�u�H}����ʗ�l4��y�%<�g�l�b��/�/����O�?y宥 U"G���{m�-�3S���M*�k3dFt���ir���Kl�-��V��r����S,Ȭ9.���M���ق9R�;�P��A�F��܌��:r� �en�f���}Դ>"�b�>ݍ�hmd��q̔�QV� �h��F���ܐ5�B��8}C��* !012@Qq#AP`Ra���?�^��%f���B�`��P�jX��KkWj��3K!�&����hT�к*5QV��3|r�8�j�Y##�WZ��W���@�|��Uo0���PU_�s�U$мbp���V�u�lc���E+�н���`�U�"2�$�9Z��3�B���F���`І1�Pxr����`��}�U&��2>�r�.�mJ&�HQTrV*r(�|��R
+ 3!"1� AQs�����#24Paq��0@BRr������$5t�����CSbcp�%���?���m
+J*���5�O_�1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��z1��zr��a%T�=��|����)�M][��5���S<�����k�N��������ࣲ<��(�?�}�:��JT��:Q���P�JQ�ߑKH�RH�9���ӬK���`!��4�XJ��2�$�JiP�ѕg�u�_lZ���_lH���y�[��UI�V�g�WV��M}i�*�m9��]|B��<�>�-��Z�*���4�I�nMmPk�9�F%S�X�ph����Z�|�����������C�Sʉ>H|���k�&��Q� ��R��&�J��������&���|��Ӿ�ɡ���ʩNl�|�{J��-,�+JH�)R"f��g�ؿ�Y��#�<%��vR�T������r�
+��Qt�Y��ȸ��w1�O�=9�k�&3���F�~Q��(�������L�j�ɯ�;�>�i�:C�)H���!o/'LЦq0�rs��D��%P�E%����8.��L)Eh�5%����ݗ��1բ!�J�c��DFO��������սo�_Zw�a�g;c�?�����/�<���v�=N�!*�ַJ����T��tvG�T��tvG�T��tvBZa�2�u!��
+��&���|������P��v�)`�6c��>1q~����b֪������̀��W���Ϸ�%3
+)O��@,x��5|�.�T]
+Ѡמ�y�)Yp|�)I�q����&Y2����c�i��*5��@���S�[s�0ڗ�*�����/:ߖ�n�aR��as)�K��{�J*m��L���E�6�V[x��fҵ�K��-
+J�j�*��4�l��J�m�̧�e.����e��U�ڝ�qS�8�Èbe��Ѣ��}�^ �����r�iZz�za��ԫ!�!�3Z�S���*rfbE���ٜ�f�A��M�bi�^m��/GMa5��0��0ߖ�])��/�̲�#[��)#���3>%[+)e�upTV��E�M��ZT�-�y�qRp(��-M�����Y�ol!���%�_��\ *�B��a�\��%^���4̾k^5���y��e3�]M��K`p�&y5uo[��֘ �7z��gN���'�rc&d� �VU���������U� ���*�<.0�d��c2��n�3�!�+��f$]�\�[���MidZ_����y2�q�(K��)�kz�ҟ�?k�e��n�
+#2B��&��"]2�m��>�J�E3�s�G��P^Au�����͛�T��2=�����!y�ͮ
+yt��E��ו�L�r<U�~O���fP�'r"U�P��J�n��Dg���+qr�)J<&��?%t���P&z�!iB�J��݅�d��PN"ksX7�$�i�m|bBMl���(:�4o�����J�nM彑�q&��W[�����2]˶��P�:+$������m�Z!�eH��u�w�"��A�벳S��}Ц�d����+�k@88�M�Ff�e����t�$ZX�BG~ѹ/���2�i3+tT@>JBSS�⌑�$��hXyn3`$P ��C�6�d\����9BRa����!��U�k>��O%�������nd4J
+WT9y�Y�D��X\̛mK��ZQ34.f��1���M���z�p8���Qϫ�bW&�"���()[��b�
+�5�xc"�������
+����N��5Y�}���;�j�}�u���F�K<y�Kf^�\H8�RS�4۲:�Ti��뫗XJ*I�~�X�uw�5�7e�W��8�q2iḁĬ�2�V�4U���FaX�i�I)2뉙b���Z6E���2۲R�!ƥ3��U�]�����쌷e�ɖ\I`2fVJ��)�<e�I�L��.P�e6�j��2qB�R�ejFQ�g�(���F�|#')j�a�T���CM�F�Z��
+Z�ݾvu�A
+i�<@Q�R���*�nE��ִ)��`�
+,`�ɡ_e������.�7�i� �Oա��8�[�����jз��C�,k��T"IH}9X9@ސN����x&y5uo[��֟IL�j�ɯ�>����սo�_Z}%3ɫ�z�&���Jg�WV��M}i���&���|��Ӿ��rZt�ÊiE(E*
+>�y��6��y��6��y��6��KM�}����t"�����սo�_Zw�fY��%Jԑy�Es�jNb�VR�t ���0�C�˨��?�2?�6 ���~��@u>I����M][��5��}�R�RڦR=~6�f������D�����J�D뉏o�����>p����$P�<]���'1O-��ԑ� �:�!~O��D�&���|��Ӿ�D2�� "u�����
+-�MR�.oMʹ���+�TFG����9v��W�-�.ӕ���[�&����M][��5��}�'���L��8�JUh�W�ǟ�m+��|�"ӣR��r�̧"����)]Ȑ�p���iE:��<�I�����m�p�*g�WV��M}i���&���|�����%7�oO]R����r�-H;8Ӓ�x�صP�������\N�����ZZR�ST�Tg�C�u���Y�a�-���K"�?q_nh��H:bd���ز�t�����z���7$�h�T����"�Q5��f0�JMJ�,�a)�5l���Ĭ�i[jyi�iMu�%Y���[T�,$Q��Ԏ*��I�������
+f�|��g�X�e�_�ri��[�i"�d}��Re�8�S`%j�sֵ���Y�M][��5��$�����n7��J~17�]ϓ%�m*?����mG��X('�8�P���r����l͡i)��(��f���N�G�2�>�)O�VaHgr�7�u�)��X�h�W��#"����\��Lļ�jG�Q�ꫜ�qpFO�R�$n��w�W��;
+V�Í������W9*�'�[T���L�Ի
+JF�O��i��?��������F
+�Fߪב�Z��č��Z�_�K���ft8�*i�%��-�vůݳ�!�*�y[�?�Ѵ/C��'T
+�P�K��\eM>�@!E&���jZ7�����- �fY��rwv�4�* Z}_e"'�������E�A�K4��x�e�1s�f/�>���Q9�Jf�xx!���K%��2����,��L,)�Էh�6�Q��?�zKs:��ëK�RKj�i@k�(�FAR���mE�ZU��E���4dŶ�e��U)��9�CІe-�x��������yŮ�E���սo�_Z}%3ɫ�z�&���Jg�WV��M}i���&���|����)�M][��5���S<�����k�O��y5uo[��֟IL�j�ɯ�>����սo�_Z}%3ɫ�z�&���Jg�WV��M}i���&���|����)�M][��5���S<������}�X�k`F[0Z���Ȍ�D`��#��-l��kdF["0Z���Ȍ�D`��#��-l��k`F["0Z���Ȍ�D`��#��-l��kdF["0Z���Ȍ�D`��#��-l��kdF["0Z���Ȍ�D`��#��
+l��k`F[0������`5�#��
+l�k`F[~���g��o`F{0Z������`5�#��-l�k`F[0������!HBP�i"�4�8HXJE��{0�����4�u P���BYl�XH��1�����`7�#��%�INc�3F[<ݭ���l�$f���a�ӭk�m�5ˣ�u%%)�� �f�Ȍ�`7�#��
+��o`@HHR {Go�e�������2 ɒN��AeO�!�6�?^ҩETV2�),Ԝ��
+�TV�d?^���}�q��J�kz�Y� :��2ʗ0��Dڭ ��xi�
+��q&�2ybiԶ%r�
+�4I9����ܭH��4�EnY4Q�sp�X��&U3��o
+4������%���8�
+��B��QC��CH�*����e��#4�H՚��>��L��4���6�)<J��'Xfg'K�J��(��J�9�{sĴ�3!����+�������O��ePxe��܌�䛁�Օ�h)I��(��C��}
+SiIB�@��Ҍ���'�Bf��n�v�(���3�TeE.t�RNb�ZKi���� ��Lʮ�%�g]m*��P�
+���ˏ��nQ8��,"��i�W��� ���3.$.LI(6�����XvlOitL-�K����*��9�i�i����gMX��*�i�s(�\�Zu�g����E?�e2C%�9Vm�:+��U~��S��"�vЃ������#(4��һ��m
+I)�⬃�l���H��q���m+Sj֒F��y5u��,}��L-��JĤ��ˆ�ݺR��\�o^�ϓ�O�%X\�w'J�f^��䂪��/�2��2��e��M�6s*���
+4��7GE�K�埳n��ܓ�G/)��h�MUeU�X��ji;�aw�0��mY��U�F�܋I�Tݰ�Q�19y5>�iO��ZQ5������L��-�����T�N
+����M�_tP��X���3BUh�B�R��Q�x���{�̢a�9����uJx�A�kN�>��8UU�aV�O�7X*�Ke)�j*���7[�吕nE8hr����&�AQ3.ޮ����HzaR�.�U/�6�Vj�0��S�zm9.�Y�f��������n]
+��P�v=Z�OUao�55,��q��.Ԯ����50�w�ӌ.�lҺ����e�U$�.]T?��8��˝M��P�#����>���e% u�+dҠ�!L�73$㔼��]8�%*�)U������/��w:=����=���G�1���F;���s���t{#Ώdc���w:=���G�1���F;��ڗNG��J�w:=���G�1���F;���s���t{#Ώdc���w:=���G�1���F;���s���t{#Ώdc���w:=���G�1���F;���s����3�P|�+8�B�y4�ET����Wd�H�)U>�����`7�#��-l�o`F[R�I>�ֆԅ���nՋB�+ZS�
+��o`B�%
+���)�O��P|%��w�
+��j� �̤�YS���g�M"���[0Z������D��win�5w�a�{-^��㉻ԓZuja�4�]HZwJ���4�0��ޥP�"���[v����84?���`��#��-l��e,����$k�0Z������[i�T��X41���J�i�%KK`��IF�m!)R ���ߠ����Le_��ꌓjA̚�[u�o��K �Mu��!��3.�.LI(6�����X��m��k'=�ٺN���RO�3/�ę&ҋ6�3
+pip�Mjj{u�x)ť7K�j��c�2d��2��K
+�57�x��M̲�Ŧ^R�D����S:��4<9�nY�ܭ���_DIIO�eRJ��!HQ8�T�e�aHs�@�hJu ������<�?iĸ㓉��r��)M>��pC����-�ղZ.�1
+�}��#��?0�=�S��/^y��t��?����+���NQ1�B2���6��q(J
+�j�T-g>Ȗ�����C� D�B
+��jj~�%S���f�e�_���8x|�~�KAKXO�qeJ��s-Q�0���Havw8~U)��Q���7?������c/'�n��z�H���3K�c(L�[F�I��?i%Z��R�C��J��6�Ek�����?4'B��]r�:��}]\q�����~e�3t��J�M���i�
+K��-�DZ�8��q�r�}���VP��R38��I���q�5��+t�q�)
+Ѩ)F����O*=;2��ɼRC��?ձ�4e���q��U�8��+=�i��$�C9Ml�
+�*�u
+B�j
+@Q�~.8��I���zjn]n!K�f��O=\P�������)��7J���(QF����!R�%�֍`�E���r�U�ʅ����Zz�M��le;B*4Bsf�B^v���(>IJ�Z�!�����e%���4=Y��c)��~�hRN��R�!����C��[,�p�U�[EK@X���eC�a����\j�[�B���@B�-�.����J�ۨ�ĸ\���b�&�Hw>�
+~`��ɭm�ja�?0�;�S��.L5WR(Bԅӊ�5��%�2�Դ|�j <:���{K%m����$VS�i6��R�'G����i���8�Z�*���ڼ�&���CCr��]��JR[n�M%�mT&�����M�ZHBZ��}�zE���R-#d���R���CVBsf�Q���Q76��qd�5i�b��,�f�mdq$${!L4���E'=m�~ؽ�b����J�8�S�{!�l�OV�m���������JB����ؒh#t��m�ETK��S�f��!�h�OV�o`�^�i�B]a�!I�E�S�I4y�t���[U��������WZ~���#Ώdb���Wz=���G�1]��F+���w����{#ޏdb���Wz=���G�1]��@%K]>�;<���4�+���w����{#ޏdb���Wz=���G�1]��F+���w����{#ޏdb���Wz=���G�1]��F+���w����{#ޏdb���jTx��-^H���,}�z���9ҡQ�jqť��*�(��iIRWg����O�&�3fVe��RM?�
+�̽�嗤ӧM�'3�6�x��9U*iR� ��wEݽY�!�%�8����P���ZNy'F��\"'Z��"��%�j�H9��i�'Rg.ԣ�@a)O�!UUEs֙��*�u�fD����B���ʶ��q3�#ޚ�0���I�,)�r
+�]v�p�(p��X��pM� �n��373K����VWg:�)6ܔ���$V��ΕY�@�u<5���fZ�rtCvE��-j��4͟�'P/�-ܮh�xA:cCGV��ÁN>�8[st���͡����8��
+]3�5u�SA��Z��c]y�R��a2���lX>�jԌ��E�I��(m�%�q���T�T�a�]i��u�E��O!]��.�"��]kk�^J�aS#Sűo�ۗiwԼ��m�Ux�HZB��B��í5%.�N�8�4��ㅾe�/-6�@�S�^([ ��K�
+&ʽ�R�!���6�#��J4H�b�r�s�2��\��3��:ECn:�����0�����B��z��.�i[j����8�[�m��:�\
+������\HH�p���ť��Ti��/u��ӊ��6��@*Es�uu\��R�9�:����r�76����Z� �ZIQH���U�hd�<\�A�m��#_�Qg9!'�H�I��e��K�yݭd���w'��%�V�M?�+1��Ck|�J!tRƒ�Sd�ji�Ҡx��&Z�s*������6��.��h�tU�"X0�uIa!�^+����t}���U9ajjNY���)��SSS����&g�e%�*,wB�[�U������5�s)m�2c+e����\�+ES6n؟\��3L��L�W}�M�g�7� SA�ۙ�[����*N}��=Q*�U�%\��Mm۶��~�e�$��K5*Îj%7���C�
+uf��2��n�,��Je�U3@�WY1TKK���;\��G3jM~�N�TJM+)3��[J�ٙ��i^�8aAISw�.mw,�%*)Z(�=z����^y'\U���kl-*֝l�bU�Ծ���e�[+R�T��J�/A�\�y����E�6�WJ�?�f��;��n�#�f��;��n�#�f��;��n�#�f��;��n�#�f��;�am��ҴW�WL8��I���3wi��7v�ޏ3wi��7v�ޏ3wi��7v�ޏ3wi��7v�ޏ3wi�9�H4):Ǡf96��j:�-��"�M
+�u�|D!IZV���iԡ���M�V+��t�nM���?�s�w����L>�e���X�l��~��P�\�n��lj̢?��w��>�����TO���e���WC�֊�i2P�"W�)<��Ve�R����(�P|b^C&*i��ہ�4��AJ�h�gȨ�&P�&R����Y�����ۮ��S7�im6�p$P�5ϛ�>N�\ۗ�qOK��k**�����!s��͜���[TK}�?������|-���E�
+[��q_XTC�O&���*�J���c$�)JnVvyA�
+�H%ť>�����MIL߰ߑ��˧s{�2�i�V��>KM�2���}�w�s�ȟ@�ɣ�P��8��Υ�Qnqu!R�QO��Ф��]!E8��{!�0ݥ��-
+(Z}�ᤆ������+ϯH��D���/n�tm��,)�<j�
+K�J����j!���I����t�
+L%�۲����/�����~s��IpkkB (d�d�L)����J֕C��~���Z�x�ZD����QFTAH�)�����z��J�%*4��q��;�c�w��|�����
+�0�L`7����o��1��;�`:�Jl�������8�J��R���
+�0�L`7����o��1��;�c�w��|�����
+�����M=5��*!1AQa�q���0P�� @ѱp��?!�ɳM25�h��"D�$H�"D�$H�"D�$H�"D�$H�"D�$H�"D�$H�&������=������_MK�-�|&y��>A���6��~I���ŀ�}c �Z�B��z�%R��U,�����g���E�t���}59 ȶ��h�̬TX]��������.�>���~���A����f�'&��4��<}j
+����+uu��v��]u���;�/���8�r
+i�3efd��\�.�>bj�Sxɘ{(�<���A�@�*8m걘���V�;Z���B�B���/�_�;�/��e>lv���j�E�P���Tϛ��f.\ؒ�y�I�ٯ��2g�j}�5Si|�)s��2A�X��_�����ԁ�9��ƨ�"�E��f�!,ȕ��h1��.����G�ԋ�-�0k$�YT�Q一"�`�M��6) �
+F�H=��f)�((u��E�&ف�s�K��65��&Zo!z!?Aڋ
+���g��n�Mb*�(��P�ey��j��Œ�R^�.�kw�f��η{%Q"Pu���eø������o]`��]�q]B0� m�J��Ȣ�L�m����PE�e�T�Q�
+�'�
+l5'��]��J�Qѫ\�x�����q
+1FXQ�xq?[��.g겇E�sW�t�X_RXC��r,u<;�/��H�N|Ӿ��zv۴cy�$48FY4���
+_Ӂ�+����P�1�MK tm�9؊�V�-��/�[��ʫ���퍞��S�|ޘ����b喦��V*1C��W���\ᵮ_7�:n�d��JV��d՛O�.D7��zY�����Vn\J�B���:9�3�z�t�-ı�*�(Y�X�r/pX�m��_�-������a�P:�+6�R�y�$C�2WT:���8BوDB�@���cP�`w�ub?J�@j�m��L�H�L:d��SI1�k��orҨ�A�������egۡ�<$ܿ0CZU����*oKcs*�
+E�|�S�/RV�b�ځ�Z0ӡYļ�)�
+;��D����Q��-M��^�t���9.�\�bk҂U�5�܃fzK��zk�
+
+3��ÿ��������{�/������������B�,Ԓ�,��
+
+�(��?h�����%���{�l�� t�S<d|�^�������˸��B�U&���{�/��%f��F�A�]M��d�2)� W��� I�����i#,j˴>��R�w�u@��w�_MJ>v�FI0�F�nٔ�v�Ϝ!x�P�?Vۧ��(%W��oHKs�
+?���}5$�½�K����Ήm,�L�i)y�V�.�g����릷�(���=������_UJ��`64��]>������tz<32**���qňd�^��!�)�
+=ڰض�+W�F�Wd�T5WZ�kU�J��
+�
+ƵՈW(�f���W���T^wp�U$9�r 0���s����l_�{�/䤝�ߪ=# '�;]�@]dq�ӓ���چzı�ͥ��T�49�����H���-���P��GE�DD�عe��qU��:1�PG%��D�7�ڶ0�֛���w��
+7��\���rB:�e��Š+տ
+#���:Ma�lt��5�SK�Q�h��� �W[M3D�9�l�y�+^J^�^���g+�2��2��$tm�/k��S�5U:�0���z�r���6۴J��yܘM��k�����_wS��}�O��u=������_wS��}�O��u=������_wS��}�O��u=������_wS����4�����0�0�0�1�ywǴu��ha�a�a�a�a�cH��i�Ӿ=�|{N�����;��wǴ�i���2�u�>ӹ=�[�;��H�Oh�a����8�5�yx!gq��U��oi�w%�a(�G�3�='z{N�����w�Y�
+5�ˣv5#�iy'z{N����BD��3�v����a��B�p�vW�|�`��]nk(��ɍ��c+{6���;��w��f�)k��M��:R�@�f����*A/��N��1sp+�2-�+sPO6��0.�[��VĢ6��U�v�E���)�4��)i��V�T�Ѥ�(QXsS#nl7���52�[~9���&Â�,ex�8�i�@���Vc�N��Jb��#�01i8�يx����V�X�shQ�S��wq��B�eg.t!�K�����"D:�[�`P�w�<��Un��Li�;P�Ӡ�5d�>k�<� ��67�e�i��kR�U�9
+�ٕ�l���f��Ŕ��x^J��q:��:���DL7�qid�!ȅյ�0�\�<ٝ��e��.����B�k���td�o�sbW��iyV�h�-@P��#V�.͟V���JߙV����U�J$
+��qn��ݡ���Q�&�TSJ�}��%DŽ
+��]pwS�c���Fm�J���o�ߙy�~B�QT�.%F�!>Q�&l�r)Р�R�j��4
+��]=�)�@5H)9X�eK���jh�4Lr�:UH�:$�zB���na��U����+��Fub�h!�X������Y��)��H��~R?)���G�#��H��~R%CՔ���ڭ���Q'�G�#��H��~R?)���G�#��H��~R?)���G�#��H��\%*�k��C-gZ��*�h�*�Q�x��Oiޞӹ=�R�=���~������s����v��D���J1�𢁮��H/ּ�D:�?���
+Ʀ.w��w����������)]S��P<`�����!�!�8��5���l��Oo�IlX
+6D�I.��6j�,�'��>��E@�h��z����?V�)@�b�#�5V��Tƚ�T@)��T���BVeݒ��5�@jT��
+�ٔ�M�u���nʖ���(+X�0��z����g��ӭMt/�����.Wm���U��A���C\�C��*O�
+�{cx�n��n�;sҢ��2b:��\�犰��A2�\!4@Ѯ��t)y�}`�Z�6���)8��i��G��>�͆?��Zöhztd+� �f[ע�*U
+�'����J��(#
+E�R/2��J�:jj��j�A�lZ�����p�ѥ٬\'@�MA�����R`2-�P����d_���X���*�93 �c�>%���^HQt�D��X:��D[����`�9���f��5�Fʕ�d[�4�+"�{��
+0|[Ҥ�Ŷ�QE��Xxǝ��Vh�j�B�a�b#�e_��&/*�}4^] N�H1��Ս\��u���!�q��v�J/"Ī�-�fw�p^ ��T����u�~cH�ۧfv�ռ̃�T刑
+�t�=-*�x3/�cP����MN�[F�p�,��'@ʦ�InZ�f7_&�O*��Wn���my��Ƹ�z4y$w[�nc^��]�Ү��
+pG�1����'_4��+����)���9�s��9\��Tp<4l��'��[9�s��9�s��9�sx4��0�R�m� ��^��P'��,6��j�A�UO�\n�.An��a�#�{�=X���meY^�dՂ ��Ӗ���t���=��Y&�YB�%�`~N*���ڜ��3�r�����gMƝ#Y-'��ѧXr4�/S9�68<-(&�s�'$�.�M((�L���0g+��3BZ���/�b�k��r��`�y����վ��^m�(��ei��B�F�8yO�،��H�Z�.�~�p��AX�wZʐ�~75i�Ί*���-��J�-�
+�Ky��V��E>�Y�0S4<��c��p���;ç9��P`7!��(:6ofltH�U�ݍ��n;1@�A���.X��X�]��)�A��l8<�<�Bj7T�%DK���T!��a����B��Ũ���Zz����E�KM}@f��kfZ�5Z��H �곈+'Q���mtHy d�T2=W��>���{���+dז�}e��� �")�U=iPd�4}w�t��q
+�
+���ŋJ�N
+t�aL%��r�rM�B�
+�U�V���)��'
+G��+�G��zAl͉�\�"<(�������˸�CB����y��8�^�����sT
+�/����5�A��W��A��x��Ǐ<;br�9OU��`���Ǐ<x��ȡ����\H1�=�cwL�e{��.\�rŋ��z��t�¤n\x��W�6���6WHy�@G�j��\�r�Đ���40�2h�����,�R�`Ty��A��-Un��!�X��p�j:�� �-���J�82�p�a"d������|%Lu�>V�p4\;�`�1��lir� ���GMؕ�&��k��.Գ-�eB�i9A�ͦ��)�;b��Ʒ�xr��Y���@��:C���ƶA~r���̺����t�- ^��j�AF(��j63o*)^iY��-�L�W:��������t䴫��80r~�_e��Dw�SN����V �����7�$T�TF�S�q�8��|�>g3������p���:�h��R¡vXպϙ����q�8��|�>g3������L~�_��0�0�0�0�0�0�0��0�0�0�0�0�0��S�<��<��<��<��<��<��S�8��<��>�_<��<�ɼ��S�>�<��/��<��<�0|��S�>?�<�
+4Í<�M<�8�S�,����p�,s���2��S�<��<��<��<��<��<��S�<��<��<��<��<��<��S�>�<��8��<��<��<��S�9��<��;b_<��<��<��S�<��<��-��<��<��<��S�<��8��RE��<��<��S�<��<��<��<��<��<��S�<��<��<��<��<��<��S�<��<��<��<��<��<��S�<��<��<��<��<��<��S�<��<��<��<��<��<��S�<��<��<��<��<��<��_O<��<�<��<��<�0��4�\o��p�S���0�0�
+>�;�=s�>�~��<0�0�?�l��E���~�$�0�0�
+8��,t��0��$�0�0�r
B�@�0�0�0�0�:��|۾��0�0�0�0�: C� �0�0�0�0�0�0�0�0�<��s�<��0�0�0�0�+<���C0�0�0�0��玭�\���0�0�0�0�0�0�0���*!1A Q@aq0`����Pp�����?�ۮ�뮺뮺뮺뮺뮺�CX>�2�����yC�ɽ���53�!B�s��}I�1r��bC��4�~�$����b2� �܍� Hp���<c���j����*"l<�s���p��s[��:�,����pR/r�s�q�w,���_���tɯK��x��O���^��ˀ���^�Y��$��� �J�?���m���g���$k���NL*"�=��m.�(��V�� /�Vi��i��i��i��i��i��~;����P~�*���C����Ͽ�}�$��2p�??� 9N�������M>Ɉ�1�M4����* !1Q@AaqP���0`p����?�aB�!B�!B��6ͺ��|�]��4e����q)�����Uf�;�Ǒd"��4>�`]���i(���r��!��� �f�!ģ��UF���ҧ������i����L\� ��_��)_@淒��0�1��z�*̻Y{?cO�,PTV���f�^��N �5=�i]�V%�����r~U�)JR��)JR��)JR�����?!�$߱��aC�K�FFi�����O&3H�*�3U_!��-!1AQaq���0�@P�� �`p�����?���I���#m���*4hѣF�4hѣF�4hѣF�4hѣF�4hѣF�4hѣF�>*���R�c�9��֯\��#,�5��tA�-ח�q���tP����9�8��
vS�h�@��qÄ.0��at�*��Rc
+D���a�j�+������\TH@\@�ؖ����dO�Íbv����4GO]W���V\I���1j��@n�E�>w��*��9[�13[�]�{�z��ĩ 6yVE'�N�O��SX݄;j=�P!��B��q�L!���m�/�Q��k���d��0|G`��M��L��4�-�̼fpA��������%����њv`��aI�[D�YY�?���Ya����V��b?8�I|�a9<*-��)Ġ�T��?{Ol�S<�����:�k�X:���X�Baꦼ1??�uz�B�[�>R�_x.���
+���@�|�s�y
+�U���^�-L1���I��9���8HQB�Ht#��`�Q�P���#߈0N��dp���S���PQwd�_6=��s��LMe-z�?�*lIn2�N���ho<��%.����B%+ZoF0�
+�'BG���Dc�x�M��u�����"R�L���ո&Đ]�y��R��?O���g�U�'w%Hn�l��P�Y����KAΗ��[HQJQILj�e��m��M�m(�Ly^N!/b�#TW����śg}l7��%\!�hTI�.����Z�F�XFۭ��Q��5C��)���� �A`���j��X}���:���J�z�Mx[�ɏ��
+Վ�O<pvC�S������+�VP��n�Vj�;��k7FֈJ�9k:���uu� �|�$IR�ϥ����(�9B�n$��rUd�|D(�UT�NyUU��/��B�9GS�)���om�kz�s']�6SJU)����ѩkx͉����djB^�[+9T(�6?��gU
+ 5�=���&xK�q3�_x%������.����wF���� NJ�+6���Q'���)�]�'�7�pk�G#�f�����6�cc�Ѧ� ͂:��Z2P�� ���N-�r9&�dDraG������F�k{�Aъڎ��>[0�Bpݙ�0�=��)�l�FA�oI��{Y��y
+wL���@6AA�S��͕d��P�����L�hlB��É�����֯Z�j��֯L�{j���C��p���^�ڀAKb����U�&���T��\�ҝ
+�������^�oA���u~��� ~�E8DN�fE?�D����M^��R��O`@^`E�-��hH��j� w���H�st&��fs��������+u]aU����rqڗ�=^��� "&�z䪀�Y���8��I��h�a����y4��B*І��^�@��n�pRp
+���X�N
+���W��@б@5c�Y;����h��:c�^Ú�(q�
+����M�"<K��AB���
+@�����ҭ�x��QA�����E��U����
+S�2����*=KZ#�yx-!JL�ej蹖��2�0�
+���h���SR��X
+K��ҿ:�M�T��)��Bl�#N�|����S�9�Cy��W��i�V�xS��Q�z�4���
+��:L8Cy�k�=S;ӂ-D���M�6��Ġ&�v�)���<�'L�*�
+�e���\#F��K1$�#K���J�������||�'>'��8萐|���� ��=���E@c��,����
+�
+��M�M3C�����F8�
+���e
+E������@�ӥEU�g���C��S؎sqΘdd�(�
+�903�ni��O�����ѯ�k'QP��Ŏ[�mH���r�z��W�^�z��W�^�z��W�^�z���넲���>�T����L�o�|7�>�
+�φ�g�}3ᾙ��L�o�|7�>�
+��"����*��~���L�o�|7�>�
+�φ�g�}3ᾙ��L�o�|7�>�
+�φ�g�}3ᾙ��L�o�|7�>�
+�©^�� @�)Zh�>^�F1��לQy�yO������11S-�R�7�Q�[x^ �F!�,����(�>ѐQ���מ7��>|���b��\9��x�bp�_�%P��O'��e9���i�Ǣw���.�x��^��4�c�2
+�(���\A�B��
+�0�D�:%A������W� ����d3@�]�B
+h0�M�Ĭy�nV�Lwd��|ƀ�*EVt܇~�S�����&:��Y���ګx5�I3^]� !L!�T��24��І��oY�XHͷ�n�V�MI��i��cM�C̜��.M��;�_���3�3�2v�5_�2:�sq��4�1!2`& ����h6��A�
+#ͦ��fQ�X�k'F1ш'�D�'(�F|��A���(�b)���}���
+|@m�`�k*ްƅr�P|Ѓ��a5(Lܪ1[�u�vw�J�IN�s2jW
+(�.��3�3�2̳�.JY�^4�Yw.{���6�/.*@JB�זtf�s��%��cjE��1R��ln}vHMhA����Xb�K
+ښ�'�b�����ѽ
+Q��1L�^U�͉UW ���� Z#��7]Z�b��[IJ�@z�,4]d�Є�o�?��`�# ���3i��� 4� ��
+h�ht����a(� �(��⪻��҇
+��Є S708�j*#�R��[ٚ ��=RiA�$t�W
+^��.�EDv;Z�[Kk�YA��$VfdW�!�)c�DĤ���8aN3�[IU忥�-�<�t�&��lٳf͛6lٵ=6���9-.���%ga�)���͛6lٳf͛6lٳf͛6l�(�X.�ߡ8�i�8�Q{�ǂ )�`Ufl��P�^����1�?��8_�o��ں0�e75�x��l(ԅ�K�&w���B(����DW���(�J��������J]p]\'�7��R�hXo,��7M��������ta���=��o�*?"�S�R��|3��f�@κ��Z8Z I�a�A��FQDrX����g��3���ܩ�i���ϟ�cr�M�$mk�7+<G
+lO�L��CAWH��j��/٢�9�oЃZ2h�W�ȑ����Dh�&�Gc �pqsx�)�{��@
+#��z�)�g���@����
+C1��H� Y f���1Cs�7.-}�v[���0e�݃�pC�R�T(k�����)�b��s��]���6j|?=��{����x`��
+�.��]o���k�A���x�ծ_|���P�"��]����P�S�y�6
+
+�A�p&q��\ *
+1"`����S0B�JSj��\��@֥�� &�!(8>7�i
+�k,�$�ΨoM��l+5�+W���m#!�me������F8���A����<��8�A�j'�^�]��"8b;W����{3A5�-
+��P,�u�qɰPC�*�C�BTWM4[p��a1�g�Z�Z�*���P���.<�Hܫx�ܓ��"r��9)L�h�[���Dah��@��h�� ���e�iZ��+���qv���U�
+5���C*�� ��.R=���xu���-�����E؉�2;}��ա�V�ۼ@|�/����8qR��`U^�Z�]r���
+�8�'�#DvPpX ��W�� 5��((�F���$b�H����(�)+!OA���?���@��Q�(P�I���N��p*��q<�l-P+��a�
+�a�*p:C���
+?��E���������a��a��a��a��a��`
+E8�E��iw�/���)����a��a��a��a��a��a��a��a��a��a���V��÷�i^�+�/����[��:Ζ�J%���t~�;x�U�Ua�Q^Ui[3���5�_�-3x5M`i�Mtb�q^2zn��B��f �JV
+"�&���d�G9�"�J$�2AN�<~V�
+ڳ�)��ⰱ{ ^�ë���l+�uC�D�UDA+��Zb|6�I��!��
+<��Ɨ���lUM�2����C&�S����"J G��� u��L��P�a��?���rxl�WP�*����'CXR�b��@d��ZT�����QFX��v�^�KW��9�ҕ�����0Ѽ�
+�+D��"Db8�d�"!A���lE6U
+f�c&�(T6�
+9R�ٶ�����ߚY�mW��?�i�Ӽjm
+�=�ľD�@6�l6ƨ�w0����RS s*
+��5R���T!��-s�����#�2�@$��_B��E�E���:s9.�
+��ڙ^�GW?�_і�Z�Ѫ�����`:�N�<^j[�4���K`i�n�eɊU!Y��6b�{#
+"F���~MidUS���v�y���ױS\�M�4��[��](œ ٌ��x�
+O�Z�Bଓhy+I��ـq��b��5
+�y`l ����5
+V��\\R��H%mJ$���y�S ��F���f�OգEAķ6jtXX�T����w�������]�N�E@(�� ��/~������iv�V�kc��&L�2dɓ����cJ^O��qy��Pi���&L�2dɳ9I!�i(�¦2 %�E�+��Dhq�n��<:�S6w�wbuJ���>y�Ϟ|
+PE� �h(�1_�RY�|����є6�W��3lGW�h!���E����K˞|��<���217|X���+����!��(
+���0��ݤ5|�h"�q28��9i0o�>"�.� By�W\�
+E��L�+@���|V��VV\��s}'Jޗ�N�_��!�!]�=�3�5u�]�ž��
+�E\tq9HĨ�%��#���%���������/{W�&�+t��+Ru��(~^ZD^� @@\
+1*ˋ�!�(�f�=���n���tbo�8CX,E�ִ�2@1�Y�(��2��VtCư�[]�y/��~|u��P���CԚn��R��$a�H� DA1l�&��@�{�c�ɕ*�y�ϔ��a���*a6�t�o�t�ӧN�:a��F��L��7X��.��L��N�:t�ӧN�a���+ծ�����
+endstream
+endobj
+
+32 0 obj
+<</Type/XObject/Subtype/Image/Width 434 /Height 487 /BitsPerComponent 8 /Length 33 0 R
+/Filter/FlateDecode/ColorSpace/DeviceGray
+/Decode [ 1 0 ]
+>>
+stream
+x���1 �Omo���9�
+endstream
+endobj
+
+33 0 obj
+228
+endobj
+
+25 0 obj
+<</Type/XObject
+/Subtype/Form
+/BBox[ 0 -5.1 799.9 595.1 ]
+/Length 85
+/Filter/FlateDecode
+>>
+stream
+x�E�1�0w^�RQ !�U���&���ْ��0��ˋNM�_�7I�A��(��h���f�>2SẩW�����>�@0<
+endstream
+endobj
+
+26 0 obj
+<</CA 0.4
+ /ca 0.4
+>>
+endobj
+
+35 0 obj
+<</Length 36 0 R/Filter/FlateDecode>>
+stream
+x��XMo7���9�ע>F�0��#hni�P��6)�E�C�~I>jF�؊]� k�ꑢH���H�������+s<V����?�/���r���ǃ��� JE�;��~���ÇW�w��SG�z���'�Z�8�@4ah>��)-�j�?��m�/�}e��7�i'#���S�OO��.�j D
+��õ��Gג��U��/2�83[^����T-���*(��JMY�^�I��)+m�R����}���^'����`��A����8*�Vj�wd��tQW4Rg��|�F�5�hG�B]ȁF��BW@#���E��)v1���Eh�^|s��s��@�J��:��"���ڵ,��~����9�H=��Ȟ��@�M�K�;GzmG@;��؝*Ј=����F��wqڑ=L]܁F�s�#�h�αX��#��W�h\�s��z��hGv��?��yski���z�"��\����>���Wl�z��G������ӟ�ǽ�Q#w{U��N���}�ם�~�ż��Hެu�G�5MC�l�!�
+�����W!�I�k]��� FCSl��5[�"���?%~
+Z��j���)��W�M�[�b����K��wȞ+�w# r(t3����7m{��[�(��I�C�cDr�'��E���쇸����ZS={4�Fe�w'��H���:����c0o�g-����
+qpe~5�R�Sn�inX���܉��,�H��>J,rZ��u�`7)I�S��&��-НJ��]dn���3_�V���f�(!�w�y#�Ҳx��z�@R4!��@�^Q�h�)�Il�inX�g��h�5 B��R ���(9o�V6�~�`O�$d�=�=M^*��WQ&�5�$���47,�\K�i�����G'���"hnX�(�#�K��)�����^^�:�Q�M�K�
+q�l��ҜCmc�}�2�U���%) ��9��U�ߙt�Њ�Ϊ���f�X���ܱ"���������y�&L�=F3n>�}���R�ڂ�BB����A�I: uڐ�QH�_P�u4��$��=iFO�(1P��Q�$ŴE�ܰ�Wx�<�����J�l2h�f\z
+�KZ���m���{���wlH�����E����M.�xo�4�ߑ�6O�2J
+D ����'��n?�y:��t���u˯ď���-?C3!W��(s��%���,��:��IE�x���O�'���}�E�����U-�/���n��������u�s-u�&��lFqm���!�*^�gPC�
+�Sc�E�@i����(?��|A��ሐ�Q�|0;��F|d��3���m@��"��@��b1�W3p�G���A3�C;ϑI�SMqK���&�c>r���2���|l��^O�N/�؟Q���ף�=�p��o6�!���8Jz�|(Xyc�6�W�թp��1<�[���
+m˶�{7:�0�V/;���=�x�ϛe�-G��kˡ�Z�lI#�=^~���B� S���y;8��'���H��=�&I��Q� ӽí}��S��%qC=���$UB�=AC��M��x�RR�S�P%_�1�*{�/&�F4R���DpŦ����.��
+8ՔR밋|��������6��zm[)�l��wI�%�^� ?}���'������>�f�\���O���M-��㹻
+��X�5�5㭊���IK��VW��l�7˝��w2���݄t�xЉQ����֚��f��[0k����}\��-]Y��}�͙��ۼ�wk�|Z.�a:'Z3�٬���d�Ӡ���4
+�
+F�k�.��ji
+\
+�v*��6��C�"�BZ���--����s����i
+endstream
+endobj
+
+36 0 obj
+1886
+endobj
+
+37 0 obj
+<</Type/XObject
+/Subtype/Form
+/BBox[ 0 -5.1 799.9 595.1 ]
+/Length 85
+/Filter/FlateDecode
+>>
+stream
+x�E�1�0w^�RQ !�U���&���ْ��0��ˋNM�_�7I�A��(��h���f�>2SẩW�����>�@0<
+endstream
+endobj
+
+38 0 obj
+<</CA 0.4
+ /ca 0.4
+>>
+endobj
+
+40 0 obj
+<</Length 41 0 R/Filter/FlateDecode>>
+stream
+x��YMo7��W��2���$�͍����&E`�Hz���|q�+�Lc,#1�v�Hμ��v��泱��n���o��5��˟�7��
+���qc�yڐQ��1�u�<��m>����}�譡���6�
+:����궞!5�&>nxAa��-k�m��+�wx�O+-�~s���ʿ��Zָ�+ �Gs>O~q.���\2���̌+O��M�C}4[�Ѩ3X�9�Ț1��� t�42��w4���K�Lj�F��4�b��^�0S�xEfW0O'sF#s4��#hd^�6��Vd�й\�(s���A����~����;����yE��<���Vd���
+̽˝g��a��z̮��d Zq��i�z����"A+�誢�Q�� @Ј==�#A+��EUЈ=�.��̃��.hEv�:����{���}1�]Њ��&A�v���3�F�����(hd���S[��<�1��̥O
+Ab�N�{��-VZ��}�������`�����r�W������=�<�5�_��]|�%o�u퇫,S������*r~�y�j���RA�������^��Z�"������R�+�����8��,A��7�]X��T��{�D��!OC��+�0X��R�G;�%S�D�C��!��q�\a��n�?8`r{�䵦X�Q���;1o��.��u�e2��xd9�z9*B�0��jB|9S�\"�\��<݉8B����c�)?���n,6���iB�R�R����VУ����o��ͪg,�l1�5O�T?$��ٽ�j^c5�&���w*`DI�"�Q�g伔�9���A\|�.Re8G�b@'P9)Q�e9V�~��L)Y��ҙ����eAښ��%R��Hk�+��zP�0�|Rz���e�D�=y/�%x` K{)H�&/n�x��F�KS�-�|e� � j$�8����5��et*W���(d�"k��yDK~��uP�A��Xٚ��^>�3ݱ4v�o�����b�"�K�%��|�����
+�s �(>Fy��X�H�
+$w�~j��� �XF
+Z$�h��*BAYz�\%���e��s�&����G� �ب�&�r�5�/i�F�ۊ��U�H7�oܾ!�J�3c�ѳo;Z���h���V����:@��'w>�a��c ��Í��ç���M�_������FB�0�y��(����;ڰ�r76۴������n O�f��n�o�d7z
+]���ozY�C�ӑ��tp<Uc��t���>���*�.���^�쉱�ʿ�G��Ͻ����`�w�?$�&LQ��A��3Y�Œ��,
+��Ss���6wdNyr�-���%w��v�W*��/�-7�8�g
+��&���tf�i�4 ���9'��(x>�����v��AR/Ϟq�#�U��x�NC8��O�,��mp��29�)�Y����P�nO~���҇�s��FP�aMP����7 �#���qG�uD~�������
+w�TF:�oA����|/�K�C^a�%�YpG��5�M<i����.�늺R��I�����O�}��*Y�hg6Yݪ6$���S\�[�#s�K�U;Zl�Ӻ�ps�@�K9�E�<��Po<¾\�����ҷ������F�����0����5~�]�W��${��%���뙖Q=��ͭ�
+E��&%�N�s���6.%�-i~�%�0k��5�Y1�l�����[n�(cZ�t���{v�L��hމ��,��LS�N/$Q��{I��%/�/,�����'��Hl�7�W�
+ly&6�
+����N�P��~J�V�[�����_�KA ��4qO��B�C���*�$�L;>ت�<p2��q�0����.�3`PO�~�,~��k��|;��g�i9��7��*��*H�"x��$q�q�s�5�IkKD�r]M�U�����&�ܛ�%F��
+endstream
+endobj
+
+41 0 obj
+1944
+endobj
+
+42 0 obj
+<</Type/XObject
+/Subtype/Form
+/BBox[ 0 -5.1 799.9 595.1 ]
+/Length 85
+/Filter/FlateDecode
+>>
+stream
+x�E�1�0w^�RQ !�U���&���ْ��0��ˋNM�_�7I�A��(��h���f�>2SẩW�����>�@0<
+endstream
+endobj
+
+43 0 obj
+<</CA 0.4
+ /ca 0.4
+>>
+endobj
+
+45 0 obj
+<</Length 46 0 R/Filter/FlateDecode>>
+stream
+x��XK��6��W� � ��6rzj��n�l���)Q~0�@
+c����9��z
+���Ei��k�b��|�8~�S��S����i�tC=
+D�<~T2ƹ��r�����𠊼k��(�}P�id�u��@��Z��|�
+i��8�����2ku��+�h��y7<d���kie2�$B��\���\ 'չd�w-t]W���nR����\��H�dK);
+�Jf�3\�A=�֭�-��fRe3�i�Ӡ9���
+�I��*��y:���H��GP����OtF�Gh\.��9�4� �G7�_h��2���z����ѣn|.hAu߆��ݚ�xFP��6��S695%KЂ��Nzh�\P��}S�-���zL�z��� ZP=��T�ԽkOP��t�wA����]P��c�F=:�b��C�M�z�͍g�覍wA�4�QP���M�-�G�ә�xA�Ԧ� �/�龺�u���:`s����i���ɩ�?��g���Uዺ?�y�����?=�Xv�͖��ִ&s���p�� DD+�����Ɏ�s^K�����5�v}5�kы���~��R�3�d��h�T�sPY���+�X�jx{O�ט�]��`��g�gռk��<r���q��<�V�4�
+sTx���=��mU�ך�qGA^kx��ĺ��t�
+��,�
+F����e_:���Wҋ�*��L��`��O�����Zʏh#�V3�4�c�sT*LH���@q+�Q r���omǕ�*t2:)Κ�2�I!%@vo���ٸ��ɽp�g*`DIc<�Q�gd��E��$f�0g*�s���8���
+)�q���6�Dž�����9�)�4e� <^F���@�4G�9S�Ś�J�K=H~Dx�l(�� s��Y<�����,pK{)HbM^����jzq�d]����&�����lRm+'T�[��U&q]�����:O#Z����,
+Z�w��l��{��8��Kc��i8���pnʘ��S�Y/O>����TU�Z.������^^[$̛r���n���Z=A���O�-:
+|��#:d"BAQz��%� s�2=£�&@��ϣ+pl�hzy�U�/i.{~�%��n�(<�oܶ"�J�=���ů��X���)�A�5�-r˫u���y�CݿƎũ�Ǎ����p<��W��?BQ���(��5�RU��}��`�v�7{���[��vz+�
+%���H��%kX��ve6v1qf��^��vm�8��}�m<����#}�e�ۮ,�j��`-����mq�
+�"�X��'D0{�/���A�-׀���:�5o3�O�#9�k���ĵ��<G��G�wx>��]���tT�z���M�F���=˩�h�8$��"�����@qpy�scu�1S��NM5��+��\`��\]��a���Np��1|_u`Kw�wx)#Ab����Rԇ�;]���S=Y�`5�6v��x7]���⬹��������g̔%!����-'N����N7�TU��{9M�Kf��}�L�D����vS~TCv/������ʲF��� vfh1�J`�?���'�-)E����Os�<���Pc����$��nmIV���#�
+�=�����8�ರ`�Z�\�$�gJ-�m(e�)a%��T��<�_oku�P�R^r[��&�Q��P��C�P]��w���ҹR}Z��zP�K�O
+endstream
+endobj
+
+46 0 obj
+1724
+endobj
+
+47 0 obj
+<</Type/XObject
+/Subtype/Form
+/BBox[ 0 -5.1 799.9 595.1 ]
+/Length 85
+/Filter/FlateDecode
+>>
+stream
+x�E�1�0w^�RQ !�U���&���ْ��0��ˋNM�_�7I�A��(��h���f�>2SẩW�����>�@0<
+endstream
+endobj
+
+48 0 obj
+<</CA 0.4
+ /ca 0.4
+>>
+endobj
+
+50 0 obj
+<</Length 51 0 R/Filter/FlateDecode/Length1 27768>>
+stream
+x�Խ{`T՝8~>��;�ǝם�L&3���c&a2y���%�q!(�I���R��( �Ҋ�h5uYk���Q��[�.��gU���Zl�]l�kiYK��b��9�Nxh������7d��9�s>��:�sY�v�rdA�� y��K�;��ZB?A��6�_n��4|!,������3D�|�����M+��[��i��=+�/���@hpԭ����Mz��!i����:歠e/�:���,[��������v���t'8���w,�}���O�2��Y�~I�Zu���]>����
+�J�����XhP��p�No0����.8�.�G�����`Q(��b�%�e�Dy��de��������qZ���t�<�u&����y��7#;V���C�Ǟ��p�on������A{�Cϡc�a���'t�Z�6Pȵ���R(�dP/:�v��j��h��/�AO��|�8:����V2�vt��w�{�BoPTY�>��Fk���n�kUa�Y�W\=��Ļ�l��� ���X@'�S0@k^O���O�R��ѽ�wZ�6Ұ��?�2^�3սh6��@�]S��1���F��9��
+KN&�r+>��ģ4�5t�.:v�0���xCHn_ܳ�{��y��7�0�k�,����mf��%�<�iZcC}]m�29�����8&E�DBn�`�Y�&�A��9���G;�����8WU�
+�.��%���a
+�>�x8�f_�S�9W|!��唯�!<M�(�G��o�E�/A�~�-�8<~^
+ߠ��b5b��H����l�C6�>ޱq���l���43:s���6�i�LC����P�5�Kۧ��`e͎�X����̼���@$���|ָ-ڦ&��j�㺙�z���*�u�+|���·^��l�2Zrs�8YB��$�;wnw$�ˢm�ew�+�#_>^mkO�Z��_i��j�0�DŽhx�_N����,�Ct1�/�;�����
+w���\���ѥѰ�y�b�9�Ngezh��.W`����Bv%L��c~k^_�8�u�W.����4"�œy2+щ��A�4a���������-FKG��L,�Y�rb2ų���N�\)�����Zгs������9d|t)ŧ[�RD�q�'�Ht��nL.V�i�f
+�
+���tZh�kPLaEv
+j����8�
+;���(����m���6�,��+�Ǖ����=�r
+�K�k�~�2IK,��%Zզ.�x2:<^YO֭�Uz�"�b���(�,_j<���Z��̶i]`uE�����/�=\�F5hq�,ΤxUܾ�gh�x(�;mE�'��^�Y��!���������8���ӵ �5���!�-�U��ڿPM�'�UCQn�3�{p�,�
+w�@�u:����+� W�U[��{ �&s�n���ۗ����u���f*���X��3S DG�OE9���|ô��M�2�Db�P�ը 6���=����ѕ�q9���ƦG���d�s�_���b�L�&�ɓ6������;ީƯD�/$ϚL�4D��d�G�"��Y㈡��������h����V���ò���J�mwFg
+�.虮����ݬ-'ꂮ�֊rJ�ZG��y�expAo�����9��̶.>,Ѵ��ÔW�P̠�"aa5ͧ��?�Ш�ʩ5��%@*�0 ��%���I�0N��*�}�*��sL�w{x���W�ܙ]�p�tF��C4Mg'�>Xg7E���������-\��z� BE��;���_
+*T֍�����J�z4�0���#z�p�갎��i&�3������#��Վ�#qD�p8'���J~�g/�qo�z j���1��,(���yٿ�.ӓ&�_��;��n�N�~;)y��YY1���O~*��Q_�ls(ee�zwo8<��2+X�P�P]Y-Wg�ǫu�������x���5�7�j�_�|BV�CJ��O�����9Lse�O4�ӄ�L3F4��f"��0-v��l�n�3;��>��68#��l������|�y��hL��o������#���¯���'��WѴ�yg�@��?��>P3'�Q]��.-(z��E���QR�*��
+�{D�G��7~���3�ww�W�]uajUbe����������ʲY+�����ڦ�����ȧM=M�_�94q�c����O(�B��;r�Z����&�o�ղrn��X�`m�M_��QǴ�2����k��>ʙ�t�?�Ѯ�B�60v"�`�N�N���t[�?�Dz�V���`6ςѢ`\ �3N�і�x�|U�)�N&�7��adm��RU��*U��O�d
+���h��M�j�/1�P���o�Z��Fo��_"���0X���V_E���}\��"�� �w'?�(^=%/@���^0��L�Lx� L�N�;��]�>���Kn�Ś�/�_q�� n��Yq���;�/�`wp&4�q�i��ȎVT*� �>e�*(�;���n_�;9��H$�G�R��OP�X;q���|�ԕ��kkҸ�.8�2l��QT*�%EGQ�(�9L���ƶA���Z(�ui����^�}��wT�����\��tc)�g�a�?���X808Q�ӛ@ �_91�8� �DV
+p 6���T%����f�WFD%��p�Ȫ�7����(�'T��?_EWq@����
+�a�:0�;�4[VpQP]�c*D����ʷ,�m����5��j1x���>ͅbm٦���wTo����_oxeK��lN�*�*>{�Wo�ڽ��+����Rzғ� �q��;�bxX�nj�E�)�
+,���I�L=��Rl|F
+���T1̶E*���2j��`WDV.�`�*�R�C�9�j�.ʡ�Jl��*1�3%6%V����Z�Tjk���Wpȍ��u���5}�>ֶsqV��}��c}'��
+�Э���-\�־}�M;�w��c�Gg(���m֞����]E�J8�W��o�ݯ4�g+�@�Jrq�Q�
+f�R�
+3�bV�33��03�*T ���
+q���[U�y���.n���D������[fJ�Xl-�0
+G�����j�DB8��6
+��Q�J����4�DOi\�J�\���SIm}����{iRS��(�c�BIbU]-%�QJ�����e
+[�R�Gk�<���q_EZr&�O?]���z�U�5%R�љ���l�ƥ�{�,*���ϓ�SWCJ+��-�>g�mqm]?��%M����HS}�_��O92�������F�&��x���o��ɚZ��/��,�nn�^T4���e�%�h'�3ɯ)팢�/#ť�QP8�څN��#3ͱ1�b���ع�x v1�cl�
+�J"���Q����hlw��ģ�)����%*��9J�F!!��S��!�!�D�~��B����v����.fU۳�
+�uedid��]��}F�l�&�]��d�.��D�
+o���zg���V�;oaazz�ss�֑��� ��Zo���(�Y0�3�� �U:�}������Mr#n08N/�DZs�d�$w֍�n=" b �%c��6Ũ7�=�yH%D-�o'�W�!UW'���U��k���:��-P���Dn�Q������{�]�����T����Z�ko��V������g��t3Ln���>��t-?�������t����ݸ�
+F���
+�8��??����8���M3!�8�G��$�_H5C�-d�sT$ RX:!���J:�˔��G�2�)�"���7��e�n��q���Jv\���kW�%]GWs�·��|b+M�Z���_]R��"F�{:(އP��+v�a�̮].,��X�+(+x��3+!�9T��!=Z>V~�����9[aO����@yPeb1]8�t�b�B%U�C�=By��UIFm4�����F_�����tD(
+�Ӳ����5��θ��b�7���~�k�����
+�j}�uGB�������7�t
+��h����M�|\:�����Tr�=s�ܳ(���M�?�7PV@��.�{�6�1���6�On'���"�L���
+�!�b)*��¥0\:Vz���{3ѳQ��|YL���l�I�L�d���,�+�(ٟ�ya��hĒ+�a��@B'����mNJ:fwI����~��o����t�M�ظ��
+%��������=�z�W����Ͽw ���T`�dE����]�Z�MY�]��
+��Og�w�;E���-VM�������ϩ���hU�
+(�ɂG��\�>\�l�+)��[?X�b=��(4�]|<�)n+���A��5�6�3 ��l�)T3�DH�K�$�)�'F�_1V�XO?R�%�eJj�Uٚ1]m^$���*�P��RHI���dߍӬ��������nj�O]������ɸ��z��x{��=�q0���*3��w[
+K�-��Q,*��;Sj��,o��-ȴMm*+
+��73r#�7�9+A��%��zl�>h�#�Ot�J�P��Ѳ��Se��265�x�2X�b^\�Ae�i� �
+2n�P2e� *`Vk��?�R�h��BE0rU��m�Uw �ѯ�_��;w�̼���ۗ�O�V5�X�-�s߲)�3������4s��
+�/����>{��O�_���
+�Ѣ�{����������[M{L�7�.Ól2�.�I9؊�`��@e*A�p��H&r6±�!M6lq�l�G@�d#�������d�MUDE���@�h��5�$k�W$P�LqR����F�`�'G�����������1�Ь��Ql�Ξ5��3��r�����ϟ�<���~�K��_�ظz����?�?$��~)��>.�Pn��������^��v�}<^ʯ���ɳ���y¿t�����}���o���q��
+>\�g�ŘmŶ�"�3��b��zLqD�����.��v�|���G�&[a>G�.��m�Z`��7w�,n���s��`�����$Z���c���/)����1k�Z�[0�?//�Ϊ���"Z��B�vb!:���&v�D��xQ�c"���ŭ���A�[��"G�[c�x��"�xT�S��3_V������WEG�1����t��Ć�����`�Y�<Cu/c{ުdu5��*��W�*&���0y��**�6'�IUL�9�0�郞���������I-2�����2�������Q3D�����:���E��n����s���W���?�������������=�n������}4��˯�;(�p�w�#z;xmp�z����J
+0���ճ�{u<]=^[֛ٲZ�ڂ�j0_�7#�� <`���Ro���o��b�u�;f�\b'��D�"�"·ExR�"��č"yW�����'E��
+�G�l�C���D�u�n{�W
+[Z����b�P| "]\>��p@dU�M��
+�蚋Ŵ���"o����+bQ���7�3,��
+mrko����:������Q
+Qb�w)nt"|"�iXm��d�]*�"d�Zb��<j�X��,��"P�!V꜈w�O�/�dX�RL��-�Q����3;�]"�bF�{�F�z?��7Y�Mq��)����y�@�۫Ą�%���J������y� ��@)�O��f(^:
+�n�����TZdq[�?���
+�K݄Eer�ӟP�I��"�����xF�#y����a��a�ːPCm��{d�J)'?Xx��a�����2x�<�!��b�j�r�f��䞬͵m��5h�Up3T�~���?��>���Z��sɳ���4�d)����*?>"�(�;�*|�"&IL��9R�ao�r�P�h9n�w�c�<K#����O��-ׇ��r�o�� �����'n��D����
+��D��T1s$T�Te,�xGyi��R�Q��C�P% ՚���4vE�-��X������*g���_�ص�T��n<�V�m�0R�,�[V�Z�Ä�`�njAEnܕ��-�&��w���bv��|�Qm�t@�����!��̏y�66��c���bWPoa�MF�D7G���hKt.�<}5�ATo���;4x9�k` �2o���=��7Ӭ/Fu��7��!k�:��{P$6נé���S��ԩ�3�Ā&�^c�zFޚ%�ѹ�KWl�!����o>s>{���V&�|'Ϭ�&�Utߝ{!��դ��ջ�߷�C�G8v*o��\�k�մ�Dzѭ/4,7��d9�DljT��S�w���.���.��(�A��J4`�x���6M����<O�B��ԌN�C1�Ɍ(��$���d$@'ˎ��DŽ��i�� �Bk�SA��8@�8+�@��DH���e#���F�#)1e��nJ��A���#��َ��Lx{���A7j��_ږ��2�2��k6%{��r�g������� ���fƯ��N�K�S)t�����W��#��!�Mx�ML��6ە��-N�:8 l~�F�B��Ph���5�6�`�
+@�Nw�*ŚlJI�\7����$2����z��.�2Fϔ����+��1�S2!0]g���j4g?0�͖\n�ЬC:;Dk���3�������
+���^�Nk�o((���p��a[�!^�46�aƮw�4-j(|�mY�Q��e]�|��hA����t�h��x{U�߳�-�'W�a��Lz<T@�ї� �R|�B|4LҀXP\�1�I~S���r�6���"
+��E�`��2��`a�Wt{��k�Pd�\��z����2$#
+�K��M��'�I�1K��G�% ?!}[zC"�$X$M������/K�����VK�Y�A�)!�w��J�H��<)���#���Z|I���~AK١6l��%�5�'����o̗MHMR�D|�K�V;��vI��R�тg��$���X���s�%A�nI��._��i��M���V /�VHK���s>.�.�,2RV�UR��'��T���Y�$�z��tK�!�S�"UI���"k�>&���sj̗֭�Jk%R#��y(�����Q9Ӯ(�Kp@:&��*YN��+f��v�'���6�U�#��Z ��]E��@��+U��%�SRU8#�Z!��) �4*�ƥo��Jؐ,�B�
+{���x�^�����A0�Y<�(Vɬ �y�<S��\\��@�(*,"�L�g�Yt���WɎ�K)S�(9W-Lk���h{�%�^�\�$�R�!���/�\�]�>�fc֠�ۉ�M��NhR l #h����"�C-0)ë�po�k��y+��%S�x��P}���R���g�؞�'����}��� �:�ͬ��}�Q!�*�\�U�%�E �>Eys=!'V�ۍ���n�Ӭ��~_f��ӹuآ�ph���E0�d�Ɠ���6�%%.�����;9A�b��kC�����t�o�c�`��@�83��x1�)���QE��y(U�Ҵ�3Q%�j����rۏ����c�/��s*Y�=�j�
+|����y`����Ԩ�3�gkj�GyE$7��S�?�*�ny���$�a�c���ռnj �-%x�)��J�T5Z�i S5\���TՅ*^��U���N"�ȩg�D
+3E���/���!v�� U^�ذ�*�yqM�����NJS�K�HTiD�ty9n�j0`Oc��➇�V�ƪ�jv�y '߉���h���8��z�]d�����X��|w㺗�t�͖P�И+H&ȍ+v���`<�p��m�_S�(@ߖ�P`q(���/@V������t�Ό�8�~��W���}��Y�L��2�͙5��ʼ���Yè�~݊-�B+�갣�m3!N/1"�C��:'%��K�诳�mhv�Z�8iBx�͠���jf0OD��HlF`��E�@4�9��?t��1xF�8{����;�B�����i�Oi���ʮ̿�7����z<�>h�s� �N:��F��`l� ��R�n�tY�,���e�3������{�D�g��������`�Y�:��*��N��m��^/���Wu��Ng]c�6TR��@�����XP LÙ���ـ�Y�����l�T�B@�hp8���OP�>����~E}ްP{�6�OٕH)v$tf=�<�'�!�zt��(1�C�@<;��9bvyt��0]���-�8T~UB=#֤鷘��hn���Q�]H$��Hi�J�&�m"�T9//�i�}�a��[
+s6�.Bϊ��E��=C��w���**��?N��[Q�Ƕ�>�Ǝh)���9h:?��0l��Q$L��:=�{�T�k��5
+O<P�k�5�9�H���@91z�lDPZ�Fi9��t6=�>����J�l$�i�u��UJ �H��U�u��iԄ�&����<}:��H����g��I���|���_�Qc~��j�f
+g�aj��0y�H�D�
+��^d\�txd���̭�i3;���l���pK�#�����?�����m�v��N���e͜����G�������n��`]ۍ���a�Q7z��%r�hw�6
+f��Ϸ���h�|K��sҹM���gy!x�1ʒ�� V���ļL.P7� r
+Bq�\��J^�1/Ӆ�=�&��������%5�����-� Ul�HS��u�z��������݁���7��\��k���֢�����ՙ�_9�6=��l�.~���o��KO�w��6�)w�I�k翳��
+c��^�x����T�XJ��P�G�n^���x�������Q�n+i�v[��D������Y�+>f=i=m%Vu�eر� ���YJ��
+�Ep�8��*YIg����J�[���Y���g��J+�k�:f���F��)+g�
+R]�$yݶ
+��m�i��zȖ��]�Z=?4��C�_f&�_�_o/B���S�fya�x�cTG�8�ӝs��;�9p��q����$Y�2�`Ǥ����XƘJs�G����;��u۽����F(P{�϶�L[b[B=�T���`��j�|�v��|�R��#���\����gF6>P�T���=��E��2�Y���>���c�m����y,v������w�����\J�x�oC&dC�ɂ�A*��v�BY��o_��.?E܌�3T�.���sJ(VNv��d2�6��g�0���@9oۀ�^�FK�ec�ٿ�#^H&ՔZ2���G���jG��j�?4q?��x�i>��$��l#�>_����g�1��`3���c�}�q�!V��Px��Y�)�}�~�q��J���aר�����?�21�P��Z��p��F���~A�BwQ���V[XSR�jZ30���`w���r�b�u���f4yn��GV*E-�nH�v�M^�Ů,��`�@CwZ`� ����lkPE�(����X�l�+X#v���Zg��1����a��<;%�Wi#����{Z����I�tR{�s#�@���/���͚=X���
+Ξ��ɇ<���pA7�Kr�{q�o��7�������3>���(^l��i9.X2��[�-,�Cx@��e�1~��
+�~ԤC�:�!��-U��g���^�9��X5^Ή$�r��k��ֱ��W(/cq�R�A��>� b��1l0�A��fq�:o�NW&:��o��f�,`ha�S��+�t3��7��`�i�r�y��A��T5��ͥ�$5)��X��-æ�e`'l�"d���#�H��F�"l
+����g�,�r{����������S���^}����8�zv◄F>�=�&��*K�v���L 0#�ևV�{Г��>�
+zq,�"�|�fF8[:�*�44)�̀�Y0g�c�q� �n7
+\0sޟM�h�
+�.cD�ϐ�hG-��Z*3�R�u�0ߴ1��F��}P��%9��h���+�b�n��t����N��Of�6��B�<XN�Ά�F
+�*C2
+�r(����U}�t�s������l��T'�}z����|�[4gl�Iu��i�LG;>�;I�DŽtS�n!��sڤQIUc�����������#���D�"�,Xl��|���U��:�ZWu�>����� ��Q�\���^MY[YwQOt�3;T&���ˀA��Uтr]��ep��d��2RYFf
+�����2�fqҵq��ELJ�m"�TNbK)VL�DJ��3&@&0�|OF���$��)�ģ��7z��$�52v���qx�.����.�����u�}��+R��U0`���T5AÇE�f��J��ˈg��.+��s�E��3�j��e��
+:4v�Rq>���ԧl�͇�����{�E��>��/
+|��O�嶼��R÷�x���艓�j^yUY�ûZ~y�w_VN����{xX�C��c&�`Z��7�|�O+���>��'<^�oⱑ��/�o��0/o�_������͓��zMK��z�k�_ԫ���p�B�#������<��>6��I��)���X*kh�,�'X-���>_P��/���OT"�'.`�7�t��R)�A�։A
+�Y��#���E
+c;\=2e�3;'R��j]�Zz6ߜ��ݔ.�Di�9��
+U�6�`7:�i��`�E���un��N�|���x7�����,�3zPչj=���s��QU�(�)�S�Sn�Y�)�7Q��v�_��)\ʠ�8*�ٲN;#�`�lt<g�s�A0Xu�b�0�"�UR���P= ~���]i�z��p����/�"�zU��Y$B�D�\�>x�p���ǶM\��~?�e��KƩ`K�^n�Ć<���Q�w�19Y����z=8a�ޠ�u9�.��u�z�m�y�Zd�=0�9�a���FJ=������Tl����;��6�slq�)��
+�炙.��j]إ��v������%`P�`U�+�DU�٠�9��MF����,EK>-o�G4�%'w���+F���_�͡[��_�B���7��f�6�c�&�(�tS�U(u�v��
+.w��q�t�\����'R^������/�ɞ8���v"�:����*q�[�!
+�q��G4>?ǁx���e����1�oU+�]���Sy2���A����gM���5����3_8^������2�l|�F8ͧ�Rj{��;�)�G2A_@5�2Z�6������-�՞��1�N��i���i�%Ճ�/9��UY͊Y����۫9�{�#�)1���r9�D���?�_���ܭ�g�M�����>M�o�u�E�E�j��te:b0Ga"�8��%eWj�mѡ(�==�冣ঠn
+�����15Ag���'�pR�JԲ,��,��gA^m�4~TQ�=�F-��T������(V�+/D��%�(pQ��W���QA�(���,Þ(QK�^�R���B��(��D���tG1��%,̆�>�O��c��x,
+R�
+x�Z�N�R:�p��������q*@^��h�FOP��j-�$��r�Y,#���3�gwf��t�ڌ�4�\�[�*L3����n�M���8o�Nhht%�
+aB�+Z[�'6�qU�믟}61oì���T�P\-��>�������JZo���
+f�[��̡COu�I��"��2v_��Nݷ%�6��űU1�(�"�u�E�b�.����LV� ���Px���ZK�L.è��-���r')���.�����J��_5Q_㧕7HO��8��ZN���L�"{,������%��=W�z�s�~��{{���'>>؋����M7���]g��������~>�y>�;r$w����gv{�t>��N^��q�p��b-�k=��Z������5�����j��>*�T�_-y���
+V�\
+�^*ů��S�K�+�s��1_�)�.�+7��b1b��G�K^���/��5��xIį��Xd=��fS�:�.�#su8E)>q��β���N�k��\���4.K�;
+�4|z.
+���c�i�l����4�O��4t�b����>N������49��i�K/J���M�R�4pi���wӿM�i؛>��[Ӱ1
+��P�nK��48�l?�Dk�t�<�6�@֦a(
+�4��AJS�ԲҜ�I��4���4�/Q槗�q�ͪ��i�|Ky6}$���rQ�>���X�>I�i��7
+[Y��j}��4�igӁ�V/>β�Ic6ލi2��'�W���uu2���źO��d-��R����ϵ�6�eg}!��3iO�H����4�h�lKar&O��iحv�)�:��ZոA���C1]#�-%�ܷ��\�b�e��^m�&
+�N��'Ҁ�t&=�M��y{��s�P44f��]RY5ߐ)�<�e�U@UU��Dž��2��GTg������xjw-x�$��c�����f�r��#�Ӕ(0�*��*��vF%��������D�_up��o��-�o�{�3�nSn�C]���-�ù�]67�:�-��Npi�j�%a�u�LV�n�ո��r�A�O�Q�Ϗ~-��Xc�Z+�Xb�Z�y�==�x�^0�C����[��l!�v�s�p��)�X��BN.����B����T(�IG�($*��~�r�X>7�ftguX����P�]��/�t��t٭se���~�H@7��M�y�j�q��c�)�՟���@?���;��Q�5���Vx���=s��cW��9�{'>�'�?ef����T}���&^��c#18��FTf��St;;���+���N��N;a�s��9�q��N�� ,�K�V�qF�q��ۉ��a'��q���s����SOAx� �`n�I�L刕*��T�r�˫�ތ�[�
:h'�AS�2���y�dT�^���zųT�����wD��꩒��<|�;`�������y���J����y'|�W/%���F^��X�lN�����Թy25��),��K����z3�� �N���;%�jR��N�=)hKu��RĜ
+��[���)�B
+v�`(��VD�Rfu�S��K���=�])"��Մ/�`-��S�j���o��X��=�G4��v����Z9�>��(��I�x
+�����H��ݺ��֙c��@�)������&�䯳��8Vͥ�C��L����Z�4V/�ה�J�iAG���c)�F�����:&:�Z�8�Z��B)��Ǎ�tO���Z�xd_�S��P.(�F0�G ��y�7x&�c.��j�]����ﳟ�k��ʘ'�_H����ĵY��V�^za`8�j7Ǿºk��5������_��1�����������
+�<e�K�*��s�>��ID�*��<����������1
+�)�<��yh<�_���S���M�f�0GK��< �2��J�s8���lϸ�n:�a�O��`i# ~>�(#S�ޝ}��
+?[
+��q�z|����'� ] [)f�7��*U_�[�����j%�8w^x���k�s�`������l��^8�cn�������6�N����!��S6��ҹ
+l�[�w��� �U�T%�
+.F��5�Oԭ4`��b��|���T2��!�'�B:����.d���%@C.
+��]��.vn�Pq�2���<���=0���x������H��N���������Ziżzք�Ayɐ��A,k�m������������%
+d�cx.x1hjd������?�i���#���Tc�*� ���r��2�K�,�%l!���'���ps&�`G��X2��A-�S�v
+��98-5lc��'�����Ⱦ4��_�
+Ab�I"#�<�}����3z�S���Xԯ��͚��x�3�Ȧ;r��}/w_�o��܅5p���ߖ���SQ�r��S�}�5悔����2Y���B�6dFs��<�9��;Tż�`l���
+�=��q=�c䏪ֱי�U ���U��W���1��j�+"��\<�r���
+8�[����|�G�O{��˼�I8�d����7�7���{�����e��f��G�}`��h:y�&��G�}��F}�%i!�|��ߋ��|\��N�Z|�N��U������$-�L+}�V{��g}0���|�Oj�o
+����X�wh��}�nߘo�A��l�ᳬ����a��j��wԦ���kP��AZ1W�}X����l�><�b�>�D�|v���G|��E��.��V��7Ls��i'�����pH8�8c��[NX84>b|����3zz��htS�x� �<ȦR�g?�~��%�r���!_`1#�3������+�ǭ����@�ϫ��frO���k��~N���-��BSr:�\Z�͟������Ôv��%�r���]v���پ��^�vM6E�>~�
+V��`u"C����?ITig����z(��e���o�}[��m��-�=0���?v�Ƕ�$�;�u
+�� ���:�g���Oh�v\���ϡ2���� ���`����Ix`*x��N�3������&'�m`aW���(T���"Ko�5C����"��qe�L���C'�S�=g�(��R�Rˡ�|���A,����E(/����:�:WtЏB
+��+楤z�������0ya�r8�n�_u���5���]�(��k7uW.7�u�-��|��,�y�W�}uY���߾mّ�������S��myYs��lH�ukoV}� q�)K�)3*�6,����ŕ~G������ČE��ɦ�-����-n�UÍV�7n�k��.�O$MB��'�v�B/�m�cbE2E
+���
+��˗l�B�0�aBE4��إ:E0��"�Y�Z�n�]�5�ڷ�l{����9݉�-�=��~�˗gtw>��܇��O�sg�5y'�_@����o5�v������8�:���/���bF��W�=n�����v�@�^����k/JA..=UJ"Lg�e��5��BY��y��V��3ZΫ���aT�3'y�?�q{B@?��'v`R�D�_���g��x�U��ߜ��3��Lv�b�P��Z���v0�����z�<'�M�lU�[ܰ��fa���Z<����Z8�/��;����=t��RԀ��o�gWSv�����`S��S�V�����c���Ť&��4M����3ӆ��O�0�+_���5h3s7��I�7J;�'$"Ie��!1)��+h_�:���'^�Z��\
+f�#��^(4w�*�3.�figVF�7�k��^5:bP���+�S�:}xlh�s�זt,Y����6�!�յ��M��|����-��#�m���5�nMN_J�����̷r�������������F��o���}����{��G�=mg�����ui�]����W���!��~ �n���r�w�5�C��Im�c��#��#���g����d���\�-Ԁ�,7d��6p��5&�]RN���$��)DՓ�L�)SJ����-���2`ח�{��MTp�����2� vKJx��*��z�M^��O��j�Q
+�TJS�pً<��v�Cw|�Ζ��/�ڟn�:����Α�INy��{�@Un��S�e���١��0����i�^@�������&��o�y����d���������/���'�j��N՟���Mrj;�_��'#�P\\�_���槢��T,O�N�zv*W:�1�lSB�(�.�(�<�L��Q;���n7]��|�����5/E's�R��5���9'���<�q� |8|h}S�ƣ��=��#VO�UwĀr�Ҧ�`??q�YQ�N����-�
�t��wAL.�k֍�o,��'r�T���ط_�O~�l���E�;@0]0���`�; h�����\ካ��_>�g8{���z��E���|��}��8�W�{�w��W�d��������a�|5�6&�>�HşӾs̱X�c>�������q�4���7�����J����/��y�p��^�����&ަ��iy���U�gP=���I5��[_�o���ع���]��!g�{�'����l�e�N��m(�~��9�:0H>����_���)���X9w�Ƣr��A��GiD�,I�y6�3| /�13�v�r���_�[�z�Z���I�>y֒��X����Ul�}�5��y[����D�uI�������z�(y��3/w��o�G+/�a����[̹؊��'�5F|�����E�Y���ܺ:s��
+�ݐ�B�f�^�������g��+>x�f{�冸k���������m�lX��~�bU�-�@���v3Θ��nv��
+��xz?�<�ţ��y��Z�"K�z̧ Y���y���`���*�~���u��\nk@����0?n�x���`ۃ-������
+�>^f7j��pp<�5�AG����6<<<�[���1�Y�%�CY�<��Zl.���V�F��b��������6�~�*3y���'������SB���yգ��埱k��/��C�s��{�ǹ{�eA����{{��־�?�S]���٩n)�.�9�D�
+7L��č|"h��4�{�$VL�
+�8�>�o��q�"�g�1��ty�{��c��L�O��G�ґ�7
+�CC��K�|�ڎ��yF�m ��u�aȴ�D:8����a#{��&����f���[̖�1�C�&�|S/�Q|�8M\ofwU�
+3pf���n3g6�g(��;0�b(�
+�ػ[��0(`��"�6/
+t��Yus���� ���Qa738��2�Wv#�hyRQ��[}�v�M1��\��P�cW��R� �T�|���P��,elz�v9�E��uRF�_5y@5�i8�^����~���
+�{��;E��ګ����VO|�8.:{�1:˵������#g�w�Գ�*�C�ҟ�]���<�lFb�m`c#?C�9q
+��Xm���X�?�LQ�V�����l�|�-��d�����ҿ�>�0s��D�q�\5�`�����h����A��<���DW��Q�*:����<��EP f�����|��T�B�g�NL�p�c��bS(��O|�@sc�^��U�$o������z���Z���?���pe�y*�6�@�Ŏ+>� �$&��xc^b$F;���h/R=��m�Dq�#�"�1�}��K�H��r��mJ&\BJ�$�\#�-�'q,q2q.q1a�� 9�M'�&x__%Ս��)І2i�^*~���͂`���,���y��]%ɿ�mP�z���W^�d�ZE��Kf4�y�[���g.��Xx�G����h5�\p����,lu�?m�(�������.̝}.U;���_���vN���p���.�gO�����
+
+ڧ��������c��|����r�����\灴�>�kG7]yO8|�M�m����/�5შ7���l����$����MF�_Q �n���n�q�Q2��5�'MS��G�X=}P����R�F7m���K���]��=��'m���p�>������fm��˯�r-4ܭc�cm�����>�>�rNnZA�1
+�yv�g+Mk͏�N��v
+?��H뫠m!���:�Y�t���g���n���s_�����t�1���0f�1���a�h�;�Cv�}�P(|�x�Y���2�V����9��z���W�}����}�+�
+6����1���˔�)�ӢJ�K�l�W��⯗���R��P�?>;�Zm��rMSP�ݸ��t��Z��������s �H��ȇ
+�
+�0G��·ydAc���ѡ|X��F�����|�HyѬ|�L�pӕ�ea*�ˇ�h3|3���sF��ʇ��>��FJ�a��Hm>��<��a�]����χ��"�Q>l@��w�a#*�~��Q�����̧�a+����6�H�k��MkWݲr}���������Cae����;�M
+ϸ�����.�v�������i��3��LZ�ja7���n�$V�(�����+���(�{Y��%���3�� _@���"�*
+R{�'���@��A��
+R��e7��7c�JAM1������7A0'O�2:4p}�|(tS1��+���$�;�;���9M����D�c&�H2�֝~j+N�rqx~�8�O.�}��m��'��'MʈJ�R45�*a��)�W��C��i�4��t�,�����M�G��^��l'k�Rb$O�:c��V���U��P(�zlV5��8�͒8�f҂u�)�Ik��������6$O�+��맹�b0�ـ%J�a���t���Dƅ�i��Y;��A�*���Ƭ�lz�Id��!e�,r���(�R��p]B}��
+�1DP�A�������j $�/�0�{S1#0�#G�k]�~x B!t����p1@�%(����F�c㏂����-&�-�F��_���`�Xh,�����'�o��Y.B^}��~'���j4�,Lp7��������u`"�%P�GDA����#
+��`�d�AN�*:�vDq᷻6
+��Y���}��*���"�
+�gb?q[J̲�*|��x��y��h�B��M�<3���D�8 �f�U���������^�f��qB���Tx0�D���?�NC%��g�[��n��jE�!'������܁D>�X�
+6�c���l���Y}�ʦ���_��� �s��X}+����oM��&>��[���6V���+~��/K/]5z��f��G�+u����u܁j��p-V��~���������g~ߺ"��U��|�5T�_���j�*�7��ՎwU,iϥ.���T�*�J��ke�Ҩt7J�_ֽ�{]^w�k���5)�����+�$��UZ��%yɻ$��X�{��?����P�/�;�~��=|��.JRq�4�Z�o�]4�+ۖG������j�>Ik�v�!��L��,���(��&���`����}�4${
+�nI'���CiSj��ȷ��
+7�.wHyC�� }�
+g����P�W^��A9�
+>�փm� �>+�̀��z�@Ϲ�'�k]��N�[sa�aҼ���ب{�����O㧸�:�xF���;�Se|�|>���[���e�MN�Y��ۉ��@�H�R�N9�=1R����B����.40A)gZc��ܑ'����D�]3�PL)�{�M��A���\�}�;N�q�G��D�ٻ_�?
+endstream
+endobj
+
+51 0 obj
+19226
+endobj
+
+52 0 obj
+<</Type/FontDescriptor/FontName/BAAAAA+LiberationSerif
+/Flags 4
+/FontBBox[-176 -303 1005 981]/ItalicAngle 0
+/Ascent 891
+/Descent -216
+/CapHeight 981
+/StemV 80
+/FontFile2 50 0 R>>
+endobj
+
+53 0 obj
+<</Length 513/Filter/FlateDecode>>
+stream
+x�]�͎�0��<��b����E�$)����>'Ej��ۗs��J]$�l���]��aw�9�6
+�1����)܆�Ԅ�.]�8Iۮ�����k=&ٲ�����z���j�dߗg�yz�O�v8�OI�uj������������q�����<Y��6��}>���2[�|h����x^��+�x�!;�4Cnc݄��/!Y��:]���$���ʊKN��g=-�n)�s�����W�|d.��"��_��j^9�ސ�ϲ�-��c��;yg�ܸ0� OG�wqѿG���8��q��l-������W���oLo{�_͇��;:��va���,���Mb����VO����0�9�����.$�[}��H�G�B���{���7�K��JA�:�ӿ»V�rS��A�/V�G�JA�J�*���c�pS�+2Q���������s}���=�/��������W�D�[�N��?m�6�iZZ�>
+֛�ʮ��0b��~ݨ8
+endstream
+endobj
+
+54 0 obj
+<</Type/Font/Subtype/TrueType/BaseFont/BAAAAA+LiberationSerif
+/FirstChar 0
+/LastChar 67
+/Widths[365 250 666 333 277 500 500 500 277 500 443 722 389 443 500 722
+943 500 556 500 443 500 722 500 889 500 500 666 333 500 500 250
+500 500 610 277 500 277 180 722 722 277 333 722 777 556 610 443
+333 443 500 563 610 333 556 333 666 500 500 500 250 333 500 722
+277 722 443 722 ]
+/FontDescriptor 52 0 R
+/ToUnicode 53 0 R
+>>
+endobj
+
+55 0 obj
+<</Length 56 0 R/Filter/FlateDecode/Length1 2572>>
+stream
+x��V�oU?wfv����-�6Y�;��n[�������!�2,�ۥ���>m��D����hL,(m���]�����5��D
+A����`��3��K�$������;�s�ݹs7��2(�3 Ck$aX�D��R9��y�4�O8<2hE�>��$�>�����s�Whob��ɵ.��������[�^5�Ȝ��}hB�OF�q����aQ�8aUJ���Ц��`�o��%��J�3�pt��c;n��5��U���v���_eݶ-���/���6������f8{A���QP�
+\���Sx��W`��p���� �%�|}O�w�9h�j�;ު;��:���%
+�����,Pϥ`gox����\�j)o� ��U��J�NU5u4|�?����������]�0o;�;]G=W�|�`=w�+�sX�>70��2�`~��j-�J�U��%T�K���]�3��\�k�(WVwp� �XΠ6xد��?�X��.��Н��SQqq�~�L�,HC�S�Kk3��0=r� a����X���\���hNs�i�8oE&��v�Vf�S�T�:S��~:��e��v�f��MuhޠFgDq��;��*'z8�j�r͵�4�N(�ؗz���y�=�;���]�\��'ӄ��8�ض�˻H����R�Ʀ
+�je�Z���0{Z�;��k|�5����{�2�P'=��W�+B\�ዧ��:b*]����f��,�y�r���.NL\$^R~ij��䄴|brrr���I�%s��u%)=�=W�-®WBv�(&��TEI�}�\ {� פC�
+����3�4�]Є��#+q��eK�=nr�ܻw�Ltuwu�k����=ݦյ�yf�M������Oz�� +J��s��K��o����
+���(I81ϳ��F��{
+>��pSI�ݖ������`��`+�z�����niN�$�5�� ,B��,�XFH`q��.|�؍�=�C->
+�@)X�JXƎ^(���?/��O` V��ۿ���pP���'KPCj���48X�a)�&0��/0�C�a IV���m�KPE�XF���2D)E{�V`ՒW` *$M`�M+�w
+�ZI؍�ck#�hscc�˚�;I%�#�K�i�i�c1�o$q8�e�l�H�u�E�Y*K������w{<N�G�d4eXC�mcF&�b�X��#;��� mI3�A�4�u�e(�'�����ţ��Y�;%�<i0��1��x4�
+�X���)��ܞM�2��Y3�6RߝL%�ymYsK�hL��h+D����H�g��{��t�f��-�af&Xj��n�Ċ�],���tòX<vtxAO��"�(���nA�Y0��
+1�� i�o$�J�X51Ҁ��B��#9��8��'�
+q00�~�����'��1���M�ތ��� ���E��~��d�N�B'/� � 9����S�����EpFO�����W
+endstream
+endobj
+
+56 0 obj
+1479
+endobj
+
+57 0 obj
+<</Type/FontDescriptor/FontName/CAAAAA+OpenSymbol
+/Flags 4
+/FontBBox[-179 -312 1082 916]/ItalicAngle 0
+/Ascent 799
+/Descent -200
+/CapHeight 916
+/StemV 80
+/FontFile2 55 0 R>>
+endobj
+
+58 0 obj
+<</Length 233/Filter/FlateDecode>>
+stream
+x�]P�j� ����]\4��$PR.d�M�F'�ШL�"_�Ѕ2�����~x�K���1��%��Na��y�H�Τ��Yud<{�cK�~J1���-��&�c��,���>�1�q��W� �:�8�'�����ʹK�9[��GD�7�*&Xܢ6H�/Ȕ�˥c��?��:��|j��&+�}��J�2��-s[g)k�M]�ʺ?-��D�a�I�VJ9��g�!W}��|r2
+endstream
+endobj
+
+59 0 obj
+<</Type/Font/Subtype/TrueType/BaseFont/CAAAAA+OpenSymbol
+/FirstChar 0
+/LastChar 3
+/Widths[500 794 555 355 ]
+/FontDescriptor 57 0 R
+/ToUnicode 58 0 R
+>>
+endobj
+
+60 0 obj
+<</F1 54 0 R/F2 59 0 R
+>>
+endobj
+
+61 0 obj
+<</Font 60 0 R
+/XObject<</Im27 27 0 R/Im28 28 0 R/Im4 4 0 R/Im7 7 0 R/Tr15 15 0 R/Tr20 20 0 R/Tr25 25 0 R/Tr37 37 0 R
+/Tr42 42 0 R/Tr47 47 0 R/Tr5 5 0 R>>
+/ExtGState<</EGS16 16 0 R/EGS21 21 0 R/EGS26 26 0 R/EGS38 38 0 R/EGS43 43 0 R/EGS48 48 0 R/EGS6 6 0 R>>
+/ProcSet[/PDF/Text/ImageC/ImageI/ImageB]
+>>
+endobj
+
+1 0 obj
+<</Type/Page/Parent 49 0 R/Resources 61 0 R/MediaBox[0 0 794 595]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 2 0 R>>
+endobj
+
+12 0 obj
+<</Type/Page/Parent 49 0 R/Resources 61 0 R/MediaBox[0 0 794 595]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 13 0 R>>
+endobj
+
+17 0 obj
+<</Type/Page/Parent 49 0 R/Resources 61 0 R/MediaBox[0 0 794 595]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 18 0 R>>
+endobj
+
+22 0 obj
+<</Type/Page/Parent 49 0 R/Resources 61 0 R/MediaBox[0 0 794 595]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 23 0 R>>
+endobj
+
+34 0 obj
+<</Type/Page/Parent 49 0 R/Resources 61 0 R/MediaBox[0 0 794 595]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 35 0 R>>
+endobj
+
+39 0 obj
+<</Type/Page/Parent 49 0 R/Resources 61 0 R/MediaBox[0 0 794 595]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 40 0 R>>
+endobj
+
+44 0 obj
+<</Type/Page/Parent 49 0 R/Resources 61 0 R/MediaBox[0 0 794 595]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 45 0 R>>
+endobj
+
+62 0 obj
+<</Count 7/First 63 0 R/Last 69 0 R
+>>
+endobj
+
+63 0 obj
+<</Count 0/Title<FEFF0053006C00690064006500200031>
+/Dest[1 0 R/XYZ 0 595 0]/Parent 62 0 R/Next 64 0 R>>
+endobj
+
+64 0 obj
+<</Count 0/Title<FEFF0053006C00690064006500200032>
+/Dest[12 0 R/XYZ 0 595 0]/Parent 62 0 R/Prev 63 0 R/Next 65 0 R>>
+endobj
+
+65 0 obj
+<</Count 0/Title<FEFF0053006C00690064006500200033>
+/Dest[17 0 R/XYZ 0 595 0]/Parent 62 0 R/Prev 64 0 R/Next 66 0 R>>
+endobj
+
+66 0 obj
+<</Count 0/Title<FEFF0053006C00690064006500200034>
+/Dest[22 0 R/XYZ 0 595 0]/Parent 62 0 R/Prev 65 0 R/Next 67 0 R>>
+endobj
+
+67 0 obj
+<</Count 0/Title<FEFF0053006C00690064006500200035>
+/Dest[34 0 R/XYZ 0 595 0]/Parent 62 0 R/Prev 66 0 R/Next 68 0 R>>
+endobj
+
+68 0 obj
+<</Count 0/Title<FEFF0053006C00690064006500200036>
+/Dest[39 0 R/XYZ 0 595 0]/Parent 62 0 R/Prev 67 0 R/Next 69 0 R>>
+endobj
+
+69 0 obj
+<</Count 0/Title<FEFF0053006C00690064006500200037>
+/Dest[44 0 R/XYZ 0 595 0]/Parent 62 0 R/Prev 68 0 R>>
+endobj
+
+49 0 obj
+<</Type/Pages
+/Resources 61 0 R
+/MediaBox[ 0 0 794 595 ]
+/Kids[ 1 0 R 12 0 R 17 0 R 22 0 R 34 0 R 39 0 R 44 0 R ]
+/Count 7>>
+endobj
+
+70 0 obj
+<</Type/Catalog/Pages 49 0 R
+/OpenAction[1 0 R /XYZ null null 0]
+/Outlines 62 0 R
+>>
+endobj
+
+71 0 obj
+<</Creator<FEFF0049006D00700072006500730073>
+/Producer<FEFF004F00700065006E004F00660066006900630065002E006F0072006700200033002E0032>
+/CreationDate(D:20110523175447-07'00')>>
+endobj
+
+xref
+0 72
+0000000000 65535 f
+0000137315 00000 n
+0000000019 00000 n
+0000001503 00000 n
+0000015408 00000 n
+0000032550 00000 n
+0000032761 00000 n
+0000001524 00000 n
+0000014125 00000 n
+0000015387 00000 n
+0000020386 00000 n
+0000032527 00000 n
+0000137459 00000 n
+0000032801 00000 n
+0000034731 00000 n
+0000034753 00000 n
+0000034965 00000 n
+0000137605 00000 n
+0000035006 00000 n
+0000037229 00000 n
+0000037251 00000 n
+0000037463 00000 n
+0000137751 00000 n
+0000037504 00000 n
+0000039000 00000 n
+0000107305 00000 n
+0000107517 00000 n
+0000039022 00000 n
+0000080994 00000 n
+0000080485 00000 n
+0000080508 00000 n
+0000080973 00000 n
+0000106873 00000 n
+0000107284 00000 n
+0000137897 00000 n
+0000107558 00000 n
+0000109517 00000 n
+0000109539 00000 n
+0000109751 00000 n
+0000138043 00000 n
+0000109792 00000 n
+0000111809 00000 n
+0000111831 00000 n
+0000112043 00000 n
+0000138189 00000 n
+0000112084 00000 n
+0000113881 00000 n
+0000113903 00000 n
+0000114115 00000 n
+0000139304 00000 n
+0000114156 00000 n
+0000133469 00000 n
+0000133492 00000 n
+0000133688 00000 n
+0000134271 00000 n
+0000134702 00000 n
+0000136267 00000 n
+0000136289 00000 n
+0000136480 00000 n
+0000136783 00000 n
+0000136952 00000 n
+0000136995 00000 n
+0000138335 00000 n
+0000138391 00000 n
+0000138512 00000 n
+0000138646 00000 n
+0000138780 00000 n
+0000138914 00000 n
+0000139048 00000 n
+0000139182 00000 n
+0000139446 00000 n
+0000139548 00000 n
+trailer
+<</Size 72/Root 70 0 R
+/Info 71 0 R
+/ID [ <FC61FCB6158BA34956B194E5650A59BB>
+<FC61FCB6158BA34956B194E5650A59BB> ]
+/DocChecksum /928D791C750D7DB2221BC09CD105163C
+>>
+startxref
+139739
+%%EOF
1
0

r24781: {} ja_JP and nl_NL was renamed to ja and nl (translation/trunk/projects/website/po)
by Runa Sandvik 23 May '11
by Runa Sandvik 23 May '11
23 May '11
Author: runa
Date: 2011-05-23 21:43:17 +0000 (Mon, 23 May 2011)
New Revision: 24781
Removed:
translation/trunk/projects/website/po/ja_JP/
translation/trunk/projects/website/po/nl_NL/
Log:
ja_JP and nl_NL was renamed to ja and nl
1
0
Author: runa
Date: 2011-05-23 21:22:50 +0000 (Mon, 23 May 2011)
New Revision: 24780
Added:
translation/trunk/projects/website/po/cy/
translation/trunk/projects/website/po/cy/about/
translation/trunk/projects/website/po/cy/about/3-low.board.po
translation/trunk/projects/website/po/cy/about/4-optional.gsoc.po
translation/trunk/projects/website/po/cy/docs/
translation/trunk/projects/website/po/cy/docs/4-optional.running-a-mirror.po
translation/trunk/projects/website/po/cy/download/
translation/trunk/projects/website/po/cy/download/3-low.thankyou.po
translation/trunk/projects/website/po/cy/getinvolved/
translation/trunk/projects/website/po/cy/getinvolved/4-optional.translation.po
translation/trunk/projects/website/po/cy/projects/
translation/trunk/projects/website/po/cy/projects/3-low.tordnsel.po
translation/trunk/projects/website/po/cy/projects/3-low.torweather.po
translation/trunk/projects/website/po/el/about/
translation/trunk/projects/website/po/el/about/3-low.translators.po
translation/trunk/projects/website/po/fi/
translation/trunk/projects/website/po/fi/1-high.index.po
translation/trunk/projects/website/po/fi/docs/
translation/trunk/projects/website/po/fi/docs/3-low.debian-vidalia.po
translation/trunk/projects/website/po/fi/docs/3-low.debian.po
translation/trunk/projects/website/po/fi/docs/3-low.tor-doc-unix.po
translation/trunk/projects/website/po/fi/getinvolved/
translation/trunk/projects/website/po/fi/getinvolved/4-optional.translation-overview.po
translation/trunk/projects/website/po/fr/docs/1-high.bridges.po
translation/trunk/projects/website/po/fr/docs/1-high.proxychain.po
translation/trunk/projects/website/po/fr/torbutton/
translation/trunk/projects/website/po/fr/torbutton/3-low.torbutton-faq.po
translation/trunk/projects/website/po/ja/
translation/trunk/projects/website/po/ja/1-high.index.po
translation/trunk/projects/website/po/ja/about/
translation/trunk/projects/website/po/ja/about/2-medium.overview.po
translation/trunk/projects/website/po/ja/docs/
translation/trunk/projects/website/po/ja/docs/2-medium.documentation.po
translation/trunk/projects/website/po/ja/getinvolved/
translation/trunk/projects/website/po/ja/getinvolved/3-low.tshirt.po
translation/trunk/projects/website/po/nl/
translation/trunk/projects/website/po/nl/1-high.index.po
translation/trunk/projects/website/po/vi/
translation/trunk/projects/website/po/vi/1-high.index.po
translation/trunk/projects/website/po/vi/docs/
translation/trunk/projects/website/po/vi/docs/2-medium.verifying-signatures.po
translation/trunk/projects/website/po/vi/download/
translation/trunk/projects/website/po/vi/download/3-low.download.po
translation/trunk/projects/website/po/vi/projects/
translation/trunk/projects/website/po/vi/projects/3-low.gettor.po
translation/trunk/projects/website/po/vi/projects/4-optional.torbrowser-details.po
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.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/donate/3-low.matching-program.po
translation/trunk/projects/website/po/ar/download/3-low.download-unix.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/3-low.torweather.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/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/docs/2-medium.verifying-signatures.po
translation/trunk/projects/website/po/fa/docs/3-low.faq-abuse.po
translation/trunk/projects/website/po/fa/docs/3-low.tor-doc-web.po
translation/trunk/projects/website/po/fa/download/1-high.download-easy.po
translation/trunk/projects/website/po/fa/download/3-low.download.po
translation/trunk/projects/website/po/it/press/4-optional.2010-03-25-tor-store-press-release.po
translation/trunk/projects/website/po/ja_JP/1-high.index.po
translation/trunk/projects/website/po/ja_JP/about/2-medium.overview.po
translation/trunk/projects/website/po/ja_JP/docs/2-medium.documentation.po
translation/trunk/projects/website/po/ja_JP/getinvolved/3-low.tshirt.po
translation/trunk/projects/website/po/my/1-high.index.po
translation/trunk/projects/website/po/nl_NL/1-high.index.po
translation/trunk/projects/website/po/ru/press/4-optional.2010-03-25-tor-store-press-release.po
translation/trunk/projects/website/po/zh_CN/about/2-medium.overview.po
Log:
I forgot to add some of these files earlier
Modified: translation/trunk/projects/website/po/ar/about/3-low.board.po
===================================================================
--- translation/trunk/projects/website/po/ar/about/3-low.board.po 2011-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/about/3-low.board.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:09+0000\n"
+"PO-Revision-Date: 2011-05-23 21:14+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/about/3-low.corepeople.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-18 10:38+0200\n"
-"PO-Revision-Date: 2011-05-23 16:07+0000\n"
+"PO-Revision-Date: 2011-05-23 21:13+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/about/3-low.financials.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:07+0000\n"
+"PO-Revision-Date: 2011-05-23 21:12+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/about/3-low.sponsors.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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:39+0000\n"
-"PO-Revision-Date: 2011-05-23 16:11+0000\n"
+"PO-Revision-Date: 2011-05-23 21:16+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/about/3-low.translators.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:11+0000\n"
+"PO-Revision-Date: 2011-05-23 21:17+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/about/3-low.volunteers.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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:49+0200\n"
-"PO-Revision-Date: 2011-05-23 16:09+0000\n"
+"PO-Revision-Date: 2011-05-23 21:14+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/about/4-optional.gsoc.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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:28+0200\n"
-"PO-Revision-Date: 2011-05-23 16:04+0000\n"
+"PO-Revision-Date: 2011-05-23 21:09+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/docs/2-medium.documentation.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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 16:59+0200\n"
-"PO-Revision-Date: 2011-05-23 16:03+0000\n"
+"PO-Revision-Date: 2011-05-23 21:08+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/docs/2-medium.installguide.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:05+0000\n"
+"PO-Revision-Date: 2011-05-23 21:11+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/docs/2-medium.tor-doc-osx.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:06+0000\n"
+"PO-Revision-Date: 2011-05-23 21:12+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/docs/2-medium.tor-doc-relay.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:09+0000\n"
+"PO-Revision-Date: 2011-05-23 21:15+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/docs/2-medium.verifying-signatures.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-18 10:37+0200\n"
-"PO-Revision-Date: 2011-05-23 16:11+0000\n"
+"PO-Revision-Date: 2011-05-23 21:16+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/docs/3-low.N900.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:05+0000\n"
+"PO-Revision-Date: 2011-05-23 21:11+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/docs/3-low.android.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:07+0000\n"
+"PO-Revision-Date: 2011-05-23 21:12+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/docs/3-low.debian-vidalia.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:10+0000\n"
+"PO-Revision-Date: 2011-05-23 21:15+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.rpms.po
===================================================================
--- translation/trunk/projects/website/po/ar/docs/3-low.rpms.po 2011-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/docs/3-low.rpms.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:03+0000\n"
+"PO-Revision-Date: 2011-05-23 21:09+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/docs/3-low.tor-doc-unix.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:07+0000\n"
+"PO-Revision-Date: 2011-05-23 21:13+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/docs/3-low.tor-doc-web.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:06+0000\n"
+"PO-Revision-Date: 2011-05-23 21:11+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/docs/3-low.tor-hidden-service.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:04+0000\n"
+"PO-Revision-Date: 2011-05-23 21:10+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/docs/3-low.trademark-faq.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:10+0000\n"
+"PO-Revision-Date: 2011-05-23 21:15+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/docs/4-optional.running-a-mirror.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:08+0000\n"
+"PO-Revision-Date: 2011-05-23 21:13+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/donate/3-low.become-sponsor.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:09+0000\n"
+"PO-Revision-Date: 2011-05-23 21:14+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/donate/3-low.donate-hardware.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:11+0000\n"
+"PO-Revision-Date: 2011-05-23 21:16+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/donate/3-low.donate-service.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:10+0000\n"
+"PO-Revision-Date: 2011-05-23 21:16+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.matching-program.po
===================================================================
--- translation/trunk/projects/website/po/ar/donate/3-low.matching-program.po 2011-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/donate/3-low.matching-program.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:11+0000\n"
+"PO-Revision-Date: 2011-05-23 21:16+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/download/3-low.download-unix.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:07+0000\n"
+"PO-Revision-Date: 2011-05-23 21:13+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.thankyou.po
===================================================================
--- translation/trunk/projects/website/po/ar/download/3-low.thankyou.po 2011-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/download/3-low.thankyou.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:08+0000\n"
+"PO-Revision-Date: 2011-05-23 21:13+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/getinvolved/3-low.mirrors.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:10+0000\n"
+"PO-Revision-Date: 2011-05-23 21:16+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/getinvolved/3-low.tshirt.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:10+0000\n"
+"PO-Revision-Date: 2011-05-23 21:15+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/getinvolved/4-optional.open-positions.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:09+0000\n"
+"PO-Revision-Date: 2011-05-23 21:14+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/getinvolved/4-optional.research.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:10+0000\n"
+"PO-Revision-Date: 2011-05-23 21:15+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/getinvolved/4-optional.translation-overview.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:06+0000\n"
+"PO-Revision-Date: 2011-05-23 21:12+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/getinvolved/4-optional.translation.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:09+0000\n"
+"PO-Revision-Date: 2011-05-23 21:14+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/getinvolved/4-optional.volunteer.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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:28+0200\n"
-"PO-Revision-Date: 2011-05-23 16:06+0000\n"
+"PO-Revision-Date: 2011-05-23 21:12+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.inthemedia.po
===================================================================
--- translation/trunk/projects/website/po/ar/press/3-low.inthemedia.po 2011-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/press/3-low.inthemedia.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:05+0000\n"
+"PO-Revision-Date: 2011-05-23 21:10+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/press/3-low.press.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:07+0000\n"
+"PO-Revision-Date: 2011-05-23 21:12+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/press/4-optional.2008-12-19-roadmap-press-release.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:04+0000\n"
+"PO-Revision-Date: 2011-05-23 21:10+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/press/4-optional.2010-03-25-tor-store-press-release.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:09+0000\n"
+"PO-Revision-Date: 2011-05-23 21:14+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/projects/1-high.torbrowser-split.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:10+0000\n"
+"PO-Revision-Date: 2011-05-23 21:15+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/projects/3-low.gettor.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:06+0000\n"
+"PO-Revision-Date: 2011-05-23 21:11+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/projects/3-low.projects.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:11+0000\n"
+"PO-Revision-Date: 2011-05-23 21:17+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/projects/3-low.puppettor.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:04+0000\n"
+"PO-Revision-Date: 2011-05-23 21:09+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/projects/3-low.tordnsel.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:04+0000\n"
+"PO-Revision-Date: 2011-05-23 21:09+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.torweather.po
===================================================================
--- translation/trunk/projects/website/po/ar/projects/3-low.torweather.po 2011-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/projects/3-low.torweather.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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:19+0000\n"
-"PO-Revision-Date: 2011-05-23 16:10+0000\n"
+"PO-Revision-Date: 2011-05-23 21:16+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/projects/4-optional.arm.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:10+0000\n"
+"PO-Revision-Date: 2011-05-23 21:16+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/projects/4-optional.torbrowser-details.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:07+0000\n"
+"PO-Revision-Date: 2011-05-23 21:12+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/torbutton/3-low.index.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:07+0000\n"
+"PO-Revision-Date: 2011-05-23 21:12+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/torbutton/3-low.torbutton-faq.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:08+0000\n"
+"PO-Revision-Date: 2011-05-23 21:13+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ar/torbutton/3-low.torbutton-options.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:08+0000\n"
+"PO-Revision-Date: 2011-05-23 21:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Added: translation/trunk/projects/website/po/cy/about/3-low.board.po
===================================================================
--- translation/trunk/projects/website/po/cy/about/3-low.board.po (rev 0)
+++ translation/trunk/projects/website/po/cy/about/3-low.board.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -0,0 +1,165 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR The Tor Project, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+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-05 19:13+0000\n"
+"PO-Revision-Date: 2011-05-14 22:52+0000\n"
+"Last-Translator: cymro <markives(a)hotmail.co.uk>\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: cy\n"
+"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3\n"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/about/en/board.wml:8
+msgid ""
+"<a href=\"<page index>\">Home » </a> <a href=\"<page "
+"about/overview>\">About » </a> <a href=\"<page about/board>\">Board of"
+" Directors</a>"
+msgstr ""
+"<a href=\"<page index>\">Hafan » </a> <a href=\"<page "
+"about/overview>\">Amdan » </a> <a href=\"<page about/board>\">Bwrdd "
+"Cyfarwyddwyr</a>"
+
+#. type: Content of: <div><div><h1>
+#: /home/runa/tor/website/about/en/board.wml:13
+msgid "Board of Directors"
+msgstr "Bwrdd Cyfarwyddwyr"
+
+#. type: Content of: <div><div><table><tr><td><div>
+#: /home/runa/tor/website/about/en/board.wml:17
+msgid "Roger Dingledine"
+msgstr "Roger Dingledine"
+
+#. type: Content of: <div><div><table><tr><td><div>
+#: /home/runa/tor/website/about/en/board.wml:18
+msgid "President and Director"
+msgstr "Llywydd a Chyfarwyddwr"
+
+#. type: Content of: <div><div><table><tr><td><p>
+#: /home/runa/tor/website/about/en/board.wml:19
+msgid ""
+"Original developer of Tor along with Nick Mathewson and Paul Syverson. "
+"Leading researcher in the anonymous communications field. Frequent speaker "
+"at conferences to advocate Tor and explain what Tor is and can do. Helps "
+"coordinate academic researchers."
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td><div>
+#: /home/runa/tor/website/about/en/board.wml:22
+msgid "Meredith Hoban-Dunn"
+msgstr "Meredith Hoban-Dunn"
+
+#. type: Content of: <div><div><table><tr><td><div>
+#: /home/runa/tor/website/about/en/board.wml:23
+msgid "Audit Committee Chair"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td><p>
+#: /home/runa/tor/website/about/en/board.wml:24
+msgid ""
+"Meredith is an accomplished accountant, advisor, and banker. Her role is to"
+" help us make sure we're able to pass our corporate audits correctly, watch "
+"for internal fraud, tell us when we're doing things in a non-standard way, "
+"and so on."
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td><div>
+#: /home/runa/tor/website/about/en/board.wml:29
+msgid "Ian Goldberg"
+msgstr "Ian Goldberg"
+
+#. type: Content of: <div><div><table><tr><td><div>
+#: /home/runa/tor/website/about/en/board.wml:30
+msgid "Chairman of the Board"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td><p>
+#: /home/runa/tor/website/about/en/board.wml:31
+msgid ""
+"Cryptographer, privacy expert, and professor; one of the designers of <a "
+"href=\"http://www.cypherpunks.ca/otr/\">Off-the-Record Messaging</a>."
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td><div>
+#: /home/runa/tor/website/about/en/board.wml:34
+msgid "Andrew Lewman"
+msgstr "Andrew Lewman"
+
+#. type: Content of: <div><div><table><tr><td><div>
+#: /home/runa/tor/website/about/en/board.wml:35
+msgid "Secretary, Treasurer, and Executive Director"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td><p>
+#: /home/runa/tor/website/about/en/board.wml:36
+msgid ""
+"Andrew is the Executive Director reponsible for all operations of The Tor "
+"Project, Inc. His current activities can be found at <a "
+"href=\"http://lewman.com\">his website</a>."
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td><div>
+#: /home/runa/tor/website/about/en/board.wml:41
+msgid "Nick Mathewson"
+msgstr "Nick Mathewson"
+
+#. type: Content of: <div><div><table><tr><td><div>
+#: /home/runa/tor/website/about/en/board.wml:42
+msgid "Vice-President and Director"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td><p>
+#: /home/runa/tor/website/about/en/board.wml:43
+msgid ""
+"Nick is one of the original developers of Tor. He's the Chief Architect of "
+"The Tor Project, Inc."
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td><div>
+#: /home/runa/tor/website/about/en/board.wml:46
+msgid "Xianghui (Isaac) Mao"
+msgstr "Xianghui (Isaac) Mao"
+
+#. type: Content of: <div><div><table><tr><td><div>
+#: /home/runa/tor/website/about/en/board.wml:47 /tmp/suPiVmTnZN.xml:54
+#: /tmp/suPiVmTnZN.xml:59
+msgid "Director"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td><p>
+#: /home/runa/tor/website/about/en/board.wml:48
+msgid ""
+"Chinese blogging and privacy activist. His current activities can be found "
+"at <a href=\"http://isaacmao.com/\">his website</a>."
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td><div>
+#: /home/runa/tor/website/about/en/board.wml:53
+msgid "Frank Rieger"
+msgstr "Frank Rieger"
+
+#. type: Content of: <div><div><table><tr><td><p>
+#: /home/runa/tor/website/about/en/board.wml:55
+msgid "CTO of <a href=\"http://www.cryptophone.de/\">GSMK Cryptophone</a>."
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td><div>
+#: /home/runa/tor/website/about/en/board.wml:58
+msgid "Wendy Seltzer"
+msgstr "Wendy Seltzer"
+
+#. type: Content of: <div><div><table><tr><td><p>
+#: /home/runa/tor/website/about/en/board.wml:60
+msgid ""
+"Lawyer, cyberlaw professor, and founder of <a "
+"href=\"http://chillingeffects.org/\">ChillingEffects.org</a>."
+msgstr ""
+
+
Added: translation/trunk/projects/website/po/cy/about/4-optional.gsoc.po
===================================================================
--- translation/trunk/projects/website/po/cy/about/4-optional.gsoc.po (rev 0)
+++ translation/trunk/projects/website/po/cy/about/4-optional.gsoc.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -0,0 +1,370 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR The Tor Project, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+msgid ""
+msgstr ""
+"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:28+0200\n"
+"PO-Revision-Date: 2011-05-15 14:19+0000\n"
+"Last-Translator: cymro <markives(a)hotmail.co.uk>\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: cy\n"
+"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3\n"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/about/en/gsoc.wml:8
+msgid ""
+"<a href=\"<page index>\">Home » </a> <a href=\"<page "
+"about/gsoc>\">Google Summer of Code</a>"
+msgstr ""
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/tor/website/about/en/gsoc.wml:12
+msgid "Tor: Google Summer of Code 2011"
+msgstr ""
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/about/en/gsoc.wml:13
+msgid "<hr>"
+msgstr "<hr>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/gsoc.wml:16
+msgid ""
+"In the last four years, The Tor Project in collaboration with <a "
+"href=\"https://www.eff.org/\">The Electronic Frontier Foundation</a> "
+"successfully took part in <a "
+"href=\"http://code.google.com/soc/2007/eff/about.html\">Google Summer of "
+"Code 2007</a>, <a "
+"href=\"http://code.google.com/soc/2008/eff/about.html\">2008</a>, <a "
+"href=\"http://socghop.appspot.com/gsoc/org/home/google/gsoc2009/eff\">2009</a>,"
+" and <a href=\"<blog>tor-google-summer-code-2010\">2010</a>. In total we "
+"had 21 students as full-time developers for the summers of 2007 to 2010. Now"
+" we are applying to <a "
+"href=\"https://socghop.appspot.com/gsoc/program/home/google/gsoc2011\">Google"
+" Summer of Code 2011</a>."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/gsoc.wml:31
+msgid ""
+"The <a "
+"href=\"https://socghop.appspot.com/document/show/gsoc_program/google/gsoc2011/time…">timeline</a>"
+" for GSoC 2011 is available."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/gsoc.wml:37
+msgid ""
+"You must be self-motivated and able to work independently. We have a "
+"thriving community of interested developers on the IRC channel and mailing "
+"lists, and we're eager to work with you, brainstorm about design, and so on,"
+" but you need to be able to manage your own time, and you need to already be"
+" somewhat familiar with how free software development on the Internet works."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/gsoc.wml:46
+msgid "Working on Tor is rewarding because:"
+msgstr "Mae gweithio ar Tor yn werth chweil oherwydd:"
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/about/en/gsoc.wml:50
+msgid ""
+"You can work your own hours in your own locations. As long as you get the "
+"job done, we don't care about the process."
+msgstr ""
+"Gallwch chi eich gweithio yn amser eich hun yn eich lleoliadau eich hun. Cyn"
+" belled ag y byddwch yn cael y swydd ei wneud, nid ydym yn gofalu am y "
+"broses."
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/about/en/gsoc.wml:52
+msgid ""
+"We only write free (open source) software. The tools you make won't be "
+"locked down or rot on a shelf."
+msgstr ""
+"Dim ond yn ysgrifennu meddalwedd rhydd (ffynhonnell agored). Mae'r offer a "
+"wnewch ni fydd yn cael eu cloi i lawr neu ei adael i pydru ar silff."
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/about/en/gsoc.wml:54
+msgid ""
+"You will work with a world-class team of anonymity experts and developers on"
+" what is already the largest and most active strong anonymity network ever."
+msgstr ""
+"Byddwch yn gweithio gyda thîm safon fyd-eang o arbenigwyr a datblygwyr "
+"anhysbysrwydd ar yr hyn sydd eisoes y rhwydwaith anhysbysrwydd mwyaf a mwyaf"
+" gweithredol a cryf erioed."
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/about/en/gsoc.wml:57
+msgid ""
+"The work you do could contribute to academic publications — Tor "
+"development raises many open questions and interesting problems in the field"
+" of <a href=\"http://freehaven.net/anonbib/\">anonymity systems</a>."
+msgstr ""
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/about/en/gsoc.wml:63
+msgid "<a id=\"GettingInvolved\"></a>"
+msgstr "<a id=\"GettingInvolved\"></a>"
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/tor/website/about/en/gsoc.wml:64
+msgid "<a class=\"anchor\" href=\"#GettingInvolved\">How To Get Involved</a>"
+msgstr "<a class=\"anchor\" href=\"#GettingInvolved\">Sut i Gymryd Rhan</a>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/gsoc.wml:67
+msgid ""
+"The best way to get involved is to come listen on IRC (both \"#tor\" and "
+"\"#tor-dev\"), read our docs and other webpages, try out the various tools "
+"that are related to the projects that interest you, and ask questions as "
+"they come to you: <a href=\"<page docs/documentation>#UpToSpeed\">Getting up"
+" to speed</a>."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/gsoc.wml:75
+msgid ""
+"In addition to getting some more development work done on Tor and related "
+"applications, Google and Tor are most interested in getting students "
+"involved in Tor development in a way that keeps them involved after the "
+"summer too. That means we will give priority to students who have "
+"demonstrated continued interest and responsiveness. We will require students"
+" to write public status report updates for our community, either by blogging"
+" or sending mail to our mailing list. We want to ensure that the community "
+"and the student can both benefit from each other."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/gsoc.wml:86
+msgid ""
+"When it comes time for us to choose projects, our impression of how well "
+"you'll fit into our community — and how good you are at taking the "
+"initiative to do things — will be at least as important as the actual "
+"project you'll be working on."
+msgstr ""
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/about/en/gsoc.wml:92
+msgid "<a id=\"Ideas\"></a>"
+msgstr "<a id=\"Ideas\"></a>"
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/tor/website/about/en/gsoc.wml:93
+msgid "<a class=\"anchor\" href=\"#Ideas\">Ideas List</a>"
+msgstr "<a class=\"anchor\" href=\"#Ideas\">Rhestr Syniadau</a>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/gsoc.wml:96
+msgid ""
+"To start with, please see our <b><a href=\"<page "
+"getinvolved/volunteer>#Projects\">projects page</a></b> and its following "
+"ideas."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/gsoc.wml:102
+msgid ""
+"The best kind of ideas are A) ones that we know we need done real soon now "
+"(you can get a sense of urgency from the priority on the wishlist, and from "
+"talking to the potential mentors), and B) ones where it's clear what needs "
+"to be done, at least for the first few steps. Lots of students try to bite "
+"off open-ended research topics; but if you're going to be spending the first"
+" half of your summer figuring out what exactly you should code, and there's "
+"a chance that the conclusion will be \"oh, that isn't actually a good idea "
+"to build\", then your proposal will make us very nervous. Try to figure out "
+"how much you can actually fit in a summer, break the work down into "
+"manageable pieces, and most importantly, figure out how to make sure your "
+"incremental milestones are actually useful — if you don't finish "
+"everything in your plan, we want to know that you'll still have produced "
+"something useful."
+msgstr ""
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/about/en/gsoc.wml:117
+msgid "<a id=\"Template\"></a>"
+msgstr "<a id=\"Template\"></a>"
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/tor/website/about/en/gsoc.wml:118
+msgid "<a class=\"anchor\" href=\"#Template\">Application Template</a>"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/gsoc.wml:121
+msgid ""
+"Please use the following template for your application, to make sure you "
+"provide enough information for us to evaluate you and your proposal."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/about/en/gsoc.wml:127
+msgid ""
+"What project would you like to work on? Use our ideas lists as a starting "
+"point or make up your own idea. Your proposal should include high-level "
+"descriptions of what you're going to do, with more details about the parts "
+"you expect to be tricky. Your proposal should also try to break down the "
+"project into tasks of a fairly fine granularity, and convince us you have a "
+"plan for finishing it. A timeline for what you will be doing throughout the "
+"summer is highly recommended."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/about/en/gsoc.wml:135
+msgid ""
+"Point us to a code sample: something good and clean to demonstrate that you "
+"know what you're doing, ideally from an existing project."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/about/en/gsoc.wml:138
+msgid "Why do you want to work with The Tor Project / EFF in particular?"
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/about/en/gsoc.wml:141
+msgid ""
+"Tell us about your experiences in free software development environments. We"
+" especially want to hear examples of how you have collaborated with others "
+"rather than just working on a project by yourself."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/about/en/gsoc.wml:146
+msgid ""
+"Will you be working full-time on the project for the summer, or will you "
+"have other commitments too (a second job, classes, etc)? If you won't be "
+"available full-time, please explain, and list timing if you know them for "
+"other major deadlines (e.g. exams). Having other activities isn't a deal-"
+"breaker, but we don't want to be surprised."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/about/en/gsoc.wml:152
+msgid ""
+"Will your project need more work and/or maintenance after the summer ends? "
+"What are the chances you will stick around and help out with that and other "
+"related projects?"
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/about/en/gsoc.wml:156
+msgid ""
+"What is your ideal approach to keeping everybody informed of your progress, "
+"problems, and questions over the course of the project? Said another way, "
+"how much of a \"manager\" will you need your mentor to be?"
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/about/en/gsoc.wml:160
+msgid ""
+"What school are you attending? What year are you, and what's your "
+"major/degree/focus? If you're part of a research group, which one?"
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/about/en/gsoc.wml:163
+msgid ""
+"How can we contact you to ask you further questions? Google doesn't share "
+"your contact details with us automatically, so you should include that in "
+"your application. In addition, what's your IRC nickname? Interacting with us"
+" on IRC will help us get to know you, and help you get to know our "
+"community."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/about/en/gsoc.wml:169
+msgid ""
+"Is there anything else we should know that will make us like your project "
+"more?"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/gsoc.wml:175
+msgid ""
+"We will pick out mentors for this year — most of the people on the <a "
+"href=\"<page about/corepeople>\">core Tor development team</a> plus a few "
+"people from <a href=\"http://www.eff.org/about/staff\">EFF's staff</a> "
+"— so we should be able to accommodate a wide variety of projects, "
+"ranging from work on Tor itself to work on supporting or peripheral "
+"projects. We can figure out which mentor is appropriate while we're "
+"discussing the project you have in mind. We plan to assign a primary mentor "
+"to each student, along with one or two assistant mentors to help answer "
+"questions and help you integrate with the broader Tor community."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/gsoc.wml:187
+msgid ""
+"If you're interested, you can either contact the <a href=\"<page "
+"about/contact>\">tor-assistants list</a> with a brief summary of your "
+"proposal and we'll give you feedback, or just jump right in and post your "
+"ideas and goals to the <a href=\"<page docs/documentation>#MailingLists"
+"\">tor-talk mailing list</a>. Make sure to be responsive during the "
+"application selection period; if we like your application but you never "
+"answer our mails asking for more information, that's not a good sign."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/gsoc.wml:197
+msgid ""
+"The more applications we get, the more likely Google is to give us good "
+"students. So if you haven't filled up your summer plans yet, please consider"
+" spending some time working with us to make Tor better!"
+msgstr ""
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/about/en/gsoc.wml:202
+msgid "<a id=\"Example\"></a>"
+msgstr ""
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/tor/website/about/en/gsoc.wml:203
+msgid "<a class=\"anchor\" href=\"#Example\">Application Examples</a>"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/gsoc.wml:206
+msgid ""
+"Below are examples of some GSoC applications from previous years we liked. "
+"The best applications tend to go through several iterations so you're highly"
+" encouraged to send drafts early."
+msgstr ""
+
+#. type: Content of: <div><div><ul><li><h4>
+#: /home/runa/tor/website/about/en/gsoc.wml:212
+msgid ""
+"<a href=\"http://tor.spanning-tree.org/proposal.html\">DNSEL Rewrite</a> by "
+"Harry Bock"
+msgstr ""
+
+#. type: Content of: <div><div><ul><li><h4>
+#: /home/runa/tor/website/about/en/gsoc.wml:213
+msgid ""
+"<a href=\"http://kjb.homeunix.com/wp-content/uploads/2010/05/KevinBerry-"
+"GSoC2010-TorProposal.html\">Extending Tor Network Metrics</a> by Kevin Berry"
+msgstr ""
+
+#. type: Content of: <div><div><ul><li><h4>
+#: /home/runa/tor/website/about/en/gsoc.wml:214
+msgid ""
+"<a href=\"../about/gsocProposal/gsoc10-proposal-soat.txt\">SOAT "
+"Expansion</a> by John Schanck"
+msgstr ""
+
+#. type: Content of: <div><div><ul><li><h4>
+#: /home/runa/tor/website/about/en/gsoc.wml:215
+msgid ""
+"<a href=\"http://www.atagar.com/misc/gsocBlog09/\">Website Pootle "
+"Translation</a> by Damian Johnson"
+msgstr ""
+
+
Added: translation/trunk/projects/website/po/cy/docs/4-optional.running-a-mirror.po
===================================================================
--- translation/trunk/projects/website/po/cy/docs/4-optional.running-a-mirror.po (rev 0)
+++ translation/trunk/projects/website/po/cy/docs/4-optional.running-a-mirror.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -0,0 +1,175 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR The Tor Project, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+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-05 19:13+0000\n"
+"PO-Revision-Date: 2011-05-15 14:01+0000\n"
+"Last-Translator: cymro <markives(a)hotmail.co.uk>\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: cy\n"
+"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3\n"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/running-a-mirror.wml:8
+msgid ""
+"<a href=\"<page index>\">Home » </a> <a href=\"<page "
+"docs/documentation>\">Documentation » </a> <a href=\"<page "
+"docs/running-a-mirror>\">Running a Mirror</a>"
+msgstr ""
+"<a href=\"<page index>\">Hafan » </a> <a href=\"<page "
+"docs/documentation>\"> » </a> <a href=\"<page "
+"docs/running-a-mirror>\">Rhedeg ddrych</a>"
+
+#. type: Content of: <div><div><h1>
+#: /home/runa/tor/website/docs/en/running-a-mirror.wml:13
+msgid "Tor: Running a Mirror"
+msgstr "Tor: Rhedeg Drych"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/running-a-mirror.wml:14
+msgid "<hr>"
+msgstr "<hr>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/running-a-mirror.wml:16
+msgid ""
+"Thank you for wanting to mirror the Tor website. All of our mirrors are "
+"publicly listed on <a href=\"<page getinvolved/mirrors>\">our mirrors "
+"page</a>. We've included some sample commands and configuration below to "
+"make the initial setup and ongoing maintenance a minimal effort. The Tor "
+"website and distribution directory currently require 5.0 GB of disk space."
+msgstr ""
+"Diolch i chi am eisiau adlewyrchu'r wefan Tor. Mae pob un o'n drychau wedi'u"
+" rhestru yn gyhoeddus ar <a href=\"<page getinvolved/mirrors>\">ein tudalen "
+"ddrychau </a> . Rydym wedi cynnwys rhai sampl gorchmynion a chyfluniad isod "
+"i wneud y setup cychwynnol ac yn cynnal a chadw parhaus efo'r ymdrech lleiaf"
+" posibl. Mae'r wefan Tor a chyfeiriadur dosbarthu ar hyn o bryd yn gofyn am "
+"5.0 GB o lle ar y ddisg."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/running-a-mirror.wml:24
+msgid ""
+"If you would like to run a mirror, it's as easy as this command to download "
+"everything a mirror should share with the world: <br> <br> <tt> rsync -av "
+"--delete rsync://rsync.torproject.org/tor tor-mirror/ </tt>"
+msgstr ""
+"Os hoffech chi redeg drych, mae mor hawdd â hon archa i lwytho i lawr popeth"
+" dylai drych rannu gyda'r byd: <br><br> <tt>rsync-av - dileu rsync: / / "
+"rsync.torproject.org / tor tor-drych /</tt>"
+
+#. type: Content of: <div><div><p><p>
+#: /home/runa/tor/website/docs/en/running-a-mirror.wml:32
+msgid ""
+"In order to assure we have reliable and up to date mirrors, please ensure "
+"your mirror does at least the following:<br/><br/> Updates <b>no less</b> "
+"than every six hours, but no more frequent than every hour.<br/><br/> Allows"
+" \"Directory Index / Indexes\" (Index viewing) of the /dist "
+"directory.<br/><br/> Allows \"Multiviews\" or equivalent for language "
+"localization.<br/><br/> Have a valid contact email for administrative "
+"communications should your server have issues.<br/><br/> It is highly "
+"recommended for all mirror operators to subscribe to"
+msgstr ""
+
+#. type: Content of: <div><div><p><A>
+#: /home/runa/tor/website/docs/en/running-a-mirror.wml:47
+#: /tmp/q0rYCkH0hn.xml:91
+msgid "tor-mirrors mailing list"
+msgstr "rhestr bostio drychau-tor"
+
+#. type: Content of: <div><div><p><p>
+#: /home/runa/tor/website/docs/en/running-a-mirror.wml:48
+msgid ""
+"where all mirror listing modification requests should go (ADD, CHANGE, "
+"DELETE, any other requests/notifications). Also, any technical assistance "
+"in setting up your mirror may be found here as well.<br/><br/>"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/running-a-mirror.wml:53
+msgid "<br><br>"
+msgstr "<br><br>"
+
+#. type: Content of: <div><div><p><p><tt>
+#: /home/runa/tor/website/docs/en/running-a-mirror.wml:55
+msgid ""
+"An example cronjob to update a full mirror once every 6 hours may look like "
+"so: <tt>"
+msgstr ""
+"Un enghraifft cronjob i ddiweddaru drych llawn unwaith bob 6 awr gall edrych"
+" fel hyn:"
+
+#. type: Content of: <div><div><p><p><tt><pre>
+#: /home/runa/tor/website/docs/en/running-a-mirror.wml:58
+#, no-wrap
+msgid ""
+" # m h dom mon dow command\n"
+" 0 */6 * * * rsync -aq --delete rsync://rsync.torproject.org/tor/ /var/www/mirrors/torproject.org\n"
+" "
+msgstr ""
+
+#. type: Content of: <div><div><p><p>
+#: /home/runa/tor/website/docs/en/running-a-mirror.wml:61
+msgid "</tt>"
+msgstr "</tt>"
+
+#. type: Content of: <div><div><p><tt>
+#: /home/runa/tor/website/docs/en/running-a-mirror.wml:63
+msgid ""
+"<br/> For mirror operators that use Apache, we have created a sample virtual"
+" host configuration file to use: <tt>"
+msgstr ""
+
+#. type: Content of: <div><div><p><tt><pre>
+#: /home/runa/tor/website/docs/en/running-a-mirror.wml:68
+#, no-wrap
+msgid ""
+" <VirtualHost 0.1.2.3:80>\n"
+" ServerAdmin youremail(a)example.com<br/>\n"
+" ServerName 0.1.2.3<br/>\n"
+" \n"
+" DocumentRoot /var/www/mirrors/torproject.org<br/>\n"
+" \n"
+" <Directory /var/www/mirrors/torproject.org/><br/>\n"
+" Options MultiViews Indexes<br/>\n"
+" DirectoryIndex index<br/>\n"
+" AllowOverride None<br/>\n"
+" </Directory><br/>\n"
+" \n"
+" </VirtualHost>\n"
+" "
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/running-a-mirror.wml:82
+msgid ""
+"</tt> <br/> <br/> Please ensure that you keep your mirror updated (we "
+"suggest automating this task with something like '<tt>cron</tt>'). Our "
+"website, source code and binary releases change often. An update frequency "
+"of six hours is recommended. Tor users everywhere will thank you."
+msgstr ""
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/running-a-mirror.wml:88
+msgid "<br/>"
+msgstr "<br/>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/running-a-mirror.wml:90
+msgid "If you are running a mirror, please subscribe to the"
+msgstr "Os ydych chi'n rhedeg drych, danysgrifiwch, os gwelwch yn dda i'r"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/running-a-mirror.wml:91
+msgid ""
+", and introduce yourself there. We will add you to the mirror list. Help "
+"for mirror support and configuration issues may also be found on the list."
+msgstr ""
+
+
Added: translation/trunk/projects/website/po/cy/download/3-low.thankyou.po
===================================================================
--- translation/trunk/projects/website/po/cy/download/3-low.thankyou.po (rev 0)
+++ translation/trunk/projects/website/po/cy/download/3-low.thankyou.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -0,0 +1,193 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR The Tor Project, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+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:31+0000\n"
+"PO-Revision-Date: 2011-05-14 22:41+0000\n"
+"Last-Translator: cymro <markives(a)hotmail.co.uk>\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: cy\n"
+"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3\n"
+
+#. type: Content of: <div><div>
+#: /home/runa/transifex/website/download/en/thankyou.wml:7
+msgid ""
+"<a href=\"<page index>\">Home » </a> <a href=\"<page "
+"download/download>\">Download » </a> <a href=\"<page "
+"download/thankyou>\">Thank You</a>"
+msgstr ""
+"<a href=\"<page index>\">Hafan » </a> <a href=\"<page "
+"download/download>\">Lawrlwytho » </a> <a href=\"<page "
+"download/thankyou>\">Diolch</a>"
+
+#. type: Content of: <div><h1>
+#: /home/runa/transifex/website/download/en/thankyou.wml:12
+msgid "Thank you for downloading Tor!"
+msgstr "Diolch am lawrlwytho Tor!"
+
+#. type: Content of: <div><p>
+#: /home/runa/transifex/website/download/en/thankyou.wml:13
+msgid ""
+"<strong>Your download should begin automatically in a few seconds, but if "
+"not,you can download with our <a href=\"#\">direct link</a>.</strong>"
+msgstr ""
+
+#. type: Content of: <div><div><div><h2>
+#: /home/runa/transifex/website/download/en/thankyou.wml:16
+msgid "Installation Instructions for Mac OS X"
+msgstr ""
+
+#. type: Content of: <div><div><div><div>
+#: /home/runa/transifex/website/download/en/thankyou.wml:17
+msgid "1."
+msgstr "1."
+
+#. type: Content of: <div><div><div><div>
+#: /home/runa/transifex/website/download/en/thankyou.wml:18
+msgid ""
+"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."
+msgstr ""
+"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."
+
+#. type: Content of: <div><div><div><div>
+#: /home/runa/transifex/website/download/en/thankyou.wml:19
+msgid "2."
+msgstr "2."
+
+#. type: Content of: <div><div><div><div>
+#: /home/runa/transifex/website/download/en/thankyou.wml:20
+msgid ""
+"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."
+msgstr ""
+
+#. type: Content of: <div><div><div><div>
+#: /home/runa/transifex/website/download/en/thankyou.wml:21
+msgid "3."
+msgstr ""
+
+#. type: Content of: <div><div><div><div>
+#: /home/runa/transifex/website/download/en/thankyou.wml:22
+msgid ""
+"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."
+msgstr ""
+
+#. type: Content of: <div><div><div><p>
+#: /home/runa/transifex/website/download/en/thankyou.wml:23
+msgid "<a href=\"<page docs/tor-doc-osx>\">Read the full instructions »</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><h2>
+#: /home/runa/transifex/website/download/en/thankyou.wml:28
+msgid "Need Help?"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><ul><li>
+#: /home/runa/transifex/website/download/en/thankyou.wml:30
+msgid "<a href=\"<page docs/installguide>\">Read the Installation Guide</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><ul><li>
+#: /home/runa/transifex/website/download/en/thankyou.wml:31
+msgid "<a href=\"<page docs/faq>\">Check out the FAQ</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><ul><li>
+#: /home/runa/transifex/website/download/en/thankyou.wml:32
+msgid "<a href=\"http://wiki.torproject.org\">Read the Tor Wiki</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><ul><li>
+#: /home/runa/transifex/website/download/en/thankyou.wml:33
+msgid "<a href=\"#\">Email our Techincal Support</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><div><h2>
+#: /home/runa/transifex/website/download/en/thankyou.wml:41
+msgid "Is Your Installation Working?"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><div>
+#: /home/runa/transifex/website/download/en/thankyou.wml:42
+msgid ""
+"<img class=\"project-icon\" src=\"$(IMGROOT)/icon-default.jpg\" "
+"alt=\"Default Icon\">"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><div><h4>
+#: /home/runa/transifex/website/download/en/thankyou.wml:43
+msgid "Use TorCheck to test your Install"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><div><p>
+#: /home/runa/transifex/website/download/en/thankyou.wml:44
+msgid ""
+"Visit <a href=\"http://check.torproject.org\">check.torproject.org</a> to "
+"see if your install is working, and you’re being protected by the Tor onion "
+"router."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><h2>
+#: /home/runa/transifex/website/download/en/thankyou.wml:54
+msgid "Help Tor by Running a Relay"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><p>
+#: /home/runa/transifex/website/download/en/thankyou.wml:55
+msgid ""
+"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!"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/transifex/website/download/en/thankyou.wml:57
+msgid "<em>Current</em>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/transifex/website/download/en/thankyou.wml:58
+msgid "3,542"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/transifex/website/download/en/thankyou.wml:61
+msgid "<em>Target</em>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/transifex/website/download/en/thankyou.wml:62
+msgid "5,000"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><h2>
+#: /home/runa/transifex/website/download/en/thankyou.wml:69
+msgid "Tor Tip"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><p>
+#: /home/runa/transifex/website/download/en/thankyou.wml:70
+msgid ""
+"If you take a step towards online privacy by downloading Tor, that’s great, "
+"but remember that Tor can only be effective if you use the programs it’s "
+"developed for!"
+msgstr ""
+
+
Added: translation/trunk/projects/website/po/cy/getinvolved/4-optional.translation.po
===================================================================
--- translation/trunk/projects/website/po/cy/getinvolved/4-optional.translation.po (rev 0)
+++ translation/trunk/projects/website/po/cy/getinvolved/4-optional.translation.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -0,0 +1,129 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR The Tor Project, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+msgid ""
+msgstr ""
+"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-05-14 22:03+0000\n"
+"Last-Translator: cymro <markives(a)hotmail.co.uk>\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: cy\n"
+"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3\n"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/getinvolved/en/translation.wml:8
+msgid ""
+"<a href=\"<page index>\">Home » </a> <a href=\"<page "
+"getinvolved/volunteer>\">Get Involved » </a> <a href=\"<page "
+"getinvolved/translation>\">Translation Guidelines</a>"
+msgstr ""
+"<a href=\"<page index>\">Cartref » </a> <a href=\"<page "
+"getinvolved/volunteer>\">Cymerwch Ran » </a> <a href=\"<page "
+"getinvolved/translation>\">Canllawiau Cyfieithu</a>"
+
+#. type: Content of: <div><div><h1>
+#: /home/runa/tor/website/getinvolved/en/translation.wml:13
+msgid "Tor Website Translation Guidelines"
+msgstr "Canllawiau Cyfieithu Gwefan Tor"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/getinvolved/en/translation.wml:14
+msgid "<hr>"
+msgstr "<hr>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/getinvolved/en/translation.wml:17
+msgid ""
+"If you want to help translate the Tor website and documentation into other "
+"languages, here are some guidelines to help you do this as efficiently as "
+"possible."
+msgstr ""
+"Os ydych eisiau cyfieithu'r wefan Tor a dogfennau i ieithoedd eraill, dyma "
+"rai canllawiau i helpu chi wneud hyn mor effeithlon ag phosib."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/getinvolved/en/translation.wml:23
+msgid ""
+"If you would like to help translate other Tor project related information, "
+"please visit our <a href=\"<page getinvolved/translation-"
+"overview>\">Translation Overview</a> for a clear overview of what needs "
+"translation help. If you're stuck, please contact us via email: <tt>tor-"
+"translation AT torproject.org</tt>."
+msgstr ""
+"Os hoffech chi i helpu i gyfieithu prosiect cysylltiedig Tor wybodaeth "
+"arall, ewch i'n <a href=\"<page getinvolved/translation-overview>\">Trosolwg"
+" Cyfieithu</a> am drosolwg clir o'r hyn y mae angen cymorth cyfieithu. Os "
+"ydych yn sownd, cysylltwch â ni drwy e-bost: <tt>tor-translation AT "
+"torproject.org.</tt>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/getinvolved/en/translation.wml:30
+msgid ""
+"Note that even if you can't translate many pages for your language, a few "
+"pages will still be helpful. Also, rather than just translating each page "
+"word by word, please try to translate the ideas so they make the most sense "
+"in your language."
+msgstr ""
+"Nodwch fod hyd yn oed os nad ydych yn gallu cyfieithu llawer o tudalennau ar"
+" gyfer eich iaith, bydd rhai tudalennau yn dal i fod yn ddefnyddiol. Hefyd, "
+"yn hytrach na dim ond cyfieithu bob tudalen gair am air, rhowch gynnig i "
+"gyfieithu'r syniadau fel eu bod yn gwneud yr ystyr mwyaf yn eich iaith."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/getinvolved/en/translation.wml:37
+msgid ""
+"We would like to have translations for the files that contain the header, "
+"footer, menu and navigation for the website. The .wmi files can be located "
+"in the following directories in the SVN repository for the website: <a "
+"href=\"https://svn.torproject.org/svn/website/trunk/about/en/\">about/en</a>,"
+" <a "
+"href=\"https://svn.torproject.org/svn/website/trunk/docs/en/\">docs/en</a>, "
+"<a "
+"href=\"https://svn.torproject.org/svn/website/trunk/donate/en/\">donate/en</a>,"
+" <a href=\"https://svn.torproject.org/svn/website/trunk/en/\">en</a>, <a "
+"href=\"https://svn.torproject.org/svn/website/trunk/getinvolved/en/\">getinvolved/en</a>,"
+" <a "
+"href=\"https://svn.torproject.org/svn/website/trunk/include/\">include</a>, "
+"<a "
+"href=\"https://svn.torproject.org/svn/website/trunk/press/en/\">press/en</a>,"
+" <a "
+"href=\"https://svn.torproject.org/svn/website/trunk/projects/en/\">projects/en</a>"
+" and <a "
+"href=\"https://svn.torproject.org/svn/website/trunk/torbutton/en/\">torbutton/en</a>."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/getinvolved/en/translation.wml:52
+msgid ""
+"We would also like some translations for the diagrams on <a href=\"<page "
+"about/overview>\">the overview page</a>. You can just send us the text that "
+"should go in the diagrams, and we'll take care of making new versions of the"
+" pictures."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/getinvolved/en/translation.wml:59
+msgid ""
+"When you have some translations ready, send them to the <tt>tor-"
+"translation</tt> alias on the <a href=\"<page about/contact>\">contact "
+"page</a>. (If you have changes to existing pages, please use the diff tool "
+"to generate patch files, if possible.) If you plan to stick around and keep"
+" maintaining them, let us know and we'll be happy to give you an SVN account"
+" to manage them directly."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/getinvolved/en/translation.wml:67
+msgid ""
+"Other projects related to Tor also need translators. Please see our "
+"translation portal for <a href=\"<page getinvolved/translation-"
+"overview>\">translating other useful and related software</a>."
+msgstr ""
+
+
Added: translation/trunk/projects/website/po/cy/projects/3-low.tordnsel.po
===================================================================
--- translation/trunk/projects/website/po/cy/projects/3-low.tordnsel.po (rev 0)
+++ translation/trunk/projects/website/po/cy/projects/3-low.tordnsel.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -0,0 +1,185 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR The Tor Project, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+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-05-15 11:45+0000\n"
+"Last-Translator: cymro <markives(a)hotmail.co.uk>\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: cy\n"
+"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3\n"
+
+#. type: Content of: <div><div>
+#: /home/runa/transifex/website/projects/en/tordnsel.wml:8
+msgid ""
+"<a href=\"<page index>\">Home » </a> <a href=\"<page "
+"projects/projects>\">Projects » </a> <a href=\"<page "
+"projects/tordnsel>\">TorDNSEL</a>"
+msgstr ""
+"<a href=\"<page index>\">Hafan » </a> <a href=\"<page "
+"projects/projects>\">Prosiectau » </a> <a href=\"<page "
+"projects/tordnsel>\">TorDNSEL</a>"
+
+#. type: Content of: <div><div><h1>
+#: /home/runa/transifex/website/projects/en/tordnsel.wml:15
+msgid "The public TorDNSEL service"
+msgstr ""
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/transifex/website/projects/en/tordnsel.wml:17
+msgid "What is the TorDNSEL?"
+msgstr "Beth yw TorDNSEL?"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/transifex/website/projects/en/tordnsel.wml:19
+msgid ""
+"TorDNSEL is an active testing, DNS-based list of Tor exit nodes. Since Tor "
+"supports exit policies, a network service's Tor exit list is a function of "
+"its IP address and port. Unlike with traditional DNSxLs, services need to "
+"provide that information in their queries."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/transifex/website/projects/en/tordnsel.wml:24
+msgid ""
+"Previous DNSELs scraped Tor's network directory for exit node IP addresses, "
+"but this method fails to list nodes that don't advertise their exit address "
+"in the directory. TorDNSEL actively tests through these nodes to provide a "
+"more accurate list."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/transifex/website/projects/en/tordnsel.wml:29
+msgid ""
+"The full background and rationale for TorDNSEL is described in the official "
+"<a href=\"<gitblob>doc/contrib/torel-design.txt\">design document</a>. The "
+"current service only supports the first query type mentioned in that "
+"document."
+msgstr ""
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/transifex/website/projects/en/tordnsel.wml:34
+msgid "How can I query the public TorDNSEL service?"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/transifex/website/projects/en/tordnsel.wml:36
+msgid "Using the command line tool dig, users can ask type 1 queries like so:"
+msgstr ""
+
+#. type: Content of: <div><div><pre>
+#: /home/runa/transifex/website/projects/en/tordnsel.wml:38
+#, no-wrap
+msgid "dig 209.137.169.81.6667.4.3.2.1.ip-port.exitlist.torproject.org"
+msgstr ""
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/transifex/website/projects/en/tordnsel.wml:40
+msgid "What do the received answers mean?"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/transifex/website/projects/en/tordnsel.wml:42
+msgid ""
+"A request for the A record \"209.137.169.81.6667.4.3.2.1.ip-"
+"port.exitlist.torproject.org\" would return 127.0.0.2 if there's a Tor node "
+"that can exit through 81.169.137.209 to port 6667 at 1.2.3.4. If there isn't"
+" such an exit node, the DNSEL returns NXDOMAIN."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/transifex/website/projects/en/tordnsel.wml:48
+msgid ""
+"Other A records inside net 127/8, except 127.0.0.1, are reserved for future "
+"use and should be interpreted by clients as indicating an exit node. Queries"
+" outside the DNSEL's zone of authority result in REFUSED. Ill-formed queries"
+" inside its zone of authority result in NXDOMAIN."
+msgstr ""
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/transifex/website/projects/en/tordnsel.wml:53
+msgid "How do I configure software with DNSBL support?"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/transifex/website/projects/en/tordnsel.wml:55
+msgid ""
+"Users of software with built-in support for DNSBLs can configure the "
+"following zone as a DNSBL:"
+msgstr ""
+
+#. type: Content of: <div><div><pre>
+#: /home/runa/transifex/website/projects/en/tordnsel.wml:58
+#, no-wrap
+msgid ""
+"[service port].[reversed service\n"
+" address].ip-port.exitlist.torproject.org"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/transifex/website/projects/en/tordnsel.wml:61
+msgid ""
+"An example for an IRC server running on port 6667 at IP address 1.2.3.4:"
+msgstr ""
+
+#. type: Content of: <div><div><pre>
+#: /home/runa/transifex/website/projects/en/tordnsel.wml:62
+#, no-wrap
+msgid "6667.4.3.2.1.ip-port.exitlist.torproject.org"
+msgstr ""
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/transifex/website/projects/en/tordnsel.wml:64
+msgid "How reliable are the answers returned by TorDNSEL?"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/transifex/website/projects/en/tordnsel.wml:66
+msgid ""
+"The current public service is operating on an experimental basis and hasn't "
+"been well tested by real services. Reports of erroneous answers or service "
+"interruption would be appreciated. Future plans include building a fault "
+"tolerant pool of DNSEL servers. TorDNSEL is currently under active "
+"development."
+msgstr ""
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/transifex/website/projects/en/tordnsel.wml:72
+msgid "How can I run my own private TorDNSEL?"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/transifex/website/projects/en/tordnsel.wml:74
+msgid ""
+"You can learn all about the code for TorDNSEL by visiting the <a "
+"href=\"http://p56soo2ibjkx23xo.onion/\">official hidden service</a> through "
+"Tor."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/transifex/website/projects/en/tordnsel.wml:78
+msgid ""
+"You can download the latest source release from the <a "
+"href=\"http://p56soo2ibjkx23xo.onion/dist/tordnsel-0.0.6.tar.gz\">hidden "
+"service</a> or from a <a "
+"href=\"https://www.torproject.org/tordnsel/dist/tordnsel-0.0.6.tar.gz\"> "
+"local mirror</a>. It's probably wise to check out the current revision from "
+"the darcs repository hosted on the aforementioned hidden service."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/transifex/website/projects/en/tordnsel.wml:86
+msgid ""
+"For more information or to report something useful, please email the "
+"<tt>tordnsel</tt> alias on our <a href=\"<page about/contact>\">contact "
+"page</a>."
+msgstr ""
+
+
Added: translation/trunk/projects/website/po/cy/projects/3-low.torweather.po
===================================================================
--- translation/trunk/projects/website/po/cy/projects/3-low.torweather.po (rev 0)
+++ translation/trunk/projects/website/po/cy/projects/3-low.torweather.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -0,0 +1,48 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR The Tor Project, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+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:19+0000\n"
+"PO-Revision-Date: 2011-05-15 11:43+0000\n"
+"Last-Translator: cymro <markives(a)hotmail.co.uk>\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: cy\n"
+"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3\n"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/projects/en/torweather.wml:8
+msgid ""
+"<a href=\"<page index>\">Home » </a> <a href=\"<page "
+"projects/projects>\">Projects » </a> <a href=\"<page "
+"projects/torweather>\">Tor Weather</a>"
+msgstr ""
+"<a href=\"<page index>\">Hafan » </a> <a href=\"<page "
+"projects/projects>\">Prosiectau » </a> <a href=\"<page "
+"projects/torweather>\">Tywydd Tor</a>"
+
+#. type: Content of: <div><div><h1>
+#: /home/runa/tor/website/projects/en/torweather.wml:14
+msgid "Weather"
+msgstr "Tywydd"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/projects/en/torweather.wml:15
+msgid ""
+"<a href=\"https://weather.torproject.org\">Tor Weather</a> is a web "
+"application that lets Tor relay operators subscribe to alerts about the "
+"availability of their relay, whether their relay bandwidth has dramatically "
+"dropped, or whether their Tor version is obsolete."
+msgstr ""
+"Cais ar y we sy'n caniatáu i weithredwyr cyfnewid Tor danysgrifio i "
+"rhybuddion ynghylch argaeledd eu cyfnewid yw <a "
+"href=\"https://weather.torproject.org\">Tor Weather</a>, a yw eu lled band "
+"ras gyfnewid wedi gostwng yn ddramatig, neu a yw eu Tor fersiwn yn darfod."
+
+
Added: translation/trunk/projects/website/po/el/about/3-low.translators.po
===================================================================
--- translation/trunk/projects/website/po/el/about/3-low.translators.po (rev 0)
+++ translation/trunk/projects/website/po/el/about/3-low.translators.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -0,0 +1,142 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR The Tor Project, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+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-05-23 21:17+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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: el\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+
+#. type: Content of: <div><div>
+#: /home/runa/transifex/website/about/en/translators.wml:8
+msgid ""
+"<a href=\"<page index>\">Home » </a> <a href=\"<page "
+"about/overview>\">About » </a> <a href=\"<page "
+"about/volunteers>\">Translators</a>"
+msgstr ""
+
+#. type: Content of: <div><div><h1>
+#: /home/runa/transifex/website/about/en/translators.wml:13
+msgid "Translators"
+msgstr ""
+
+#. type: Content of: <div><div><dl><dt>
+#: /home/runa/transifex/website/about/en/translators.wml:15
+msgid "Bogdan Drozdowski"
+msgstr ""
+
+#. type: Content of: <div><div><dl><dd>
+#: /home/runa/transifex/website/about/en/translators.wml:15
+msgid "Polish"
+msgstr ""
+
+#. type: Content of: <div><div><dl><dt>
+#: /home/runa/transifex/website/about/en/translators.wml:16
+msgid "Tiago Faria"
+msgstr ""
+
+#. type: Content of: <div><div><dl><dd>
+#: /home/runa/transifex/website/about/en/translators.wml:16
+msgid "Portuguese."
+msgstr ""
+
+#. type: Content of: <div><div><dl><dt>
+#: /home/runa/transifex/website/about/en/translators.wml:17
+msgid "fredzupy"
+msgstr ""
+
+#. type: Content of: <div><div><dl><dd>
+#: /home/runa/transifex/website/about/en/translators.wml:17
+msgid "French"
+msgstr ""
+
+#. type: Content of: <div><div><dl><dt>
+#: /home/runa/transifex/website/about/en/translators.wml:18
+msgid "Jens Kubieziel and Oliver Knapp"
+msgstr ""
+
+#. type: Content of: <div><div><dl><dd>
+#: /home/runa/transifex/website/about/en/translators.wml:18
+msgid "German"
+msgstr ""
+
+#. type: Content of: <div><div><dl><dt>
+#: /home/runa/transifex/website/about/en/translators.wml:19
+msgid "Pei Hanru and bridgefish"
+msgstr ""
+
+#. type: Content of: <div><div><dl><dd>
+#: /home/runa/transifex/website/about/en/translators.wml:19
+msgid "Simplified Chinese"
+msgstr ""
+
+#. type: Content of: <div><div><dl><dt>
+#: /home/runa/transifex/website/about/en/translators.wml:20
+msgid "Jan Reister"
+msgstr ""
+
+#. type: Content of: <div><div><dl><dd>
+#: /home/runa/transifex/website/about/en/translators.wml:20
+msgid "Italian"
+msgstr ""
+
+#. type: Content of: <div><div><dl><dt>
+#: /home/runa/transifex/website/about/en/translators.wml:21
+msgid "ygrek and an anonymous translator"
+msgstr ""
+
+#. type: Content of: <div><div><dl><dd>
+#: /home/runa/transifex/website/about/en/translators.wml:21
+msgid "Russian"
+msgstr ""
+
+#. type: Content of: <div><div><dl><dt>
+#: /home/runa/transifex/website/about/en/translators.wml:22
+msgid "Ghazal Teheri"
+msgstr ""
+
+#. type: Content of: <div><div><dl><dd>
+#: /home/runa/transifex/website/about/en/translators.wml:22
+msgid "Persian"
+msgstr ""
+
+#. type: Content of: <div><div><dl><dt>
+#: /home/runa/transifex/website/about/en/translators.wml:23
+msgid "Htaike Htaike Aung"
+msgstr ""
+
+#. type: Content of: <div><div><dl><dd>
+#: /home/runa/transifex/website/about/en/translators.wml:23
+msgid "Burmese"
+msgstr ""
+
+#. type: Content of: <div><div><dl><dt>
+#: /home/runa/transifex/website/about/en/translators.wml:24
+msgid "Osama Khalid"
+msgstr ""
+
+#. type: Content of: <div><div><dl><dd>
+#: /home/runa/transifex/website/about/en/translators.wml:24
+msgid "Arabic"
+msgstr ""
+
+#. type: Content of: <div><div><dl><dt>
+#: /home/runa/transifex/website/about/en/translators.wml:25
+msgid "Alexia Prichard"
+msgstr ""
+
+#. type: Content of: <div><div><dl><dd>
+#: /home/runa/transifex/website/about/en/translators.wml:25
+msgid "Spanish"
+msgstr ""
+
+
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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/es/press/4-optional.2010-03-25-tor-store-press-release.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:09+0000\n"
+"PO-Revision-Date: 2011-05-23 21:14+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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/fa/about/2-medium.torusers.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:06+0000\n"
+"PO-Revision-Date: 2011-05-23 21:11+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/2-medium.verifying-signatures.po
===================================================================
--- translation/trunk/projects/website/po/fa/docs/2-medium.verifying-signatures.po 2011-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/fa/docs/2-medium.verifying-signatures.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-18 10:37+0200\n"
-"PO-Revision-Date: 2011-05-23 16:11+0000\n"
+"PO-Revision-Date: 2011-05-23 21:16+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.faq-abuse.po
===================================================================
--- translation/trunk/projects/website/po/fa/docs/3-low.faq-abuse.po 2011-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/fa/docs/3-low.faq-abuse.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-18 10:36+0200\n"
-"PO-Revision-Date: 2011-05-23 16:08+0000\n"
+"PO-Revision-Date: 2011-05-23 21:13+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.tor-doc-web.po
===================================================================
--- translation/trunk/projects/website/po/fa/docs/3-low.tor-doc-web.po 2011-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/fa/docs/3-low.tor-doc-web.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:06+0000\n"
+"PO-Revision-Date: 2011-05-23 21:11+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/download/1-high.download-easy.po
===================================================================
--- translation/trunk/projects/website/po/fa/download/1-high.download-easy.po 2011-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/fa/download/1-high.download-easy.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-29 21:13+0000\n"
-"PO-Revision-Date: 2011-05-23 16:05+0000\n"
+"PO-Revision-Date: 2011-05-23 21:11+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/download/3-low.download.po
===================================================================
--- translation/trunk/projects/website/po/fa/download/3-low.download.po 2011-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/fa/download/3-low.download.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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 16:59+0200\n"
-"PO-Revision-Date: 2011-05-23 16:04+0000\n"
+"PO-Revision-Date: 2011-05-23 21:10+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Added: translation/trunk/projects/website/po/fi/1-high.index.po
===================================================================
--- translation/trunk/projects/website/po/fi/1-high.index.po (rev 0)
+++ translation/trunk/projects/website/po/fi/1-high.index.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -0,0 +1,275 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR The Tor Project, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+msgid ""
+msgstr ""
+"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-05-23 19:58+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: fi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+
+#. type: Content of: <div><div><div><div><ul><li>
+#: /home/runa/dev/website/en/index.wml:12
+msgid "Tor prevents anyone from learning your location or browsing habits."
+msgstr ""
+"Tor estää ketään saamasta tietoa sijainnistasi tai selailutottumuksistasi."
+
+#. type: Content of: <div><div><div><div><ul><li>
+#: /home/runa/dev/website/en/index.wml:13
+msgid ""
+"Tor is for web browsers, instant messaging clients, remote logins, and more."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><ul><li>
+#: /home/runa/dev/website/en/index.wml:14
+msgid "Tor is free and open source for Windows, Mac, Linux/Unix, and Android"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><h1>
+#: /home/runa/dev/website/en/index.wml:16
+msgid "Anonymity Online"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:17
+msgid ""
+"Protect your privacy. Defend yourself against network surveillance and "
+"traffic analysis."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div>
+#: /home/runa/dev/website/en/index.wml:20
+msgid ""
+"<a href=\"<page download/download>\"> <span class=\"download-tor\">Download "
+"Tor</span></a>"
+msgstr ""
+"<a href=\"<page download/download>\"> <span class=\"download-tor\">Lataa "
+"Tor</span></a>"
+
+#. type: Content of: <div><div><div><div><div><h2>
+#: /home/runa/dev/website/en/index.wml:26
+msgid "What is Tor?"
+msgstr "Mikä Tor on?"
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:26
+msgid ""
+"Tor is free software and an open network that helps you defend against a "
+"form of network surveillance that threatens personal freedom and privacy, "
+"confidential business activities and relationships, and state security known"
+" as <a href=\"<page about/overview>\">traffic analysis</a><br><span "
+"class=\"continue\"><a href=\"<page about/overview>\">Learn more about Tor "
+"»</a></span>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><h2>
+#: /home/runa/dev/website/en/index.wml:36
+msgid "Why Anonymity Matters"
+msgstr "Miksi anonymiteetillä on väliä?"
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:37
+msgid ""
+"Tor protects you by bouncing your communications around a distributed "
+"network of relays run by volunteers all around the world: it prevents "
+"somebody watching your Internet connection from learning what sites you "
+"visit, and it prevents the sites you visit from learning your physical "
+"location. Tor works with many of your existing applications, including web "
+"browsers, instant messaging clients, remote login, and other applications "
+"based on the TCP protocol.<br><span class=\"continue\"><a href=\"<page "
+"getinvolved/volunteer>\">Get involved with Tor »</a></span>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><h2>
+#: /home/runa/dev/website/en/index.wml:50
+msgid "Our Projects"
+msgstr "Projektimme"
+
+#. type: Content of: <div><div><div><div><table><tr><td>
+#: /home/runa/dev/website/en/index.wml:55
+msgid "<img src=\"$(IMGROOT)/icon-TorButton.jpg\" alt=\"Torbutton Icon\">"
+msgstr "<img src=\"$(IMGROOT)/icon-TorButton.jpg\" alt=\"Torbutton-kuvake\">"
+
+#. type: Content of: <div><div><div><div><table><tr><td><h3>
+#: /home/runa/dev/website/en/index.wml:56
+msgid "<a href=\"<page torbutton/index>\">Torbutton</a>"
+msgstr "<a href=\"<page torbutton/index>\">Torbutton</a>"
+
+#. type: Content of: <div><div><div><div><table><tr><td><p>
+#: /home/runa/dev/website/en/index.wml:57
+msgid ""
+"Torbutton is a 1-click way for Firefox users to enable or disable Tor in "
+"Firefox."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td>
+#: /home/runa/dev/website/en/index.wml:61
+msgid "<img src=\"$(IMGROOT)/icon-TorCheck.jpg\" alt=\"Tor Check Icon\">"
+msgstr "<img src=\"$(IMGROOT)/icon-TorCheck.jpg\" alt=\"Tor Check -kuvake\">"
+
+#. type: Content of: <div><div><div><div><table><tr><td><h3>
+#: /home/runa/dev/website/en/index.wml:62
+msgid "<a href=\"https://check.torproject.org/\">Check</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><p>
+#: /home/runa/dev/website/en/index.wml:63
+msgid "Check determines if you are successfully browsing with Tor."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td>
+#: /home/runa/dev/website/en/index.wml:69
+msgid "<img src=\"$(IMGROOT)/icon-Vidalia.jpg\" alt=\"Vidalia Icon\">"
+msgstr "<img src=\"$(IMGROOT)/icon-Vidalia.jpg\" alt=\"Vidalia-kuvake\">"
+
+#. type: Content of: <div><div><div><div><table><tr><td><h3>
+#: /home/runa/dev/website/en/index.wml:70
+msgid "<a href=\"<page projects/vidalia>\">Vidalia</a>"
+msgstr "<a href=\"<page projects/vidalia>\">Vidalia</a>"
+
+#. type: Content of: <div><div><div><div><table><tr><td><p>
+#: /home/runa/dev/website/en/index.wml:71
+msgid ""
+"Vidalia is a graphical way to control and view Tor's connections and "
+"settings."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td>
+#: /home/runa/dev/website/en/index.wml:75
+msgid "<img src=\"$(IMGROOT)/icon-TorBrowser.jpg\" alt=\"TorBrowser Icon\">"
+msgstr "<img src=\"$(IMGROOT)/icon-TorBrowser.jpg\" alt=\"TorBrowser-kuvake\">"
+
+#. type: Content of: <div><div><div><div><table><tr><td><h3>
+#: /home/runa/dev/website/en/index.wml:76
+msgid "<a href=\"<page projects/torbrowser>\">Tor Browser</a>"
+msgstr "<a href=\"<page projects/torbrowser>\">Tor Browser</a>"
+
+#. type: Content of: <div><div><div><div><table><tr><td><p>
+#: /home/runa/dev/website/en/index.wml:78
+msgid ""
+"Tor Browser contains everything you need to safely browse the Internet."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><h2>
+#: /home/runa/dev/website/en/index.wml:90
+msgid "Who Uses Tor?"
+msgstr "Kuka käyttää Toria?"
+
+#. type: Content of: <div><div><div><div><div><h3>
+#: /home/runa/dev/website/en/index.wml:93
+msgid ""
+"<a href=\"<page about/torusers>#normalusers\"><img "
+"src=\"$(IMGROOT)/family.jpg\" alt=\"Normal People\">Family & Friends</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:95
+msgid ""
+"People like you and your family use Tor to protect themselves, their "
+"children, and their dignity while using the Internet."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><h3>
+#: /home/runa/dev/website/en/index.wml:99
+msgid ""
+"<a href=\"<page about/torusers>#executives\"><img "
+"src=\"$(IMGROOT)/consumers.jpg\" alt=\"Businesses\">Businesses</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:101
+msgid ""
+"Businesses use Tor to research competition, keep business strategies "
+"confidential, and facilitate internal accountability."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><h3>
+#: /home/runa/dev/website/en/index.wml:105
+msgid ""
+"<a href=\"<page about/torusers>#activists\"><img "
+"src=\"$(IMGROOT)/activists.jpg\" alt=\"Activists & "
+"Whistleblowers\">Activists</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:107
+msgid ""
+"Activists use Tor to anonymously report abuses from danger zones. "
+"Whistleblowers use Tor to safely report on corruption."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><h3>
+#: /home/runa/dev/website/en/index.wml:111
+msgid ""
+"<a href=\"<page about/torusers>#journalist\"><img "
+"src=\"$(IMGROOT)/media.jpg\" alt=\"Journalists and the Media\">Media</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:113
+msgid ""
+"Journalists and the media use Tor to protect their research and sources "
+"online."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><h3>
+#: /home/runa/dev/website/en/index.wml:117
+msgid ""
+"<a href=\"<page about/torusers>#military\"><img "
+"src=\"$(IMGROOT)/military.jpg\" alt=\"Military and Law "
+"Enforcement\">Military & Law Enforcement</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:119
+msgid ""
+"Militaries and law enforcement use Tor to protect their communications, "
+"investigations, and intelligence gathering online."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><h2>
+#: /home/runa/dev/website/en/index.wml:123
+msgid "Announcements"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><div>
+#: /home/runa/dev/website/en/index.wml:128
+msgid "<span class=\"month\">Mar</span><br><span class=\"day\">23</span>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><p>
+#: /home/runa/dev/website/en/index.wml:129
+msgid ""
+"The Tor Project wins the \"Project of Social Benefit\" award from the Free "
+"Software Foundation and GNU Project. We are honored to win this award and to"
+" be listed amongst the former winners. <a "
+"href=\"https://blog.torproject.org/blog/tor-project-receives-fsf-"
+"award\">Read more</a> about this award."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><div>
+#: /home/runa/dev/website/en/index.wml:135
+msgid "<span class=\"month\">Feb</span><br><span class=\"day\">23</span>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><p>
+#: /home/runa/dev/website/en/index.wml:136
+msgid ""
+"The latest stable Tor version, 0.2.1.30, is <a "
+"href=\"https://lists.torproject.org/pipermail/tor-"
+"announce/2011-February/000000.html\">released</a>. Tor 0.2.1.30 fixes a "
+"variety of less critical bugs. The main other change is a slight tweak to "
+"Tor's TLS handshake that makes relays and bridges that run this new version "
+"reachable from Iran again. We don't expect this tweak will win the arms "
+"race long-term, but it buys us time until we roll out a better solution."
+msgstr ""
+
+
Added: translation/trunk/projects/website/po/fi/docs/3-low.debian-vidalia.po
===================================================================
--- translation/trunk/projects/website/po/fi/docs/3-low.debian-vidalia.po (rev 0)
+++ translation/trunk/projects/website/po/fi/docs/3-low.debian-vidalia.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -0,0 +1,283 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR The Tor Project, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+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-05 19:13+0000\n"
+"PO-Revision-Date: 2011-05-23 20:32+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: fi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:8
+msgid ""
+"<a href=\"<page index>\">Home » </a> <a href=\"<page "
+"docs/documentation>\">Documentation » </a> <a href=\"<page docs"
+"/debian-vidalia>\">Vidalia Debian/Ubuntu Instructions</a>"
+msgstr ""
+"<a href=\"<page index>\">Koti » </a> <a href=\"<page "
+"docs/documentation>\">Ohjeistus » </a> <a href=\"<page docs/debian-"
+"vidalia>\">Vidalia Debian/Ubuntu -ohjeet</a>"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:13
+msgid "<a id=\"debian\"></a> <a id=\"packages\"></a>"
+msgstr "<a id=\"debian\"></a> <a id=\"packages\"></a>"
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:15
+msgid "<a class=\"anchor\" href=\"#debian\">Vidalia on Ubuntu or Debian</a>"
+msgstr "<a class=\"anchor\" href=\"#debian\">Vidalia Ubuntussa tai Debianissa</a>"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:16 /tmp/M9Wxp74W_E.xml:83
+msgid "<br />"
+msgstr "<br />"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:19
+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."
+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-vidalia.wml:25
+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. Here's a quick "
+"mapping:"
+msgstr ""
+"Sinun on otettava käyttöön pakettivarastomme ennen kuin voit noutaa Torin. "
+"Ensin on tiedettävä jakeluversiosi nimi. Tässä nopea kartoitus:"
+
+#. type: Content of: <div><div><p><ul><li>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:29
+msgid "Ubuntu 10.10 is \"maverick\" but use the \"lucid\" packages"
+msgstr "Ubuntu 10.10 on \"maverick\" mutta käyttää \"lucid\" -paketteja."
+
+#. type: Content of: <div><div><p><ul><li>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:30
+msgid "Ubuntu 10.04 or Trisquel 4.0 is \"lucid\""
+msgstr "Ubuntu 10.04 tai Trisquel 4.0 on \"lucid\""
+
+#. type: Content of: <div><div><p><ul><li>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:31
+msgid "Ubuntu 9.10 or Trisquel 3.5 is \"karmic\""
+msgstr "Ubuntu 9.10 tai Trisquel 3.5 on \"karmic\""
+
+#. type: Content of: <div><div><p><ul><li>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:32
+msgid "Ubuntu 9.04 is \"jaunty\""
+msgstr "Ubuntu 9.04 on \"jaunty\""
+
+#. type: Content of: <div><div><p><ul><li>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:33
+msgid "Ubuntu 8.10 is \"intrepid\""
+msgstr "Ubuntu 8.10 on \"intrepid\""
+
+#. type: Content of: <div><div><p><ul><li>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:34
+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-vidalia.wml:35
+msgid "Debian Etch is \"etch\""
+msgstr "Debian Etch on \"etch\""
+
+#. type: Content of: <div><div><p><ul><li>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:36
+msgid "Debian Lenny is \"lenny\""
+msgstr "Debian Lenny on \"lenny\""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:39
+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-vidalia.wml:43
+#, 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-vidalia.wml:45
+msgid ""
+"where you substitute the above word (etch, lenny, sid, karmic, jaunty, "
+"intrepid, hardy) in place of <DISTRIBUTION>."
+msgstr ""
+"jossa <JAKELUVERSIO>:n paikalle tulee ylläoleva sana (etch, lenny, sid, "
+"karmic, jaunty, intrepid, hardy)."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:50
+msgid ""
+"Then add the gpg key used to sign the packages by running the following "
+"commands at your command prompt:"
+msgstr ""
+"Sen jälkeen lisää pakettien allekirjoittamiseen käytettävä gpg-avain "
+"suorittamalla päätteessä seuraavat komennot:"
+
+#. type: Content of: <div><div><p><pre>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:53
+#, no-wrap
+msgid ""
+"gpg --keyserver keys.gnupg.net --recv 886DDD89\n"
+"gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -\n"
+msgstr ""
+"gpg --keyserver keys.gnupg.net --recv 886DDD89\n"
+"gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -\n"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:56
+msgid ""
+"Now refresh your sources and install Vidalia by running the following "
+"commands at your command prompt:"
+msgstr ""
+"Seuraavaksi virkistä lähteesi ja asenna Vidalia suorittamalla päätteessä "
+"seuraavat komennot:"
+
+#. type: Content of: <div><div><p><pre>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:59
+#, no-wrap
+msgid ""
+"apt-get update\n"
+"apt-get install vidalia \n"
+msgstr ""
+"apt-get update\n"
+"apt-get install vidalia \n"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:65
+#: /tmp/M9Wxp74W_E.xml:112
+msgid ""
+"Now Vidalia is installed and running. Move on to <a href=\"<page docs/tor-"
+"doc-unix>#polipo\">step two</a> of the \"Vidalia on Linux/Unix\" "
+"instructions."
+msgstr ""
+"Vidalia on nyt asennettu ja toiminnassa. Siirry \"Vidalia Linux/Unix-"
+"käyttöjärjestelmissä\" -ohjeiden <a href=\"<page docs/tor-doc-"
+"unix>#polipo\">toiseen vaiheeseen</a>."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:71
+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 "
+"reason cannot access it you might try to use the name of one of its part "
+"instead. Try <code>deb-master.torproject.org</code>, "
+"<code>mirror.netcologne.de</code> or <code>vidalia.mirror.youam.de</code>."
+msgstr ""
+"DNS-nimi <code>deb.torproject.org</code> on itse asiassa joukko palvelimia "
+"DNS round robin -ryhmänä. Jos et syystä tai toisesta saa yhteyttä, voit sen "
+"sijaan yrittää käyttää jonkin sen osan nimeä. Kokeile <code>deb-"
+"master.torproject.org</code>, <code>mirror.netcologne.de</code> tai "
+"<code>vidalia.mirror.youam.de</code>."
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:79
+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-vidalia.wml:82
+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-vidalia.wml:86
+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>."
+msgstr ""
+"Jos haluat tehdä omat deb-pakettisi lähdekoodista, sinun on ensin lisättävä "
+"sopiva <tt>deb-src</tt> -rivi <tt>sources.list</tt> -tiedostoon."
+
+#. type: Content of: <div><div><p><pre>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:89
+#, no-wrap
+msgid ""
+"deb-src http://deb.torproject.org/torproject.org <DISTRIBUTION> main\n"
+msgstr "deb-src http://deb.torproject.org/torproject.org <JAKELUVERSIO> main\n"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:91
+msgid ""
+"You also need to install the necessary packages to build your own debs and "
+"the packages needed to build Vidalia:"
+msgstr ""
+"Sinun on myös asennettava paketit, joita tarvitaan omien deb-pakettien "
+"tekemiseen ja Vidalian rakentamiseen:"
+
+#. type: Content of: <div><div><p><pre>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:94
+#, no-wrap
+msgid ""
+"apt-get install build-essential fakeroot devscripts qt4-dev-tools qt4-designer libqt4-dev g++ cmake\n"
+"apt-get build-dep vidalia\n"
+msgstr ""
+"apt-get install build-essential fakeroot devscripts qt4-dev-tools qt4-designer libqt4-dev g++ cmake\n"
+"apt-get build-dep vidalia\n"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:97
+msgid "Then you can build Vidalia in ~/debian-packages:"
+msgstr "Sen jälkeen voit rakentaa Vidalian ~/debian-packages -hakemistossa:"
+
+#. type: Content of: <div><div><p><pre>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:99
+#, no-wrap
+msgid ""
+"mkdir ~/debian-packages; cd ~/debian-packages\n"
+"apt-get source vidalia\n"
+"cd vidalia-*\n"
+"debuild -rfakeroot -uc -us\n"
+"cd ..\n"
+msgstr ""
+"mkdir ~/debian-packages; cd ~/debian-packages\n"
+"apt-get source vidalia\n"
+"cd vidalia-*\n"
+"debuild -rfakeroot -uc -us\n"
+"cd ..\n"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:105
+msgid "Now you can install the new package:"
+msgstr "Nyt voit asentaa uuden paketin:"
+
+#. type: Content of: <div><div><p><pre>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:107
+#, no-wrap
+msgid "sudo dpkg -i vidalia_*.deb\n"
+msgstr "sudo dpkg -i vidalia_*.deb\n"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:117
+msgid "<hr />"
+msgstr "<hr />"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/debian-vidalia.wml:119
+msgid ""
+"If you have suggestions for improving this document, please <a href=\"<page "
+"about/contact>\">send them to us</a>. Thanks!"
+msgstr ""
+"Jos sinulla on ehdotuksia tämän asiakirjan parantamiseksi, <a href=\"<page "
+"about/contact>\">lähetäthän ne meille</a>. Kiitos!"
+
+
Added: translation/trunk/projects/website/po/fi/docs/3-low.debian.po
===================================================================
--- translation/trunk/projects/website/po/fi/docs/3-low.debian.po (rev 0)
+++ translation/trunk/projects/website/po/fi/docs/3-low.debian.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -0,0 +1,400 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR The Tor Project, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+msgid ""
+msgstr ""
+"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-05-23 20:29+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: fi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/debian.wml:8
+msgid ""
+"<a href=\"<page index>\">Home » </a> <a href=\"<page "
+"docs/documentation>\">Documentation » </a> <a href=\"<page "
+"docs/debian>\">Debian/Ubuntu Instructions</a>"
+msgstr ""
+"<a href=\"<page index>\">Koti » </a> <a href=\"<page "
+"docs/documentation>\">Ohjeistus » </a> <a href=\"<page "
+"docs/debian>\">Debian/Ubuntu -ohjeet</a>"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/debian.wml:13
+msgid "<a id=\"debian\"></a>"
+msgstr "<a id=\"debian\"></a>"
+
+#. 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>"
+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/__TMvx4TV6.xml:43
+#: /tmp/__TMvx4TV6.xml:113 /tmp/__TMvx4TV6.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."
+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
+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 "
+"the latest stable version of Tor, see option two below."
+msgstr ""
+"Huomaa, että tämä ei välttämättä aina asenna Torin viimeisintä vakaata "
+"versiota, mutta saat tärkeitä turvallisuuskorjauksia. Varmistuaksesi, että "
+"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/__TMvx4TV6.xml:94
+#: /tmp/__TMvx4TV6.xml:139 /tmp/__TMvx4TV6.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 ""
+"Tor on nyt asennettu ja toiminnassa. Siirry \"Tor Linux/Unix "
+"-käyttöjärjestelmissä\" -ohjeiden <a href=\"<page docs/tor-doc-"
+"unix>#polipo\">toiseen vaiheeseen</a>."
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/debian.wml:37
+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
+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
+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."
+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
+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"
+" to run is <tt>lsb_release -c</tt> or <tt>cat /etc/debian_version</tt>. "
+"Here's a quick mapping:"
+msgstr ""
+"Sinun on otettava käyttöön pakettivarastomme ennen kuin voit noutaa Torin. "
+"Ensin on tiedettävä jakeluversiosi nimi. Se selviää nopeasti komennolla "
+"<tt>lsb_release -c</tt> tai <tt>cat /etc/debian_version</tt> Tässä nopea "
+"kartoitus:"
+
+#. type: Content of: <div><div><p><ul><li>
+#: /home/runa/tor/website/docs/en/debian.wml:57
+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:58
+msgid "Debian 6.0 (squeeze) is \"squeeze\""
+msgstr "Debian 6.0 (squeeze) on \"squeeze\""
+
+#. type: Content of: <div><div><p><ul><li>
+#: /home/runa/tor/website/docs/en/debian.wml:59
+msgid "Debian 5.0 (lenny) is \"lenny\""
+msgstr "Debian 5.0 (lenny) on \"lenny\""
+
+#. type: Content of: <div><div><p><ul><li>
+#: /home/runa/tor/website/docs/en/debian.wml:60
+msgid "Ubuntu 10.10 is \"maverick\""
+msgstr "Ubuntu 10.10 on \"maverick\""
+
+#. type: Content of: <div><div><p><ul><li>
+#: /home/runa/tor/website/docs/en/debian.wml:61
+msgid "Ubuntu 10.04 or Trisquel 4.0 is \"lucid\""
+msgstr "Ubuntu 10.04 tai Trisquel 4.0 on \"lucid\""
+
+#. type: Content of: <div><div><p><ul><li>
+#: /home/runa/tor/website/docs/en/debian.wml:62
+msgid "Ubuntu 9.10 or Trisquel 3.5 is \"karmic\""
+msgstr "Ubuntu 9.10 tai Trisquel 3.5 on \"karmic\""
+
+#. type: Content of: <div><div><p><ul><li>
+#: /home/runa/tor/website/docs/en/debian.wml:63
+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:64
+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: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: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:73
+msgid ""
+"where you put the codename of your distribution (i.e. lenny, sid, maverick "
+"or whatever it is) in place of <DISTRIBUTION>."
+msgstr ""
+"jossa <JAKELUVERSIO>:n paikalle tulee ylläoleva sana (lenny, sid, maverick "
+"tai mikä se onkaan)."
+
+#. type: Content of: <div><div><p>
+#: /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 ""
+"Sen jälkeen lisää pakettien allekirjoittamiseen käytettävä gpg-avain "
+"suorittamalla päätteessä seuraavat komennot:"
+
+#. type: Content of: <div><div><p><pre>
+#: /home/runa/tor/website/docs/en/debian.wml:82
+#, no-wrap
+msgid ""
+"gpg --keyserver keys.gnupg.net --recv 886DDD89\n"
+"gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -\n"
+msgstr ""
+"gpg --keyserver keys.gnupg.net --recv 886DDD89\n"
+"gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -\n"
+
+#. type: Content of: <div><div><p>
+#: /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 ""
+"Virkistä nyt lähteesi ja asenna Tor suorittamalla päätteessä seuraavat "
+"komennot (roottina):"
+
+#. type: Content of: <div><div><p><pre>
+#: /home/runa/tor/website/docs/en/debian.wml:88
+#, no-wrap
+msgid ""
+"apt-get update\n"
+"apt-get install tor tor-geoipdb\n"
+msgstr ""
+"apt-get update\n"
+"apt-get install tor tor-geoipdb\n"
+
+#. type: Content of: <div><div><p>
+#: /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 "
+"reason cannot access it you might try to use the name of one of its part "
+"instead. Try <code>deb-master.torproject.org</code>, "
+"<code>mirror.netcologne.de</code> or <code>tor.mirror.youam.de</code>."
+msgstr ""
+"DNS-nimi <code>deb.torproject.org</code> on itse asiassa joukko palvelimia "
+"DNS round robin -ryhmänä. Jos et syystä tai toisesta saa yhteyttä, voit sen "
+"sijaan yrittää käyttää jonkin sen osan nimeä. Kokeile <code>deb-"
+"master.torproject.org</code>, <code>mirror.netcologne.de</code> tai "
+"<code>vidalia.mirror.youam.de</code>."
+
+#. type: Content of: <div><div>
+#: /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:111
+msgid ""
+"<a class=\"anchor\" href=\"#development\">Option three: Using the "
+"development branch of Tor on Debian or Ubuntu</a>"
+msgstr ""
+"<a class=\"anchor\" href=\"#development\">Kolmas vaihtoehto: Torin "
+"kehityshaaran käyttö Debianissa tai Ubuntussa</a>"
+
+#. type: Content of: <div><div><p>
+#: /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"
+" features and more bugs), you need to add a different set of lines to your "
+"<tt>/etc/apt/sources.list</tt> file:<br />"
+msgstr ""
+"Jos haluat käyttää mieluummin Torin <a href=\"<page "
+"download/download>#packagediff\">kehityshaaraa</a> (enemmän ominaisuuksia ja"
+" enemmän bugeja), sinun on yllä mainittujen sijaan lisättävä tiedostoon "
+"<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:120
+#, no-wrap
+msgid ""
+"deb http://deb.torproject.org/torproject.org <DISTRIBUTION> main\n"
+"deb http://deb.torproject.org/torproject.org experimental-<DISTRIBUTION> main\n"
+msgstr ""
+"deb http://deb.torproject.org/torproject.org <JAKELUVERSIO> main\n"
+"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:123
+msgid ""
+"where you again substitute the name of your distro (lenny, sid, maverick, "
+"...) in place of <DISTRIBUTION>."
+msgstr ""
+"jossa laitat <JAKELUVERSIO>:n paikalle jälleen oman distrosi nimen (lenny, "
+"sid, maverick, ...)."
+
+#. type: Content of: <div><div><p>
+#: /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:131
+#, no-wrap
+msgid ""
+"gpg --keyserver keys.gnupg.net --recv 886DDD89\n"
+"gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -\n"
+"apt-get update\n"
+"apt-get install tor tor-geoipdb\n"
+msgstr ""
+"gpg --keyserver keys.gnupg.net --recv 886DDD89\n"
+"gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -\n"
+"apt-get update\n"
+"apt-get install tor tor-geoipdb\n"
+
+#. type: Content of: <div><div>
+#: /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: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: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>."
+msgstr ""
+"Jos haluat tehdä omat deb-pakettisi lähdekoodista, sinun on ensin lisättävä "
+"sopiva <tt>deb-src</tt> -rivi <tt>sources.list</tt> -tiedostoon."
+
+#. 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:154
+#, no-wrap
+msgid ""
+"\n"
+"deb-src http://deb.torproject.org/torproject.org <DISTRIBUTION> main\n"
+"\n"
+"\n"
+"deb-src http://deb.torproject.org/torproject.org <DISTRIBUTION> main\n"
+"deb-src http://deb.torproject.org/torproject.org experimental-<DISTRIBUTION> main\n"
+msgstr ""
+"\n"
+"deb-src http://deb.torproject.org/torproject.org <JAKELUVERSIO> main\n"
+"\n"
+"\n"
+"deb-src http://deb.torproject.org/torproject.org <JAKELUVERSIO> main\n"
+"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:161
+msgid ""
+"You also need to install the necessary packages to build your own debs and "
+"the packages needed to build Tor:"
+msgstr ""
+"Sinun on myös asennettava paketit, joita tarvitaan omien deb-pakettien "
+"tekemiseen ja Torin rakentamiseen:"
+
+#. type: Content of: <div><div><p><pre>
+#: /home/runa/tor/website/docs/en/debian.wml:164
+#, no-wrap
+msgid ""
+"apt-get install build-essential fakeroot devscripts\n"
+"apt-get build-dep tor\n"
+msgstr ""
+"apt-get install build-essential fakeroot devscripts\n"
+"apt-get build-dep tor\n"
+
+#. type: Content of: <div><div><p>
+#: /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:169
+#, no-wrap
+msgid ""
+"mkdir ~/debian-packages; cd ~/debian-packages\n"
+"apt-get source tor\n"
+"cd tor-*\n"
+"debuild -rfakeroot -uc -us\n"
+"cd ..\n"
+msgstr ""
+"mkdir ~/debian-packages; cd ~/debian-packages\n"
+"apt-get source tor\n"
+"cd tor-*\n"
+"debuild -rfakeroot -uc -us\n"
+"cd ..\n"
+
+#. type: Content of: <div><div><p>
+#: /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: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:187
+msgid "<hr />"
+msgstr "<hr />"
+
+#. type: Content of: <div><div><p>
+#: /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!"
+msgstr ""
+"Jos sinulla on ehdotuksia tämän asiakirjan parantamiseksi, <a href=\"<page "
+"about/contact>\">lähetäthän ne meille</a>. Kiitos!"
+
+
Added: translation/trunk/projects/website/po/fi/docs/3-low.tor-doc-unix.po
===================================================================
--- translation/trunk/projects/website/po/fi/docs/3-low.tor-doc-unix.po (rev 0)
+++ translation/trunk/projects/website/po/fi/docs/3-low.tor-doc-unix.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -0,0 +1,411 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR The Tor Project, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+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-05-23 20:09+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: fi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:8
+msgid ""
+"<a href=\"<page index>\">Home » </a> <a href=\"<page "
+"docs/documentation>\">Documentation » </a> <a href=\"<page docs/tor-"
+"doc-unix>\">Linux/BSD/Unix Client</a>"
+msgstr ""
+"<a href=\"<page index>\">Koti » </a> <a href=\"<page "
+"docs/documentation>\">Ohjeistus » </a> <a href=\"<page docs/tor-doc-"
+"unix>\">Linux/BSD/Unix -asiakas</a>"
+
+#. type: Content of: <div><div><h1>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:13
+msgid "Running the <a href=\"<page index>\">Tor</a> client on Linux/BSD/Unix"
+msgstr ""
+"<a href=\"<page index>\">Tor</a> -asiakasohjelman käyttö Linux/BSD/Unix-"
+"käyttöjärjestelmissä"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:14 /tmp/IT3itHQw4v.xml:26
+#: /tmp/IT3itHQw4v.xml:58 /tmp/IT3itHQw4v.xml:92 /tmp/IT3itHQw4v.xml:135
+#: /tmp/IT3itHQw4v.xml:173
+msgid "<br>"
+msgstr "<br>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:17
+msgid ""
+"<b>Note that these are the installation instructions for running a Tor "
+"client. If you want to relay traffic for others to help the network grow "
+"(please do), read the <a href=\"<page docs/tor-doc-relay>\">Configuring a "
+"relay</a> guide.</b>"
+msgstr ""
+"Huomaathan, että nämä asennusohjeet koskevat Tor-asiakasohjelman käyttöä. "
+"Jos haluat välittää toisten liikennettä ja auttaa näin verkkoa kasvamaan "
+"(tee toki niin), lue ohjeet <a href=\"<page docs/tor-doc-"
+"relay>\">Välityspalvelimen asetusten säätäminen</a>.</b>"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:23
+msgid "<hr> <a id=\"installing\"></a>"
+msgstr "<hr> <a id=\"installing\"></a>"
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:25
+msgid ""
+"<a class=\"anchor\" href=\"#installing\">Step One: Download and Install "
+"Tor</a>"
+msgstr ""
+"<a class=\"anchor\" href=\"#installing\">Ensimmäinen vaihe: Lataa ja asenna "
+"Tor</a>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:29
+msgid ""
+"The latest release of Tor can be found on the <a href=\"<page "
+"download/download>\">download</a> page. We have packages for Debian, Red "
+"Hat, Gentoo, *BSD, etc there too. If you're using Ubuntu, don't use the "
+"default packages: use <a href=\"<page docs/debian>#ubuntu\">our deb "
+"repository</a> instead. Similarly, CentOS / Fedora / OpenSUSE users should "
+"use <a href=\"<page docs/rpms>\">our rpm repository</a> instead."
+msgstr ""
+"Tor:n viimeisin julkaisu löytyy <a href=\"<page "
+"download/download>\">lataukset</a>-sivulta. Sieltä löydät myös Debian-, Red "
+"Hat-, Gentoo-, *BSD-, ynnä muut paketit. Jos käytät Ubuntua, älä käytä "
+"oletuspaketteja: käytä sen sijaan <a href=\"<page docs/debian>#ubuntu\">deb-"
+"pakettivarastoamme</a>. CentOS / Fedora / OpenSUSE -käyttäjien tulisi "
+"vastaavasti käyttää <a href=\"<page docs/rpms>\">rpm-pakettivarastoamme</a>."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:38
+msgid ""
+"If you're building from source, first install <a "
+"href=\"http://www.monkey.org/~provos/libevent/\">libevent</a>, and make sure"
+" you have openssl and zlib (including the -devel packages if applicable). "
+"Then run:<br> <tt>tar xzf tor-<version-stable>.tar.gz; cd tor-<version-"
+"stable></tt><br> <tt>./configure && make</tt><br> Now you can run "
+"tor as <tt>src/or/tor</tt>, or you can run <tt>make install</tt> (as root if"
+" necessary) to install it into /usr/local/, and then you can start it just "
+"by running <tt>tor</tt>."
+msgstr ""
+"Jos rakennat lähdekoodista, asenna ensin <a "
+"href=\"http://www.monkey.org/~provos/libevent/\">libevent</a> ja varmista, "
+"että sinulla on asennettuna openssl ja zlib (mukaanlukien -devel paketit jos"
+" saatavilla). Suorita sen jälkeen:<br><tt>tar xzf tor-<version-"
+"stable>.tar.gz; cd tor-<version-stable></tt><br><tt>./configure && "
+"make</tt><br> Nyt voit käynnistää torin - <tt>src/or/tor</tt>, tai voit "
+"suorittaa komennon <tt>make install</tt> (tarvittaessa roottina) "
+"asentaaksesi sen hakemistoon /usr/local, jonka jälkeen voit käynnistää sen "
+"yksinkertaisesti komennolla <tt>tor</tt>."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:49
+msgid ""
+"Tor comes configured as a client by default. It uses a built-in default "
+"configuration file, and most people won't need to change any of the "
+"settings. Tor is now installed."
+msgstr ""
+"Tor on oletuksena asetettu toimimaan asiakasohjelmana. Se käyttää "
+"sisäänrakennettua asetustiedostoa, eikä useimpien tarvitse muuttaa mitään "
+"näistä asetuksista. Tor on nyt asennettu."
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:54
+msgid "<hr> <a id=\"privoxy\"></a> <a id=\"polipo\"></a>"
+msgstr "<hr> <a id=\"privoxy\"></a> <a id=\"polipo\"></a>"
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:57
+msgid ""
+"<a class=\"anchor\" href=\"#polipo\">Step Two: Install Polipo for Web "
+"Browsing</a>"
+msgstr ""
+"<a class=\"anchor\" href=\"#polipo\">Toinen vaihe: Asenna Polipo verkon "
+"selaamista varten</a>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:60
+msgid ""
+"After installing Tor, you need to configure your applications to use it."
+msgstr "Asennettuasi Tor:n sinun on asetettava sovelluksesi käyttämään sitä."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:64
+msgid ""
+"The first step is to set up web browsing. Start by installing <a "
+"href=\"http://www.pps.jussieu.fr/~jch/software/polipo/\">Polipo</a> from "
+"your favorite repository. Polipo is a caching web proxy that does http "
+"pipelining well, so it's well-suited for Tor's latencies. Make sure to get "
+"at least Polipo 1.0.4, since earlier versions lack the SOCKS support "
+"required to use Polipo with Tor. You should uninstall privoxy at this point "
+"(e.g. apt-get remove privoxy or yum remove privoxy), so they don't conflict."
+msgstr ""
+"Ensimmäinen askel on verkon selaamisen säätäminen. Aloita asentamalla <a "
+"href=\"http://www.pps.jussieu.fr/~jch/software/polipo\">Polipo</a> "
+"käyttämästäsi pakettivarastosta. Polipo on välimuistina toimiva "
+"välityspalvelin, joka suoriutuu hyvin http-pipeliningista, joten se sopii "
+"hyvin Tor:n latensseille. Varmista, että asennat vähintään Polipon version "
+"1.0.4, sillä aiemmista versioista puuttuu SOCKS-tuki, jota tarvitaan, jotta "
+"Tor toimisi Polipon kanssa. Tässä vaiheessa on syytä poistaa privoxy (siis "
+"apt-get remove privoxy tai yum remove privoxy), jotta ne eivät joudu "
+"ristiriitaan."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:74
+msgid ""
+"Once you've installed Polipo (either from package or from source), <b>you "
+"will need to configure Polipo to use Tor</b>. Grab our <a href=\"<tbbrepo"
+">/build-scripts/config/polipo.conf\">Polipo configuration for Tor</a> and "
+"put it in place of your current polipo config file (e.g. /etc/polipo/config "
+"or ~/.polipo). You'll need to restart Polipo for the changes to take "
+"effect. For example:<br> <tt>/etc/init.d/polipo restart</tt>"
+msgstr ""
+"Kun olet asentanut Polipon (joko paketista tai lähdekoodista), <b>sinun on "
+"asetettava Polipo käyttämään Toria</b>. Hae laatimamme <a href=\"<tbbrepo"
+">/build-scripts/config/polipo.conf\">Polipon asetukset Tor:lle</a> ja korvaa"
+" sillä nykyinen Polipon asetustiedosto (esim. /etc/polipo/config tai "
+"~/.polipo). Polipo on käynnistettävä uudelleen, jotta muutokset tulevat "
+"voimaan. Esimerkiksi:<br><tt>/etc/init.d/polipo restart</tt>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:84
+msgid ""
+"If you prefer, you can instead use Privoxy with <a "
+"href=\"<wiki>TheOnionRouter/PrivoxyConfig\">this sample Privoxy "
+"configuration</a>. But since the config files both use port 8118, you "
+"shouldn't run both Polipo and Privoxy at the same time."
+msgstr ""
+"Voit halutessasi käyttää Polipon sijasta Privoxya <a "
+"href=\"<wiki>TheOnionRouter/PrivoxyConfig\">näillä Privoxyn "
+"esimerkkiasetuksilla</a>. Polipoa ja Privoxya ei kuitenkaan pidä ajaa yhtä "
+"aikaa, koska molemmat asetustiedostot käyttävät porttia 8118,"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:89
+msgid "<hr> <a id=\"using\"></a>"
+msgstr "<hr> <a id=\"using\"></a>"
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:91
+msgid ""
+"<a class=\"anchor\" href=\"#using\">Step Three: Configure your applications "
+"to use Tor</a>"
+msgstr ""
+"<a class=\"anchor\" href=\"#using\">Kolmas vaihe: aseta sovelluksesi "
+"käyttämään Tor:ia</a>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:94
+msgid ""
+"After installing Tor and Polipo, you need to configure your applications to "
+"use them. The first step is to set up web browsing."
+msgstr ""
+"Asennettuasi Tor:n ja Polipon sinun on asetettava sovelluksesi käyttämään "
+"niitä. Ensimmäinen askel on verkkoselaimen säätäminen."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:97
+msgid ""
+"You should use Tor with Firefox and Torbutton, for best safety. Simply "
+"install the <a href=\"<page torbutton/index>\">Torbutton plugin</a>, restart"
+" your Firefox, and you're all set:"
+msgstr ""
+"Parhaan turvallisuuden saat käyttämällä Toria Firefoxin ja Torbuttonin "
+"avulla. Asenna vain <a href=\"<page torbutton/index>\">Torbutton-"
+"lisäosa</a>, käynnistä Firefox uudelleen ja siinä kaikki:"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:103
+msgid ""
+"<img alt=\"Torbutton plugin for Firefox\" src=\"$(IMGROOT)/screenshot-"
+"torbutton.png\" > <br>"
+msgstr ""
+"<img alt=\"Torbutton-lisäosa Firefoxille\" src=\"$(IMGROOT)/screenshot-"
+"torbutton.png\" > <br>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:110
+msgid ""
+"If you plan to run Firefox on a different computer than Tor, see the <a "
+"href=\"<wikifaq>#SocksListenAddress\"> FAQ entry for running Tor on a "
+"different computer</a>."
+msgstr ""
+"Jos aiot käyttää Firefoxia eri tietokoneella kuin Toria, katso <a "
+"href=\"<wikifaq>#SocksListenAddress\">FAQ:n kohta Torin käyttämisestä eri "
+"tietokoneella</a>."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:116
+msgid ""
+"To Torify other applications that support HTTP proxies, just point them at "
+"Polipo (that is, localhost port 8118). To use SOCKS directly (for instant "
+"messaging, Jabber, IRC, etc), you can point your application directly at Tor"
+" (localhost port 9050), but see <a href=\"<wikifaq>#SOCKSAndDNS\">this FAQ "
+"entry</a> for why this may be dangerous. For applications that support "
+"neither SOCKS nor HTTP, take a look at <a "
+"href=\"https://code.google.com/p/torsocks/\">torsocks</a> or <a "
+"href=\"<wiki>TheOnionRouter/TorifyHOWTO#socat\">socat</a>."
+msgstr ""
+"Muiden HTTP-välityspalvelimia tukevien sovellusten Torraamiseksi osoita ne "
+"vain Polipoon (siis localhost, portti 8118). Käyttääksesi SOCKSia suoraan "
+"(esimerkiksi pikaviestimiin, Jabberiin, IRCiin jne.) voit osoittaa "
+"sovelluksesi suoraan Toriin (localhost, portti 9050), mutta katso <a "
+"href=\"<wikifaq>#SOCKSAndDNS\">tästä FAQ:n kohdasta</a> miksi tämä voi olla "
+"vaarallista. Jos käytät sovelluksia, jotka eivät tue sen paremmin SOCKSia "
+"kuin HTTP:täkään, tutustu <a "
+"href=\"https://code.google.com/p/torsocks/\">torsocksiin</a> tai <a "
+"href=\"<wiki>TheOnionRouter/TorifyHOWTO#socat\">socatiin</a>."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:127
+msgid ""
+"For information on how to Torify other applications, check out the <a "
+"href=\"<wiki>TheOnionRouter/TorifyHOWTO\">Torify HOWTO</a>."
+msgstr ""
+"Tietoa muiden ohjelmien torraamisesta löytyy <a "
+"href=\"<wiki>TheOnionRouter/TorifyHOWTO\">Torify HOWTO</a>:sta."
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:132
+msgid "<hr> <a id=\"verify\"></a>"
+msgstr "<hr> <a id=\"verify\"></a>"
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:134
+msgid "<a class=\"anchor\" href=\"#verify\">Step Four: Make sure it's working</a>"
+msgstr ""
+"<a class=\"anchor\" href=\"#verify\">Neljäs vaihe: Varmista että se "
+"toimii</a>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:138
+msgid ""
+"Next, you should try using your browser with Tor and make sure that your IP "
+"address is being anonymized. Click on <a "
+"href=\"https://check.torproject.org/\">the Tor detector</a> and see whether "
+"it thinks you're using Tor or not. #<a href=\"http://ipchicken.com/\">this "
+"site</a> #to see what IP address it thinks you're using. (If that site is "
+"down, see <a href=\"<wikifaq>#IsMyConnectionPrivate\">this FAQ entry</a> for"
+" more suggestions on how to test your Tor.)"
+msgstr ""
+"Kokeile seuraavaksi käyttää webbiselaintasi Torin kanssa ja varmista, että "
+"IP-osoitteesi todella anonymisoidaan. Klikkaa <a "
+"href=\"https://check.torproject.org/\">Tor-tunnistimen</a> linkkiä ja katso "
+"käytätkö sen mielestä Toria vai et. #<a "
+"href=\"http://ipchicken.com/\">tälle sivulle</a> #nähdäksesi mitä IP-"
+"osoitetta sen mielestä käytät. (Jos sivu on alhaalla, <a "
+"href=\"<wikifaq>#IsMyConnectionPrivate\">tästä FAQ:n kohdasta</a> löytyy "
+"lisää vinkkejä Torin testaamiseksi.)"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:150
+msgid ""
+"If you have a personal firewall that limits your computer's ability to "
+"connect to itself (this includes something like SELinux on Fedora Core 4), "
+"be sure to allow connections from your local applications to Polipo (local "
+"port 8118) and Tor (local port 9050). If your firewall blocks outgoing "
+"connections, punch a hole so it can connect to at least TCP ports 80 and "
+"443, and then see <a href=\"<wikifaq>#FirewalledClient\">this FAQ entry</a>."
+" If your SELinux config is not allowing tor or privoxy to run correctly, "
+"create a file named booleans.local in the directory /etc/selinux/targeted. "
+"Edit this file in your favorite text editor and insert \"allow_ypbind=1\". "
+"Restart your machine for this change to take effect."
+msgstr ""
+"Jos käytät henkilökohtaista palomuuria, joka rajoittaa tietokoneesi kykyä "
+"yhdistää itseensä (tällainen on esimerkiksi Fedora Core 4:n SELinux), muista"
+" sallia paikallisten sovellusten yhteydet Polipoon (paikallinen portti 8118)"
+" ja Toriin (paikallinen portti 9050). Jos palomuurisi estää ulos menevät "
+"yhteydet, tee siihen aukko niin, että se antaa yhdistää ainakin TCP-"
+"portteihin 80 ja 443, ja lue sitten <a "
+"href=\"<wikifaq>#FirewalledClient\">tämä FAQ:n kohta</a>. Jos SELinuxin "
+"asetukset eivät anna torin tai polipon toimia oikein, luo hakemistoon "
+"/etc/selinux/targeted tiedosto nimeltä booleans.local. Avaa tiedosto "
+"tekstieditorissa ja lisää siihen \"allow_ybind=1\". Käynnistä koneesi "
+"uudelleen, jotta muutokset tulevat voimaan."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:165
+msgid ""
+"If it's still not working, look at <a href=\"<page "
+"docs/faq>#DoesntWork\">this FAQ entry</a> for hints."
+msgstr ""
+"Eikö toimi vieläkään? Etsi lisää vinkkejä <a href=\"<page "
+"docs/faq>#DoesntWork\">tästä FAQ:n kohdasta</a>."
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:169
+msgid "<hr> <a id=\"server\"></a> <a id=\"relay\"></a>"
+msgstr "<hr> <a id=\"server\"></a> <a id=\"relay\"></a>"
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:172
+msgid "<a class=\"anchor\" href=\"#relay\">Step Five: Configure it as a relay</a>"
+msgstr ""
+"<a class=\"anchor\" href=\"#relay\">Viides vaihe: Aseta se "
+"välityspalvelimeksi</a>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:175
+msgid ""
+"The Tor network relies on volunteers to donate bandwidth. The more people "
+"who run relays, the faster the Tor network will be. If you have at least 20 "
+"kilobytes/s each way, please help out Tor by configuring your Tor to be a "
+"relay too. We have many features that make Tor relays easy and convenient, "
+"including rate limiting for bandwidth, exit policies so you can limit your "
+"exposure to abuse complaints, and support for dynamic IP addresses."
+msgstr ""
+"Tor-verkko on kaistatilaa tarjoavien vapaaehtoisten varassa. Mitä useammat "
+"ihmiset pitävät yllä välityspalvelimia, sitä nopeampi Tor-verkosta tulee. "
+"Jos käytössäsi on vähintään 20 kilobittiä/s kumpaankin suuntaan, autathan "
+"Toria asettamalla oman Torisi myös välityspalvelmieksi. Käytössämme on monia"
+" ominaisuuksia, jotka tekevät Tor-välityspalvelimista helppoja ja mukavia, "
+"kuten kaistanleveyden käytön rajoittaminen, poistumiskäytännöt, joiden "
+"avulla voit rajoittaa sinuun kohdistuvia valituksia väärinkäytöstä, ja "
+"dynaamisten IP-osoitteiden tuki."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:183
+msgid ""
+"Having relays in many different places on the Internet is what makes Tor "
+"users secure. <a href=\"<wikifaq>#RelayAnonymity\">You may also get stronger"
+" anonymity yourself</a>, since remote sites can't know whether connections "
+"originated at your computer or were relayed from others."
+msgstr ""
+"Juuri se, että välityspalvelimia on monissa paikoissa eri puolilla "
+"internetiä, suojaa Torin käyttäjiä. Voit saada myös itsellesi vahvemman "
+"anonymiteetin, koska sivustot eivät voi tietää, olivatko yhteydet lähtöisin "
+"sinun koneeltasi vai välitetty muilta koneilta."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:190
+msgid ""
+"Read more at our <a href=\"<page docs/tor-doc-relay>\">Configuring a "
+"relay</a> guide."
+msgstr ""
+"Lue lisää <a href=\"<page docs/tor-doc-relay>\">Välityspalvelimen "
+"asettaminen</a> -oppaastamme."
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:193
+msgid "<hr>"
+msgstr "<hr>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/tor-doc-unix.wml:195
+msgid ""
+"If you have suggestions for improving this document, please <a href=\"<page "
+"about/contact>\">send them to us</a>. Thanks!"
+msgstr ""
+"Jos sinulla on ehdotuksia tämän asiakirjan parantamiseksi, <a href=\"<page "
+"about/contact>\">lähetäthän ne meille</a>. Kiitos!"
+
+
Added: translation/trunk/projects/website/po/fi/getinvolved/4-optional.translation-overview.po
===================================================================
--- translation/trunk/projects/website/po/fi/getinvolved/4-optional.translation-overview.po (rev 0)
+++ translation/trunk/projects/website/po/fi/getinvolved/4-optional.translation-overview.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -0,0 +1,198 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR The Tor Project, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+msgid ""
+msgstr ""
+"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-05-23 20:53+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: fi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/getinvolved/en/translation-overview.wml:8
+msgid ""
+"<a href=\"<page index>\">Home » </a> <a href=\"<page "
+"getinvolved/volunteer>\">Get Involved » </a> <a href=\"<page "
+"getinvolved/translation-overview>\">Translation Overview</a>"
+msgstr ""
+"<a href=\"<page index>\">Koti » </a> <a href=\"<page "
+"getinvolved/volunteer>\">Osallistu » </a> <a href=\"<page getinvolved"
+"/translation-overview>\">Käännösten yleiskuva</a>"
+
+#. type: Content of: <div><div><h1>
+#: /home/runa/tor/website/getinvolved/en/translation-overview.wml:13
+msgid "Tor: Translation Overview"
+msgstr "Tor: Käännösten yleiskuva"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/getinvolved/en/translation-overview.wml:14
+#: /tmp/ZoXi5oSw5M.xml:39
+msgid "<hr>"
+msgstr "<hr>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/getinvolved/en/translation-overview.wml:17
+msgid ""
+"All translation projects can be found at <a "
+"href=\"https://www.transifex.net/projects/p/torproject/\">https://www.transifex.net/projects/p/torproject/</a>."
+msgstr ""
+"Kaikki käännösprojektit löytyvät osoitteesta <a "
+"href=\"https://www.transifex.net/projects/p/torproject/\">https://www.transifex.net/projects/p/torproject/</a>."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/getinvolved/en/translation-overview.wml:21
+msgid ""
+"The Tor bundles include several different programs, all of which need "
+"translation help. In order of importance they are: <a href=\"<page "
+"projects/vidalia>\">Vidalia</a>, <a href=\"<page "
+"torbutton/index>\">Torbutton</a>, and <a "
+"href=\"https://check.torproject.org/\">TorCheck</a>. You can also help "
+"translate the Vidalia help files, the Vidalia installer, Torbutton-alpha, <a"
+" href=\"<page docs/android>\">Orbot</a>, <a href=\"<page "
+"projects/gettor>\">GetTor</a>, the Tor manual pages and the website."
+msgstr ""
+"Tor-nippuihin sisältyy useita eri ohjelmia, jotka kaikki tarvitsevat "
+"käännösapua. Ne ovat tärkeysjärjestyksessä: <a href=\"<page "
+"projects/vidalia>\">Vidalia</a>, <a href=\"<page "
+"torbutton/index>\">Torbutton</a>, ja <a "
+"href=\"https://check.torproject.org/\">TorCheck</a>. Voit auttaa kääntämään "
+"myös Vidalian ohjetiedostoja, Vidalian asentajaa, Torbutton-alphaa, <a "
+"href=\"<page docs/android>\">Orbot</a>ia, <a href=\"<page "
+"projects/gettor>\">GetTor</a>ia, Torin käyttöohjeita ja webbisivuja. "
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/getinvolved/en/translation-overview.wml:32
+msgid ""
+"Please read the sections below and help out. If you need help, please ask; "
+"we're always happy to lend a hand."
+msgstr ""
+"Luethan alla olevat kappaleet ja tulet auttamaan. Jos tarvitse apua, kysy "
+"ihmeessä; ojennamme aina mielellämme auttavan kätemme."
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/getinvolved/en/translation-overview.wml:36
+msgid "<a id=\"TTP\"></a> <a id=\"TTPVidalia\"></a>"
+msgstr "<a id=\"TTP\"></a> <a id=\"TTPVidalia\"></a>"
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/tor/website/getinvolved/en/translation-overview.wml:38
+msgid "<a class=\"anchor\" href=\"#TTP\">Using Transifex</a>"
+msgstr "<a class=\"anchor\" href=\"#TTP\">Transifexin käyttö</a>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/getinvolved/en/translation-overview.wml:42
+msgid ""
+"<a href=\"https://www.transifex.net/\">Transifex</a> is a website that lets "
+"users contribute translations online using their web browser. A project may "
+"have many files that can be translated. In transifex, these files are called"
+" resources. Transifex lists all sentences or phrases (called \"strings\") "
+"used by a particular resource, and allows interested volunteers to translate"
+" individual sentences or phrases as they are able."
+msgstr ""
+"<a href=\"https://www.transifex.net/\">Transifex</a> on sivusto, joka antaa "
+"käyttäjille mahdollisuuden osallistua käännöstyöhön suoraan webbiselaimen "
+"välityksellä. Kussakin projektissa voi olla lukuisia tiedostoja "
+"käännettäväksi. Transifexissa näitä tiedostoja kutsutaan lähteiksi "
+"<i>(resources)</i>. Transifex listaa kaikki tietyn lähteen lauseet tai "
+"fraasit (joita kutsutaan \"sarjoiksi\" <i>(\"strings\")</i>), ja antaa "
+"kiinnostuneille vapaaehtoisille mahdollisuuden kääntää yksittäisiä lauseita "
+"tai fraaseja kykyjensä mukaan."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/getinvolved/en/translation-overview.wml:51
+msgid ""
+"You can check the status of all translations for a given resource by "
+"visiting each resource page. All statuses are updated in real time when new "
+"translations are added."
+msgstr ""
+"Voit tarkistaa kaikkien käännösten tilan tietylle lähteelle vierailemalla "
+"kunkin lähteen sivulla. Kaikki tilat päivittyvät reaaliajassa sitä mukaa kun"
+" uusia käännöksiä lisätään."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/getinvolved/en/translation-overview.wml:57
+msgid ""
+"To get started with Transifex, you need to sign up for an account. Visit the"
+" <a href=\"https://www.transifex.net/accounts/register/\">account "
+"registration page</a> to get started. Be sure to enter a proper email "
+"address and a strong password. Once that's done, click on the resource you "
+"wish to translate, choose your language and click the \"Translate Now\" "
+"button. Transifex will allow you to lock a translation to notify others "
+"that you are working on it. You can also download the po file, translate it "
+"offline and upload it when you are finished."
+msgstr ""
+"Päästäksesi alkuun Transifexin käytössä sinun on avattava käyttäjätili. "
+"Vieraile <a href=\"https://www.transifex.net/accounts/register/\">tilin "
+"rekisteröinti -sivulla</a> alkuun pääsemiseksi. Varmista, että annat "
+"toimivan sähköpostiosoitteen ja vahvan salasanan. Kun olet valmis, klikkaa "
+"lähdettä jonka haluat kääntää, valitse kielesi ja klikkaa \"Translate Now\" "
+"-nappia. Transifex antaa sinulle mahdollisuuden lukita käännös, jotta muut "
+"tietävät sinun työstävän sitä. Voit myös ladata po-tiedoston koneellesi "
+"käännettäväksi ja lähettää sen takaisin kun olet valmis."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/getinvolved/en/translation-overview.wml:69
+msgid ""
+"Transifex supports automatic translations using the Google Translate API "
+"(which currently supports 50-something languages). If the language you are "
+"working on is supported by the Google Translate API, you will see a yellow "
+"lightning bolt on the left side of the text field (on mouseover)."
+msgstr ""
+"Transifex tukee automaattisia käännöksiä Google Translaten API:a käyttäen "
+"(joka tukee tällä hetkellä noin 50 eri kieltä). Jos Google Translaten API "
+"tukee kieltä, jolla työskentelet, näet keltaisen salaman tekstikentän "
+"vasemmalla puolella (kun liikutat hiirtä sen yllä)."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/getinvolved/en/translation-overview.wml:76
+msgid ""
+"If you're able, please translate the strings you see and click the 'Save "
+"All' button at the bottom of the page. If you're unsure, click the "
+"'Suggestions' button (visible when you move the mouse over the text area). "
+"Feel free to leave comments for any of the translations if you feel it's "
+"important to clarify anything."
+msgstr ""
+"Jos pystyt, käännä näkemäsi sarjat ja klikkaa 'Tallenna kaikki' -nappulaa "
+"sivun alareunassa. Jos et ole varma, klikkaa 'ehdotukset' -nappia (joka "
+"näkyy kun liikutat hiirtä tekstikentän yllä). Jätä vapaasti kommentteja "
+"mihin tahansa käännökseen, jos sinusta tuntuu, että jokin asia kaipaa "
+"selvennystä."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/getinvolved/en/translation-overview.wml:84
+msgid ""
+"For more advanced users who like to translate without a web browser, you can"
+" also download the .po file directly. You'll find this option after clicking"
+" on a resource name and a language. If this option fits your working habits,"
+" by all means, please use it! You may find a program called <a "
+"href=\"http://www.poedit.net/\">Poedit</a> to make the job easier, "
+"especially for right-to-left languages that don't work as well in text "
+"editors. If you're using Poedit, you should disable compiling .mo files in "
+"Poedit's preferences (File -> Preferences -> Editor -> Behavior, "
+"uncheck \"Automatically compile .mo file on save\"). When you're finished "
+"translating the .po file, you can upload it by clicking on the resource name"
+" of the file you translated, choosing your language and clicking on \"Upload"
+" file\" button."
+msgstr ""
+"Edistyneemmät käyttäjät, jotka kääntävät mieluummin ilman webbiselainta, "
+"voivat myös ladata .po-tiedoston suoraan. Tämä optio löytyy kun olet "
+"valinnut lähteen nimen ja kielen. Jos tämä optio sopii työskentelytapoihisi,"
+" käytä ihmeessä sitä! Ohjelma nimeltä <a "
+"href=\"http://www.poedit.net/\">Poedit</a> tekee hommasta helpomman, etenkin"
+" oikealta vasemmalle kirjoitettavissa kielissä, jotka eivät toimi niin hyvin"
+" tekstieditoreissa. Jos käytät Poeditiä, sinun on otettava pois päältä .mo-"
+"tiedostojen kokoaminen Poeditin asetuksissa (File -> Preferences -> "
+"Editor -> Behavior, poista valinta kohdasta \"Automatically compile .mo "
+"file on save\"). Kun olet saanut valmiiksi .po-tiedoston kääntämisen, voit "
+"lähettää sen klikkaamalla kääntämäsi lähteen nimeä, valitsemalla oman "
+"kielesi ja klikkaamalla \"Lähetä tiedosto\" -nappia."
+
+
Added: translation/trunk/projects/website/po/fr/docs/1-high.bridges.po
===================================================================
--- translation/trunk/projects/website/po/fr/docs/1-high.bridges.po (rev 0)
+++ translation/trunk/projects/website/po/fr/docs/1-high.bridges.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -0,0 +1,439 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR The Tor Project, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+msgid ""
+msgstr ""
+"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:36+0000\n"
+"PO-Revision-Date: 2011-05-11 00:13+0000\n"
+"Last-Translator: mehditaileb <mehditaileb(a)liberte-info.net>\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: fr\n"
+"Plural-Forms: nplurals=2; plural=(n > 1)\n"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/bridges.wml:8
+msgid ""
+"<a href=\"<page index>\">Home » </a> <a href=\"<page "
+"docs/documentation>\">Documentation » </a> <a href=\"<page "
+"docs/bridges>\">Bridges</a>"
+msgstr ""
+"<a href=\"<page index>\">Accueil »</a> <a href=\"<page "
+"docs/documentation>\">Documentation »</a> <a href=\"<page "
+"docs/bridges>\">Ponts</a>"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/bridges.wml:13
+msgid "<a id=\"BridgeIntroduction\"></a>"
+msgstr "<a id=\"BridgeIntroduction\"></a>"
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/tor/website/docs/en/bridges.wml:14
+msgid "<a class=\"anchor\" href=\"#BridgeIntroduction\">Tor: Bridges</a>"
+msgstr "<a class=\"anchor\" href=\"#BridgeIntroduction\">Tor: Ponts</a>"
+
+#. 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
+msgid "<hr>"
+msgstr "<hr>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/bridges.wml:18
+msgid ""
+"Bridge relays (or \"bridges\" for short) are Tor relays that aren't listed "
+"in the main Tor directory. Since there is no complete public list of them, "
+"even if your ISP is filtering connections to all the known Tor relays, they "
+"probably won't be able to block all the bridges. If you suspect your access "
+"to the Tor network is being blocked, you may want to use the bridge feature "
+"of Tor."
+msgstr ""
+"Les relais-ponts (ou «ponts» en abrégé) sont des relais Tor qui ne figurent "
+"pas dans le répertoire principal de Tor. Comme il n'en existe pas de liste "
+"publique, même si votre FAI filtre les connexions à tous les relais Tor "
+"connus, ils ne sera probablement pas en mesure de bloquer tous les ponts. Si"
+" vous soupçonnez que votre accès au réseau Tor est bloqué, vous pouvez "
+"utiliser la fonctionnalité pont de Tor."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/bridges.wml:26
+msgid ""
+"The addition of bridges to Tor is a step forward in the blocking resistance "
+"race. It is perfectly possible that even if your ISP filters the Internet, "
+"you do not require a bridge to use Tor. Many filtering programs look for "
+"unencrypted Tor directory requests to recognize that you're using Tor, but "
+"Tor version 0.2.0.23-rc and later use encrypted directory queries by "
+"default. This change means that most filtering programs are now unable to "
+"recognize Tor connections. So you should try to use Tor without bridges "
+"first, since it might work."
+msgstr ""
+"L'ajout de ponts pour Tor est un pas en avant dans la course contre le "
+"blocage de sites. Il est parfaitement possible que, même si votre FAI filtre"
+" Internet, vous n'avez pas besoin d'un pont pour utiliser Tor. De nombreux "
+"programmes de filtrage cherchent en clair des demandes de répertoire Tor "
+"afin de reconnaître que vous utilisez Tor, Tor, mais la version 0.2.0.23-rc "
+"et suivantes utilisent des requêtes aux répertoires cryptée par défaut. Ce "
+"changement signifie que la plupart des programmes de filtrage sont "
+"maintenant incapables de reconnaître les connexions Tor. Donc, vous devriez "
+"essayer d'utiliser Tor sans ponts, car il pourrait fonctionner."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/bridges.wml:37
+msgid ""
+"Note that it's also possible that Tor is non-functional for other reasons. "
+"The latest version of <a href=\"<page projects/torbrowser>\">The Tor Browser"
+" Bundle</a> on Windows tries to give you better hints about why Tor is "
+"having problems connecting. You should also read <a "
+"href=\"<wikifaq>#IinstalledTorandPolipobutitsnotworking.\">the FAQ about "
+"problems with running Tor properly</a> when you have issues. If you feel "
+"that the issue is clearly blocking, or you'd simply like to try because "
+"you're unsure or feeling adventurous, please read on. Ensure that you're "
+"using the <a href=\"<page download/download>#Dev\">latest 0.2.1.x or 0.2.2.x"
+" bundle for your platform</a>."
+msgstr ""
+"Notez qu'il est également possible que Tor ne fonctionne pas pour d'autres "
+"raisons. La dernière version du <a href=\"<page "
+"projects/torbrowser>\">Paquetage Navigateur de Tor</a> sur Windows tente de "
+"vous donner de meilleurs conseils lorsque Tor a des problèmes de connexion. "
+"Vous devriez également lire <a "
+"href=\"<wikifaq>#IinstalledTorandPolipobutitsnotworking.\">la FAQ sur les "
+"problèmes liés à l'utilisation de Tor</a> lorsque vous avez des questions. "
+"Si vous pensez que le problème relève clairement du blocage, ou si vous "
+"désirez simplementfaire un essai parce que vous n'êtes pas sûr ou que vous-"
+"vous sentez l'âme aventureuse, s'il vous plaît lisez la suite. Assurez-vous "
+"que vous utilisez la <a href=\"<page download/download>#Dev\">dernière "
+"version 0.2.1.x ou 0.2.2.x de votre plate-forme</a> ."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/bridges.wml:50
+msgid ""
+"To use a bridge, you'll need to locate one. Furthermore, you'll need to "
+"configure Tor with whatever bridge address you intend to use. You'll do this"
+" with Vidalia, the Tor controller. If your Internet connection requires the"
+" use of a proxy, you'll probably need to configure Vidalia to do so first. "
+"If you don't think you need to configure a proxy for your Internet "
+"connection, you probably don't. Give it a try and if you have issues, ask "
+"us for help."
+msgstr ""
+"Pour utiliser une passerelle, vous devez en trouver une. En outre, vous "
+"aurez besoin de configurer Tor avec l'adresse du pont que vous avez "
+"l'intention d'utiliser. Vous pourrez faire cela avec Vidalia, qui est "
+"l'interface de controle de Tor. Si votre connexion Internet nécessite "
+"l'utilisation d'un proxy, vous aurez probablement besoin de configurer "
+"Vidalia à cette fin avant toute connexion. Si habituellement vous ne "
+"configurez pas un proxy pour votre connexion Internet, c'est que vous n'en "
+"avez probablement pas besoin. Faites un essai, et si vous avez des questions"
+" contactez-nous."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/bridges.wml:59
+msgid ""
+"Freedom House has produced a video on how to get and use Tor bridges. If "
+"you don't see a video below, view it at <a "
+"href=\"http://www.youtube.com/thetorproject\">Youtube: Freedom4Internet</a> "
+"Know of a better video, or one translated into your language? Let us know!"
+msgstr ""
+"Freedom House a produit une vidéo sur la façon d'obtenir et d'utiliser les "
+"ponts Tor. Si vous ne voyez pas la vidéo ci-dessous, allez à <a "
+"href=\"http://www.youtube.com/thetorproject\">Youtube: Freedom4Internet</a> "
+"Vous connaissez une vidéo de meilleure qualité, ou une qui est traduite dans"
+" votre langue? Faites-nous-le savoir!"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/bridges.wml:70
+msgid ""
+"At the moment, you can get a bridge by visiting <a "
+"href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</a>"
+" with your web browser. If this page is filtered for you, and you don't have"
+" any other proxies or ways to reach it, there are <a "
+"href=\"#FindingMore\">other ways to find bridges</a> too."
+msgstr ""
+"Vous pouvez obtenir un pont en visitant <a "
+"href=\"https://bridges.torproject.org/\">https: / / bridges.torproject.org "
+"/</a> avec votre navigateur web. Si cette page est filtrée pour vous, et "
+"vous n'avez pas de proxy ou d'autres moyens pour l'atteindre, il y a aussi "
+"<a href=\"#FindingMore\">d'autres façons de trouver des ponts</a>."
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/bridges.wml:77
+msgid "<a id=\"Understanding\"></a>"
+msgstr "<a id=\"Understanding\"></a>"
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/tor/website/docs/en/bridges.wml:78
+msgid "<a class=\"anchor\" href=\"#Understanding\">Understanding bridges</a>"
+msgstr "<a class=\"anchor\" href=\"#Understanding\">Comprendre les Ponts</a>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/bridges.wml:82
+msgid ""
+"As an example, you'll get a bridge entry that looks like the following:"
+msgstr ""
+"A titre d'exemple, vous obtiendrez une entrée de pont ou bridge qui "
+"ressemble à ce qui suit:"
+
+#. type: Content of: <div><div><pre>
+#: /home/runa/tor/website/docs/en/bridges.wml:85
+#, no-wrap
+msgid ""
+"<samp>\n"
+" bridge 141.201.27.48:443 4352e58420e68f5e40bf7c74faddccd9d1349413\n"
+" </samp>\n"
+" "
+msgstr ""
+"<samp>\n"
+" bridge 141.201.27.48:443 4352e58420e68f5e40bf7c74faddccd9d1349413\n"
+" </samp>\n"
+" "
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/bridges.wml:91
+msgid ""
+"Understanding the components of a bridge line isn't strictly required but "
+"may prove useful. You can skip this section if you'd like.<br> The first "
+"element is the IP address: <tt>'141.201.27.48'</tt><br> The second element "
+"is the port: <tt>'443'</tt><br> The third element, the fingerprint, is "
+"optional: <tt>'4352e58420e68f5e40bf7c74faddccd9d1349413'</tt><br>"
+msgstr ""
+"Comprendre les éléments d'une ligne de ponts n'est pas strictement "
+"nécessaire mais peut s'avérer utile. Vous pouvez sauter cette section si "
+"vous le souhaitez. <br> Le premier élément est l'adresse IP: "
+"<tt>'141.201.27.48 '</tt><br> Le deuxième élément est le port: <tt>'443 "
+"'</tt> <br> Le troisième élément, l'empreinte, est facultatif: "
+"<tt>'4352e58420e68f5e40bf7c74faddccd9d1349413 '</tt><br>"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/bridges.wml:99
+msgid "<a id=\"UsingBridges\"></a>"
+msgstr "<a id=\"UsingBridges\"></a>"
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/tor/website/docs/en/bridges.wml:100
+msgid ""
+"<a class=\"anchor\" href=\"#UsingBridges\">Using bridges with Tor and "
+"Vidalia</a>"
+msgstr ""
+"<a class=\"anchor\" href=\"#UsingBridges\">Utiliser des ponts avec Tor et "
+"Vidalia</a>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/bridges.wml:105
+msgid ""
+"To use the example bridge address above, go to Vidalia's Network settings "
+"page, and click \"My ISP blocks connections to the Tor network\". Add each "
+"bridge address one at a time in the Vidalia Network settings page, by "
+"pasting it into the \"Add a Bridge\" window and then clicking the \"+\" "
+"sign. Adding a bridge is pictured below:"
+msgstr ""
+"Pour utiliser l'adresse du pont dans l'exemple ci-dessus, allez à Vidalia, "
+"page des options réseau, et cliquez sur \"Mon FAI bloque les connexions au "
+"réseau Tor\". Ajoutez chaque pont une adresse à la fois dans la page "
+"Paramètres du réseau Vidalia, en le collant dans \"Ajouter une passerelle\" "
+"et puis en cliquant sur le signe \"+\". L'ajout d'un pont est représenté ci-"
+"dessous:"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/bridges.wml:112
+msgid ""
+"<br><br> <img src=\"$(IMGROOT)/vidalia-bridges.png\" alt=\"Vidalia's Network"
+" settings page\"> <br><br>"
+msgstr ""
+"<br><br><img src=\"$(IMGROOT)/vidalia-bridges.png\" alt=\"Page des options "
+"réseau de Vidalia\"><br><br>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/bridges.wml:117
+msgid ""
+"You'll want to add as many bridge addresses as you know about, since "
+"additional bridges will increase reliability. One bridge should be enough to"
+" reach the Tor network, but if you only have one bridge and it goes down, "
+"you will be cut off from the Tor network."
+msgstr ""
+"Il vaut mieux ajouter autant de ponts que vous pouvez, des ponts "
+"supplémentaires augmentant la fiabilité. Un pont devrait être suffisant pour"
+" atteindre le réseau Tor, mais si vous avez seulement un pont et qu'il tombe"
+" en panne, vous serez coupé du réseau Tor."
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/bridges.wml:123
+msgid "<a id=\"FindingMore\"></a>"
+msgstr "<a id=\"FindingMore\"></a>"
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/tor/website/docs/en/bridges.wml:124
+msgid "<a class=\"anchor\" href=\"#FindingMore\">Finding more bridges for Tor</a>"
+msgstr "<a class=\"anchor\" href=\"#FindingMore\">Trouver plus de ponts pour Tor</a>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/bridges.wml:128
+msgid ""
+"Another way to find public bridge addresses is to send mail to "
+"bridges(a)torproject.org with the line \"get bridges\" by itself in the body "
+"of the mail. You'll need to send this request from a gmail account, though "
+"— otherwise we make it too easy for an attacker to make a lot of email"
+" addresses and learn about all the bridges. Almost instantly, you'll "
+"receive a reply that includes:"
+msgstr ""
+"Une autre façon de trouver des adresses de ponts publics est d'envoyer un "
+"mail à bridges(a)torproject.org avec la ligne \"get bridges\" seule dans le "
+"corps de l'e-mail. Vous aurez besoin d'envoyer cette demande à partir d'un "
+"compte Gmail, faute de quoi cela serait trop facile pour un attaquant de "
+"créer un grand nombre d'adresses e-mail pour en savoir davantage sur tous "
+"les ponts. Presque instantanément, vous recevrez une réponse qui comprend:"
+
+#. type: Content of: <div><div><pre>
+#: /home/runa/tor/website/docs/en/bridges.wml:136
+#, 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"
+" "
+msgstr ""
+" Voici vos relais-ponts:\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"
+" "
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/bridges.wml:144
+msgid ""
+"Once you've received the email with bridge information, you can continue the"
+" Vidalia configuration steps outlined <a href=\"#UsingBridges\">above</a>."
+msgstr ""
+"Une fois que vous avez reçu l'e-mail avec les informations sur les ponts, "
+"vous pouvez poursuivre les étapes de configuration de Vidalia décrites <a "
+"href=\"#UsingBridges\">ci-dessus</a> ."
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/bridges.wml:147
+msgid "<a id=\"RunningABridge\"></a>"
+msgstr "<a id=\"RunningABridge\"></a>"
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/tor/website/docs/en/bridges.wml:148
+msgid "<a class=\"anchor\" href=\"#RunningABridge\">Running a Tor Bridge</a>"
+msgstr "<a class=\"anchor\" href=\"#RunningABridge\">Utilisation d'un Pont Tor</a>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/bridges.wml:152
+msgid ""
+"If you want to help out and you can't run a <a href=\"<page docs/tor-doc-"
+"relay>\">normal Tor relay</a>, you should run a bridge relay. You can "
+"configure it either way:"
+msgstr ""
+"Si vous souhaitez aider et que vous ne pouvez pas installer un <a "
+"href=\"<page docs/tor-doc-relay>\">relais Tor normal</a> , vous pouvez "
+"installer un relais-pont. Vous pouvez le configurer ainsi:"
+
+#. type: Content of: <div><div><p><ul><li>
+#: /home/runa/tor/website/docs/en/bridges.wml:156
+msgid ""
+"manually <a href=\"<page docs/faq>#torrc\">edit your torrc file</a> to be "
+"just these four lines:<br>"
+msgstr ""
+"<a href=\"<page docs/faq>#torrc\">modifiez votre fichier torrc</a> "
+"manuellement pour avoir seulement ces quatre lignes: <br>"
+
+#. type: Content of: <div><div><p><ul><li><pre>
+#: /home/runa/tor/website/docs/en/bridges.wml:158
+#, no-wrap
+msgid ""
+"<code>\n"
+" SocksPort 0\n"
+" ORPort 443\n"
+" BridgeRelay 1\n"
+" Exitpolicy reject *:*\n"
+" </code>"
+msgstr ""
+"<code>\n"
+" SocksPort 0\n"
+" ORPort 443\n"
+" BridgeRelay 1\n"
+" Exitpolicy reject *:*\n"
+" </code>"
+
+#. type: Content of: <div><div><p><ul><li>
+#: /home/runa/tor/website/docs/en/bridges.wml:164
+msgid ""
+"<a href=\"<page docs/tor-doc-relay>\">or using Vidalia</a>:<br> <img "
+"src=\"$(IMGROOT)/vidalia-bridges-setup.png\" alt=\"Vidalia's Sharing "
+"settings page\">"
+msgstr ""
+"<a href=\"<page docs/tor-doc-relay>\">ou en utilisant Vidalia</a> : <br><img"
+" src=\"$(IMGROOT)/vidalia-bridges-setup.png\" alt=\"Paramètres de partage de"
+" Vidalia\">"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/bridges.wml:170
+msgid ""
+"If you get \"Could not bind to 0.0.0.0:443: Permission denied\" errors on "
+"startup, you'll need to pick a higher ORPort (e.g. 8080) or do <a "
+"href=\"<page "
+"docs/faq>#HowcanImakemyrelayaccessibletopeoplestuckbehindrestrictivefirewalls\">some"
+" complex port forwarding</a>."
+msgstr ""
+"Si vous obtenez l'erreur \"Impossible de se connecter à 0.0.0.0:443: "
+"Permission refusée\" au démarrage, vous aurez besoin de choisir une plus "
+"grande valeur d'ORPort (par exemple 8080) ou de mettre en place <a "
+"href=\"<page "
+"docs/faq>#HowcanImakemyrelayaccessibletopeoplestuckbehindrestrictivefirewalls\">des"
+" redirections complexes de ports</a> ."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/bridges.wml:177
+msgid ""
+"When configured as a bridge, your server will <b>not</b> appear in the "
+"public Tor network."
+msgstr ""
+"Lorsque vous mettez en place un pont, votre serveur n'apparaîtra <b>pas</b> "
+"dans le réseau public de Tor."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/bridges.wml:182
+msgid ""
+"Your bridge relay will automatically publish its address to the bridge "
+"authority, which will give it out via https or email as above. You can also "
+"tell a user about your bridge directly: if you're using Vidalia, you can "
+"copy-and-paste the bridge address from the Settings window. If you're on "
+"Linux or BSD, you can construct the bridge address manually using the <a "
+"href=\"#Understanding\">format above</a> (you can find the fingerprint in "
+"your Tor log files or in <tt>/var/lib/tor/fingerprint</tt> depending on your"
+" platform)."
+msgstr ""
+"Votre pont va automatiquement publier son adresse à l'administrateur des "
+"ponts, qui va le distribuer via https ou e-mail comme indiqué ci-dessus. "
+"Vous pouvez aussi donner à un utilisateur l'adresse de votre pont: si vous "
+"utilisez Vidalia, vous pouvez copier-coller l'adresse de la passerelle dans "
+"la fenêtre Paramètres. Si vous êtes sous Linux ou BSD, vous pouvez "
+"construire l'adresse de la passerelle manuellement en utilisant le <a "
+"href=\"#Understanding\">le format ci-dessus</a> (vous pouvez trouver "
+"l'empreinte dans vos fichiers journaux ou dans "
+"<tt>/var/lib/tor/fingerprint</tt> selon votre plate-forme)."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/bridges.wml:193
+msgid ""
+"If you would like to learn more about our bridge design from a technical "
+"standpoint, please read the <a href=\"<specblob>bridges-spec.txt\">Tor "
+"bridges specification</a>. If you're interested in running an unpublished "
+"bridge or other non-standard uses, please do read the specification."
+msgstr ""
+"Si vous souhaitez en savoir plus sur notre conception des ponts d'un point "
+"de vue technique, vous pouvez lire les <a href=\"<specblob>bridges-"
+"spec.txt\">spécifications des Ponts Tor</a>. Si vous envisagez de faire "
+"tourner un pont inédit ou d'autres utilisations non-standard, merci de lire "
+"le cahier des charges."
+
+
Added: translation/trunk/projects/website/po/fr/docs/1-high.proxychain.po
===================================================================
--- translation/trunk/projects/website/po/fr/docs/1-high.proxychain.po (rev 0)
+++ translation/trunk/projects/website/po/fr/docs/1-high.proxychain.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -0,0 +1,143 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR The Tor Project, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+msgid ""
+msgstr ""
+"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-05-13 02:19+0000\n"
+"Last-Translator: mehditaileb <mehditaileb(a)liberte-info.net>\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: fr\n"
+"Plural-Forms: nplurals=2; plural=(n > 1)\n"
+
+#. type: Content of: <div><div>
+#: /home/runa/dev/website/docs/en/proxychain.wml:8
+msgid ""
+"<a href=\"<page index>\">Home » </a> <a href=\"<page "
+"docs/documentation>\">Documentation » </a> <a href=\"<page "
+"docs/proxychain>\">Configuring Tor to use a Proxy</a>"
+msgstr ""
+"<a href=\"<page index>\">Accueil » </a> <a href=\"<page "
+"docs/documentation>\">Documentation » </a> <a href=\"<page "
+"docs/proxychain>\">Configuration de Tor pour l'utilisation d'un proxy</a>"
+
+#. type: Content of: <div><div>
+#: /home/runa/dev/website/docs/en/proxychain.wml:13
+msgid "<a id=\"proxychain\"></a>"
+msgstr "<a id=\"proxychain\"></a>"
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/dev/website/docs/en/proxychain.wml:14
+msgid ""
+"<a class=\"anchor\" href=\"#proxychain\">Tor: Configuring Tor to use a "
+"Proxy</a>"
+msgstr ""
+"<a class=\"anchor\" href=\"#proxychain\">Tor: Configuration de Tor pour "
+"l'utilisation d'un proxy</a>"
+
+#. type: Content of: <div><div>
+#: /home/runa/dev/website/docs/en/proxychain.wml:15
+msgid "<hr>"
+msgstr "<hr>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/dev/website/docs/en/proxychain.wml:18
+msgid ""
+"The current version of Tor and the Vidalia Graphical Tor Controller support "
+"the ability to use any HTTPS or SOCKS proxy to get access to the Tor "
+"Network. This means even if Tor is blocked by your local network, open "
+"proxies can be safely used to connect to the Tor Network and on to the "
+"uncensored Internet. A caveat is that the open proxy host will see you are "
+"using Tor, but it will not be able to read your traffic as it is still "
+"wrapped in layers of encryption."
+msgstr ""
+"La version actuelle de Tor et le panneau de contrôle graphique Vidalia de "
+"Tor permettent d'utiliser tout proxy HTTPS ou SOCKS pour accéder au réseau "
+"Tor. Cela signifie que même si Tor est bloqué par votre réseau local, des "
+"proxies ouverts peuvent être utilisés en toute sécurité pour se connecter au"
+" réseau Tor et à l'Internet non censuré. Un inconvénient est que le proxy "
+"ouvert verra que vous utilisez Tor, mais il ne sera pas en mesure de lire "
+"votre trafic car il sera chiffré."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/dev/website/docs/en/proxychain.wml:28
+msgid ""
+"These steps assume you have a functional Tor/Vidalia configuration, and you "
+"have found a list of HTTPS, SOCKS4, or SOCKS5 proxies. (To clarify, an HTTPS"
+" proxy is an HTTP proxy that also supports CONNECT requests.)"
+msgstr ""
+"Ces étapes supposent que vous disposez d'une configuration Tor/Vidalia "
+"fonctionnelle, et que vous avez obtenu une liste de proxiesHTTPS, SOCKS4 ou "
+"SOCKS5. (Pour préciser, un proxy HTTPS est un proxy HTTP qui supporte "
+"également les requêtes CONNECT.)"
+
+#. type: Content of: <div><div><p><ol><li>
+#: /home/runa/dev/website/docs/en/proxychain.wml:33
+msgid "Open the Vidalia Control Panel, click on Settings."
+msgstr "Ouvrez le Panneau de configuration Vidalia, cliquez sur Paramètres."
+
+#. type: Content of: <div><div><p><ol><li>
+#: /home/runa/dev/website/docs/en/proxychain.wml:34
+msgid "Click Network. Select \"I use a proxy to access the Internet\"."
+msgstr ""
+"Cliquez sur Réseau. Sélectionnez «J'utilise un proxy pour accéder à "
+"l'Internet\"."
+
+#. type: Content of: <div><div><p><ol><li>
+#: /home/runa/dev/website/docs/en/proxychain.wml:35
+msgid ""
+"On the Address line, enter the open proxy address. This can be a hostname "
+"or IP Address."
+msgstr ""
+"Sur la ligne d'adresse, entrez l'adresse du proxy ouvert. Cela peut être un "
+"nom d'hôte ou une adresse IP."
+
+#. type: Content of: <div><div><p><ol><li>
+#: /home/runa/dev/website/docs/en/proxychain.wml:36
+msgid "Enter the port for the proxy."
+msgstr "Entrez le port du proxy."
+
+#. type: Content of: <div><div><p><ol><li>
+#: /home/runa/dev/website/docs/en/proxychain.wml:37
+msgid ""
+"Generally, you do not need a Username and Password. If you do, enter the "
+"information in the proper fields."
+msgstr ""
+"Généralement, vous n'avez pas besoin d'un nom d'utilisateur et d'un mot de "
+"passe. Mais si c'est le cas, entrez ces informations dans les champs "
+"appropriés."
+
+#. type: Content of: <div><div><p><ol><li>
+#: /home/runa/dev/website/docs/en/proxychain.wml:38
+msgid ""
+"Choose the Type of proxy you are using, whether HTTP/HTTPS, SOCKS4, or "
+"SOCKS5."
+msgstr ""
+"Choisissez le type de proxy que vous utilisez, si HTTP/HTTPS, SOCKS4 ou "
+"SOCKS5."
+
+#. type: Content of: <div><div><p><ol><li>
+#: /home/runa/dev/website/docs/en/proxychain.wml:39
+msgid ""
+"Push the Ok button. Vidalia and Tor are now configured to use a proxy to "
+"access the rest of the Tor Network."
+msgstr ""
+"Cliquez sur le bouton Ok. Vidalia et Tor sont maintenant configurés pour "
+"utiliser un proxy pour accéder au reste du réseau Tor."
+
+#. type: Content of: <div><div>
+#: /home/runa/dev/website/docs/en/proxychain.wml:42
+msgid ""
+"<br><br> <img src=\"$(IMGROOT)/vidalia-proxy.png\" alt=\"Vidalia's Network "
+"Proxy settings page\"> <br><br>"
+msgstr ""
+"<br><br><img src=\"$(IMGROOT)/vidalia-proxy.png\" alt=\"Page des Paramètres "
+"du Proxy Réseau de Vidalia\"><br><br>"
+
+
Added: translation/trunk/projects/website/po/fr/torbutton/3-low.torbutton-faq.po
===================================================================
--- translation/trunk/projects/website/po/fr/torbutton/3-low.torbutton-faq.po (rev 0)
+++ translation/trunk/projects/website/po/fr/torbutton/3-low.torbutton-faq.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -0,0 +1,677 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR The Tor Project, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+# <mehditaileb(a)liberte-info.net>, 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-03-17 18:05+0000\n"
+"PO-Revision-Date: 2011-05-19 02:44+0000\n"
+"Last-Translator: mehditaileb <mehditaileb(a)liberte-info.net>\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: fr\n"
+"Plural-Forms: nplurals=2; plural=(n > 1)\n"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:8
+msgid ""
+"<a href=\"<page index>\">Home » </a> <a href=\"<page "
+"torbutton/index>\">Torbutton » </a> <a href=\"<page torbutton"
+"/torbutton-faq>\">Torbutton FAQ</a>"
+msgstr ""
+"<a href=\"<page index>\">Accueil » </a> <a href=\"<page "
+"torbutton/index>\">Torbutton » </a> <a href=\"<page torbutton"
+"/torbutton-faq>\">FAQ du Torbutton</a>"
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:15
+msgid "Torbutton FAQ"
+msgstr "FAQ du Torbutton"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:16
+msgid "<hr>"
+msgstr "<hr>"
+
+#. type: Content of: <div><div><h3>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:18
+msgid "Questions"
+msgstr "Questions"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:19
+msgid "<br>"
+msgstr "<br>"
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:21
+msgid ""
+"<a href=\"<page torbutton/torbutton-faq>#nojavascript\">When I toggle Tor, "
+"my sites that use javascript stop working. Why?</a>"
+msgstr ""
+"<a href=\"<page torbutton/torbutton-faq>#nojavascript\">Quand je bascule "
+"vers Tor, les sites qui utilisent javascript ne s'affichent pas "
+"correctement. Pourquoi?</a>"
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:22
+msgid ""
+"<a href=\"<page torbutton/torbutton-faq>#noreloads\">I can't click on links "
+"or hit reload after I toggle Tor! Why?</a>"
+msgstr ""
+"<a href=\"<page torbutton/torbutton-faq>#noreloads\">Je ne peux pas cliquer "
+"sur des liens ou les recharger les pages après avoir basculé vers Tor! "
+"Pourquoi?</a>"
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:23
+msgid ""
+"<a href=\"<page torbutton/torbutton-faq>#noflash\">I can't view videos on "
+"YouTube and other flash-based sites. Why?</a>"
+msgstr ""
+"<a href=\"<page torbutton/torbutton-faq>#noflash\">Je ne peux pas visionner "
+"les vidéos de YouTube et autres sites à base de Flash. Pourquoi?</a>"
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:24
+msgid ""
+"<a href=\"<page torbutton/torbutton-faq>#oldtorbutton\">Torbutton sure seems"
+" to do a lot of things, some of which I find annoying. Can't I just use the "
+"old version?</a>"
+msgstr ""
+"<a href=\"<page torbutton/torbutton-faq>#oldtorbutton\">Torbutton semble "
+"désormais faire beaucoup de choses, dont certaines que je trouve ennuyeuses."
+" Pourquoi ne puis-je pas simplement utiliser l'ancienne version?</a>"
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:25
+msgid ""
+"<a href=\"<page torbutton/torbutton-faq>#weirdstate\">My browser is in some "
+"weird state where nothing works right!</a>"
+msgstr ""
+"<a href=\"<page torbutton/torbutton-faq>#weirdstate\">Mon navigateur est "
+"dans un état bizarre où rien ne semble fonctionner correctement!</a>"
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:26
+msgid ""
+"<a href=\"<page torbutton/torbutton-faq>#noautocomplete\">When I use Tor, "
+"Firefox is no longer filling in logins/search boxes for me. Why?</a>"
+msgstr ""
+"<a href=\"<page torbutton/torbutton-faq>#noautocomplete\">Quand j'utiliser "
+"Tor, Firefox n'effectue plus le remplissage des champs de connexion / de "
+"recherche comme avant. Pourquoi?</a>"
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:27
+msgid ""
+"<a href=\"<page torbutton/torbutton-faq>#thunderbird\">What about "
+"Thunderbird support? I see a page, but it is the wrong version?</a>"
+msgstr ""
+"<a href=\"<page torbutton/torbutton-faq>#thunderbird\">Qu'en est-il du "
+"support de Thunderbird? Je vois une page, mais c'est la mauvaise "
+"version?</a>"
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:28
+msgid ""
+"<a href=\"<page torbutton/torbutton-faq>#extensionconflicts\">Which Firefox "
+"extensions should I avoid using?</a>"
+msgstr ""
+"<a href=\"<page torbutton/torbutton-faq>#extensionconflicts\">Quelles "
+"extensions de Firefox que devrais-je éviter d'utiliser?</a>"
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:29
+msgid ""
+"<a href=\"<page torbutton/torbutton-faq>#recommendedextensions\">Which "
+"Firefox extensions do you recommend?</a>"
+msgstr ""
+"<a href=\"<page torbutton/torbutton-faq>#recommendedextensions\">Quelles "
+"sont les extensions de Firefox que vous recommandez?</a>"
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:30
+msgid ""
+"<a href=\"<page torbutton/torbutton-faq>#securityissues\">Are there any "
+"other issues I should be concerned about?</a>"
+msgstr ""
+"<a href=\"<page torbutton/torbutton-faq>#securityissues\">Y at-il d'autres "
+"questions dont je devrais me préoccuper?</a>"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:32
+msgid ""
+"<br> <a id=\"nojavascript\"></a> <strong><a class=\"anchor\" "
+"href=\"#nojavascript\">When I toggle Tor, my sites that use javascript stop "
+"working. Why?</a></strong>"
+msgstr ""
+"<br><a id=\"nojavascript\"></a> <a class=\"anchor\" "
+"href=\"#nojavascript\"><strong>Quand je bascule vers Tor, les sites qui "
+"utilisent javascript ne s'affichent pas correctement. Pourquoi?</strong></a>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:38
+msgid ""
+"Javascript can do things like wait until you have disabled Tor before trying"
+" to contact its source site, thus revealing your IP address. As such, "
+"Torbutton must disable Javascript, Meta-Refresh tags, and certain CSS "
+"behavior when Tor state changes from the state that was used to load a given"
+" page. These features are re-enabled when Torbutton goes back into the state"
+" that was used to load the page, but in some cases (particularly with "
+"Javascript and CSS) it is sometimes not possible to fully recover from the "
+"resulting errors, and the page is broken. Unfortunately, the only thing you "
+"can do (and still remain safe from having your IP address leak) is to reload"
+" the page when you toggle Tor, or just ensure you do all your work in a page"
+" before switching tor state."
+msgstr ""
+"Javascript peut faire des choses comme attendre jusqu'à ce que vous ayez "
+"désactivé Tor avant d'essayer de contacter le site source, révélant ainsi "
+"votre adresse IP. En conéquence, Torbutton doit désactiver Javascript, les "
+"balises Meta-Refresh, et certains comportements de CSS lors des changements "
+"d'état Tor par rapport à l'état qui a été utilisé pour charger une page "
+"donnée. Ces caractéristiques sont réactivées lorsque Torbutton revient à "
+"l'état qui a été utilisé pour charger la page, mais dans certains cas "
+"(notamment avec Javascript et CSS), il est parfois impossible d'y revenir "
+"complètement et une erreur en résulte sur la page. Malheureusement, la seule"
+" chose que vous pouvez faire (qui soit encore sûre afin d'éviter une fuite "
+"de votre adresse IP) est de recharger la page lorsque vous bascule vers Tor,"
+" ou tout simplement vous assurer que vous terminé vos travaux sur une page "
+"avant d'activer Tor."
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:50
+msgid ""
+"<a id=\"noreloads\"></a> <strong><a class=\"anchor\" href=\"#noreloads\">I "
+"can't click on links or hit reload after I toggle Tor! Why?</a></strong>"
+msgstr ""
+"<a id=\"noreloads\"></a> <a class=\"anchor\" href=\"#noreloads\"><strong>e "
+"ne peux pas cliquer sur des liens ou les recharger les pages après avoir "
+"basculé vers Tor! Pourquoi?</strong></a>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:54
+msgid ""
+"Due to <a "
+"href=\"https://bugzilla.mozilla.org/show_bug.cgi?id=409737\">Firefox Bug "
+"409737</a>, pages can still open popups and perform Javascript redirects and"
+" history access after Tor has been toggled. These popups and redirects can "
+"be blocked, but unfortunately they are indistinguishable from normal user "
+"interactions with the page (such as clicking on links, opening them in new "
+"tabs/windows, or using the history buttons), and so those are blocked as a "
+"side effect. Once that Firefox bug is fixed, this degree of isolation will "
+"become optional (for people who do not want to accidentally click on links "
+"and give away information via referrers). A workaround is to right click on "
+"the link, and open it in a new tab or window. The tab or window won't load "
+"automatically, but you can hit enter in the URL bar, and it will begin "
+"loading. Hitting enter in the URL bar will also reload the page without "
+"clicking the reload button."
+msgstr ""
+"En raison d'un <a "
+"href=\"https://bugzilla.mozilla.org/show_bug.cgi?id=409737\">Bug Firefox "
+"409737</a>, des pages peuvent encore ouvrir des popups et effectuer des "
+"redirections Javascript et accéder à l'historique après que Tor ait été "
+"activé. Ces fenêtres pop-up et redirections peuvent être bloquées, mais "
+"malheureusement, ils sont indiscernables des interactions normales de "
+"l'utilisateur avec la page (par exemple, en cliquant sur des liens, en les "
+"ouvrant dans un nouvel onglet/fenêtre, ou en utilisant les boutons de "
+"l'historique), et par conséquent ceux-ci sont bloqués. Une fois que le bug "
+"de Firefox est corrigé, ce degré d'isolement devient optionnel (pour les "
+"personnes qui ne veulent pas cliquez accidentellement sur des liens et "
+"donner l'information via les référents). Une solution de contournement est "
+"de faire un clic droit sur le lien, et l'ouvrir dans un nouvel onglet ou une"
+" fenêtre. L'onglet ou la fenêtre ne se charge pas automatiquement, mais vous"
+" pouvez taper entrer dans la barre d'URL, et ceci va commencer le "
+"chargement. Taper Entrer dans la barre URL rechargera également la page sans"
+" avoir à cliquer sur le bouton de rechargement."
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:69
+msgid ""
+"<a id=\"noflash\"></a> <strong><a class=\"anchor\" href=\"#noflash\">I can't"
+" view videos on YouTube and other Flash-based sites. Why?</a></strong>"
+msgstr ""
+"<a id=\"noflash\"></a> <a class=\"anchor\" href=\"#noflash\"><strong>Je ne "
+"peux pas visionner les vidéos de YouTube et autres sites à base de Flash. "
+"Pourquoi?</strong></a>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:74
+msgid ""
+"YouTube and similar sites require third party browser plugins such as Flash."
+" Plugins operate independently from Firefox and can perform activity on "
+"your computer that ruins your anonymity. This includes but is not limited "
+"to: <a href=\"http://decloak.net\">completely disregarding proxy "
+"settings</a>, querying your <a "
+"href=\"http://forums.sun.com/thread.jspa?threadID=5162138&messageID=9618376\">local"
+" IP address</a>, and <a "
+"href=\"http://epic.org/privacy/cookies/flash.html\">storing their own "
+"cookies</a>. It is possible to use a LiveCD solution such as or <a "
+"href=\"https://tails.boum.org/\">The Amnesic Incognito Live System</a> that "
+"creates a secure, transparent proxy to protect you from proxy bypass, "
+"however issues with local IP address discovery and Flash cookies still "
+"remain."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:88
+msgid ""
+"If you are not concerned about being tracked by these sites (and sites that "
+"try to unmask you by pretending to be them), and are unconcerned about your "
+"local censors potentially noticing you visit them, you can enable plugins by"
+" going into the Torbutton Preferences->Security Settings->Dynamic "
+"Content tab and unchecking \"Disable plugins during Tor usage\" box. If you "
+"do this without The Amnesic Incognito Live System or appropriate firewall "
+"rules, we strongly suggest you at least use <a "
+"href=\"https://addons.mozilla.org/en-US/firefox/addon/722\">NoScript</a> to "
+"<a href=\"http://noscript.net/features#contentblocking\">block plugins</a>. "
+"You do not need to use the NoScript per-domain permissions if you check the "
+"<b>Apply these restrictions to trusted sites too</b> option under the "
+"NoScript Plugins preference tab. In fact, with this setting you can even "
+"have NoScript allow Javascript globally, but still block all plugins until "
+"you click on their placeholders in a page. We also recommend <a "
+"href=\"https://addons.mozilla.org/en-US/firefox/addon/6623\">Better "
+"Privacy</a> in this case to help you clear your Flash cookies."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:106
+msgid ""
+"<em>The Tor Browser Bundle does not work with Flash or other plugins by "
+"design. If you wish to run these plugins over Tor, you need to install Tor "
+"and configure your own instance of Firefox.</em>"
+msgstr ""
+"<em>Le Paquetage Navigateur Tor ne fonctionne pas avec Flash ou d'autres "
+"plugins par conception. Si vous souhaitez faire fonctionner ces plugins avec"
+" Tor, vous devez installer Tor et configurer votre propre instance de "
+"Firefox.</em>"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:110
+msgid ""
+"<a id=\"oldtorbutton\"></a> <strong><a class=\"anchor\" "
+"href=\"#oldtorbutton\">Torbutton sure seems to do a lot of things, some of "
+"which I find annoying. Can't I just use the old version?</a></strong>"
+msgstr ""
+"<a id=\"oldtorbutton\"></a> <a class=\"anchor\" "
+"href=\"#oldtorbutton\"><strong>Torbutton semble désormais faire beaucoup de "
+"choses, dont certaines que je trouve ennuyeuses. Pourquoi ne puis-je pas "
+"simplement utiliser l'ancienne version?</strong></a>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:116
+msgid ""
+"<b>No.</b> Use of the old version, or any other vanilla proxy changer "
+"(including FoxyProxy -- see below) without Torbutton is actively "
+"discouraged. Seriously. Using a vanilla proxy switcher by itself is so "
+"insecure that you are not only just wasting your time, you are also actually"
+" endangering yourself. <b>Simply do not use Tor</b> and you will have the "
+"same (and in some cases, better) security. For more information on the "
+"types of attacks you are exposed to with a \"homegrown\" solution, please "
+"see <a href=\"design/index.html.en#adversary\">The Torbutton Adversary "
+"Model</a>, in particular the <a "
+"href=\"design/index.html.en#attacks\">Adversary Capabilities - Attacks</a> "
+"subsection. If there are any specific Torbutton behaviors that you do not "
+"like, please file a bug on <a "
+"href=\"https://trac.torproject.org/projects/tor/report/14\">the bug "
+"tracker.</a> Most of Torbutton's security features can also be disabled via "
+"its preferences, if you think you have your own protection for those "
+"specific cases."
+msgstr ""
+"<b>N</b> L'utilisation de l'ancienne version, ou tout autre gestionnaire de "
+"proxy tiers (y compris FoxyProxy - voir ci-dessous) sans Torbutton est "
+"fortement déconseillée. Sérieusement. L'utilisation d'un gestionnaire de "
+"proxy tiers est si peu sûr que c'est non-seulement une perte de temps, mais "
+"aussi dangereux. <b>Il suffit de ne pas utiliser Tor</b> et vous aurez la "
+"même (et dans certains cas, plus) de sécurité. Pour plus d'informations sur "
+"les types d'attaques auxquelles vous êtes exposé avec une solution «maison»,"
+" merci de voir <a href=\"design/index.html.en#adversary\">Le Modèle de "
+"l'Adversaire de Torbutton</a> , en particulier le paragraphe <a "
+"href=\"design/index.html.en#attacks\">Capacités de l'Adversaire - Les "
+"attaques</a>. Si vous observez des omportements étranges de Torbutton, merci"
+" de nous envoyer un rapport de bogue sur <a "
+"href=\"https://trac.torproject.org/projects/tor/report/14\">le bug "
+"tracker.</a> La plupart des fonctionnalités de sécurité de Torbutton peuvent"
+" également être désactivées via ses préférences, si vous pensez déjà avoir "
+"votre propre protection dans certains cas précis."
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:135
+msgid ""
+"<a id=\"weirdstate\"></a> <strong><a class=\"anchor\" "
+"href=\"#weirdstate\">My browser is in some weird state where nothing works "
+"right!</a></strong>"
+msgstr ""
+"<a id=\"weirdstate\"></a> <a class=\"anchor\" "
+"href=\"#weirdstate\"><strong>Mon navigateur est dans un état étrange où "
+"rien ne semble fonctionner correctement!</strong></a>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:139
+msgid ""
+"Try to disable Tor by clicking on the button, and then open a new window. If"
+" that doesn't fix the issue, go to the preferences page and hit 'Restore "
+"Defaults'. This should reset the extension and Firefox to a known good "
+"configuration. If you can manage to reproduce whatever issue gets your "
+"Firefox wedged, please file details at <a "
+"href=\"https://trac.torproject.org/projects/tor/report/14\">the bug "
+"tracker</a>."
+msgstr ""
+"Essayez de désactiver Tor en cliquant sur le bouton, puis ouvrez une "
+"nouvelle fenêtre. Si cela ne résout pas le problème, passez à la page des "
+"préférences et cliquez sur «Paramètres par défaut\". Ceci devrait "
+"réinitialiser l'extension Firefox à une configuration connue. Si vous "
+"arriver à reproduire la situation qui mène votre Firefox à une anomalie, "
+"merci de compléter <a "
+"href=\"https://trac.torproject.org/projects/tor/report/14\">le bug "
+"tracker</a> ."
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:147
+msgid ""
+"<a id=\"noautocomplete\"></a> <strong><a class=\"anchor\" "
+"href=\"#noautocomplete\">When I use Tor, Firefox is no longer filling in "
+"logins/search boxes for me. Why?</a></strong>"
+msgstr ""
+"<a id=\"noautocomplete\"></a> <a class=\"anchor\" "
+"href=\"#noautocomplete\"><strong>Quand j'utilise Tor, Firefox n'effectue "
+"plus la saisie automatique des boîtes de connexion/recherche pour moi. "
+"Pourquoi?</strong></a>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:152
+msgid ""
+"Currently, this is tied to the \"<b>Block history writes during Tor</b>\" "
+"setting. If you have enabled that setting, all formfill functionality (both "
+"saving and reading) is disabled. If this bothers you, you can uncheck that "
+"option, but both history and forms will be saved. To prevent history "
+"disclosure attacks via Non-Tor usage, it is recommended you disable Non-Tor "
+"history reads if you allow history writing during Tor."
+msgstr ""
+"Actuellement, cela est lié au paramètre \"<b>Bloquer les saisies de "
+"l'historique pendant l'utilisation de Tor</b>\". Si vous avez activé ce "
+"paramètre, toutes les fonctionnalités formfill (tant la sauvegarde et la "
+"lecture) sont désactivées. Si cela vous dérange, vous pouvez décocher cette "
+"option, mais l'historique et les formulaires seront enregistrés. Pour "
+"prévenir les attaques de divulgation historique via l'utilisation non-Tor, "
+"il est recommandé de désactiver la lecture de l'historique non-Tor dans le "
+"cas où vous choisissez d'enregistrer l'historique pendant l'utilisation de "
+"Tor."
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:160
+msgid ""
+"<a id=\"thunderbird\"></a> <strong><a class=\"anchor\" "
+"href=\"#thunderbird\">What about Thunderbird support? I see a page, but it "
+"is the wrong version?</a></strong>"
+msgstr ""
+"<a id=\"thunderbird\"></a> <a class=\"anchor\" "
+"href=\"#thunderbird\"><strong>Qu'en est-il du support de Thunderbird? Je "
+"vois une page, mais c'est la mauvaise version?</strong></a>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:165
+msgid ""
+"Torbutton used to support basic proxy switching on Thunderbird back in the "
+"1.0 days, but that support has been removed because it has not been analyzed"
+" for security. My developer tools page on addons.mozilla.org clearly lists "
+"Firefox support only, so I don't know why they didn't delete that "
+"Thunderbird listing. I am not a Thunderbird user and unfortunately, I don't"
+" have time to analyze the security issues involved with toggling proxy "
+"settings in that app. It likely suffers from similar (but not identical) "
+"state and proxy leak issues with html mail, embedded images, javascript, "
+"plugins and automatic network access. My recommendation is to create a "
+"completely separate Thunderbird profile for your Tor accounts and use that "
+"instead of trying to toggle proxy settings. But if you really like to roll "
+"fast and loose with your IP, you could try another proxy switcher like "
+"ProxyButton, SwitchProxy or FoxyProxy (if any of those happen to support "
+"thunderbird)."
+msgstr ""
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:180
+msgid ""
+"<a id=\"extensionconflicts\"></a> <strong><a class=\"anchor\" "
+"href=\"#extensionconflicts\">Which Firefox extensions should I avoid "
+"using?</a></strong>"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:184
+msgid ""
+"This is a tough one. There are thousands of Firefox extensions: making a "
+"complete list of ones that are bad for anonymity is near impossible. "
+"However, here are a few examples that should get you started as to what "
+"sorts of behavior are dangerous."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:191
+msgid "StumbleUpon, et al"
+msgstr "StumbleUpon, et al"
+
+#. type: Content of: <div><div><ol><li><p>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:193
+msgid ""
+"These extensions will send all sorts of information about the websites you "
+"visit to the stumbleupon servers, and correlate this information with a "
+"unique identifier. This is obviously terrible for your anonymity. More "
+"generally, any sort of extension that requires registration, or even "
+"extensions that provide information about websites you visit should be "
+"suspect."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:200
+msgid "FoxyProxy"
+msgstr "FoxyProxy"
+
+#. type: Content of: <div><div><ol><li><p>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:202
+msgid ""
+"While FoxyProxy is a nice idea in theory, in practice it is impossible to "
+"configure securely for Tor usage without Torbutton. Like all vanilla third "
+"party proxy plugins, the main risks are <a "
+"href=\"http://www.metasploit.com/research/projects/decloak/\">plugin "
+"leakage</a> and <a href=\"http://ha.ckers.org/weird/CSS-"
+"history.cgi\">history disclosure</a>, followed closely by cookie theft by "
+"exit nodes and tracking by adservers (see the <a "
+"href=\"design/index.html.en#adversary\">Torbutton Adversary Model</a> for "
+"more information). However, with Torbutton installed in tandem and always "
+"enabled, it is possible to configure FoxyProxy securely (though it is "
+"tricky). Since FoxyProxy's 'Patterns' mode only applies to specific urls, "
+"and not to an entire tab, setting FoxyProxy to only send specific sites "
+"through Tor will still allow adservers (whose hosts don't match your "
+"filters) to learn your real IP. Worse, when sites use offsite logging "
+"services such as Google Analytics, you will still end up in their logs with "
+"your real IP. Malicious exit nodes can also cooperate with sites to inject "
+"images into pages that bypass your filters. Setting FoxyProxy to only send "
+"certain URLs via Non-Tor is much more secure in this regard, but be very "
+"careful with the filters you allow. For example, something as simple as "
+"allowing *google* to go via Non-Tor will still cause you to end up in all "
+"the logs of all websites that use Google Analytics! See <a "
+"href=\"http://foxyproxy.mozdev.org/faq.html#privacy-01\">this question</a> "
+"on the FoxyProxy FAQ for more information."
+msgstr ""
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:226
+msgid ""
+"<a id=\"recommendedextensions\"></a> <strong><a class=\"anchor\" "
+"href=\"#recommendedextensions\">Which Firefox extensions do you "
+"recommend?</a></strong>"
+msgstr ""
+"<a id=\"recommendedextensions\"></a> <a class=\"anchor\" "
+"href=\"#recommendedextensions\"><strong>Quelles extension de Firefox "
+"recommandez-vous?</strong></a>"
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:229
+msgid "<a href=\"https://addons.mozilla.org/firefox/addon/953\">RefControl</a>"
+msgstr "<a href=\"https://addons.mozilla.org/firefox/addon/953\">RefControl</a>"
+
+#. type: Content of: <div><div><ol><li><p>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:231
+msgid ""
+"Mentioned above, this extension allows more fine-grained referrer spoofing "
+"than Torbutton currently provides. It should break less sites than "
+"Torbutton's referrer spoofing option."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:235
+msgid "<a href=\"https://addons.mozilla.org/firefox/addon/1474\">SafeCache</a>"
+msgstr "<a href=\"https://addons.mozilla.org/firefox/addon/1474\">SafeCache</a>"
+
+#. type: Content of: <div><div><ol><li><p>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:237
+msgid ""
+"If you use Tor excessively, and rarely disable it, you probably want to "
+"install this extension to minimize the ability of sites to store long term "
+"identifiers in your cache. This extension applies same origin policy to the "
+"cache, so that elements are retrieved from the cache only if they are "
+"fetched from a document in the same origin domain as the cached element."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:244
+msgid ""
+"<a href=\"https://addons.mozilla.org/en-US/firefox/addon/6623\">Better "
+"Privacy</a>"
+msgstr ""
+"<a href=\"https://addons.mozilla.org/en-US/firefox/addon/6623\">Meilleure "
+"protection des données personnelles</a>"
+
+#. type: Content of: <div><div><ol><li><p>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:248
+msgid ""
+"Better Privacy is an excellent extension that protects you from cookies used"
+" by Flash applications, which often persist forever and are not clearable "
+"via normal Firefox \"Private Data\" clearing. Flash and all other plugins "
+"are disabled by Torbutton by default, but if you are interested in privacy, "
+"you may want this extension to allow you to inspect and automatically clear "
+"your Flash cookies for your Non-Tor usage."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:257
+msgid "<a href=\"https://addons.mozilla.org/firefox/addon/1865\">AdBlock Plus</a>"
+msgstr ""
+"<a href=\"https://addons.mozilla.org/firefox/addon/1865\">AdBlock Plus</a>"
+
+#. type: Content of: <div><div><ol><li><p>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:260
+msgid ""
+"AdBlock Plus is an excellent addon for removing annoying, privacy-invading, "
+"and <a href=\"http://www.wired.com/techbiz/media/news/2007/11/doubleclick"
+"\">malware-distributing</a> advertisements from the web. It provides <a "
+"href=\"http://adblockplus.org/en/subscriptions\">subscriptions</a> that are "
+"continually updated to catch the latest efforts of ad networks to circumvent"
+" these filters. I recommend the EasyPrivacy+EasyList combination filter "
+"subscription in the Miscellaneous section of the subscriptions page."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:271
+msgid "<a href=\"https://addons.mozilla.org/firefox/addon/82\">Cookie Culler</a>"
+msgstr "<a href=\"https://addons.mozilla.org/firefox/addon/82\">Cookie Culler</a>"
+
+#. type: Content of: <div><div><ol><li><p>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:274
+msgid ""
+"Cookie Culler is a handy extension to give quick access to the cookie "
+"manager in Firefox. It also provides the ability to protect certain cookies "
+"from deletion, but unfortunately, this behavior does not integrate well with"
+" Torbutton. Kory Kirk is working on addressing this for this Google Summer "
+"of Code project for 2009."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:281
+msgid ""
+"<a href=\"https://addons.mozilla.org/en-US/firefox/addon/722\">NoScript</a>"
+msgstr ""
+"<a href=\"https://addons.mozilla.org/en-US/firefox/addon/722\">NoScript</a>"
+
+#. type: Content of: <div><div><ol><li><p>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:283
+msgid ""
+"Torbutton currently mitigates all known anonymity issues with Javascript. "
+"However, if you are concerned about Javascript exploits against your browser"
+" or against websites you are logged in to, you may want to use NoScript. It "
+"provides the ability to allow Javascript only for particular websites and "
+"also provides mechanisms to force HTTPS urls for sites with <a "
+"href=\"http://fscked.org/category/tags/insecurecookies\">insecure "
+"cookies</a>.<br> It can be difficult to configure such that the most sites "
+"will work properly though. In particular, you want to make sure you do not "
+"remove the Javascript whitelist for addons.mozilla.org, as extensions are "
+"downloaded via http and verified by javascript from the https page."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:298
+msgid ""
+"<a href=\"https://addons.mozilla.org/en-US/firefox/addon/9727/\">Request "
+"Policy</a>"
+msgstr ""
+"<a href=\"https://addons.mozilla.org/en-US/firefox/addon/9727/\">Request "
+"Policy</a>"
+
+#. type: Content of: <div><div><ol><li><p>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:302
+msgid ""
+"Request Policy is similar to NoScript in that it requires that you configure"
+" which sites are allowed to load content from other domains. It can be very "
+"difficult for novice users to configure properly, but it does provide a good"
+" deal of protection against ads, injected content, and cross-site request "
+"forgery attacks."
+msgstr ""
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:313
+msgid ""
+"<a id=\"securityissues\"></a> <strong><a class=\"anchor\" "
+"href=\"#securityissues\">Are there any other issues I should be concerned "
+"about?</a></strong>"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:317
+msgid ""
+"There are a few known security issues with Torbutton (all of which are due "
+"to <a href=\"design/index.html.en#FirefoxBugs\">unfixed Firefox security "
+"bugs</a>). The most important for anonymity is that it is possible to unmask"
+" the javascript hooks that wrap the Date object to conceal your timezone in "
+"Firefox 2, and the timezone masking code does not work at all on Firefox 3. "
+"We are working with the Firefox team to fix one of <a "
+"href=\"https://bugzilla.mozilla.org/show_bug.cgi?id=392274\">Bug 399274</a> "
+"or <a href=\"https://bugzilla.mozilla.org/show_bug.cgi?id=419598\">Bug "
+"419598</a> to address this. In the meantime, it is possible to set the "
+"<b>TZ</b> environment variable to <b>UTC</b> to cause the browser to use UTC"
+" as your timezone. Under Linux, you can add an <b>export TZ=UTC</b> to the "
+"/usr/bin/firefox script, or edit your system bashrc to do the same. Under "
+"Windows, you can set either a <a "
+"href=\"http://support.microsoft.com/kb/310519\">User or System Environment "
+"Variable</a> for TZ via My Computer's properties. In MacOS, the situation is"
+" <a "
+"href=\"http://developer.apple.com/documentation/MacOSX/Conceptual/BPRuntimeConfig/…">a"
+" lot more complicated</a>, unfortunately."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/torbutton/en/torbutton-faq.wml:338
+msgid ""
+"In addition, RSS readers such as Firefox Livemarks can perform periodic "
+"fetches. Due to <a "
+"href=\"https://bugzilla.mozilla.org/show_bug.cgi?id=436250\">Firefox Bug "
+"436250</a>, there is no way to disable Livemark fetches during Tor. This can"
+" be a problem if you have a lot of custom Livemark urls that can give away "
+"information about your identity."
+msgstr ""
+
+
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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/it/press/4-optional.2010-03-25-tor-store-press-release.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:09+0000\n"
+"PO-Revision-Date: 2011-05-23 21:14+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"
Added: translation/trunk/projects/website/po/ja/1-high.index.po
===================================================================
--- translation/trunk/projects/website/po/ja/1-high.index.po (rev 0)
+++ translation/trunk/projects/website/po/ja/1-high.index.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -0,0 +1,274 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR The Tor Project, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+msgid ""
+msgstr ""
+"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-05-23 20:23+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: ja\n"
+"Plural-Forms: nplurals=1; plural=0\n"
+
+#. type: Content of: <div><div><div><div><ul><li>
+#: /home/runa/dev/website/en/index.wml:12
+msgid "Tor prevents anyone from learning your location or browsing habits."
+msgstr "Tor"
+
+#. type: Content of: <div><div><div><div><ul><li>
+#: /home/runa/dev/website/en/index.wml:13
+msgid ""
+"Tor is for web browsers, instant messaging clients, remote logins, and more."
+msgstr "Torは"
+
+#. type: Content of: <div><div><div><div><ul><li>
+#: /home/runa/dev/website/en/index.wml:14
+msgid "Tor is free and open source for Windows, Mac, Linux/Unix, and Android"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><h1>
+#: /home/runa/dev/website/en/index.wml:16
+msgid "Anonymity Online"
+msgstr "オンラインでの匿名性を実現"
+
+#. type: Content of: <div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:17
+msgid ""
+"Protect your privacy. Defend yourself against network surveillance and "
+"traffic analysis."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div>
+#: /home/runa/dev/website/en/index.wml:20
+msgid ""
+"<a href=\"<page download/download>\"> <span class=\"download-tor\">Download "
+"Tor</span></a>"
+msgstr ""
+"<a href=\"<page download/download>\"> <span class=\"download-tor\">Download "
+"Tor</span></a>"
+
+#. type: Content of: <div><div><div><div><div><h2>
+#: /home/runa/dev/website/en/index.wml:26
+msgid "What is Tor?"
+msgstr "Torって何ですか?"
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:26
+msgid ""
+"Tor is free software and an open network that helps you defend against a "
+"form of network surveillance that threatens personal freedom and privacy, "
+"confidential business activities and relationships, and state security known"
+" as <a href=\"<page about/overview>\">traffic analysis</a><br><span "
+"class=\"continue\"><a href=\"<page about/overview>\">Learn more about Tor "
+"»</a></span>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><h2>
+#: /home/runa/dev/website/en/index.wml:36
+msgid "Why Anonymity Matters"
+msgstr "なぜ匿名性が必要なのですか?"
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:37
+msgid ""
+"Tor protects you by bouncing your communications around a distributed "
+"network of relays run by volunteers all around the world: it prevents "
+"somebody watching your Internet connection from learning what sites you "
+"visit, and it prevents the sites you visit from learning your physical "
+"location. Tor works with many of your existing applications, including web "
+"browsers, instant messaging clients, remote login, and other applications "
+"based on the TCP protocol.<br><span class=\"continue\"><a href=\"<page "
+"getinvolved/volunteer>\">Get involved with Tor »</a></span>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><h2>
+#: /home/runa/dev/website/en/index.wml:50
+msgid "Our Projects"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td>
+#: /home/runa/dev/website/en/index.wml:55
+msgid "<img src=\"$(IMGROOT)/icon-TorButton.jpg\" alt=\"Torbutton Icon\">"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><h3>
+#: /home/runa/dev/website/en/index.wml:56
+msgid "<a href=\"<page torbutton/index>\">Torbutton</a>"
+msgstr "<a href=\"<page torbutton/index>\">Torbutton</a>"
+
+#. type: Content of: <div><div><div><div><table><tr><td><p>
+#: /home/runa/dev/website/en/index.wml:57
+msgid ""
+"Torbutton is a 1-click way for Firefox users to enable or disable Tor in "
+"Firefox."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td>
+#: /home/runa/dev/website/en/index.wml:61
+msgid "<img src=\"$(IMGROOT)/icon-TorCheck.jpg\" alt=\"Tor Check Icon\">"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><h3>
+#: /home/runa/dev/website/en/index.wml:62
+msgid "<a href=\"https://check.torproject.org/\">Check</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><p>
+#: /home/runa/dev/website/en/index.wml:63
+msgid "Check determines if you are successfully browsing with Tor."
+msgstr "ブラウザでTor"
+
+#. type: Content of: <div><div><div><div><table><tr><td>
+#: /home/runa/dev/website/en/index.wml:69
+msgid "<img src=\"$(IMGROOT)/icon-Vidalia.jpg\" alt=\"Vidalia Icon\">"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><h3>
+#: /home/runa/dev/website/en/index.wml:70
+msgid "<a href=\"<page projects/vidalia>\">Vidalia</a>"
+msgstr "<a href=\"<page projects/vidalia>\">Vidalia</a>"
+
+#. type: Content of: <div><div><div><div><table><tr><td><p>
+#: /home/runa/dev/website/en/index.wml:71
+msgid ""
+"Vidalia is a graphical way to control and view Tor's connections and "
+"settings."
+msgstr "VidaliaはTor"
+
+#. type: Content of: <div><div><div><div><table><tr><td>
+#: /home/runa/dev/website/en/index.wml:75
+msgid "<img src=\"$(IMGROOT)/icon-TorBrowser.jpg\" alt=\"TorBrowser Icon\">"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><h3>
+#: /home/runa/dev/website/en/index.wml:76
+msgid "<a href=\"<page projects/torbrowser>\">Tor Browser</a>"
+msgstr "<a href=\"<page projects/torbrowser>\">Tor Browser</a>"
+
+#. type: Content of: <div><div><div><div><table><tr><td><p>
+#: /home/runa/dev/website/en/index.wml:78
+msgid ""
+"Tor Browser contains everything you need to safely browse the Internet."
+msgstr "Tor Browser はインターネットで安全にブラウザを使うために必要な一式が含まれています。browse the Internet."
+
+#. type: Content of: <div><div><div><div><h2>
+#: /home/runa/dev/website/en/index.wml:90
+msgid "Who Uses Tor?"
+msgstr "誰がTorを使っているのですか?"
+
+#. type: Content of: <div><div><div><div><div><h3>
+#: /home/runa/dev/website/en/index.wml:93
+msgid ""
+"<a href=\"<page about/torusers>#normalusers\"><img "
+"src=\"$(IMGROOT)/family.jpg\" alt=\"Normal People\">Family & Friends</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:95
+msgid ""
+"People like you and your family use Tor to protect themselves, their "
+"children, and their dignity while using the Internet."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><h3>
+#: /home/runa/dev/website/en/index.wml:99
+msgid ""
+"<a href=\"<page about/torusers>#executives\"><img "
+"src=\"$(IMGROOT)/consumers.jpg\" alt=\"Businesses\">Businesses</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:101
+msgid ""
+"Businesses use Tor to research competition, keep business strategies "
+"confidential, and facilitate internal accountability."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><h3>
+#: /home/runa/dev/website/en/index.wml:105
+msgid ""
+"<a href=\"<page about/torusers>#activists\"><img "
+"src=\"$(IMGROOT)/activists.jpg\" alt=\"Activists & "
+"Whistleblowers\">Activists</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:107
+msgid ""
+"Activists use Tor to anonymously report abuses from danger zones. "
+"Whistleblowers use Tor to safely report on corruption."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><h3>
+#: /home/runa/dev/website/en/index.wml:111
+msgid ""
+"<a href=\"<page about/torusers>#journalist\"><img "
+"src=\"$(IMGROOT)/media.jpg\" alt=\"Journalists and the Media\">Media</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:113
+msgid ""
+"Journalists and the media use Tor to protect their research and sources "
+"online."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><h3>
+#: /home/runa/dev/website/en/index.wml:117
+msgid ""
+"<a href=\"<page about/torusers>#military\"><img "
+"src=\"$(IMGROOT)/military.jpg\" alt=\"Military and Law "
+"Enforcement\">Military & Law Enforcement</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:119
+msgid ""
+"Militaries and law enforcement use Tor to protect their communications, "
+"investigations, and intelligence gathering online."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><h2>
+#: /home/runa/dev/website/en/index.wml:123
+msgid "Announcements"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><div>
+#: /home/runa/dev/website/en/index.wml:128
+msgid "<span class=\"month\">Mar</span><br><span class=\"day\">23</span>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><p>
+#: /home/runa/dev/website/en/index.wml:129
+msgid ""
+"The Tor Project wins the \"Project of Social Benefit\" award from the Free "
+"Software Foundation and GNU Project. We are honored to win this award and to"
+" be listed amongst the former winners. <a "
+"href=\"https://blog.torproject.org/blog/tor-project-receives-fsf-"
+"award\">Read more</a> about this award."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><div>
+#: /home/runa/dev/website/en/index.wml:135
+msgid "<span class=\"month\">Feb</span><br><span class=\"day\">23</span>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><p>
+#: /home/runa/dev/website/en/index.wml:136
+msgid ""
+"The latest stable Tor version, 0.2.1.30, is <a "
+"href=\"https://lists.torproject.org/pipermail/tor-"
+"announce/2011-February/000000.html\">released</a>. Tor 0.2.1.30 fixes a "
+"variety of less critical bugs. The main other change is a slight tweak to "
+"Tor's TLS handshake that makes relays and bridges that run this new version "
+"reachable from Iran again. We don't expect this tweak will win the arms "
+"race long-term, but it buys us time until we roll out a better solution."
+msgstr ""
+
+
Added: translation/trunk/projects/website/po/ja/about/2-medium.overview.po
===================================================================
--- translation/trunk/projects/website/po/ja/about/2-medium.overview.po (rev 0)
+++ translation/trunk/projects/website/po/ja/about/2-medium.overview.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -0,0 +1,403 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR The Tor Project, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+msgid ""
+msgstr ""
+"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:28+0200\n"
+"PO-Revision-Date: 2011-05-23 20:25+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: ja\n"
+"Plural-Forms: nplurals=1; plural=0\n"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/about/en/overview.wml:8
+msgid ""
+"<a href=\"<page index>\">Home » </a> <a href=\"<page "
+"about/overview>\">About » </a>"
+msgstr ""
+"<a href=\"<page index>\">Home » </a> <a href=\"<page "
+"about/overview>\">About » </a>"
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/tor/website/about/en/overview.wml:12
+msgid "Tor: Overview"
+msgstr ""
+
+#. type: Content of: <div><div><div><h3>
+#: /home/runa/tor/website/about/en/overview.wml:15
+msgid "Topics"
+msgstr ""
+
+#. type: Content of: <div><div><div><ul><li>
+#: /home/runa/tor/website/about/en/overview.wml:17
+msgid "<a href=\"<page about/overview>#inception\">Inception</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><ul><li>
+#: /home/runa/tor/website/about/en/overview.wml:18
+msgid "<a href=\"<page about/overview>#overview\">Overview</a>"
+msgstr "<a href=\"<page about/overview>#overview\">Overview</a>"
+
+#. type: Content of: <div><div><div><ul><li>
+#: /home/runa/tor/website/about/en/overview.wml:19
+msgid "<a href=\"<page about/overview>#whyweneedtor\">Why we need Tor</a>"
+msgstr "<a href=\"<page about/overview>#whyweneedtor\">Why we need Tor</a>"
+
+#. type: Content of: <div><div><div><ul><li>
+#: /home/runa/tor/website/about/en/overview.wml:20
+msgid "<a href=\"<page about/overview>#thesolution\">The Solution</a>"
+msgstr "<a href=\"<page about/overview>#thesolution\">The Solution</a>"
+
+#. type: Content of: <div><div><div><ul><li>
+#: /home/runa/tor/website/about/en/overview.wml:21
+msgid "<a href=\"<page about/overview>#hiddenservices\">Hidden services</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><ul><li>
+#: /home/runa/tor/website/about/en/overview.wml:22
+msgid "<a href=\"<page about/overview>#stayinganonymous\">Staying anonymous</a>"
+msgstr "<a href=\"<page about/overview>#stayinganonymous\">とく</a>"
+
+#. type: Content of: <div><div><div><ul><li>
+#: /home/runa/tor/website/about/en/overview.wml:23
+msgid "<a href=\"<page about/overview>#thefutureoftor\">The future of Tor</a>"
+msgstr "<a href=\"<page about/overview>#thefutureoftor\">Tor</a>"
+
+#. END SIDEBAR
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/about/en/overview.wml:28
+msgid "<hr> <a name=\"inception\"></a>"
+msgstr ""
+
+#. type: Content of: <div><div><h3>
+#: /home/runa/tor/website/about/en/overview.wml:31
+msgid "<a class=\"anchor\" href=\"#inception\">Inception</a>"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/overview.wml:34
+msgid ""
+"Tor was originally designed, implemented, and deployed as a third-generation"
+" <a href=\"http://www.onion-router.net/\">onion routing project of the U.S. "
+"Naval Research Laboratory</a>. It was originally developed with the U.S. "
+"Navy in mind, for the primary purpose of protecting government "
+"communications. Today, it is used every day for a wide variety of purposes "
+"by normal people, the military, journalists, law enforcement officers, "
+"activists, and many others."
+msgstr ""
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/about/en/overview.wml:43
+msgid "<a name=\"overview\"></a>"
+msgstr "<a name=\"overview\"></a>"
+
+#. type: Content of: <div><div><h3>
+#: /home/runa/tor/website/about/en/overview.wml:44
+msgid "<a class=\"anchor\" href=\"#overview\">Overview</a>"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/overview.wml:47
+msgid ""
+"Tor is a network of virtual tunnels that allows people and groups to improve"
+" their privacy and security on the Internet. It also enables software "
+"developers to create new communication tools with built-in privacy features."
+" Tor provides the foundation for a range of applications that allow "
+"organizations and individuals to share information over public networks "
+"without compromising their privacy."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/overview.wml:57
+msgid ""
+"Individuals use Tor to keep websites from tracking them and their family "
+"members, or to connect to news sites, instant messaging services, or the "
+"like when these are blocked by their local Internet providers. Tor's <a "
+"href=\"<page docs/hidden-services>\">hidden services</a> let users publish "
+"web sites and other services without needing to reveal the location of the "
+"site. Individuals also use Tor for socially sensitive communication: chat "
+"rooms and web forums for rape and abuse survivors, or people with illnesses."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/overview.wml:68
+msgid ""
+"Journalists use Tor to communicate more safely with whistleblowers and "
+"dissidents. Non-governmental organizations (NGOs) use Tor to allow their "
+"workers to connect to their home website while they're in a foreign country,"
+" without notifying everybody nearby that they're working with that "
+"organization."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/overview.wml:76
+msgid ""
+"Groups such as Indymedia recommend Tor for safeguarding their members' "
+"online privacy and security. Activist groups like the Electronic Frontier "
+"Foundation (EFF) recommend Tor as a mechanism for maintaining civil "
+"liberties online. Corporations use Tor as a safe way to conduct competitive "
+"analysis, and to protect sensitive procurement patterns from eavesdroppers. "
+"They also use it to replace traditional VPNs, which reveal the exact amount "
+"and timing of communication. Which locations have employees working late? "
+"Which locations have employees consulting job-hunting websites? Which "
+"research divisions are communicating with the company's patent lawyers?"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/overview.wml:89
+msgid ""
+"A branch of the U.S. Navy uses Tor for open source intelligence gathering, "
+"and one of its teams used Tor while deployed in the Middle East recently. "
+"Law enforcement uses Tor for visiting or surveilling web sites without "
+"leaving government IP addresses in their web logs, and for security during "
+"sting operations."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/overview.wml:97
+msgid ""
+"The variety of people who use Tor is actually <a "
+"href=\"http://freehaven.net/doc/fc03/econymics.pdf\">part of what makes it "
+"so secure</a>. Tor hides you among <a href=\"<page about/torusers>\">the "
+"other users on the network</a>, so the more populous and diverse the user "
+"base for Tor is, the more your anonymity will be protected."
+msgstr ""
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/about/en/overview.wml:105
+msgid "<a name=\"whyweneedtor\"></a>"
+msgstr "<a name=\"whyweneedtor\"></a>"
+
+#. type: Content of: <div><div><h3>
+#: /home/runa/tor/website/about/en/overview.wml:106
+msgid "<a class=\"anchor\" href=\"#whyweneedtor\">Why we need Tor</a>"
+msgstr "<a class=\"anchor\" href=\"#whyweneedtor\">Why we need Tor</a>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/overview.wml:109
+msgid ""
+"Using Tor protects you against a common form of Internet surveillance known "
+"as \"traffic analysis.\" Traffic analysis can be used to infer who is "
+"talking to whom over a public network. Knowing the source and destination "
+"of your Internet traffic allows others to track your behavior and interests."
+" This can impact your checkbook if, for example, an e-commerce site uses "
+"price discrimination based on your country or institution of origin. It can"
+" even threaten your job and physical safety by revealing who and where you "
+"are. For example, if you're travelling abroad and you connect to your "
+"employer's computers to check or send mail, you can inadvertently reveal "
+"your national origin and professional affiliation to anyone observing the "
+"network, even if the connection is encrypted."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/overview.wml:124
+msgid ""
+"How does traffic analysis work? Internet data packets have two parts: a data"
+" payload and a header used for routing. The data payload is whatever is "
+"being sent, whether that's an email message, a web page, or an audio file. "
+"Even if you encrypt the data payload of your communications, traffic "
+"analysis still reveals a great deal about what you're doing and, possibly, "
+"what you're saying. That's because it focuses on the header, which "
+"discloses source, destination, size, timing, and so on."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/overview.wml:134
+msgid ""
+"A basic problem for the privacy minded is that the recipient of your "
+"communications can see that you sent it by looking at headers. So can "
+"authorized intermediaries like Internet service providers, and sometimes "
+"unauthorized intermediaries as well. A very simple form of traffic analysis"
+" might involve sitting somewhere between sender and recipient on the "
+"network, looking at headers."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/overview.wml:143
+msgid ""
+"But there are also more powerful kinds of traffic analysis. Some attackers "
+"spy on multiple parts of the Internet and use sophisticated statistical "
+"techniques to track the communications patterns of many different "
+"organizations and individuals. Encryption does not help against these "
+"attackers, since it only hides the content of Internet traffic, not the "
+"headers."
+msgstr ""
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/about/en/overview.wml:151
+msgid "<a name=\"thesolution\"></a>"
+msgstr "<a name=\"thesolution\"></a>"
+
+#. type: Content of: <div><div><h3>
+#: /home/runa/tor/website/about/en/overview.wml:152
+msgid ""
+"<a class=\"anchor\" href=\"#thesolution\">The solution: a distributed, "
+"anonymous network</a>"
+msgstr ""
+"<a class=\"anchor\" href=\"#thesolution\">ソリューション: 分散化ネットワークa distributed, "
+"anonymous network</a>"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/about/en/overview.wml:153
+msgid "<img src=\"$(IMGROOT)/htw1.png\" alt=\"How Tor works\">"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/overview.wml:156
+msgid ""
+"Tor helps to reduce the risks of both simple and sophisticated traffic "
+"analysis by distributing your transactions over several places on the "
+"Internet, so no single point can link you to your destination. The idea is "
+"similar to using a twisty, hard-to-follow route in order to throw off "
+"somebody who is tailing you — and then periodically erasing your "
+"footprints. Instead of taking a direct route from source to destination, "
+"data packets on the Tor network take a random pathway through several relays"
+" that cover your tracks so no observer at any single point can tell where "
+"the data came from or where it's going."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/overview.wml:168
+msgid ""
+"To create a private network pathway with Tor, the user's software or client "
+"incrementally builds a circuit of encrypted connections through relays on "
+"the network. The circuit is extended one hop at a time, and each relay "
+"along the way knows only which relay gave it data and which relay it is "
+"giving data to. No individual relay ever knows the complete path that a "
+"data packet has taken. The client negotiates a separate set of encryption "
+"keys for each hop along the circuit to ensure that each hop can't trace "
+"these connections as they pass through."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/overview.wml:178
+msgid "<img alt=\"Tor circuit step two\" src=\"$(IMGROOT)/htw2.png\">"
+msgstr "<img alt=\"Tor circuit step two\" src=\"$(IMGROOT)/htw2.png\">"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/overview.wml:181
+msgid ""
+"Once a circuit has been established, many kinds of data can be exchanged and"
+" several different sorts of software applications can be deployed over the "
+"Tor network. Because each relay sees no more than one hop in the circuit, "
+"neither an eavesdropper nor a compromised relay can use traffic analysis to "
+"link the connection's source and destination. Tor only works for TCP "
+"streams and can be used by any application with SOCKS support."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/overview.wml:191
+msgid ""
+"For efficiency, the Tor software uses the same circuit for connections that "
+"happen within the same ten minutes or so. Later requests are given a new "
+"circuit, to keep people from linking your earlier actions to the new ones."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/overview.wml:197
+msgid "<img alt=\"Tor circuit step three\" src=\"$(IMGROOT)/htw3.png\">"
+msgstr "<img alt=\"Tor circuit step three\" src=\"$(IMGROOT)/htw3.png\">"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/about/en/overview.wml:200
+msgid "<a name=\"hiddenservices\"></a>"
+msgstr "<a name=\"hiddenservices\"></a>"
+
+#. type: Content of: <div><div><h3>
+#: /home/runa/tor/website/about/en/overview.wml:201
+msgid "<a class=\"anchor\" href=\"#hiddenservices\">Hidden services</a>"
+msgstr "<a class=\"anchor\" href=\"#hiddenservices\">Hidden services</a>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/overview.wml:204
+msgid ""
+"Tor also makes it possible for users to hide their locations while offering "
+"various kinds of services, such as web publishing or an instant messaging "
+"server. Using Tor \"rendezvous points,\" other Tor users can connect to "
+"these hidden services, each without knowing the other's network identity. "
+"This hidden service functionality could allow Tor users to set up a website "
+"where people publish material without worrying about censorship. Nobody "
+"would be able to determine who was offering the site, and nobody who offered"
+" the site would know who was posting to it. Learn more about <a "
+"href=\"<page docs/tor-hidden-service>\">configuring hidden services</a> and "
+"how the <a href=\"<page docs/hidden-services>\">hidden service protocol</a> "
+"works."
+msgstr ""
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/about/en/overview.wml:217
+msgid "<a name=\"stayinganonymous\"></a>"
+msgstr "<a name=\"stayinganonymous\"></a>"
+
+#. type: Content of: <div><div><h3>
+#: /home/runa/tor/website/about/en/overview.wml:218
+msgid "<a class=\"anchor\" href=\"#stayinganonymous\">Staying anonymous</a>"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/overview.wml:221
+msgid ""
+"Tor can't solve all anonymity problems. It focuses only on protecting the "
+"transport of data. You need to use protocol-specific support software if "
+"you don't want the sites you visit to see your identifying information. For "
+"example, you can use web proxies such as Privoxy while web browsing to block"
+" cookies and withhold information about your browser type."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/overview.wml:230
+msgid ""
+"Also, to protect your anonymity, be smart. Don't provide your name or other"
+" revealing information in web forms. Be aware that, like all anonymizing "
+"networks that are fast enough for web browsing, Tor does not provide "
+"protection against end-to-end timing attacks: If your attacker can watch the"
+" traffic coming out of your computer, and also the traffic arriving at your "
+"chosen destination, he can use statistical analysis to discover that they "
+"are part of the same circuit."
+msgstr ""
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/about/en/overview.wml:239
+msgid "<a name=\"thefutureoftor\"></a>"
+msgstr "<a name=\"thefutureoftor\"></a>"
+
+#. type: Content of: <div><div><h3>
+#: /home/runa/tor/website/about/en/overview.wml:240
+msgid "<a class=\"anchor\" href=\"#thefutureoftor\">The future of Tor</a>"
+msgstr "<a class=\"anchor\" href=\"#thefutureoftor\">Tor</a>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/overview.wml:243
+msgid ""
+"Providing a usable anonymizing network on the Internet today is an ongoing "
+"challenge. We want software that meets users' needs. We also want to keep "
+"the network up and running in a way that handles as many users as possible. "
+"Security and usability don't have to be at odds: As Tor's usability "
+"increases, it will attract more users, which will increase the possible "
+"sources and destinations of each communication, thus increasing security for"
+" everyone. We're making progress, but we need your help. Please consider "
+"<a href=\"<page docs/tor-doc-relay>\">running a relay</a> or <a href=\"<page"
+" getinvolved/volunteer>\">volunteering</a> as a <a href=\"<page "
+"docs/documentation>#Developers\">developer</a>."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/about/en/overview.wml:257
+msgid ""
+"Ongoing trends in law, policy, and technology threaten anonymity as never "
+"before, undermining our ability to speak and read freely online. These "
+"trends also undermine national security and critical infrastructure by "
+"making communication among individuals, organizations, corporations, and "
+"governments more vulnerable to analysis. Each new user and relay provides "
+"additional diversity, enhancing Tor's ability to put control over your "
+"security and privacy back into your hands."
+msgstr ""
+
+
Added: translation/trunk/projects/website/po/ja/docs/2-medium.documentation.po
===================================================================
--- translation/trunk/projects/website/po/ja/docs/2-medium.documentation.po (rev 0)
+++ translation/trunk/projects/website/po/ja/docs/2-medium.documentation.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -0,0 +1,516 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR The Tor Project, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-02 16:59+0200\n"
+"PO-Revision-Date: 2011-05-23 20:26+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: ja\n"
+"Plural-Forms: nplurals=1; plural=0\n"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/documentation.wml:8
+msgid ""
+"<a href=\"<page index>\">Home » </a> <a href=\"<page "
+"docs/documentation>\">Documentation</a>"
+msgstr ""
+"<a href=\"<page index>\">Home » </a> <a href=\"<page "
+"docs/documentation>\">Documentation</a>"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/documentation.wml:12
+msgid "<a id=\"RunningTor\"></a>"
+msgstr "<a id=\"RunningTor\"></a>"
+
+#. type: Content of: <div><div><h1>
+#: /home/runa/tor/website/docs/en/documentation.wml:13
+msgid "<a class=\"anchor\" href=\"#RunningTor\">Running Tor</a>"
+msgstr "<a class=\"anchor\" href=\"#RunningTor\">Running Tor</a>"
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:15
+msgid "<a href=\"<page docs/tor-doc-windows>\">Installing Tor on Win32</a>"
+msgstr "<a href=\"<page docs/tor-doc-windows>\">Win32へのTorインストール</a>"
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:17
+msgid "<a href=\"<page docs/tor-doc-osx>\">Installing Tor on Mac OS X</a>"
+msgstr "<a href=\"<page docs/tor-doc-osx>\">Installing Tor on Mac OS X</a>"
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:19
+msgid "<a href=\"<page docs/tor-doc-unix>\">Installing Tor on Linux/BSD/Unix</a>"
+msgstr "<a href=\"<page docs/tor-doc-unix>\">Installing Tor on Linux/BSD/Unix</a>"
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:21
+msgid "<a href=\"<page torbutton/index>\">Installing Torbutton for Tor</a>"
+msgstr "<a href=\"<page torbutton/index>\">Torbuttonfor Tor</a>"
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:23
+msgid "<a href=\"<page docs/tor-doc-relay>\">Configuring a Tor relay</a>"
+msgstr ""
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:25
+msgid ""
+"<a href=\"<page docs/tor-hidden-service>\">Configuring a Tor hidden "
+"service</a>"
+msgstr ""
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/documentation.wml:29
+msgid "<a id=\"Support\"></a> <a id=\"UpToSpeed\"></a>"
+msgstr ""
+
+#. type: Content of: <div><div><h1>
+#: /home/runa/tor/website/docs/en/documentation.wml:31
+msgid ""
+"<a class=\"anchor\" href=\"#UpToSpeed\">Getting up to speed on Tor's past, "
+"present, and future</a>"
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:36
+msgid ""
+"First, read the <a href=\"<page about/overview>\">overview page</a> to get a"
+" basic idea of how Tor works, what it's for, and who uses it."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:41
+msgid ""
+"<a href=\"<page download/download>\">Install the Tor bundle</a> and try it "
+"out. Make sure you've got Firefox installed first, and be sure to read the "
+"<a href=\"<page download/download>#Warning\">list of warnings</a> about ways"
+" you can screw up your anonymity."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:48
+msgid ""
+"Our <a href=\"<page docs/faq>\">FAQ</a> covers all sorts of topics, "
+"including questions about setting up a client or relay, concerns about "
+"anonymity attacks, why we didn't build Tor in other ways, etc. There's a "
+"separate <a href=\"<page docs/faq-abuse>\">Abuse FAQ</a> to answer common "
+"questions from or for relay operators. The <a href=\"<page eff/tor-legal-"
+"faq>\">Tor Legal FAQ</a> is written by EFF lawyers, and aims to give you an "
+"overview of some of the legal issues that arise from The Tor Project in the "
+"US."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:60
+msgid ""
+"The <a href=\"<page docs/tor-manual>\">manual</a> lists all the possible "
+"entries you can put in your <a href=\"<page docs/faq>#torrc\">torrc "
+"file</a>. We also provide a <a href=\"<page docs/tor-manual-dev>\">manual "
+"for the development version of Tor</a>."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:66
+msgid ""
+"If you have questions, we have an IRC channel (for users, relay operators, "
+"and developers) at <a href=\"irc://irc.oftc.net/tor\">#tor on "
+"irc.oftc.net</a>. If you have a bug, especially a crash bug, read <a "
+"href=\"<wikifaq>#MyTorkeepscrashing.\">how to report a Tor bug</a> first and"
+" then tell us as much information about it as you can in <a "
+"href=\"https://bugs.torproject.org/tor\">our bugtracker</a>. (If your bug "
+"is with your browser or some other application, please don't put it in our "
+"bugtracker.) The <a href=\"#MailingLists\">tor-talk mailing list</a> can "
+"also be useful."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:81
+msgid ""
+"<a href=\"<blog>\">Tor has a blog</a>. We try to keep it updated every week"
+" or two with the latest news."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:86
+msgid ""
+"Download and watch Roger's <a href=\"https://media.torproject.org/video/tor-"
+"internet-days-2010.mp4\">overview talk from Internet Days in Sweden</a>, "
+"which provides good background on how Tor works and what it's for."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:93
+msgid ""
+"Look through our <a href=\"#DesignDoc\">Design Documents</a>. Notice that we"
+" have RFC-style specs to tell you exactly how Tor is built."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:99
+msgid ""
+"There's a skeletal <a "
+"href=\"https://svn.torproject.org/svn/projects/roadmaps/2008-12-19-roadmap-"
+"full.pdf\">list of items we'd like to tackle in the future</a>. Alas, many "
+"of those items need to be fleshed out more before they'll make sense to "
+"people who aren't Tor developers, but you can still get a general sense of "
+"what issues need to be resolved next."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:108
+msgid ""
+"Download and watch Nick's \"Technical changes since 2004\" talk from Defcon "
+"in July 2007 (<a href=\"http://freehaven.net/~arma/Defcon15-Mathewson-"
+"Technical_Changes_since_you_Last_Heard_about_Tor.mp4\">video</a>, <a "
+"href=\"http://freehaven.net/~nickm/slides/Defcon07/TorChanges.pdf\">slides</a>),"
+" Roger's \"blocking-resistance and circumvention\" talk from 23C3 in "
+"December 2006 (<a href=\"http://freehaven.net/~arma/23C3-1444-en-"
+"tor_and_china.m4v\">video</a>, <a href=\"http://freehaven.net/~arma/slides-"
+"23c3.pdf\">slides</a>, <a "
+"href=\"http://events.ccc.de/congress/2006/Fahrplan/events/1444.en.html\">abstract</a>,"
+" <a href=\"https://svn.torproject.org/svn/projects/design-"
+"paper/blocking.html\">design paper</a>), Roger's \"Current events in 2007\" "
+"talk from 24C3 in December 2007 (<a "
+"href=\"http://freehaven.net/~arma/24c3-2325-en-"
+"current_events_in_tor_development.mp4\">video</a>, <a "
+"href=\"http://freehaven.net/~arma/slides-24c3.pdf\">slides</a>, <a "
+"href=\"http://events.ccc.de/congress/2007/Fahrplan/events/2325.en.html\">abstract</a>),"
+" and Roger's \"Vulnerabilities in Tor\" talk from 25C3 in December 2008 (<a "
+"href=\"https://media.torproject.org/video/25c3-2977-en-"
+"security_and_anonymity_vulnerabilities_in_tor.mp4\">video</a>, <a "
+"href=\"http://freehaven.net/~arma/slides-25c3.pdf\">slides</a>)."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:130
+msgid ""
+"See Mike's \"Securing the Tor network\" talk from Defcon in July 2007 (<a "
+"href=\"http://freehaven.net/~arma/Defcon15-Mike_Perry-"
+"Securing_the_Tor_Network.mp4\">video</a>, <a "
+"href=\"http://freehaven.net/~arma/SecuringTheTorNetwork.pdf\">slides</a>). "
+"It describes common ways to attack networks like Tor and how we try to "
+"defend against them, and it introduces the <a "
+"href=\"https://svn.torproject.org/svn/torflow/trunk/README\">Torflow</a> "
+"script collection."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:140
+msgid ""
+"Learn about the <a href=\"<specblob>proposals/001-process.txt\">Tor proposal"
+" process for changing our design</a>, and look over the <a "
+"href=\"<spectree>proposals\">existing proposals</a>."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:147
+msgid ""
+"Our <a href=\"<gitblob>doc/TODO\">developer TODO file</a> starts with a "
+"timeline for external promises — things <a href=\"<page "
+"about/sponsors>\">our sponsors</a> have paid to see done. It also lists many"
+" other tasks and topics we'd like to tackle next."
+msgstr ""
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:154
+msgid ""
+"Once you're up to speed, things will continue to change surprisingly fast. "
+"The <a href=\"#MailingLists\">tor-dev mailing list</a> is where the complex "
+"discussion happens, and the #tor IRC channel is where the less complex "
+"discussion happens."
+msgstr ""
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/documentation.wml:162
+msgid "<a id=\"MailingLists\"></a>"
+msgstr "<a id=\"MailingLists\"></a>"
+
+#. type: Content of: <div><div><h1>
+#: /home/runa/tor/website/docs/en/documentation.wml:163
+msgid "<a class=\"anchor\" href=\"#MailingLists\">Mailing List Information</a>"
+msgstr ""
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:165
+msgid ""
+"The <a href=\"https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-"
+"announce/\">tor-announce mailing list</a> is a low volume list for "
+"announcements of new releases and critical security updates. Everybody "
+"should be on this list. There is also an <a "
+"href=\"http://rss.gmane.org/gmane.network.onion-routing.announce\">RSS "
+"feed</a> of tor-announce at <a href=\"http://gmane.org\">gmane.org</a>."
+msgstr ""
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:171
+msgid ""
+"The <a href=\"https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-talk"
+"/\">tor-talk list</a> is where a lot of discussion happens, and is where we "
+"send notifications of prerelease versions and release candidates."
+msgstr ""
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:174
+msgid ""
+"The <a href=\"https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-"
+"relays/\">tor-relays list</a> is where discussions about running, "
+"configuring, and handling your tor relay happen. If you currently run a "
+"relay, or are thinking about doing so, this is the list for you."
+msgstr ""
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:178
+msgid ""
+"The <a href=\"https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-dev"
+"/\">tor-dev list</a> is for posting by developers only, and is very low "
+"traffic."
+msgstr ""
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:180
+msgid ""
+"A list for <a href=\"https://lists.torproject.org/cgi-bin/mailman/listinfo"
+"/tor-mirrors\">mirror operators</a> for new website mirrors, and supporting "
+"<a href=\"<page getinvolved/mirrors>\">current website mirrors</a>."
+msgstr ""
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:183
+msgid ""
+"A list for <a href=\"https://lists.torproject.org/cgi-bin/mailman/listinfo"
+"/tor-commits/\">svn and git commits</a> may be interesting for developers."
+msgstr ""
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:185
+msgid ""
+"An automated list for <a href=\"https://lists.torproject.org/cgi-"
+"bin/mailman/listinfo/tor-bugs/\">bug reports from trac</a> may be "
+"interesting for users and developers."
+msgstr ""
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/documentation.wml:189
+msgid "<a id=\"DesignDoc\"></a>"
+msgstr "<a id=\"DesignDoc\"></a>"
+
+#. type: Content of: <div><div><h1>
+#: /home/runa/tor/website/docs/en/documentation.wml:190
+msgid "<a class=\"anchor\" href=\"#DesignDoc\">Design Documents</a>"
+msgstr ""
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:192
+msgid ""
+"The <b>design document</b> (published at Usenix Security 2004) gives our "
+"justifications and security analysis for the Tor design: <a "
+"href=\"https://svn.torproject.org/svn/projects/design-paper/tor-"
+"design.pdf\">PDF</a> and <a href=\"https://svn.torproject.org/svn/projects"
+"/design-paper/tor-design.html\">HTML</a> versions available."
+msgstr ""
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:197
+msgid ""
+"Our follow-up paper on <b>challenges in low-latency anonymity</b> (still in "
+"draft form) details more recent experiences and directions: <a "
+"href=\"https://svn.torproject.org/svn/projects/design-"
+"paper/challenges.pdf\">PDF draft</a>."
+msgstr ""
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:201
+msgid ""
+"Our paper at WEIS 2006 — <b>Anonymity Loves Company: Usability and the"
+" Network Effect</b> — explains why usability in anonymity systems "
+"matters for their security: <a "
+"href=\"http://freehaven.net/anonbib/cache/usability:weis2006.pdf\">PDF</a>."
+msgstr ""
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:205
+msgid ""
+"Our preliminary design to make it harder for large firewalls to prevent "
+"access to the Tor network is described in <b>design of a blocking-resistant "
+"anonymity system</b>: <a href=\"https://svn.torproject.org/svn/projects"
+"/design-paper/blocking.pdf\">PDF draft</a> and <a "
+"href=\"https://svn.torproject.org/svn/projects/design-"
+"paper/blocking.html\">HTML draft</a>. Want to <a href=\"<page "
+"getinvolved/volunteer>#Coding\">help us build it</a>?"
+msgstr ""
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:211
+msgid ""
+"The <b>specifications</b> aim to give developers enough information to build"
+" a compatible version of Tor:"
+msgstr ""
+
+#. type: Content of: <div><div><ul><li><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:214
+msgid "<a href=\"<specblob>tor-spec.txt\">Main Tor specification</a>"
+msgstr ""
+
+#. type: Content of: <div><div><ul><li><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:215
+msgid ""
+"<a href=\"<specblob>dir-spec.txt\">Tor version 3 directory server "
+"specification</a> (and older <a href=\"<specblob>dir-spec-v1.txt\">version "
+"1</a> and <a href=\"<specblob>dir-spec-v2.txt\">version 2</a> directory "
+"specifications)"
+msgstr ""
+
+#. type: Content of: <div><div><ul><li><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:220
+msgid ""
+"<a href=\"<specblob>control-spec.txt\">Tor control protocol "
+"specification</a>"
+msgstr ""
+
+#. type: Content of: <div><div><ul><li><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:222
+msgid "<a href=\"<specblob>rend-spec.txt\">Tor rendezvous specification</a>"
+msgstr ""
+
+#. type: Content of: <div><div><ul><li><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:224
+msgid "<a href=\"<specblob>path-spec.txt\">Tor path selection specification</a>"
+msgstr ""
+
+#. type: Content of: <div><div><ul><li><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:226
+msgid "<a href=\"<specblob>address-spec.txt\">Special hostnames in Tor</a>"
+msgstr ""
+
+#. type: Content of: <div><div><ul><li><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:228
+msgid ""
+"<a href=\"<specblob>socks-extensions.txt\">Tor's SOCKS support and "
+"extensions</a>"
+msgstr ""
+
+#. type: Content of: <div><div><ul><li><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:230
+msgid "<a href=\"<specblob>version-spec.txt\">How Tor version numbers work</a>"
+msgstr ""
+
+#. type: Content of: <div><div><ul><li><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:232
+msgid ""
+"<a href=\"<spectree>proposals\">In-progress drafts of new specifications and"
+" proposed changes</a>"
+msgstr ""
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/documentation.wml:238
+msgid "<a id=\"NeatLinks\"></a>"
+msgstr "<a id=\"NeatLinks\"></a>"
+
+#. type: Content of: <div><div><h1>
+#: /home/runa/tor/website/docs/en/documentation.wml:239
+msgid "<a class=\"anchor\" href=\"#NeatLinks\">Neat Links</a>"
+msgstr ""
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:241
+msgid ""
+"The <a href=\"<wiki>\">Tor wiki</a> provides a plethora of helpful "
+"contributions from Tor users. Check it out!"
+msgstr ""
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:244
+msgid ""
+"<a href=\"<wiki>TheOnionRouter/SupportPrograms\">A list of supporting "
+"programs you might want to use in association with Tor</a>."
+msgstr ""
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:248
+msgid ""
+"<a href=\"https://check.torproject.org/\">The Tor detector</a> or <a "
+"href=\"http://torcheck.xenobite.eu/\">the other Tor detector</a> try to "
+"guess if you're using Tor or not."
+msgstr ""
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:251
+msgid ""
+"Check out one of the Tor status pages, such as <a "
+"href=\"http://torstatus.blutmagie.de/\">blutmagie's</a>, or <a "
+"href=\"http://trunk.torstatus.kgprog.com/index.php\">kgprog's</a>, or "
+"Xenobite's <a href=\"https://torstat.xenobite.eu/\">Tor node status</a> "
+"page. Remember that these lists may not be as accurate as what your Tor "
+"client uses, because your client fetches its own directory information and "
+"examines it locally."
+msgstr ""
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:258
+msgid ""
+"Read <a "
+"href=\"http://freehaven.net/anonbib/topic.html#Anonymous_20communication\">these"
+" papers</a> (especially the ones in boxes) to get up to speed on the field "
+"of anonymous communication systems."
+msgstr ""
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/documentation.wml:264
+msgid "<a id=\"Developers\"></a>"
+msgstr "<a id=\"Developers\"></a>"
+
+#. type: Content of: <div><div><h1>
+#: /home/runa/tor/website/docs/en/documentation.wml:265
+msgid "<a class=\"anchor\" href=\"#Developers\">For Developers</a>"
+msgstr ""
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/documentation.wml:266
+msgid "Browse the Tor <b>source repository</b>:"
+msgstr ""
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:268
+msgid "<a href=\"<gitrepo>\">Browse the repository's source tree directly</a>"
+msgstr ""
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:269
+msgid "Git and SVN access:"
+msgstr ""
+
+#. type: Content of: <div><div><ul><li><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:271
+msgid "<kbd>git clone git://git.torproject.org/git/tor</kbd>"
+msgstr ""
+
+#. type: Content of: <div><div><ul><li><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:272
+msgid ""
+"The development branch is <kbd>master</kbd>. The active maintenance "
+"branches are <kbd>maint-0.2.1</kbd> and <kbd>maint-0.2.2</kbd>."
+msgstr ""
+
+#. type: Content of: <div><div><ul><li><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:273
+msgid ""
+"<kbd>svn checkout https://svn.torproject.org/svn/website/trunk website</kbd>"
+msgstr ""
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/documentation.wml:276
+msgid ""
+"<a "
+"href=\"https://gitweb.torproject.org//githax.git?a=blob;f=doc/Howto.txt;hb=HEAD\">Basic"
+" instructions for using Git to contribute to Tor software.</a>"
+msgstr ""
+
+
Added: translation/trunk/projects/website/po/ja/getinvolved/3-low.tshirt.po
===================================================================
--- translation/trunk/projects/website/po/ja/getinvolved/3-low.tshirt.po (rev 0)
+++ translation/trunk/projects/website/po/ja/getinvolved/3-low.tshirt.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -0,0 +1,103 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR The Tor Project, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+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-05-23 20:34+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: ja\n"
+"Plural-Forms: nplurals=1; plural=0\n"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/getinvolved/en/tshirt.wml:8
+msgid ""
+"<a href=\"<page index>\">Home » </a> <a href=\"<page "
+"getinvolved/volunteer>\">Get Involved » </a> <a href=\"<page "
+"getinvolved/tshirt>\">Tshirt</a>"
+msgstr ""
+
+#. type: Content of: <div><div><h1>
+#: /home/runa/tor/website/getinvolved/en/tshirt.wml:13
+msgid "Tor: T-shirt for Contributing"
+msgstr "Tor: T-shirt for Contributing"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/getinvolved/en/tshirt.wml:14
+msgid "<hr>"
+msgstr "<hr>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/getinvolved/en/tshirt.wml:16
+msgid ""
+"You can get one of these fine Tor T-shirts for contributing to the Tor "
+"project. There are three primary ways of contributing:"
+msgstr "Tor Tシャツを購入することでTorプロジェクトを支援することができます。プロジェクトに貢献する3つの簡単な方法をお教えしましょう:"
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/getinvolved/en/tshirt.wml:20
+msgid ""
+"A large enough ($65+) <a href=\"<page donate/donate>\">donation</a> to the "
+"Tor Project."
+msgstr ""
+"一定のまとまった金額 ($65ドル以上)をTor <a href=\"<page donate/donate>\">donation</a> to "
+"the Tor Project."
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/getinvolved/en/tshirt.wml:22
+msgid ""
+"Operate a fast <a href=\"<page docs/tor-doc-relay>\">Tor relay</a> that's "
+"been running for the past two months: you are eligible if you allow exits to"
+" port 80 and you average 100 KB/s traffic, or if you're not an exit but you "
+"average 500 KB/s traffic."
+msgstr ""
+"高速回線で<a href=\"<page docs/tor-doc-relay>\">Tor relay</a>を二ヶ月走らせる: "
+"80番ポートで接続できて100 KB/sの通信量、または80番ポートを使わずに500 KB/s traffic."
+
+#. type: Content of: <div><div><ol><li>
+#: /home/runa/tor/website/getinvolved/en/tshirt.wml:26
+msgid ""
+"Help out in <a href=\"<page getinvolved/volunteer>\">other ways</a>. <a "
+"href=\"<page getinvolved/translation>\">Maintain a translation for the "
+"website</a>. Write a good <a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/TheOnionRouter/SupportProgram…">support"
+" program and get a lot of people to use it</a>. Do research on Tor and "
+"anonymity, solve some of <a href=\"https://bugs.torproject.org/\">our "
+"bugs</a>, or establish yourself as a Tor advocate."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/getinvolved/en/tshirt.wml:36
+msgid ""
+"If you qualify, send mail to donations at torproject dot org with a brief "
+"explanation. Be sure to specify a color preference, a size (S/M/L/XL/XXL), a"
+" backup size if your first choice isn't available, and a shipping address."
+msgstr ""
+"条件が合うようでしたら donations at torproject dot org "
+"にメールで簡単な説明をお送りください。色指定やサイズ(S/M/L/XL/XXL)、希望サイズの在庫がない場合の替わりのサイズ、送り唾棄住所が必要です。"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/getinvolved/en/tshirt.wml:43
+msgid ""
+"You can choose between the traditional black and our conversation-starting "
+"bright green. You can also see the shirts <a "
+"href=\"https://trac.torproject.org/projects/tor/wiki/TheOnionRouter/TorShirt\">in"
+" action</a> — add your own photos there too."
+msgstr ""
+
+#. type: Content of: <div><div><div>
+#: /home/runa/tor/website/getinvolved/en/tshirt.wml:50
+msgid ""
+"<a href=\"$(IMGROOT)/black-tor-tshirt.png\"><img src=\"$(IMGROOT)/black-tor-"
+"tshirt.png\"></a> <a href=\"$(IMGROOT)/green-tor-tshirt.png\"><img "
+"src=\"$(IMGROOT)/green-tor-tshirt.png\"></a>"
+msgstr ""
+
+
Modified: translation/trunk/projects/website/po/ja_JP/1-high.index.po
===================================================================
--- translation/trunk/projects/website/po/ja_JP/1-high.index.po 2011-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ja_JP/1-high.index.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -7,8 +7,8 @@
"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-03-29 00:25+0000\n"
-"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
+"PO-Revision-Date: 2011-05-23 21:14+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,13 +19,13 @@
#. type: Content of: <div><div><div><div><ul><li>
#: /home/runa/dev/website/en/index.wml:12
msgid "Tor prevents anyone from learning your location or browsing habits."
-msgstr "Tor"
+msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
#: /home/runa/dev/website/en/index.wml:13
msgid ""
"Tor is for web browsers, instant messaging clients, remote logins, and more."
-msgstr "Torは"
+msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
#: /home/runa/dev/website/en/index.wml:14
@@ -35,7 +35,7 @@
#. type: Content of: <div><div><div><div><h1>
#: /home/runa/dev/website/en/index.wml:16
msgid "Anonymity Online"
-msgstr "オンラインでの匿名性を実現"
+msgstr ""
#. type: Content of: <div><div><div><div><p>
#: /home/runa/dev/website/en/index.wml:17
@@ -50,13 +50,11 @@
"<a href=\"<page download/download>\"> <span class=\"download-tor\">Download "
"Tor</span></a>"
msgstr ""
-"<a href=\"<page download/download>\"> <span class=\"download-tor\">Download "
-"Tor</span></a>"
#. type: Content of: <div><div><div><div><div><h2>
#: /home/runa/dev/website/en/index.wml:26
msgid "What is Tor?"
-msgstr "Torって何ですか?"
+msgstr ""
#. type: Content of: <div><div><div><div><div><p>
#: /home/runa/dev/website/en/index.wml:26
@@ -72,7 +70,7 @@
#. type: Content of: <div><div><div><div><div><h2>
#: /home/runa/dev/website/en/index.wml:36
msgid "Why Anonymity Matters"
-msgstr "なぜ匿名性が必要なのですか?"
+msgstr ""
#. type: Content of: <div><div><div><div><div><p>
#: /home/runa/dev/website/en/index.wml:37
@@ -100,7 +98,7 @@
#. type: Content of: <div><div><div><div><table><tr><td><h3>
#: /home/runa/dev/website/en/index.wml:56
msgid "<a href=\"<page torbutton/index>\">Torbutton</a>"
-msgstr "<a href=\"<page torbutton/index>\">Torbutton</a>"
+msgstr ""
#. type: Content of: <div><div><div><div><table><tr><td><p>
#: /home/runa/dev/website/en/index.wml:57
@@ -122,7 +120,7 @@
#. type: Content of: <div><div><div><div><table><tr><td><p>
#: /home/runa/dev/website/en/index.wml:63
msgid "Check determines if you are successfully browsing with Tor."
-msgstr "ブラウザでTor"
+msgstr ""
#. type: Content of: <div><div><div><div><table><tr><td>
#: /home/runa/dev/website/en/index.wml:69
@@ -132,14 +130,14 @@
#. type: Content of: <div><div><div><div><table><tr><td><h3>
#: /home/runa/dev/website/en/index.wml:70
msgid "<a href=\"<page projects/vidalia>\">Vidalia</a>"
-msgstr "<a href=\"<page projects/vidalia>\">Vidalia</a>"
+msgstr ""
#. type: Content of: <div><div><div><div><table><tr><td><p>
#: /home/runa/dev/website/en/index.wml:71
msgid ""
"Vidalia is a graphical way to control and view Tor's connections and "
"settings."
-msgstr "VidaliaはTor"
+msgstr ""
#. type: Content of: <div><div><div><div><table><tr><td>
#: /home/runa/dev/website/en/index.wml:75
@@ -149,18 +147,18 @@
#. type: Content of: <div><div><div><div><table><tr><td><h3>
#: /home/runa/dev/website/en/index.wml:76
msgid "<a href=\"<page projects/torbrowser>\">Tor Browser</a>"
-msgstr "<a href=\"<page projects/torbrowser>\">Tor Browser</a>"
+msgstr ""
#. type: Content of: <div><div><div><div><table><tr><td><p>
#: /home/runa/dev/website/en/index.wml:78
msgid ""
"Tor Browser contains everything you need to safely browse the Internet."
-msgstr "Tor Browser はインターネットで安全にブラウザを使うために必要な一式が含まれています。browse the Internet."
+msgstr ""
#. type: Content of: <div><div><div><div><h2>
#: /home/runa/dev/website/en/index.wml:90
msgid "Who Uses Tor?"
-msgstr "誰がTorを使っているのですか?"
+msgstr ""
#. type: Content of: <div><div><div><div><div><h3>
#: /home/runa/dev/website/en/index.wml:93
Modified: translation/trunk/projects/website/po/ja_JP/about/2-medium.overview.po
===================================================================
--- translation/trunk/projects/website/po/ja_JP/about/2-medium.overview.po 2011-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ja_JP/about/2-medium.overview.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -7,8 +7,8 @@
"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:28+0200\n"
-"PO-Revision-Date: 2011-04-14 00:45+0000\n"
-"Last-Translator: glezos <glezos(a)indifex.com>\n"
+"PO-Revision-Date: 2011-05-23 21:14+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -22,8 +22,6 @@
"<a href=\"<page index>\">Home » </a> <a href=\"<page "
"about/overview>\">About » </a>"
msgstr ""
-"<a href=\"<page index>\">Home » </a> <a href=\"<page "
-"about/overview>\">About » </a>"
#. type: Content of: <div><div><h2>
#: /home/runa/tor/website/about/en/overview.wml:12
@@ -43,17 +41,17 @@
#. type: Content of: <div><div><div><ul><li>
#: /home/runa/tor/website/about/en/overview.wml:18
msgid "<a href=\"<page about/overview>#overview\">Overview</a>"
-msgstr "<a href=\"<page about/overview>#overview\">Overview</a>"
+msgstr ""
#. type: Content of: <div><div><div><ul><li>
#: /home/runa/tor/website/about/en/overview.wml:19
msgid "<a href=\"<page about/overview>#whyweneedtor\">Why we need Tor</a>"
-msgstr "<a href=\"<page about/overview>#whyweneedtor\">Why we need Tor</a>"
+msgstr ""
#. type: Content of: <div><div><div><ul><li>
#: /home/runa/tor/website/about/en/overview.wml:20
msgid "<a href=\"<page about/overview>#thesolution\">The Solution</a>"
-msgstr "<a href=\"<page about/overview>#thesolution\">The Solution</a>"
+msgstr ""
#. type: Content of: <div><div><div><ul><li>
#: /home/runa/tor/website/about/en/overview.wml:21
@@ -63,12 +61,12 @@
#. type: Content of: <div><div><div><ul><li>
#: /home/runa/tor/website/about/en/overview.wml:22
msgid "<a href=\"<page about/overview>#stayinganonymous\">Staying anonymous</a>"
-msgstr "<a href=\"<page about/overview>#stayinganonymous\">とく</a>"
+msgstr ""
#. type: Content of: <div><div><div><ul><li>
#: /home/runa/tor/website/about/en/overview.wml:23
msgid "<a href=\"<page about/overview>#thefutureoftor\">The future of Tor</a>"
-msgstr "<a href=\"<page about/overview>#thefutureoftor\">Tor</a>"
+msgstr ""
#. END SIDEBAR
#. type: Content of: <div><div>
@@ -96,7 +94,7 @@
#. type: Content of: <div><div>
#: /home/runa/tor/website/about/en/overview.wml:43
msgid "<a name=\"overview\"></a>"
-msgstr "<a name=\"overview\"></a>"
+msgstr ""
#. type: Content of: <div><div><h3>
#: /home/runa/tor/website/about/en/overview.wml:44
@@ -173,12 +171,12 @@
#. type: Content of: <div><div>
#: /home/runa/tor/website/about/en/overview.wml:105
msgid "<a name=\"whyweneedtor\"></a>"
-msgstr "<a name=\"whyweneedtor\"></a>"
+msgstr ""
#. type: Content of: <div><div><h3>
#: /home/runa/tor/website/about/en/overview.wml:106
msgid "<a class=\"anchor\" href=\"#whyweneedtor\">Why we need Tor</a>"
-msgstr "<a class=\"anchor\" href=\"#whyweneedtor\">Why we need Tor</a>"
+msgstr ""
#. type: Content of: <div><div><p>
#: /home/runa/tor/website/about/en/overview.wml:109
@@ -233,7 +231,7 @@
#. type: Content of: <div><div>
#: /home/runa/tor/website/about/en/overview.wml:151
msgid "<a name=\"thesolution\"></a>"
-msgstr "<a name=\"thesolution\"></a>"
+msgstr ""
#. type: Content of: <div><div><h3>
#: /home/runa/tor/website/about/en/overview.wml:152
@@ -241,8 +239,6 @@
"<a class=\"anchor\" href=\"#thesolution\">The solution: a distributed, "
"anonymous network</a>"
msgstr ""
-"<a class=\"anchor\" href=\"#thesolution\">ソリューション: 分散化ネットワークa distributed, "
-"anonymous network</a>"
#. type: Content of: <div><div>
#: /home/runa/tor/website/about/en/overview.wml:153
@@ -279,7 +275,7 @@
#. type: Content of: <div><div><p>
#: /home/runa/tor/website/about/en/overview.wml:178
msgid "<img alt=\"Tor circuit step two\" src=\"$(IMGROOT)/htw2.png\">"
-msgstr "<img alt=\"Tor circuit step two\" src=\"$(IMGROOT)/htw2.png\">"
+msgstr ""
#. type: Content of: <div><div><p>
#: /home/runa/tor/website/about/en/overview.wml:181
@@ -303,17 +299,17 @@
#. type: Content of: <div><div><p>
#: /home/runa/tor/website/about/en/overview.wml:197
msgid "<img alt=\"Tor circuit step three\" src=\"$(IMGROOT)/htw3.png\">"
-msgstr "<img alt=\"Tor circuit step three\" src=\"$(IMGROOT)/htw3.png\">"
+msgstr ""
#. type: Content of: <div><div>
#: /home/runa/tor/website/about/en/overview.wml:200
msgid "<a name=\"hiddenservices\"></a>"
-msgstr "<a name=\"hiddenservices\"></a>"
+msgstr ""
#. type: Content of: <div><div><h3>
#: /home/runa/tor/website/about/en/overview.wml:201
msgid "<a class=\"anchor\" href=\"#hiddenservices\">Hidden services</a>"
-msgstr "<a class=\"anchor\" href=\"#hiddenservices\">Hidden services</a>"
+msgstr ""
#. type: Content of: <div><div><p>
#: /home/runa/tor/website/about/en/overview.wml:204
@@ -334,7 +330,7 @@
#. type: Content of: <div><div>
#: /home/runa/tor/website/about/en/overview.wml:217
msgid "<a name=\"stayinganonymous\"></a>"
-msgstr "<a name=\"stayinganonymous\"></a>"
+msgstr ""
#. type: Content of: <div><div><h3>
#: /home/runa/tor/website/about/en/overview.wml:218
@@ -366,12 +362,12 @@
#. type: Content of: <div><div>
#: /home/runa/tor/website/about/en/overview.wml:239
msgid "<a name=\"thefutureoftor\"></a>"
-msgstr "<a name=\"thefutureoftor\"></a>"
+msgstr ""
#. type: Content of: <div><div><h3>
#: /home/runa/tor/website/about/en/overview.wml:240
msgid "<a class=\"anchor\" href=\"#thefutureoftor\">The future of Tor</a>"
-msgstr "<a class=\"anchor\" href=\"#thefutureoftor\">Tor</a>"
+msgstr ""
#. type: Content of: <div><div><p>
#: /home/runa/tor/website/about/en/overview.wml:243
Modified: translation/trunk/projects/website/po/ja_JP/docs/2-medium.documentation.po
===================================================================
--- translation/trunk/projects/website/po/ja_JP/docs/2-medium.documentation.po 2011-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ja_JP/docs/2-medium.documentation.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -7,8 +7,8 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-05-02 16:59+0200\n"
-"PO-Revision-Date: 2011-05-03 03:05+0000\n"
-"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
+"PO-Revision-Date: 2011-05-23 21:08+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -22,38 +22,36 @@
"<a href=\"<page index>\">Home » </a> <a href=\"<page "
"docs/documentation>\">Documentation</a>"
msgstr ""
-"<a href=\"<page index>\">Home » </a> <a href=\"<page "
-"docs/documentation>\">Documentation</a>"
#. type: Content of: <div><div>
#: /home/runa/tor/website/docs/en/documentation.wml:12
msgid "<a id=\"RunningTor\"></a>"
-msgstr "<a id=\"RunningTor\"></a>"
+msgstr ""
#. type: Content of: <div><div><h1>
#: /home/runa/tor/website/docs/en/documentation.wml:13
msgid "<a class=\"anchor\" href=\"#RunningTor\">Running Tor</a>"
-msgstr "<a class=\"anchor\" href=\"#RunningTor\">Running Tor</a>"
+msgstr ""
#. type: Content of: <div><div><ul><li>
#: /home/runa/tor/website/docs/en/documentation.wml:15
msgid "<a href=\"<page docs/tor-doc-windows>\">Installing Tor on Win32</a>"
-msgstr "<a href=\"<page docs/tor-doc-windows>\">Win32へのTorインストール</a>"
+msgstr ""
#. type: Content of: <div><div><ul><li>
#: /home/runa/tor/website/docs/en/documentation.wml:17
msgid "<a href=\"<page docs/tor-doc-osx>\">Installing Tor on Mac OS X</a>"
-msgstr "<a href=\"<page docs/tor-doc-osx>\">Installing Tor on Mac OS X</a>"
+msgstr ""
#. type: Content of: <div><div><ul><li>
#: /home/runa/tor/website/docs/en/documentation.wml:19
msgid "<a href=\"<page docs/tor-doc-unix>\">Installing Tor on Linux/BSD/Unix</a>"
-msgstr "<a href=\"<page docs/tor-doc-unix>\">Installing Tor on Linux/BSD/Unix</a>"
+msgstr ""
#. type: Content of: <div><div><ul><li>
#: /home/runa/tor/website/docs/en/documentation.wml:21
msgid "<a href=\"<page torbutton/index>\">Installing Torbutton for Tor</a>"
-msgstr "<a href=\"<page torbutton/index>\">Torbuttonfor Tor</a>"
+msgstr ""
#. type: Content of: <div><div><ul><li>
#: /home/runa/tor/website/docs/en/documentation.wml:23
@@ -231,7 +229,7 @@
#. type: Content of: <div><div>
#: /home/runa/tor/website/docs/en/documentation.wml:162
msgid "<a id=\"MailingLists\"></a>"
-msgstr "<a id=\"MailingLists\"></a>"
+msgstr ""
#. type: Content of: <div><div><h1>
#: /home/runa/tor/website/docs/en/documentation.wml:163
@@ -300,7 +298,7 @@
#. type: Content of: <div><div>
#: /home/runa/tor/website/docs/en/documentation.wml:189
msgid "<a id=\"DesignDoc\"></a>"
-msgstr "<a id=\"DesignDoc\"></a>"
+msgstr ""
#. type: Content of: <div><div><h1>
#: /home/runa/tor/website/docs/en/documentation.wml:190
@@ -412,7 +410,7 @@
#. type: Content of: <div><div>
#: /home/runa/tor/website/docs/en/documentation.wml:238
msgid "<a id=\"NeatLinks\"></a>"
-msgstr "<a id=\"NeatLinks\"></a>"
+msgstr ""
#. type: Content of: <div><div><h1>
#: /home/runa/tor/website/docs/en/documentation.wml:239
@@ -465,7 +463,7 @@
#. type: Content of: <div><div>
#: /home/runa/tor/website/docs/en/documentation.wml:264
msgid "<a id=\"Developers\"></a>"
-msgstr "<a id=\"Developers\"></a>"
+msgstr ""
#. type: Content of: <div><div><h1>
#: /home/runa/tor/website/docs/en/documentation.wml:265
Modified: translation/trunk/projects/website/po/ja_JP/getinvolved/3-low.tshirt.po
===================================================================
--- translation/trunk/projects/website/po/ja_JP/getinvolved/3-low.tshirt.po 2011-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ja_JP/getinvolved/3-low.tshirt.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -7,8 +7,8 @@
"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-03-22 16:39+0000\n"
-"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
+"PO-Revision-Date: 2011-05-23 21:15+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -27,19 +27,19 @@
#. type: Content of: <div><div><h1>
#: /home/runa/tor/website/getinvolved/en/tshirt.wml:13
msgid "Tor: T-shirt for Contributing"
-msgstr "Tor: T-shirt for Contributing"
+msgstr ""
#. type: Content of: <div><div>
#: /home/runa/tor/website/getinvolved/en/tshirt.wml:14
msgid "<hr>"
-msgstr "<hr>"
+msgstr ""
#. type: Content of: <div><div><p>
#: /home/runa/tor/website/getinvolved/en/tshirt.wml:16
msgid ""
"You can get one of these fine Tor T-shirts for contributing to the Tor "
"project. There are three primary ways of contributing:"
-msgstr "Tor Tシャツを購入することでTorプロジェクトを支援することができます。プロジェクトに貢献する3つの簡単な方法をお教えしましょう:"
+msgstr ""
#. type: Content of: <div><div><ol><li>
#: /home/runa/tor/website/getinvolved/en/tshirt.wml:20
@@ -47,8 +47,6 @@
"A large enough ($65+) <a href=\"<page donate/donate>\">donation</a> to the "
"Tor Project."
msgstr ""
-"一定のまとまった金額 ($65ドル以上)をTor <a href=\"<page donate/donate>\">donation</a> to "
-"the Tor Project."
#. type: Content of: <div><div><ol><li>
#: /home/runa/tor/website/getinvolved/en/tshirt.wml:22
@@ -58,8 +56,6 @@
" port 80 and you average 100 KB/s traffic, or if you're not an exit but you "
"average 500 KB/s traffic."
msgstr ""
-"高速回線で<a href=\"<page docs/tor-doc-relay>\">Tor relay</a>を二ヶ月走らせる: "
-"80番ポートで接続できて100 KB/sの通信量、または80番ポートを使わずに500 KB/s traffic."
#. type: Content of: <div><div><ol><li>
#: /home/runa/tor/website/getinvolved/en/tshirt.wml:26
@@ -80,8 +76,6 @@
"explanation. Be sure to specify a color preference, a size (S/M/L/XL/XXL), a"
" backup size if your first choice isn't available, and a shipping address."
msgstr ""
-"条件が合うようでしたら donations at torproject dot org "
-"にメールで簡単な説明をお送りください。色指定やサイズ(S/M/L/XL/XXL)、希望サイズの在庫がない場合の替わりのサイズ、送り唾棄住所が必要です。"
#. type: Content of: <div><div><p>
#: /home/runa/tor/website/getinvolved/en/tshirt.wml:43
Modified: translation/trunk/projects/website/po/my/1-high.index.po
===================================================================
--- translation/trunk/projects/website/po/my/1-high.index.po 2011-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/my/1-high.index.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:09+0000\n"
+"PO-Revision-Date: 2011-05-23 21:14+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Added: translation/trunk/projects/website/po/nl/1-high.index.po
===================================================================
--- translation/trunk/projects/website/po/nl/1-high.index.po (rev 0)
+++ translation/trunk/projects/website/po/nl/1-high.index.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -0,0 +1,308 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR The Tor Project, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+msgid ""
+msgstr ""
+"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-05-23 20:22+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: nl\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+
+#. type: Content of: <div><div><div><div><ul><li>
+#: /home/runa/dev/website/en/index.wml:12
+msgid "Tor prevents anyone from learning your location or browsing habits."
+msgstr "Tor voorkomt dat anderen uw locatie en surfgeschiedenis achterhalen."
+
+#. type: Content of: <div><div><div><div><ul><li>
+#: /home/runa/dev/website/en/index.wml:13
+msgid ""
+"Tor is for web browsers, instant messaging clients, remote logins, and more."
+msgstr ""
+"Tor is voor web browsers, chatprogramma's, logins op afstand, en meer."
+
+#. type: Content of: <div><div><div><div><ul><li>
+#: /home/runa/dev/website/en/index.wml:14
+msgid "Tor is free and open source for Windows, Mac, Linux/Unix, and Android"
+msgstr "Tor is gratis en open source voor Windows, Mac, Linux/Unix en Android"
+
+#. type: Content of: <div><div><div><div><h1>
+#: /home/runa/dev/website/en/index.wml:16
+msgid "Anonymity Online"
+msgstr "Anonimiteit Online"
+
+#. type: Content of: <div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:17
+msgid ""
+"Protect your privacy. Defend yourself against network surveillance and "
+"traffic analysis."
+msgstr ""
+"Bescherm uw privacy. Verdedig uzelf tegen netwerk surveillance en data-"
+"analyse."
+
+#. type: Content of: <div><div><div><div><div>
+#: /home/runa/dev/website/en/index.wml:20
+msgid ""
+"<a href=\"<page download/download>\"> <span class=\"download-tor\">Download "
+"Tor</span></a>"
+msgstr ""
+"<a href=\"<page download/download>\"> <span class=\"download-tor\">Download "
+"Tor</span></a>"
+
+#. type: Content of: <div><div><div><div><div><h2>
+#: /home/runa/dev/website/en/index.wml:26
+msgid "What is Tor?"
+msgstr "Wat is Tor?"
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:26
+msgid ""
+"Tor is free software and an open network that helps you defend against a "
+"form of network surveillance that threatens personal freedom and privacy, "
+"confidential business activities and relationships, and state security known"
+" as <a href=\"<page about/overview>\">traffic analysis</a><br><span "
+"class=\"continue\"><a href=\"<page about/overview>\">Learn more about Tor "
+"»</a></span>"
+msgstr ""
+"Tor is vrije software en een open netwerk dat u helpt uzelf te beschermen "
+"tegen een vorm van netwerkinspectie die uw persoonlijke vrijheid en privacy,"
+" vertrouwelijke bedrijfsactiviteiten en relaties, en de staatsveiligheid "
+"aantast. Deze vorm is bekend als <a href=\"<page "
+"about/overview>\">verkeersanalyse</a>.<br><span class=\"continue\"><a "
+"href=\"<page about/overview>\">Leer meer over Tor»</a></span>"
+
+#. type: Content of: <div><div><div><div><div><h2>
+#: /home/runa/dev/website/en/index.wml:36
+msgid "Why Anonymity Matters"
+msgstr "Waarom Anonimiteit belangrijk is"
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:37
+msgid ""
+"Tor protects you by bouncing your communications around a distributed "
+"network of relays run by volunteers all around the world: it prevents "
+"somebody watching your Internet connection from learning what sites you "
+"visit, and it prevents the sites you visit from learning your physical "
+"location. Tor works with many of your existing applications, including web "
+"browsers, instant messaging clients, remote login, and other applications "
+"based on the TCP protocol.<br><span class=\"continue\"><a href=\"<page "
+"getinvolved/volunteer>\">Get involved with Tor »</a></span>"
+msgstr ""
+"Tor beschermt u door uw verkeer om te leiden door een verspreid netwerk van "
+"servers die verspreid over de wereld gedraaid worden door vrijwilligers: het"
+" beschermt tegen anderen die uw internetverbinding in de gaten houden om te "
+"kijken welke websites u bezoekt en tegen het door websites achterhalen van "
+"uw fysieke locatie. Tor werkt met veel van uw reeds geïnstalleerde "
+"programma's, inclusief web browsers, chatprogramma's, log-in op afstand en "
+"andere programma's gebaseerd op het TCP protocol.<br><span "
+"class=\"continue\"><a href=\"<page getinvolved/volunteer>\">Raak betrokken "
+"bij Tor »</a></span>"
+
+#. type: Content of: <div><div><div><div><h2>
+#: /home/runa/dev/website/en/index.wml:50
+msgid "Our Projects"
+msgstr "Onze Projecten"
+
+#. type: Content of: <div><div><div><div><table><tr><td>
+#: /home/runa/dev/website/en/index.wml:55
+msgid "<img src=\"$(IMGROOT)/icon-TorButton.jpg\" alt=\"Torbutton Icon\">"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><h3>
+#: /home/runa/dev/website/en/index.wml:56
+msgid "<a href=\"<page torbutton/index>\">Torbutton</a>"
+msgstr "<a href=\"<page torbutton/index>\">Torbutton</a>"
+
+#. type: Content of: <div><div><div><div><table><tr><td><p>
+#: /home/runa/dev/website/en/index.wml:57
+msgid ""
+"Torbutton is a 1-click way for Firefox users to enable or disable Tor in "
+"Firefox."
+msgstr ""
+"Torbutton is een 1-kliks methode om Tor aan of uit te zetten in Firefox."
+
+#. type: Content of: <div><div><div><div><table><tr><td>
+#: /home/runa/dev/website/en/index.wml:61
+msgid "<img src=\"$(IMGROOT)/icon-TorCheck.jpg\" alt=\"Tor Check Icon\">"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><h3>
+#: /home/runa/dev/website/en/index.wml:62
+msgid "<a href=\"https://check.torproject.org/\">Check</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><p>
+#: /home/runa/dev/website/en/index.wml:63
+msgid "Check determines if you are successfully browsing with Tor."
+msgstr "Check of u succesvol met Tor aan het surfen bent."
+
+#. type: Content of: <div><div><div><div><table><tr><td>
+#: /home/runa/dev/website/en/index.wml:69
+msgid "<img src=\"$(IMGROOT)/icon-Vidalia.jpg\" alt=\"Vidalia Icon\">"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><h3>
+#: /home/runa/dev/website/en/index.wml:70
+msgid "<a href=\"<page projects/vidalia>\">Vidalia</a>"
+msgstr "<a href=\"<page projects/vidalia>\">Vidalia</a>"
+
+#. type: Content of: <div><div><div><div><table><tr><td><p>
+#: /home/runa/dev/website/en/index.wml:71
+msgid ""
+"Vidalia is a graphical way to control and view Tor's connections and "
+"settings."
+msgstr ""
+"Vidalia is een grafische manier om Tor's verbindingen en instellingen te "
+"beheren."
+
+#. type: Content of: <div><div><div><div><table><tr><td>
+#: /home/runa/dev/website/en/index.wml:75
+msgid "<img src=\"$(IMGROOT)/icon-TorBrowser.jpg\" alt=\"TorBrowser Icon\">"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><h3>
+#: /home/runa/dev/website/en/index.wml:76
+msgid "<a href=\"<page projects/torbrowser>\">Tor Browser</a>"
+msgstr "<a href=\"<page projects/torbrowser>\">Tor Browser</a>"
+
+#. type: Content of: <div><div><div><div><table><tr><td><p>
+#: /home/runa/dev/website/en/index.wml:78
+msgid ""
+"Tor Browser contains everything you need to safely browse the Internet."
+msgstr ""
+"Tor Browser bevat alles wat u nodig heeft om veilig te surfen op het "
+"internet."
+
+#. type: Content of: <div><div><div><div><h2>
+#: /home/runa/dev/website/en/index.wml:90
+msgid "Who Uses Tor?"
+msgstr "Wie gebruikt Tor?"
+
+#. type: Content of: <div><div><div><div><div><h3>
+#: /home/runa/dev/website/en/index.wml:93
+msgid ""
+"<a href=\"<page about/torusers>#normalusers\"><img "
+"src=\"$(IMGROOT)/family.jpg\" alt=\"Normal People\">Family & Friends</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:95
+msgid ""
+"People like you and your family use Tor to protect themselves, their "
+"children, and their dignity while using the Internet."
+msgstr ""
+"Mensen zoals u en uw familie gebruiken Tor om zichzelf, hun kinderen en hun "
+"waardigheid te beschermen tijdens het surfen."
+
+#. type: Content of: <div><div><div><div><div><h3>
+#: /home/runa/dev/website/en/index.wml:99
+msgid ""
+"<a href=\"<page about/torusers>#executives\"><img "
+"src=\"$(IMGROOT)/consumers.jpg\" alt=\"Businesses\">Businesses</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:101
+msgid ""
+"Businesses use Tor to research competition, keep business strategies "
+"confidential, and facilitate internal accountability."
+msgstr ""
+"Bedrijven gebruiken Tor om concurrenten te onderzoeken, bedrijfsstrategieën "
+"geheim te houden en interne verantwoordelijken mogelijk te maken."
+
+#. type: Content of: <div><div><div><div><div><h3>
+#: /home/runa/dev/website/en/index.wml:105
+msgid ""
+"<a href=\"<page about/torusers>#activists\"><img "
+"src=\"$(IMGROOT)/activists.jpg\" alt=\"Activists & "
+"Whistleblowers\">Activists</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:107
+msgid ""
+"Activists use Tor to anonymously report abuses from danger zones. "
+"Whistleblowers use Tor to safely report on corruption."
+msgstr ""
+"Activisten gebruiken Tor om anoniem te berichten over misstanden in "
+"gevaarlijke gebieden. Klokkenluiders gebruiken Tor om veilig corruptie aan "
+"het licht te brengen."
+
+#. type: Content of: <div><div><div><div><div><h3>
+#: /home/runa/dev/website/en/index.wml:111
+msgid ""
+"<a href=\"<page about/torusers>#journalist\"><img "
+"src=\"$(IMGROOT)/media.jpg\" alt=\"Journalists and the Media\">Media</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:113
+msgid ""
+"Journalists and the media use Tor to protect their research and sources "
+"online."
+msgstr ""
+"Journalisten en de media gebruiken Tor om hun onderzoeken en bronnen op "
+"internet te beschermen."
+
+#. type: Content of: <div><div><div><div><div><h3>
+#: /home/runa/dev/website/en/index.wml:117
+msgid ""
+"<a href=\"<page about/torusers>#military\"><img "
+"src=\"$(IMGROOT)/military.jpg\" alt=\"Military and Law "
+"Enforcement\">Military & Law Enforcement</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:119
+msgid ""
+"Militaries and law enforcement use Tor to protect their communications, "
+"investigations, and intelligence gathering online."
+msgstr ""
+"Het leger en rechtshandhavers gebruiken Tor om hun communicatie, onderzoeken"
+" en het verzamelen van inlichtingen op internet te beschermen."
+
+#. type: Content of: <div><div><div><div><h2>
+#: /home/runa/dev/website/en/index.wml:123
+msgid "Announcements"
+msgstr "Aankondigingen"
+
+#. type: Content of: <div><div><div><div><table><tr><td><div>
+#: /home/runa/dev/website/en/index.wml:128
+msgid "<span class=\"month\">Mar</span><br><span class=\"day\">23</span>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><p>
+#: /home/runa/dev/website/en/index.wml:129
+msgid ""
+"The Tor Project wins the \"Project of Social Benefit\" award from the Free "
+"Software Foundation and GNU Project. We are honored to win this award and to"
+" be listed amongst the former winners. <a "
+"href=\"https://blog.torproject.org/blog/tor-project-receives-fsf-"
+"award\">Read more</a> about this award."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><div>
+#: /home/runa/dev/website/en/index.wml:135
+msgid "<span class=\"month\">Feb</span><br><span class=\"day\">23</span>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><p>
+#: /home/runa/dev/website/en/index.wml:136
+msgid ""
+"The latest stable Tor version, 0.2.1.30, is <a "
+"href=\"https://lists.torproject.org/pipermail/tor-"
+"announce/2011-February/000000.html\">released</a>. Tor 0.2.1.30 fixes a "
+"variety of less critical bugs. The main other change is a slight tweak to "
+"Tor's TLS handshake that makes relays and bridges that run this new version "
+"reachable from Iran again. We don't expect this tweak will win the arms "
+"race long-term, but it buys us time until we roll out a better solution."
+msgstr ""
+
+
Modified: translation/trunk/projects/website/po/nl_NL/1-high.index.po
===================================================================
--- translation/trunk/projects/website/po/nl_NL/1-high.index.po 2011-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/nl_NL/1-high.index.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -7,8 +7,8 @@
"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-03-29 00:25+0000\n"
-"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
+"PO-Revision-Date: 2011-05-23 21:14+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,24 +19,23 @@
#. type: Content of: <div><div><div><div><ul><li>
#: /home/runa/dev/website/en/index.wml:12
msgid "Tor prevents anyone from learning your location or browsing habits."
-msgstr "Tor voorkomt dat anderen uw locatie en surfgeschiedenis achterhalen."
+msgstr ""
#. type: Content of: <div><div><div><div><ul><li>
#: /home/runa/dev/website/en/index.wml:13
msgid ""
"Tor is for web browsers, instant messaging clients, remote logins, and more."
msgstr ""
-"Tor is voor web browsers, chatprogramma's, logins op afstand, en meer."
#. type: Content of: <div><div><div><div><ul><li>
#: /home/runa/dev/website/en/index.wml:14
msgid "Tor is free and open source for Windows, Mac, Linux/Unix, and Android"
-msgstr "Tor is gratis en open source voor Windows, Mac, Linux/Unix en Android"
+msgstr ""
#. type: Content of: <div><div><div><div><h1>
#: /home/runa/dev/website/en/index.wml:16
msgid "Anonymity Online"
-msgstr "Anonimiteit Online"
+msgstr ""
#. type: Content of: <div><div><div><div><p>
#: /home/runa/dev/website/en/index.wml:17
@@ -44,8 +43,6 @@
"Protect your privacy. Defend yourself against network surveillance and "
"traffic analysis."
msgstr ""
-"Bescherm uw privacy. Verdedig uzelf tegen netwerk surveillance en data-"
-"analyse."
#. type: Content of: <div><div><div><div><div>
#: /home/runa/dev/website/en/index.wml:20
@@ -53,13 +50,11 @@
"<a href=\"<page download/download>\"> <span class=\"download-tor\">Download "
"Tor</span></a>"
msgstr ""
-"<a href=\"<page download/download>\"> <span class=\"download-tor\">Download "
-"Tor</span></a>"
#. type: Content of: <div><div><div><div><div><h2>
#: /home/runa/dev/website/en/index.wml:26
msgid "What is Tor?"
-msgstr "Wat is Tor?"
+msgstr ""
#. type: Content of: <div><div><div><div><div><p>
#: /home/runa/dev/website/en/index.wml:26
@@ -71,17 +66,11 @@
"class=\"continue\"><a href=\"<page about/overview>\">Learn more about Tor "
"»</a></span>"
msgstr ""
-"Tor is vrije software en een open netwerk dat u helpt uzelf te beschermen "
-"tegen een vorm van netwerkinspectie die uw persoonlijke vrijheid en privacy,"
-" vertrouwelijke bedrijfsactiviteiten en relaties, en de staatsveiligheid "
-"aantast. Deze vorm is bekend als <a href=\"<page "
-"about/overview>\">verkeersanalyse</a>.<br><span class=\"continue\"><a "
-"href=\"<page about/overview>\">Leer meer over Tor»</a></span>"
#. type: Content of: <div><div><div><div><div><h2>
#: /home/runa/dev/website/en/index.wml:36
msgid "Why Anonymity Matters"
-msgstr "Waarom Anonimiteit belangrijk is"
+msgstr ""
#. type: Content of: <div><div><div><div><div><p>
#: /home/runa/dev/website/en/index.wml:37
@@ -95,20 +84,11 @@
"based on the TCP protocol.<br><span class=\"continue\"><a href=\"<page "
"getinvolved/volunteer>\">Get involved with Tor »</a></span>"
msgstr ""
-"Tor beschermt u door uw verkeer om te leiden door een verspreid netwerk van "
-"servers die verspreid over de wereld gedraaid worden door vrijwilligers: het"
-" beschermt tegen anderen die uw internetverbinding in de gaten houden om te "
-"kijken welke websites u bezoekt en tegen het door websites achterhalen van "
-"uw fysieke locatie. Tor werkt met veel van uw reeds geïnstalleerde "
-"programma's, inclusief web browsers, chatprogramma's, log-in op afstand en "
-"andere programma's gebaseerd op het TCP protocol.<br><span "
-"class=\"continue\"><a href=\"<page getinvolved/volunteer>\">Raak betrokken "
-"bij Tor »</a></span>"
#. type: Content of: <div><div><div><div><h2>
#: /home/runa/dev/website/en/index.wml:50
msgid "Our Projects"
-msgstr "Onze Projecten"
+msgstr ""
#. type: Content of: <div><div><div><div><table><tr><td>
#: /home/runa/dev/website/en/index.wml:55
@@ -118,7 +98,7 @@
#. type: Content of: <div><div><div><div><table><tr><td><h3>
#: /home/runa/dev/website/en/index.wml:56
msgid "<a href=\"<page torbutton/index>\">Torbutton</a>"
-msgstr "<a href=\"<page torbutton/index>\">Torbutton</a>"
+msgstr ""
#. type: Content of: <div><div><div><div><table><tr><td><p>
#: /home/runa/dev/website/en/index.wml:57
@@ -126,7 +106,6 @@
"Torbutton is a 1-click way for Firefox users to enable or disable Tor in "
"Firefox."
msgstr ""
-"Torbutton is een 1-kliks methode om Tor aan of uit te zetten in Firefox."
#. type: Content of: <div><div><div><div><table><tr><td>
#: /home/runa/dev/website/en/index.wml:61
@@ -141,7 +120,7 @@
#. type: Content of: <div><div><div><div><table><tr><td><p>
#: /home/runa/dev/website/en/index.wml:63
msgid "Check determines if you are successfully browsing with Tor."
-msgstr "Check of u succesvol met Tor aan het surfen bent."
+msgstr ""
#. type: Content of: <div><div><div><div><table><tr><td>
#: /home/runa/dev/website/en/index.wml:69
@@ -151,7 +130,7 @@
#. type: Content of: <div><div><div><div><table><tr><td><h3>
#: /home/runa/dev/website/en/index.wml:70
msgid "<a href=\"<page projects/vidalia>\">Vidalia</a>"
-msgstr "<a href=\"<page projects/vidalia>\">Vidalia</a>"
+msgstr ""
#. type: Content of: <div><div><div><div><table><tr><td><p>
#: /home/runa/dev/website/en/index.wml:71
@@ -159,8 +138,6 @@
"Vidalia is a graphical way to control and view Tor's connections and "
"settings."
msgstr ""
-"Vidalia is een grafische manier om Tor's verbindingen en instellingen te "
-"beheren."
#. type: Content of: <div><div><div><div><table><tr><td>
#: /home/runa/dev/website/en/index.wml:75
@@ -170,20 +147,18 @@
#. type: Content of: <div><div><div><div><table><tr><td><h3>
#: /home/runa/dev/website/en/index.wml:76
msgid "<a href=\"<page projects/torbrowser>\">Tor Browser</a>"
-msgstr "<a href=\"<page projects/torbrowser>\">Tor Browser</a>"
+msgstr ""
#. type: Content of: <div><div><div><div><table><tr><td><p>
#: /home/runa/dev/website/en/index.wml:78
msgid ""
"Tor Browser contains everything you need to safely browse the Internet."
msgstr ""
-"Tor Browser bevat alles wat u nodig heeft om veilig te surfen op het "
-"internet."
#. type: Content of: <div><div><div><div><h2>
#: /home/runa/dev/website/en/index.wml:90
msgid "Who Uses Tor?"
-msgstr "Wie gebruikt Tor?"
+msgstr ""
#. type: Content of: <div><div><div><div><div><h3>
#: /home/runa/dev/website/en/index.wml:93
@@ -198,8 +173,6 @@
"People like you and your family use Tor to protect themselves, their "
"children, and their dignity while using the Internet."
msgstr ""
-"Mensen zoals u en uw familie gebruiken Tor om zichzelf, hun kinderen en hun "
-"waardigheid te beschermen tijdens het surfen."
#. type: Content of: <div><div><div><div><div><h3>
#: /home/runa/dev/website/en/index.wml:99
@@ -214,8 +187,6 @@
"Businesses use Tor to research competition, keep business strategies "
"confidential, and facilitate internal accountability."
msgstr ""
-"Bedrijven gebruiken Tor om concurrenten te onderzoeken, bedrijfsstrategieën "
-"geheim te houden en interne verantwoordelijken mogelijk te maken."
#. type: Content of: <div><div><div><div><div><h3>
#: /home/runa/dev/website/en/index.wml:105
@@ -231,9 +202,6 @@
"Activists use Tor to anonymously report abuses from danger zones. "
"Whistleblowers use Tor to safely report on corruption."
msgstr ""
-"Activisten gebruiken Tor om anoniem te berichten over misstanden in "
-"gevaarlijke gebieden. Klokkenluiders gebruiken Tor om veilig corruptie aan "
-"het licht te brengen."
#. type: Content of: <div><div><div><div><div><h3>
#: /home/runa/dev/website/en/index.wml:111
@@ -248,8 +216,6 @@
"Journalists and the media use Tor to protect their research and sources "
"online."
msgstr ""
-"Journalisten en de media gebruiken Tor om hun onderzoeken en bronnen op "
-"internet te beschermen."
#. type: Content of: <div><div><div><div><div><h3>
#: /home/runa/dev/website/en/index.wml:117
@@ -265,13 +231,11 @@
"Militaries and law enforcement use Tor to protect their communications, "
"investigations, and intelligence gathering online."
msgstr ""
-"Het leger en rechtshandhavers gebruiken Tor om hun communicatie, onderzoeken"
-" en het verzamelen van inlichtingen op internet te beschermen."
#. type: Content of: <div><div><div><div><h2>
#: /home/runa/dev/website/en/index.wml:123
msgid "Announcements"
-msgstr "Aankondigingen"
+msgstr ""
#. type: Content of: <div><div><div><div><table><tr><td><div>
#: /home/runa/dev/website/en/index.wml:128
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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/ru/press/4-optional.2010-03-25-tor-store-press-release.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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-05-23 16:09+0000\n"
+"PO-Revision-Date: 2011-05-23 21:14+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"
Added: translation/trunk/projects/website/po/vi/1-high.index.po
===================================================================
--- translation/trunk/projects/website/po/vi/1-high.index.po (rev 0)
+++ translation/trunk/projects/website/po/vi/1-high.index.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -0,0 +1,282 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR The Tor Project, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+msgid ""
+msgstr ""
+"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-05-23 20:23+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: vi\n"
+"Plural-Forms: nplurals=1; plural=0\n"
+
+#. type: Content of: <div><div><div><div><ul><li>
+#: /home/runa/dev/website/en/index.wml:12
+msgid "Tor prevents anyone from learning your location or browsing habits."
+msgstr ""
+"Tor ngăn cản bất kì ai biết được nơi bạn đang truy cập hoặc sở thích lướt "
+"web của bạn."
+
+#. type: Content of: <div><div><div><div><ul><li>
+#: /home/runa/dev/website/en/index.wml:13
+msgid ""
+"Tor is for web browsers, instant messaging clients, remote logins, and more."
+msgstr "Tor dùng cho lướt web, chat, đăng nhập từ xa, và hơn thế nữa."
+
+#. type: Content of: <div><div><div><div><ul><li>
+#: /home/runa/dev/website/en/index.wml:14
+msgid "Tor is free and open source for Windows, Mac, Linux/Unix, and Android"
+msgstr ""
+"Tor là một phần mềm miễn phí mã nguồn mở cho Windows, Mac, Linux/Unix, và "
+"Android"
+
+#. type: Content of: <div><div><div><div><h1>
+#: /home/runa/dev/website/en/index.wml:16
+msgid "Anonymity Online"
+msgstr "Anonymity Online"
+
+#. type: Content of: <div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:17
+msgid ""
+"Protect your privacy. Defend yourself against network surveillance and "
+"traffic analysis."
+msgstr ""
+"Bảo vệ sự riêng tư của bạn. Tự mình chống lại những giới hạn truy cập và "
+"hành vi phân tích dữ liệu."
+
+#. type: Content of: <div><div><div><div><div>
+#: /home/runa/dev/website/en/index.wml:20
+msgid ""
+"<a href=\"<page download/download>\"> <span class=\"download-tor\">Download "
+"Tor</span></a>"
+msgstr ""
+"<a href=\"<page download/download>\"> <span class=\"download-tor\">Tải v "
+"Tor</span></a>"
+
+#. type: Content of: <div><div><div><div><div><h2>
+#: /home/runa/dev/website/en/index.wml:26
+msgid "What is Tor?"
+msgstr "Tor là gì?"
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:26
+msgid ""
+"Tor is free software and an open network that helps you defend against a "
+"form of network surveillance that threatens personal freedom and privacy, "
+"confidential business activities and relationships, and state security known"
+" as <a href=\"<page about/overview>\">traffic analysis</a><br><span "
+"class=\"continue\"><a href=\"<page about/overview>\">Learn more about Tor "
+"»</a></span>"
+msgstr ""
+"Tor là một phần mềm miễn phí và là một mạng mở, giúp bạn tự bảo vệ chống lại"
+" những hình thức giới hạn truy cập"
+
+#. type: Content of: <div><div><div><div><div><h2>
+#: /home/runa/dev/website/en/index.wml:36
+msgid "Why Anonymity Matters"
+msgstr "Tại sao ẩn danh lại quan trọng"
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:37
+msgid ""
+"Tor protects you by bouncing your communications around a distributed "
+"network of relays run by volunteers all around the world: it prevents "
+"somebody watching your Internet connection from learning what sites you "
+"visit, and it prevents the sites you visit from learning your physical "
+"location. Tor works with many of your existing applications, including web "
+"browsers, instant messaging clients, remote login, and other applications "
+"based on the TCP protocol.<br><span class=\"continue\"><a href=\"<page "
+"getinvolved/volunteer>\">Get involved with Tor »</a></span>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><h2>
+#: /home/runa/dev/website/en/index.wml:50
+msgid "Our Projects"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td>
+#: /home/runa/dev/website/en/index.wml:55
+msgid "<img src=\"$(IMGROOT)/icon-TorButton.jpg\" alt=\"Torbutton Icon\">"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><h3>
+#: /home/runa/dev/website/en/index.wml:56
+msgid "<a href=\"<page torbutton/index>\">Torbutton</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><p>
+#: /home/runa/dev/website/en/index.wml:57
+msgid ""
+"Torbutton is a 1-click way for Firefox users to enable or disable Tor in "
+"Firefox."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td>
+#: /home/runa/dev/website/en/index.wml:61
+msgid "<img src=\"$(IMGROOT)/icon-TorCheck.jpg\" alt=\"Tor Check Icon\">"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><h3>
+#: /home/runa/dev/website/en/index.wml:62
+msgid "<a href=\"https://check.torproject.org/\">Check</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><p>
+#: /home/runa/dev/website/en/index.wml:63
+msgid "Check determines if you are successfully browsing with Tor."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td>
+#: /home/runa/dev/website/en/index.wml:69
+msgid "<img src=\"$(IMGROOT)/icon-Vidalia.jpg\" alt=\"Vidalia Icon\">"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><h3>
+#: /home/runa/dev/website/en/index.wml:70
+msgid "<a href=\"<page projects/vidalia>\">Vidalia</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><p>
+#: /home/runa/dev/website/en/index.wml:71
+msgid ""
+"Vidalia is a graphical way to control and view Tor's connections and "
+"settings."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td>
+#: /home/runa/dev/website/en/index.wml:75
+msgid "<img src=\"$(IMGROOT)/icon-TorBrowser.jpg\" alt=\"TorBrowser Icon\">"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><h3>
+#: /home/runa/dev/website/en/index.wml:76
+msgid "<a href=\"<page projects/torbrowser>\">Tor Browser</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><p>
+#: /home/runa/dev/website/en/index.wml:78
+msgid ""
+"Tor Browser contains everything you need to safely browse the Internet."
+msgstr "Tor Browser chứa tất cả mọi phần mềm bạn cần để lướt web an toàn."
+
+#. type: Content of: <div><div><div><div><h2>
+#: /home/runa/dev/website/en/index.wml:90
+msgid "Who Uses Tor?"
+msgstr "Ai sử dụng Tor?"
+
+#. type: Content of: <div><div><div><div><div><h3>
+#: /home/runa/dev/website/en/index.wml:93
+msgid ""
+"<a href=\"<page about/torusers>#normalusers\"><img "
+"src=\"$(IMGROOT)/family.jpg\" alt=\"Normal People\">Family & Friends</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:95
+msgid ""
+"People like you and your family use Tor to protect themselves, their "
+"children, and their dignity while using the Internet."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><h3>
+#: /home/runa/dev/website/en/index.wml:99
+msgid ""
+"<a href=\"<page about/torusers>#executives\"><img "
+"src=\"$(IMGROOT)/consumers.jpg\" alt=\"Businesses\">Businesses</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:101
+msgid ""
+"Businesses use Tor to research competition, keep business strategies "
+"confidential, and facilitate internal accountability."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><h3>
+#: /home/runa/dev/website/en/index.wml:105
+msgid ""
+"<a href=\"<page about/torusers>#activists\"><img "
+"src=\"$(IMGROOT)/activists.jpg\" alt=\"Activists & "
+"Whistleblowers\">Activists</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:107
+msgid ""
+"Activists use Tor to anonymously report abuses from danger zones. "
+"Whistleblowers use Tor to safely report on corruption."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><h3>
+#: /home/runa/dev/website/en/index.wml:111
+msgid ""
+"<a href=\"<page about/torusers>#journalist\"><img "
+"src=\"$(IMGROOT)/media.jpg\" alt=\"Journalists and the Media\">Media</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:113
+msgid ""
+"Journalists and the media use Tor to protect their research and sources "
+"online."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><h3>
+#: /home/runa/dev/website/en/index.wml:117
+msgid ""
+"<a href=\"<page about/torusers>#military\"><img "
+"src=\"$(IMGROOT)/military.jpg\" alt=\"Military and Law "
+"Enforcement\">Military & Law Enforcement</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><div><p>
+#: /home/runa/dev/website/en/index.wml:119
+msgid ""
+"Militaries and law enforcement use Tor to protect their communications, "
+"investigations, and intelligence gathering online."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><h2>
+#: /home/runa/dev/website/en/index.wml:123
+msgid "Announcements"
+msgstr "Thông báo"
+
+#. type: Content of: <div><div><div><div><table><tr><td><div>
+#: /home/runa/dev/website/en/index.wml:128
+msgid "<span class=\"month\">Mar</span><br><span class=\"day\">23</span>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><p>
+#: /home/runa/dev/website/en/index.wml:129
+msgid ""
+"The Tor Project wins the \"Project of Social Benefit\" award from the Free "
+"Software Foundation and GNU Project. We are honored to win this award and to"
+" be listed amongst the former winners. <a "
+"href=\"https://blog.torproject.org/blog/tor-project-receives-fsf-"
+"award\">Read more</a> about this award."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><div>
+#: /home/runa/dev/website/en/index.wml:135
+msgid "<span class=\"month\">Feb</span><br><span class=\"day\">23</span>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><table><tr><td><p>
+#: /home/runa/dev/website/en/index.wml:136
+msgid ""
+"The latest stable Tor version, 0.2.1.30, is <a "
+"href=\"https://lists.torproject.org/pipermail/tor-"
+"announce/2011-February/000000.html\">released</a>. Tor 0.2.1.30 fixes a "
+"variety of less critical bugs. The main other change is a slight tweak to "
+"Tor's TLS handshake that makes relays and bridges that run this new version "
+"reachable from Iran again. We don't expect this tweak will win the arms "
+"race long-term, but it buys us time until we roll out a better solution."
+msgstr ""
+
+
Added: translation/trunk/projects/website/po/vi/docs/2-medium.verifying-signatures.po
===================================================================
--- translation/trunk/projects/website/po/vi/docs/2-medium.verifying-signatures.po (rev 0)
+++ translation/trunk/projects/website/po/vi/docs/2-medium.verifying-signatures.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -0,0 +1,496 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR The Tor Project, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-04-18 10:37+0200\n"
+"PO-Revision-Date: 2011-05-23 20:28+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: vi\n"
+"Plural-Forms: nplurals=1; plural=0\n"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:8
+msgid ""
+"<a href=\"<page index>\">Home » </a> <a href=\"<page docs/verifying-"
+"signatures>\">Verifying Signatures</a>"
+msgstr ""
+"<a href=\"<page index>\">Home » </a> <a href=\"<page docs/verifying-"
+"signatures>\">Verifying Signatures</a>"
+
+#. type: Content of: <div><div><h1>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:12
+msgid "How to verify signatures for packages"
+msgstr "Làm sao kiểm tra chữ kí của tập tin?"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:13
+#: /tmp/6bL_6afI3I.xml:41 /tmp/6bL_6afI3I.xml:57 /tmp/6bL_6afI3I.xml:84
+#: /tmp/6bL_6afI3I.xml:175
+msgid "<hr>"
+msgstr "<hr>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:15
+msgid ""
+"Each file on <a href=\"<page download/download>\">our download page</a> is "
+"accompanied by a file with the same name as the package and the extension "
+"\".asc\". These .asc files are GPG signatures. They allow you to verify the "
+"file you've downloaded is exactly the one that we intended you to get. For "
+"example, tor-browser-<version-torbrowserbundle>_en-US.exe is accompanied by "
+"tor-browser-<version-torbrowserbundle>_en-US.exe.asc."
+msgstr ""
+"Mỗi tập tin trong <a href=\"<page download/download>\">phần tải về của chúng"
+" tôi</a> được kèm theo một tập tin chữ kí .asc có tên trùng với tên của tập "
+"tin phần mềm. Những tập tin .asc này là chữ kí dạng GPG. Những chữ kí đó "
+"giúp bạn kiểm tra các tập tin bạn đã tải về có trùng với bản gốc hay không. "
+"Ví dụ, tor-browser-<sốphiênbản-torbrowserbundle>_en-US.exe kèm theo chữ kí "
+"tor-browser-<sốphiênbản-torbrowserbundle>_en-US.exe.asc."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:22
+msgid ""
+"Of course, you'll need to have our GPG keys in your keyring: if you don't "
+"know the GPG key, you can't be sure that it was really us who signed it. The"
+" signing keys we use are:"
+msgstr ""
+"Bạn phải có chữ kí GPG mẫu của chúng tôi trong cơ sở dữ liệu của phần mềm "
+"kiểm tra chữ kĩ. Nếu không thì bạn không thể chắc chắn được ai đã thật sự kí"
+" tập tin phần mềm đó. Các chữ kí mẫu của chúng tôi bao gồm:"
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:26
+msgid "Roger's (0x28988BF5) typically signs the source code file."
+msgstr "Roger's (0x28988BF5) : chữ kí mẫu cho các tập tin mã nguồn."
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:27
+msgid "Nick's (0x165733EA, or its subkey 0x8D29319A)."
+msgstr "Nick's (0x165733EA, hoặc 0x8D29319A)."
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:28
+msgid ""
+"Andrew's (0x31B0974B) typically signed older packages for windows and mac."
+msgstr ""
+"Andrew's (0x31B0974B) chữ kí mẫu cho các phiên bản cũ dùng trên windows và "
+"mac."
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:29
+msgid "Peter's (0x94C09C7F, or its subkey 0xAFA44BDD)."
+msgstr "Peter's (0x94C09C7F, hoặc 0xAFA44BDD)."
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:30
+msgid "Tomás's (0x9A753A6B) signs current Vidalia release tarballs and tags."
+msgstr ""
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:31
+msgid "Matt's (0x5FA14861) signed older Vidalia release tarballs."
+msgstr ""
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:32
+msgid "Damian's (0x9ABBEEC6) signs Arm releases"
+msgstr ""
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:33
+msgid "Jacob's (0xE012B42D)."
+msgstr "Jacob's (0xE012B42D)."
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:34
+msgid ""
+"Erinn's (0x63FEE659) and (0xF1F5C9B5) typically signs all windows, mac, and "
+"most linux packages."
+msgstr ""
+"Erinn's (0x63FEE659) and (0xF1F5C9B5) chữ kí mẫu cho tấ cả tập tin phần mềm "
+"cho windows, mac và hầu hết các Linux."
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:35
+msgid "Mike's (0xDDC6C0AD) signs the Torbutton xpi."
+msgstr "Mike's (0xDDC6C0AD) chữ kí mẫu cho tập tin Torbutton xpi."
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:36
+msgid "Karsten's (0xF7C11265) signs the metrics archives and tools."
+msgstr "Karsten's (0xF7C11265) signs the metrics archives and tools."
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:37
+msgid "Robert Hogan's (0x22F6856F) signs torsocks release tarballs and tags."
+msgstr ""
+
+#. type: Content of: <div><div><h3>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:40
+msgid "Step Zero: Install GnuPG"
+msgstr "Bước đầu tiên: Cài đặt GnuPG"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:42
+msgid "You need to have GnuPG installed before you can verify signatures."
+msgstr "Bạn cần có phần mềm GnuPG để kiểm tra chữ kí trong tập tin."
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:46
+msgid ""
+"Linux: see <a "
+"href=\"http://www.gnupg.org/download/\">http://www.gnupg.org/download/</a> "
+"or install <i>gnupg</i> from the package management system."
+msgstr ""
+"Linux: see <a "
+"href=\"http://www.gnupg.org/download/\">http://www.gnupg.org/download/</a> "
+"or install <i>gnupg</i> from the package management system."
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:49
+msgid ""
+"Windows: see <a "
+"href=\"http://www.gnupg.org/download/\">http://www.gnupg.org/download/</a>. "
+"Look for the \"version compiled for MS-Windows\" under \"Binaries\"."
+msgstr ""
+"Windows: see <a "
+"href=\"http://www.gnupg.org/download/\">http://www.gnupg.org/download/</a>. "
+"Look for the \"version compiled for MS-Windows\" under \"Binaries\"."
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:52
+msgid ""
+"Mac: see <a "
+"href=\"http://macgpg.sourceforge.net/\">http://macgpg.sourceforge.net/</a>."
+msgstr ""
+"Mac: see <a "
+"href=\"http://macgpg.sourceforge.net/\">http://macgpg.sourceforge.net/</a>."
+
+#. type: Content of: <div><div><h3>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:56
+msgid "Step One: Import the keys"
+msgstr "Bước 2: Nhập chữ kí mẫu."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:58
+msgid ""
+"The next step is to import the key. This can be done directly from GnuPG. "
+"Make sure you import the correct key. For example, if you downloaded a "
+"Windows package, you will need to import Erinn's key."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:62
+#: /tmp/6bL_6afI3I.xml:87 /tmp/6bL_6afI3I.xml:183
+msgid "<b>Windows:</b>"
+msgstr "<b>Windows:</b>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:63
+msgid ""
+"GnuPG for Windows is a command line tool, and you will need to use "
+"<i>cmd.exe</i>. Unless you edit your PATH environment variable, you will "
+"need to tell Windows the full path to the GnuPG program. If you installed "
+"GnuPG with the default values, the path should be something like this: "
+"<i>C:\\Program Files\\Gnu\\GnuPg\\gpg.exe</i>."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:69
+msgid "To import the key 0x28988BF5, start <i>cmd.exe</i> and type:"
+msgstr ""
+
+#. type: Content of: <div><div><pre>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:71
+#, no-wrap
+msgid ""
+"C:\\Program Files\\Gnu\\GnuPg\\gpg.exe --keyserver hkp://keys.gnupg.net "
+"--recv-keys 0x28988BF5"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:73
+#: /tmp/6bL_6afI3I.xml:90
+msgid "<b>Mac and Linux</b>"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:74
+msgid ""
+"Whether you have a Mac or you run Linux, you will need to use the terminal "
+"to run GnuPG. Mac users can find the terminal under \"Applications\". If you"
+" run Linux and use Gnome, the terminal should be under \"Applications menu\""
+" and \"Accessories\". KDE users can find the terminal under \"Menu\" and "
+"\"System\"."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:79
+msgid "To import the key 0x28988BF5, start the terminal and type:"
+msgstr ""
+
+#. type: Content of: <div><div><pre>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:81
+#, no-wrap
+msgid "gpg --keyserver hkp://keys.gnupg.net --recv-keys 0x28988BF5"
+msgstr ""
+
+#. type: Content of: <div><div><h3>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:83
+msgid "Step Two: Verify the fingerprints"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:85
+msgid ""
+"After importing the key, you will want to verify that the fingerprint is "
+"correct."
+msgstr ""
+
+#. type: Content of: <div><div><pre>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:88
+#, no-wrap
+msgid "C:\\Program Files\\Gnu\\GnuPg\\gpg.exe --fingerprint (insert keyid here)"
+msgstr ""
+
+#. type: Content of: <div><div><pre>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:91
+#, no-wrap
+msgid "gpg --fingerprint (insert keyid here)"
+msgstr ""
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:93
+msgid "The fingerprints for the keys should be:"
+msgstr ""
+
+#. type: Content of: <div><div><pre>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:96
+#, no-wrap
+msgid ""
+" pub 1024D/28988BF5 2000-02-27\n"
+" Key fingerprint = B117 2656 DFF9 83C3 042B C699 EB5A 896A 2898 8BF5\n"
+" uid Roger Dingledine <arma(a)mit.edu>\n"
+"\n"
+" pub 3072R/165733EA 2004-07-03\n"
+" Key fingerprint = B35B F85B F194 89D0 4E28 C33C 2119 4EBB 1657 33EA\n"
+" uid Nick Mathewson <nickm(a)alum.mit.edu>\n"
+" uid Nick Mathewson <nickm(a)wangafu.net>\n"
+" uid Nick Mathewson <nickm(a)freehaven.net>\n"
+"\n"
+" pub 1024D/31B0974B 2003-07-17\n"
+" Key fingerprint = 0295 9AA7 190A B9E9 027E 0736 3B9D 093F 31B0 974B\n"
+" uid Andrew Lewman (phobos) <phobos(a)rootme.org>\n"
+" uid Andrew Lewman <andrew(a)lewman.com>\n"
+" uid Andrew Lewman <andrew(a)torproject.org>\n"
+" sub 4096g/B77F95F7 2003-07-17\n"
+"\n"
+" pub 1024D/94C09C7F 1999-11-10\n"
+" Key fingerprint = 5B00 C96D 5D54 AEE1 206B AF84 DE7A AF6E 94C0 9C7F\n"
+" uid Peter Palfrader\n"
+" uid Peter Palfrader <peter(a)palfrader.org>\n"
+" uid Peter Palfrader <weasel(a)debian.org>\n"
+"\n"
+" pub 1024D/9A753A6B 2009-09-11\n"
+" Key fingerprint = 553D 7C2C 626E F16F 27F3 30BC 95E3 881D 9A75 3A6B\n"
+" uid Tomás Touceda <chiiph(a)gmail.com>\n"
+" sub 1024g/33BE0E5B 2009-09-11\n"
+"\n"
+" pub 1024D/5FA14861 2005-08-17\n"
+" Key fingerprint = 9467 294A 9985 3C9C 65CB 141D AF7E 0E43 5FA1 4861\n"
+" uid Matt Edman <edmanm(a)rpi.edu>\n"
+" uid Matt Edman <Matt_Edman(a)baylor.edu>\n"
+" uid Matt Edman <edmanm2(a)cs.rpi.edu>\n"
+" sub 4096g/EA654E59 2005-08-17\n"
+"\n"
+" pub 1024D/9ABBEEC6 2009-06-17\n"
+" Key fingerprint = 6827 8CC5 DD2D 1E85 C4E4 5AD9 0445 B7AB 9ABB EEC6\n"
+" uid Damian Johnson (www.atagar.com) <atagar1(a)gmail.com>\n"
+" uid Damian Johnson <atagar(a)torproject.org>\n"
+" sub 2048g/146276B2 2009-06-17\n"
+" sub 2048R/87F30690 2010-08-07\n"
+"\n"
+" pub 4096R/E012B42D 2010-05-07\n"
+" Key fingerprint = D8C9 AF51 CAA9 CAEA D3D8 9C9E A34F A745 E012 B42D\n"
+" uid Jacob Appelbaum <jacob(a)appelbaum.net>\n"
+" uid Jacob Appelbaum <jacob(a)torproject.org>\n"
+" sub 4096R/7CA91A52 2010-05-07 [expires: 2011-05-07]\n"
+"\n"
+" pub 2048R/63FEE659 2003-10-16\n"
+" Key fingerprint = 8738 A680 B84B 3031 A630 F2DB 416F 0610 63FE E659\n"
+" uid Erinn Clark <erinn(a)torproject.org>\n"
+" uid Erinn Clark <erinn(a)debian.org>\n"
+" uid Erinn Clark <erinn(a)double-helix.org>\n"
+" sub 2048R/EB399FD7 2003-10-16\n"
+"\n"
+" pub 1024D/F1F5C9B5 2010-02-03\n"
+" Key fingerprint = C2E3 4CFC 13C6 2BD9 2C75 79B5 6B8A AEB1 F1F5 C9B5\n"
+" uid Erinn Clark <erinn(a)torproject.org>\n"
+" sub 1024g/7828F26A 2010-02-03\n"
+"\n"
+" pub 1024D/DDC6C0AD 2006-07-26\n"
+" Key fingerprint = BECD 90ED D1EE 8736 7980 ECF8 1B0C A30C DDC6 C0AD\n"
+" uid Mike Perry <mikeperry(a)fscked.org>\n"
+" uid Mike Perry <mikepery(a)fscked.org>\n"
+" sub 4096g/AF0A91D7 2006-07-26\n"
+"\n"
+" pub 1024D/F7C11265 2007-03-09 [expires: 2012-03-01]\n"
+" Key fingerprint = FC8A EEF1 792E EE71 D721 7D47 D0CF 963D F7C1 1265\n"
+" uid Karsten Loesing <karsten.loesing(a)gmx.net>\n"
+" sub 2048g/75D85E4B 2007-03-09 [expires: 2012-03-01]\n"
+"\n"
+" pub 1024D/22F6856F 2006-08-19\n"
+" Key fingerprint = DDB4 6B5B 7950 CD47 E59B 5189 4C09 25CF 22F6 856F\n"
+" uid Robert Hogan <robert(a)roberthogan.net>\n"
+" sub 1024g/FC4A9460 2006-08-19\n"
+"\n"
+" "
+msgstr ""
+
+#. type: Content of: <div><div><h3>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:174
+msgid "Step Three: Verify the downloaded package"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:176
+msgid ""
+"To verify the signature of the package you downloaded, you will need to "
+"download the \".asc\" file as well."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:179
+msgid ""
+"In the following examples, the user Alice downloads packages for Windows, "
+"Mac OS X and Linux and also verifies the signature of each package. All "
+"files are saved on the desktop."
+msgstr ""
+
+#. type: Content of: <div><div><pre>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:184
+#, no-wrap
+msgid ""
+"C:\\Program Files\\Gnu\\GnuPg\\gpg.exe --verify C:\\Users\\Alice\\Desktop"
+"\\<file-win32-bundle-stable>.asc C:\\Users\\Alice\\Desktop\\<file-win32"
+"-bundle-stable>"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:186
+msgid "<b>Mac:</b>"
+msgstr ""
+
+#. type: Content of: <div><div><pre>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:187
+#, no-wrap
+msgid ""
+"gpg --verify /Users/Alice/<file-osx-x86-bundle-stable>.asc /Users/Alice"
+"/<file-osx-x86-bundle-stable>"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:189
+msgid "<b>Linux</b>"
+msgstr ""
+
+#. type: Content of: <div><div><pre>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:190
+#, no-wrap
+msgid ""
+"gpg --verify /home/Alice/Desktop/<file-source-stable>.asc "
+"/home/Alice/Desktop/<file-source-stable>"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:193
+msgid ""
+"After verifying, GnuPG will come back saying something like \"Good "
+"signature\" or \"BAD signature\". The output should look something like "
+"this:"
+msgstr ""
+
+#. type: Content of: <div><div><pre>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:198
+#, no-wrap
+msgid ""
+" gpg: Signature made Tue 16 Mar 2010 05:55:17 AM CET using DSA key ID 28988BF5\n"
+" gpg: Good signature from \"Roger Dingledine <arma(a)mit.edu>\"\n"
+" gpg: WARNING: This key is not certified with a trusted signature!\n"
+" gpg: There is no indication that the signature belongs to the owner.\n"
+" Primary key fingerprint: B117 2656 DFF9 83C3 042B C699 EB5A 896A 2898 8BF5\n"
+" "
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:206
+msgid ""
+"Notice that there is a warning because you haven't assigned a trust index to"
+" this person. This means that GnuPG verified that the key made that "
+"signature, but it's up to you to decide if that key really belongs to the "
+"developer. The best method is to meet the developer in person and exchange "
+"key fingerprints."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:213
+msgid ""
+"For your reference, this is an example of a <em>BAD</em> verification. It "
+"means that the signature and file contents do not match. In this case, you "
+"should not trust the file contents:"
+msgstr ""
+
+#. type: Content of: <div><div><pre>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:218
+#, no-wrap
+msgid ""
+" gpg: Signature made Tue 20 Apr 2010 12:22:32 PM CEST using DSA key ID 28988BF5\n"
+" gpg: BAD signature from \"Roger Dingledine <arma(a)mit.edu>\"\n"
+" "
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:222
+msgid "<b>RPM-based distributions :</b>"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:223
+msgid ""
+"In order to manually verify the signatures on the RPM packages, you must use"
+" the <code>rpm</code> tool like so: <br />"
+msgstr ""
+
+#. type: Content of: <div><div><p><pre>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:226
+#, no-wrap
+msgid "rpm -K filename.rpm"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:229
+msgid "<b>Debian:</b>"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:230
+msgid ""
+"If you are running Tor on Debian you should read the instructions on <a "
+"href=\"<page docs/debian>#packages\">importing these keys to apt</a>."
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/tor/website/docs/en/verifying-signatures.wml:233
+msgid ""
+"If you wish to learn more about GPG, see <a "
+"href=\"http://www.gnupg.org/documentation/\">http://www.gnupg.org/documentation/</a>."
+msgstr ""
+
+
Added: translation/trunk/projects/website/po/vi/download/3-low.download.po
===================================================================
--- translation/trunk/projects/website/po/vi/download/3-low.download.po (rev 0)
+++ translation/trunk/projects/website/po/vi/download/3-low.download.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -0,0 +1,567 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR The Tor Project, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-02 16:59+0200\n"
+"PO-Revision-Date: 2011-05-23 21:10+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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: vi\n"
+"Plural-Forms: nplurals=1; plural=0\n"
+
+#. type: Content of: <div><div>
+#: /home/runa/tor/website/download/en/download.wml:7
+msgid ""
+"<a href=\"<page index>\">Home » </a><a href=\"<page "
+"download/download>\">Download</a>"
+msgstr ""
+
+#. type: Content of: <div><div><h1>
+#: /home/runa/tor/website/download/en/download.wml:9
+msgid "Download Tor"
+msgstr ""
+
+#. type: Content of: <div><div><div><h2>
+#: /home/runa/tor/website/download/en/download.wml:12
+msgid "Want Tor to really work?"
+msgstr ""
+
+#. type: Content of: <div><div><div><p>
+#: /home/runa/tor/website/download/en/download.wml:13
+msgid ""
+"...then please don't just install it and go on. You need to change some of "
+"your habits, and reconfigure your software! Tor by itself is <em>NOT</em> "
+"all you need to maintain your anonymity. Read the <a href=\"#warning\">full "
+"list of warnings</a>."
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td><div>
+#: /home/runa/tor/website/download/en/download.wml:20
+msgid "<a name=\"Windows\">Microsoft Windows</a>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:23
+msgid "The Tor Software for Windows comes bundled in four different ways:"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td><ul><li>
+#: /home/runa/tor/website/download/en/download.wml:25 /tmp/4ybE8mkvwB.xml:88
+#: /tmp/4ybE8mkvwB.xml:126
+msgid ""
+"The <strong>Tor Browser Bundle</strong> contains everything you need to "
+"safely browse the Internet. This package requires no installation. Just "
+"extract it and run. <a href=\"<page projects/torbrowser>\">Learn more "
+"»</a>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td><ul><li>
+#: /home/runa/tor/website/download/en/download.wml:26
+msgid ""
+"The <strong>Vidalia Bundle</strong> contains Tor, <a href=\"<page "
+"projects/vidalia>\">Vidalia</a>, Polipo, and Torbutton for installation on "
+"your system. You need your own Firefox, and you'll need to configure other "
+"applications if you want them to use Tor."
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td><ul><li>
+#: /home/runa/tor/website/download/en/download.wml:27
+msgid ""
+"The <strong>Bridge-by-Default Vidalia Bundle</strong> is a <strong>Vidalia "
+"Bundle</strong> which is configured to be a <a href=\"<page "
+"docs/bridges>\">bridge</a> in order to help censored users reach the Tor "
+"network."
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td><ul><li>
+#: /home/runa/tor/website/download/en/download.wml:31
+msgid ""
+"The <strong>Expert Package</strong> contains just Tor and nothing else. "
+"You'll need to configure Tor and all of your applications manually."
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td><p>
+#: /home/runa/tor/website/download/en/download.wml:33 /tmp/4ybE8mkvwB.xml:91
+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 "
+"for many months. Alpha or unstable packages are released so you can help us"
+" test new features and bugfixes. Even though they have a higher version "
+"number than the stable versions listed above, there is a much higher chance "
+"of serious reliability and security bugs in these downloads. Please be "
+"prepared to <a href=\"https://bugs.torproject.org/\">report bugs</a>."
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td><p>
+#: /home/runa/tor/website/download/en/download.wml:34
+msgid ""
+"The current stable version of Tor for Windows is <version-win32-stable>. "
+"The current alpha/unstable version of Tor for Windows is <version-"
+"win32-alpha>."
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:38
+msgid ""
+"<span class=\"windows\"> Tor Browser Bundle (English) version <version-"
+"torbrowserbundle>, works with Windows 7, Vista, and XP. <a "
+"href=\"../dist/torbrowser/tor-browser-<version-torbrowserbundle>_en-"
+"US.exe\">Download</a> (<a href=\"../dist/torbrowser/tor-browser"
+"-<version-torbrowserbundle>_en-US.exe.asc\">sig</a>) </span>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:45
+msgid ""
+"<span class=\"windows\"> Tor Browser Instant Messaging Bundle (English) has "
+"been <a href=\"https://blog.torproject.org/blog/tor-im-browser-bundle-"
+"discontinued-temporarily\">temporarily discontinued</a>. </span>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:52
+msgid ""
+"<span class=\"windows\"> Download <a href=\"<page "
+"projects/torbrowser>\">other language versions and the source code</a> of "
+"the Tor Browser Bundle. </span>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:57
+msgid ""
+"<span class=\"windows\"> Stable Vidalia Bundle works with Windows 7, Vista, "
+"XP, <a href=\"<package-win32-bundle-stable>\">Download Stable</a> (<a "
+"href=\"<package-win32-bundle-stable>.asc\">sig</a>) </span>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:61
+msgid ""
+"<span class=\"windows\">Unstable Vidalia Bundle works with Windows 7, Vista,"
+" XP, <a href=\"<package-win32-bundle-alpha>\">Download Unstable</a> (<a"
+" href=\"<package-win32-bundle-alpha>.asc\">sig</a>)</span>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:63
+msgid ""
+"<span class=\"windows\">Unstable Bridge-by-Default Vidalia Bundle works with"
+" Windows 7, Vista, XP, <a href=\"../dist/vidalia-bundles/vidalia-bridge-"
+"bundle-<version-win32-bridge-bundle-alpha>.exe\">Download "
+"Unstable</a> (<a href=\"../dist/vidalia-bundles/vidalia-bridge-bundle"
+"-<version-win32-bridge-bundle-alpha>.asc\">sig</a>)</span>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:66
+msgid ""
+"<span class=\"windows\">Stable Expert Bundle works with Windows 98SE, ME, "
+"Windows 7, Vista, XP, 2000, 2003 Server, <a href=\"../dist/win32/tor"
+"-<version-win32-stable>-win32.exe\">Download Stable</a> (<a "
+"href=\"../dist/win32/tor-<version-"
+"win32-stable>-win32.exe.asc\">sig</a>)</span>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:69
+msgid ""
+"<span class=\"windows\">Unstable Expert Bundle works with Windows 98SE, ME, "
+"Windows 7, Vista, XP, 2000, 2003 Server, <a href=\"../dist/win32/tor"
+"-<version-win32-alpha>-win32.exe\">Download Unstable</a> (<a "
+"href=\"../dist/win32/tor-<version-win32-alpha>-win32.exe.asc\">sig</a>) "
+"</span>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:75
+msgid ""
+"<a href=\"<page docs/tor-doc-windows>\">Documentation for Microsoft Windows "
+"clients</a>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td><div>
+#: /home/runa/tor/website/download/en/download.wml:83
+msgid "<a name=\"mac\">Apple OS X</a>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:86
+msgid "The Tor Software for OS X comes bundled in two different ways:"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td><ul><li>
+#: /home/runa/tor/website/download/en/download.wml:89
+msgid ""
+"The <strong>Vidalia Bundle</strong> contains Tor, <a href=\"<page "
+"projects/vidalia>\">Vidalia</a>, Polipo, and Torbutton for installation on "
+"your system. You need your own Firefox, and you'll need to configure other "
+"applications if you want them to use Tor."
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td><p>
+#: /home/runa/tor/website/download/en/download.wml:92
+msgid ""
+"The current stable version of Tor for OS X is <version-osx-x86-stable>. The"
+" current alpha/unstable version of Tor for OS X is <version-osx-x86-alpha>."
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:96
+msgid ""
+"<span class=\"mac\">Tor Browser Bundle for OS X Intel (beta version), <a "
+"href=\"../dist/torbrowser/osx/TorBrowser-<version-torbrowserbundleosx>-dev-"
+"osx-i386-en-US.zip\">Download</a> (<a "
+"href=\"../dist/torbrowser/osx/TorBrowser-<version-torbrowserbundleosx>-dev-"
+"osx-i386-en-US.zip.asc\">sig</a>) </span>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:103
+msgid ""
+"<span class=\"mac\">Stable Vidalia Bundle for OS X Intel, <a href"
+"=\"<package-osx-x86-bundle-stable>\">Download Stable</a> (<a href"
+"=\"<package-osx-x86-bundle-stable>.asc\">sig</a>)</span>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:106
+msgid ""
+"<span class=\"mac\">Unstable Vidalia Bundle for OS X Intel, <a href"
+"=\"<package-osx-x86-bundle-alpha>\">Download Unstable</a> (<a href"
+"=\"<package-osx-x86-bundle-alpha>.asc\">sig</a>)</span>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:109
+msgid ""
+"<span class=\"mac\">Stable Vidalia Bundle for OS X PowerPC, <a href"
+"=\"<package-osx-ppc-bundle-stable>\">Download Stable</a> (<a href"
+"=\"<package-osx-ppc-bundle-stable>.asc\">sig</a>)</span>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:112
+msgid ""
+"<span class=\"mac\">Unstable Vidalia Bundle for OS X PowerPC, <a href"
+"=\"<package-osx-ppc-bundle-alpha>\">Download Unstable</a> (<a href"
+"=\"<package-osx-ppc-bundle-alpha>.asc\">sig</a>)</span>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:115
+msgid ""
+"<a href=\"<page docs/tor-doc-osx>\">Documentation for Apple OS X "
+"clients</a>."
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td><div>
+#: /home/runa/tor/website/download/en/download.wml:122
+msgid "<a name=\"linux\">Linux/Unix</a>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:124
+msgid "The Tor Software comes bundled in two different ways:"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td><ul><li>
+#: /home/runa/tor/website/download/en/download.wml:127
+msgid ""
+"Read how to use <a href=\"<page download/download-unix>\">our repositories "
+"for the Tor software</a>."
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:132
+msgid ""
+"<span class=\"linux\">Tor Browser Bundle for GNU/Linux (beta version) on "
+"i686, <a href=\"../dist/torbrowser/linux/tor-browser-gnu-linux-i686"
+"-<version-torbrowserbundlelinux32>-dev-en-US.tar.gz\">Download</a> (<a"
+" href=\"../dist/torbrowser/linux/tor-browser-gnu-linux-i686-<version-"
+"torbrowserbundlelinux32>-dev-en-US.tar.gz.asc\">sig</a>)</span>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:137
+msgid ""
+"<span class=\"linux\">Tor Browser Bundle for GNU/Linux (beta version) on "
+"x86_64, <a href=\"../dist/torbrowser/linux/tor-browser-gnu-linux-x86_64"
+"-<version-torbrowserbundlelinux64>-dev-en-US.tar.gz\">Download</a> (<a"
+" href=\"../dist/torbrowser/linux/tor-browser-gnu-linux-x86_64-<version-"
+"torbrowserbundlelinux64>-dev-en-US.tar.gz.asc\">sig</a>)</span>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:142
+msgid ""
+"<span class=\"linux\">Use <a href=\"<page download/download-unix>\">our "
+"repositories</a> for all other Tor-related software.</span>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td><div>
+#: /home/runa/tor/website/download/en/download.wml:147
+msgid "<a name=\"smartphones\">Tor for Smartphones</a>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:150
+msgid "Android-based phones, tablets, computers"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:151
+msgid ""
+"<a href=\"../dist/android/<version-androidbundle-tor>-orbot-<version-"
+"androidbundle-orbot>.apk\">Android Bundle</a>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:152
+msgid "<a href=\"<page docs/android>\">Android Instructions</a>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:155
+msgid "iPhone, iPod Touch, iPad"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:156
+msgid ""
+"<span class=\"mac\"><a href=\"http://sid77.slackware.it/iphone/\">Test "
+"packages by Marco</a></span>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:159
+msgid "Nokia Maemo/N900"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:161
+msgid ""
+"<span class=\"nokia\"><a href=\"<page docs/N900>\">Experimental "
+"instructions</a></span>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td><div>
+#: /home/runa/tor/website/download/en/download.wml:169
+msgid "<a name=\"source\">Source Code</a>"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:172
+msgid ""
+"The current stable version of Tor is <version-stable>. Its <a "
+"href=\"https://gitweb.torproject.org/tor.git/blob/release-0.2.1:/ChangeLog\">release"
+" notes</a> are available."
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:175
+msgid ""
+"The current unstable/alpha version of Tor is <version-alpha>. Its <a "
+"href=\"https://gitweb.torproject.org/tor.git/blob/refs/heads/release-0.2.2:/Change…">Changelog"
+" </a> is available."
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:181
+msgid "Source Tarballs"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:182
+msgid "./configure && make && src/or/tor"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:183
+msgid ""
+"<a href=\"../dist/tor-<version-stable>.tar.gz\">Download Stable</a> (<a "
+"href=\"../dist/tor-<version-stable>.tar.gz.asc\">sig</a>)"
+msgstr ""
+
+#. type: Content of: <div><div><table><tr><td>
+#: /home/runa/tor/website/download/en/download.wml:184
+msgid ""
+"<a href=\"../dist/tor-<version-alpha>.tar.gz\">Download Unstable</a> (<a "
+"href=\"../dist/tor-<version-alpha>.tar.gz.asc\">sig</a>)"
+msgstr ""
+
+#. type: Content of: <div><div><div>
+#: /home/runa/tor/website/download/en/download.wml:188 /tmp/4ybE8mkvwB.xml:261
+msgid "<br>"
+msgstr ""
+
+#. type: Content of: <div><div><div>
+#: /home/runa/tor/website/download/en/download.wml:191
+msgid "<a name=\"warning\"></a> <a name=\"Warning\"></a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><h2>
+#: /home/runa/tor/website/download/en/download.wml:193
+msgid "<a class=\"anchor\" href=\"#warning\">Want Tor to really work?</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><p>
+#: /home/runa/tor/website/download/en/download.wml:194
+msgid ""
+"...then please don't just install it and go on. You need to change some of "
+"your habits, and reconfigure your software! Tor by itself is <em>NOT</em> "
+"all you need to maintain your anonymity. There are several major pitfalls to"
+" watch out for:"
+msgstr ""
+
+#. type: Content of: <div><div><div><ol><li>
+#: /home/runa/tor/website/download/en/download.wml:199
+msgid ""
+"Tor only protects Internet applications that are configured to send their "
+"traffic through Tor — it doesn't magically anonymize all your traffic "
+"just because you install it. We recommend you use <a "
+"href=\"http://www.mozilla.com/en-US/firefox/all-older.html\">Firefox</a> "
+"with the <a href=\"<page torbutton/index>\">Torbutton</a> extension."
+msgstr ""
+
+#. type: Content of: <div><div><div><ol><li>
+#: /home/runa/tor/website/download/en/download.wml:207
+msgid ""
+"Torbutton blocks browser plugins such as Java, Flash, ActiveX, RealPlayer, "
+"Quicktime, Adobe's PDF plugin, and others: they can be manipulated into "
+"revealing your IP address. For example, that means Youtube is disabled. If "
+"you really need your Youtube, you can <a href=\"<page torbutton/torbutton-"
+"faq>#noflash\">reconfigure Torbutton</a> to allow it; but be aware that "
+"you're opening yourself up to potential attack. Also, extensions like Google"
+" toolbar look up more information about the websites you type in: they may "
+"bypass Tor and/or broadcast sensitive information. Some people prefer using "
+"two browsers (one for Tor, one for non-Tor browsing)."
+msgstr ""
+
+#. type: Content of: <div><div><div><ol><li>
+#: /home/runa/tor/website/download/en/download.wml:220
+msgid ""
+"Beware of cookies: if you ever browse without Tor and a site gives you a "
+"cookie, that cookie could identify you even when you start using Tor again. "
+"Torbutton tries to handle your cookies safely. <a "
+"href=\"https://addons.mozilla.org/firefox/82/\">CookieCuller</a> can help "
+"protect any cookies you do not want to lose."
+msgstr ""
+
+#. type: Content of: <div><div><div><ol><li>
+#: /home/runa/tor/website/download/en/download.wml:228
+msgid ""
+"Tor anonymizes the origin of your traffic, and it encrypts everything "
+"between you and the Tor network and everything inside the Tor network, but "
+"<a href=\"<wikifaq>#SoImtotallyanonymousifIuseTor\">it can't encrypt your "
+"traffic between the Tor network and its final destination.</a> If you are "
+"communicating sensitive information, you should use as much care as you "
+"would on the normal scary Internet — use HTTPS or other end-to-end "
+"encryption and authentication. <a href=\"https://www.eff.org/https-"
+"everywhere\">HTTPS Everywhere</a> is a Firefox extension produced as a "
+"collaboration between The Tor Project and the Electronic Frontier "
+"Foundation. It encrypts your communications with a number of major websites."
+msgstr ""
+
+#. type: Content of: <div><div><div><ol><li>
+#: /home/runa/tor/website/download/en/download.wml:242
+msgid ""
+"While Tor blocks attackers on your local network from discovering or "
+"influencing your destination, it opens new risks: malicious or misconfigured"
+" Tor exit nodes can send you the wrong page, or even send you embedded Java "
+"applets disguised as domains you trust. Be careful opening documents or "
+"applications you download through Tor, unless you've verified their "
+"integrity."
+msgstr ""
+
+#. type: Content of: <div><div><div><ol><li>
+#: /home/runa/tor/website/download/en/download.wml:251
+msgid ""
+"Tor tries to prevent attackers from learning what destinations you connect "
+"to. It doesn't prevent somebody watching your traffic from learning that "
+"you're using Tor. You can mitigate (but not fully resolve) the risk by using"
+" a <a href=\"<page docs/bridges>\">Tor bridge relay</a> rather than "
+"connecting directly to the public Tor network, but ultimately the best "
+"protection here is a social approach: the more Tor users there are near you "
+"and the more <a href=\"<page about/torusers>\">diverse</a> their interests, "
+"the less dangerous it will be that you are one of them."
+msgstr ""
+
+#. type: Content of: <div><div><div><p>
+#: /home/runa/tor/website/download/en/download.wml:263
+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 "
+"getinvolved/volunteer>#Documentation\">identifying and documenting all the "
+"issues</a>."
+msgstr ""
+
+#. type: Content of: <div><div><div><div><h2>
+#: /home/runa/tor/website/download/en/download.wml:275
+msgid "Jump to:"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><ul><li>
+#: /home/runa/tor/website/download/en/download.wml:277
+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:278
+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:279
+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:280
+msgid "<a href=\"#smartphones\">Smartphones</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><ul><li>
+#: /home/runa/tor/website/download/en/download.wml:281
+msgid "<a href=\"#source\">Source Code</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><ul><li>
+#: /home/runa/tor/website/download/en/download.wml:282
+msgid "<a href=\"<page donate/donate>\">Please consider a donation</a>"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><h2>
+#: /home/runa/tor/website/download/en/download.wml:290
+msgid "What is the (sig) link?"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><p>
+#: /home/runa/tor/website/download/en/download.wml:291
+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:294
+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:300
+msgid "Having Trouble?"
+msgstr ""
+
+#. type: Content of: <div><div><div><div><ul><li>
+#: /home/runa/tor/website/download/en/download.wml:302
+msgid "<a href=\"<page docs/documentation>\">Read the fine manuals</a>"
+msgstr ""
+
+
Added: translation/trunk/projects/website/po/vi/projects/3-low.gettor.po
===================================================================
--- translation/trunk/projects/website/po/vi/projects/3-low.gettor.po (rev 0)
+++ translation/trunk/projects/website/po/vi/projects/3-low.gettor.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -0,0 +1,241 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR The Tor Project, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+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 17:27+0000\n"
+"PO-Revision-Date: 2011-05-23 20:54+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: vi\n"
+"Plural-Forms: nplurals=1; plural=0\n"
+
+#. type: Content of: <div><div>
+#: /home/runa/transifex/website/projects/en/gettor.wml:8
+msgid ""
+"<a href=\"<page index>\">Home » </a> <a href=\"<page "
+"projects/projects>\">Projects » </a> <a href=\"<page "
+"projects/gettor>\">GetTor » </a>"
+msgstr ""
+"<a href=\"<page index>\">Home » </a> <a href=\"<page "
+"projects/projects>\">Projects » </a> <a href=\"<page "
+"projects/gettor>\">GetTor » </a>"
+
+#. type: Content of: <div><div><h1>
+#: /home/runa/transifex/website/projects/en/gettor.wml:14
+msgid "GetTor e-mail autoresponder"
+msgstr "Hệ thống tự động trả lời email GetTor"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/transifex/website/projects/en/gettor.wml:15
+msgid ""
+"GetTor is a program for serving Tor and related files over SMTP. Users "
+"interact with GetTor by sending it email."
+msgstr ""
+"GetTor là một chương trình cung cấp bộ cài Tor và các tập tin liên quan "
+"thông qua email."
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/transifex/website/projects/en/gettor.wml:18
+msgid "Finding GetTor"
+msgstr "Tìm GetTor"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/transifex/website/projects/en/gettor.wml:20
+msgid ""
+"It is assumed that a user has a method of finding a valid GetTor email "
+"robot. Currently the best known GetTor email is gettor @ torproject.org. "
+"This should be the most current stable GetTor robot as it is operated by the"
+" Tor Project."
+msgstr ""
+"Mỗi người dùng có thể có một phương pháp tìm ra địa chỉ email còn hiệu ực "
+"của GetTor. Hiện tại, địa chỉ email GetTor ổn định nhất là "
+"gettor(a)torproject.org, được quản lí bởi Tor Project."
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/transifex/website/projects/en/gettor.wml:26
+msgid "Requirements for using GetTor"
+msgstr "Yêu cầu cần thết để sử dụng GetTor"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/transifex/website/projects/en/gettor.wml:28
+msgid ""
+"Users communicate with the GetTor robot by sending messages via email. The "
+"messages are currently English keywords. The user must use an email provider"
+" that signs their email with DKIM. A user will be alerted if their email "
+"provider is unsupported."
+msgstr ""
+"Người sử dụng dùng GetTor bằng cách gửi email. Hiện tại, các từ khóa phải "
+"bằng tiếng Anh. Người dùng phải sử dụng dịch vụ email của nhà cung cấp dịch "
+"vụ nào hỗ trợ DKIM. Người dùng sẽ được thông báo khi gửi email từ nhà cung "
+"cấp dịch vụ không được hỗ trợ."
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/transifex/website/projects/en/gettor.wml:33
+msgid "Using GetTor"
+msgstr "Sử dụng GetTor"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/transifex/website/projects/en/gettor.wml:35
+msgid ""
+"Currently, users have a limited set of options. It is best to send an email "
+"with a message body (the subject line can be blank) that consists of only "
+"the word 'help' to receive instructions. This will send the most current set"
+" of choices. An example reply to a request for help follows:"
+msgstr ""
+"Hiện tại, người dùng chỉ có một số lựa chọn giới hạn. Tốt nhất là bạn nên "
+"gửi một email với phần nội dung thư là từ \"help\" (không có ngoặc kép; tiêu"
+" đề thư có thể để trống) để lấy thông tin trợ giúp."
+
+#. type: Content of: <div><div><pre>
+#: /home/runa/transifex/website/projects/en/gettor.wml:42
+#, no-wrap
+msgid ""
+" Hello, This is the \"gettor\" robot.\n"
+"\n"
+" I am sorry, but your request was not understood. Please select one\n"
+" of the following package names:\n"
+"\n"
+" panther-bundle\n"
+" source-bundle\n"
+" windows-bundle\n"
+" tiger-bundle\n"
+" tor-browser-bundle\n"
+" tor-im-browser-bundle\n"
+"\n"
+" Please send me another email. It only needs a single package name\n"
+" anywhere in the body of your email.\n"
+msgstr ""
+" Xin chào, đây là GetTor.\n"
+"\n"
+" Xin lỗi nhưng GetTor không hiểu yêu cầu của bạn. Hãy chọn\n"
+" một trong các tập tin sau:\n"
+"\n"
+" panther-bundle\n"
+" source-bundle\n"
+" windows-bundle\n"
+" tiger-bundle\n"
+" tor-browser-bundle\n"
+" tor-im-browser-bundle\n"
+"\n"
+" Xin gửi GetTor một email khác, nội dung thư chỉ là tên của tập tin mà bạn muốn.\n"
+
+#. type: Content of: <div><div>
+#: /home/runa/transifex/website/projects/en/gettor.wml:57
+#: /tmp/0HEhMLICyt.xml:85
+msgid "<br>"
+msgstr "<br>"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/transifex/website/projects/en/gettor.wml:59
+msgid ""
+"For example, it is possible to fetch the most current Windows bundle. A user"
+" may send a request with only the word 'windows-bundle' in the body of the "
+"email. An example reply would look something like the following:"
+msgstr ""
+"Ví dụ, bạn có thể lấy phần mềm phiên bản mới nhất dùng cho Windows. Bạn chỉ "
+"cần gửi email với cụm từ \"windows-bundle\" trong nội dung thư. Email trả "
+"lời sẽ giống như sau:"
+
+#. type: Content of: <div><div><pre>
+#: /home/runa/transifex/website/projects/en/gettor.wml:64
+#, no-wrap
+msgid ""
+" Hello! This is the \"gettor\" robot.\n"
+"\n"
+" Here's your requested software as a zip file. Please unzip the\n"
+" package and verify the signature.\n"
+"\n"
+" Hint: If your computer has GnuPG installed, use the gpg\n"
+" commandline tool as follows after unpacking the zip file:\n"
+"\n"
+" gpg --verify <packagename>.asc <packagename>\n"
+"\n"
+" The output should look somewhat like this:\n"
+"\n"
+" gpg: Good signature from \"Roger Dingledine <arma(a)mit.edu>\"\n"
+"\n"
+" If you're not familiar with commandline tools, try looking for\n"
+" a graphical user interface for GnuPG on this website:\n"
+"\n"
+" http://www.gnupg.org/related_software/frontends.html\n"
+"\n"
+" Have fun.\n"
+msgstr ""
+" Xin chào! Đây là GetTor.\n"
+"\n"
+" Đây là phần mềm bạn yêu cầu dưới dạng nén zip. Xin giải nén\n"
+" tập tin và kiểm tra chữ kí.\n"
+"\n"
+" Gợi ý: Nếu máy tính có cài GnuPG, sử dụng công cụ dòng lệnh gpg để giải nén tập tin zip như sau:\n"
+"\n"
+" gpg --verify <têntậptin>.asc <têntậptin>\n"
+"\n"
+" Kết quả trả về trong cửa sổ lệnh sẽ giống như sau:\n"
+"\n"
+" gpg: Good signature from \"Roger Dingledine <arma(a)mit.edu>\"\n"
+"\n"
+" Nếu bạn không quen với những công cụ dòng lệnh, hãy thử tìm một gói giao diện đồ họa cho GnuPG trên website:\n"
+"\n"
+" http://www.gnupg.org/related_software/frontends.html\n"
+"\n"
+" Chúc vui vẻ.\n"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/transifex/website/projects/en/gettor.wml:87
+msgid ""
+"The email should also include an attachment with the name 'windows-bundle.z'"
+" that can be downloaded by the user. The user must now unpack the zip file "
+"and if they wish, they may verify that the file is from the Tor Project."
+msgstr ""
+"Email cũng sẽ có một tập tin đính kèm tên \"windows-bundle.z\". Bạn phải "
+"giải nén tập tin zip và kiểm tra chữ kí từ Tor Project nếu muốn."
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/transifex/website/projects/en/gettor.wml:92
+msgid "Unpacking and verifying the requested files"
+msgstr "Đang giải nén và kiểm tra các tập tin được yêu cầu"
+
+#. type: Content of: <div><div><p>
+#: /home/runa/transifex/website/projects/en/gettor.wml:94
+msgid ""
+"A user should have software for decompressing .zip files. It will contain at"
+" least two files, the requested bundle and its digital signature. Before a "
+"user installs the bundle, they should verify the signature."
+msgstr ""
+"Bạn nên có một phần mềm để giải nén tập tin .zip. Tập tin đó chứa ít nhất 2 "
+"tập tin: tập tin cài đặt và chữ kí điện tử. Trước khi bạn cài đặt, nên kiểm "
+"tra chữ kí."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/transifex/website/projects/en/gettor.wml:99
+msgid ""
+"Users should follow the most current instructions for <a href=\"<page docs"
+"/verifying-signatures>\">signature verification</a>."
+msgstr ""
+"Bạn nên làm theo những chỉ dẫn để <a href=\"<page docs/verifying-"
+"signatures>\">kiểm tra chữ kí</a>."
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/transifex/website/projects/en/gettor.wml:102
+msgid "Installing the requested files"
+msgstr "Đang cài đặt những tập tin được yêu cầu."
+
+#. type: Content of: <div><div><p>
+#: /home/runa/transifex/website/projects/en/gettor.wml:104
+msgid ""
+"After verifying that the file is valid, a user should simply run the "
+"program. If a user requested the source code to Tor, we assume that they're"
+" able to follow the build instructions contained within the source itself."
+msgstr ""
+"sau khi kiểm tra tính toàn vẹn của các tập tin, bạn chỉ cần chạy chương "
+"trình. Nếu bạn yêu cầu mã nguồn Tor, chúng tôi cho rằng bạn có khả năng làm"
+" theo những chỉ dẫn trong bộ mã nguồn."
+
+
Added: translation/trunk/projects/website/po/vi/projects/4-optional.torbrowser-details.po
===================================================================
--- translation/trunk/projects/website/po/vi/projects/4-optional.torbrowser-details.po (rev 0)
+++ translation/trunk/projects/website/po/vi/projects/4-optional.torbrowser-details.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -0,0 +1,97 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR The Tor Project, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+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-05-23 20:55+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: vi\n"
+"Plural-Forms: nplurals=1; plural=0\n"
+
+#. type: Content of: <div><div>
+#: /home/runa/transifex/website/projects/en/torbrowser-details.wml:9
+msgid ""
+"<a href=\"<page index>\">Home » </a> <a href=\"<page "
+"projects/projects>\">Projects » </a> <a href=\"<page "
+"projects/torbrowser>\">TorBrowser</a>"
+msgstr ""
+"<a href=\"<page index>\">Home » </a> <a href=\"<page "
+"projects/projects>\">Projects » </a> <a href=\"<page "
+"projects/torbrowser>\">TorBrowser</a>"
+
+#. type: Content of: <div><div><h2>
+#: /home/runa/transifex/website/projects/en/torbrowser-details.wml:17
+msgid "Tor Browser Bundle: Details"
+msgstr "Tor Browser Bundle: Chi tiết"
+
+#. type: Content of: <div><div>
+#: /home/runa/transifex/website/projects/en/torbrowser-details.wml:18
+msgid "<hr>"
+msgstr "<hr>"
+
+#. type: Content of: <div><div><h3>
+#: /home/runa/transifex/website/projects/en/torbrowser-details.wml:20
+msgid "Bundle contents"
+msgstr "Nội dung"
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/transifex/website/projects/en/torbrowser-details.wml:23
+msgid "Vidalia <version-torbrowser-vidalia>"
+msgstr "Vidalia <version-torbrowser-vidalia>"
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/transifex/website/projects/en/torbrowser-details.wml:24
+msgid ""
+"Tor <version-torbrowser-tor> (with <version-torbrowser-tor-components>)"
+msgstr ""
+"Tor <version-torbrowser-tor> (with <version-torbrowser-tor-components>)"
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/transifex/website/projects/en/torbrowser-details.wml:25
+msgid ""
+"FirefoxPortable <version-torbrowser-firefox> (includes Firefox <version-"
+"torbrowser-firefox> and Torbutton <version-torbrowser-torbutton>)"
+msgstr ""
+"FirefoxPortable <version-torbrowser-firefox> (bao gồm Firefox <version-"
+"torbrowser-firefox> và Torbutton <version-torbrowser-torbutton>)"
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/transifex/website/projects/en/torbrowser-details.wml:27
+msgid "Polipo <version-torbrowser-polipo>"
+msgstr "Polipo <version-torbrowser-polipo>"
+
+#. type: Content of: <div><div><ul><li>
+#: /home/runa/transifex/website/projects/en/torbrowser-details.wml:28
+msgid ""
+"Pidgin <version-torbrowser-pidgin> and OTR <version-torbrowser-otr> (only in"
+" Tor IM Browser Bundle)"
+msgstr ""
+"Pidgin <version-torbrowser-pidgin> và OTR <version-torbrowser-otr> (chỉ có "
+"trong Tor IM Browser Bundle)"
+
+#. type: Content of: <div><div><h3>
+#: /home/runa/transifex/website/projects/en/torbrowser-details.wml:31
+msgid "Building the bundle"
+msgstr ""
+
+#. type: Content of: <div><div><p>
+#: /home/runa/transifex/website/projects/en/torbrowser-details.wml:33
+msgid ""
+"To re-build the bundle, download the <a href=\"../dist/torbrowser/tor-"
+"browser-<version-torbrowserbundle>-src.tar.gz\">source distribution</a> (<a "
+"href=\"../dist/torbrowser/tor-browser-<version-"
+"torbrowserbundle>-src.tar.gz.asc\">signature</a>). See <a "
+"href=\"<tbbrepo>/README\">README</a> for the directory layout and changelog."
+" Build instructions can be found in <a href=\"<tbbrepo>/build-"
+"scripts/INSTALL\">build-scripts/INSTALL</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-05-23 20:07:40 UTC (rev 24779)
+++ translation/trunk/projects/website/po/zh_CN/about/2-medium.overview.po 2011-05-23 21:22:50 UTC (rev 24780)
@@ -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:28+0200\n"
-"PO-Revision-Date: 2011-05-23 16:09+0000\n"
+"PO-Revision-Date: 2011-05-23 21:15+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
1
0
Author: runa
Date: 2011-05-23 20:07:40 +0000 (Mon, 23 May 2011)
New Revision: 24779
Modified:
website/trunk/docs/fi/tor-doc-unix.wml
Log:
fix a link
Modified: website/trunk/docs/fi/tor-doc-unix.wml
===================================================================
--- website/trunk/docs/fi/tor-doc-unix.wml 2011-05-23 19:52:20 UTC (rev 24778)
+++ website/trunk/docs/fi/tor-doc-unix.wml 2011-05-23 20:07:40 UTC (rev 24779)
@@ -66,7 +66,7 @@
<p>
Ensimmäinen askel on verkon selaamisen säätäminen. Aloita asentamalla <a
-href="http://www.pps.jussieu.fr/~jch/software/polipo>Polipo</a>
+href="http://www.pps.jussieu.fr/~jch/software/polipo">Polipo</a>
käyttämästäsi pakettivarastosta. Polipo on välimuistina toimiva
välityspalvelin, joka suoriutuu hyvin http-pipeliningista, joten se sopii
hyvin Tor:n latensseille. Varmista, että asennat vähintään Polipon version
1
0

23 May '11
Author: runa
Date: 2011-05-23 19:52:20 +0000 (Mon, 23 May 2011)
New Revision: 24778
Added:
website/trunk/docs/fi/
website/trunk/docs/fi/debian-vidalia.wml
website/trunk/docs/fi/debian.wml
website/trunk/docs/fi/sidenav.wmi
website/trunk/docs/fi/tor-doc-unix.wml
website/trunk/docs/fr/bridges.wml
website/trunk/docs/fr/proxychain.wml
website/trunk/docs/it/tor-doc-windows.wml
website/trunk/getinvolved/fi/
website/trunk/getinvolved/fi/sidenav.wmi
website/trunk/getinvolved/fi/translation-overview.wml
website/trunk/getinvolved/it/
website/trunk/getinvolved/it/sidenav.wmi
website/trunk/getinvolved/it/translation.wml
website/trunk/projects/cy/
website/trunk/projects/cy/sidenav.wmi
website/trunk/projects/cy/torweather.wml
website/trunk/projects/vi/
website/trunk/projects/vi/gettor.wml
website/trunk/projects/vi/sidenav.wmi
website/trunk/projects/vi/torbrowser-details.wml
Modified:
website/trunk/Makefile.common
website/trunk/about/de/overview.wml
website/trunk/about/fr/overview.wml
website/trunk/about/pl/gsoc.wml
website/trunk/about/ru/overview.wml
website/trunk/de/index.wml
website/trunk/docs/de/documentation.wml
website/trunk/docs/pl/documentation.wml
website/trunk/docs/pl/faq.wml
website/trunk/docs/pl/verifying-signatures.wml
website/trunk/download/ar/download.wml
website/trunk/download/fr/download.wml
website/trunk/download/pl/download.wml
website/trunk/download/ru/download.wml
website/trunk/projects/it/vidalia.wml
website/trunk/projects/pl/vidalia.wml
Log:
new and updated translations for the website, added new languages to the Makefile
Modified: website/trunk/Makefile.common
===================================================================
--- website/trunk/Makefile.common 2011-05-23 19:44:27 UTC (rev 24777)
+++ website/trunk/Makefile.common 2011-05-23 19:52:20 UTC (rev 24778)
@@ -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
+LANGS=en ar es fr ru pl da it fa de fi vn cy
WMLFILES=$(wildcard $(patsubst %, %/*.wml, $(LANGS)))
WMIFILES=$(wildcard $(patsubst %, %/*.wmi, $(LANGS)) $(WMLBASE)/include/*.wmi )
@@ -89,6 +89,9 @@
%.html.tr: tr/%.wml en/%.wml
lang=`dirname $<` && wml $(WMLOPT) -I $$lang -I $(WMLBASE)/$$lang -D LANG=$$lang $< -o $@
+%.html.vi: vi/%.wml en/%.wml
+ lang=`dirname $<` && wml $(WMLOPT) -I $$lang -I $(WMLBASE)/$$lang -D LANG=$$lang $< -o $@
+
%.html.zh-cn: zh-cn/%.wml en/%.wml
lang=`dirname $<` && wml $(WMLOPT) -I $$lang -I $(WMLBASE)/$$lang -D LANG=$$lang $< -o $@
@@ -113,6 +116,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.cy.d: cy/%.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.es.d: es/%.wml .deps/.stamp
tmpfile=`mktemp -t tmp.XXXXXXX` \
lang=`dirname $<` && \
@@ -232,6 +242,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.vi.d: vi/%.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.zh-cn.d: zh-cn/%.wml .deps/.stamp
tmpfile=`mktemp -t tmp.XXXXXXX` \
lang=`dirname $<` && \
Modified: website/trunk/about/de/overview.wml
===================================================================
--- website/trunk/about/de/overview.wml 2011-05-23 19:44:27 UTC (rev 24777)
+++ website/trunk/about/de/overview.wml 2011-05-23 19:52:20 UTC (rev 24778)
@@ -209,7 +209,8 @@
<a name="hiddenservices"></a>
- <h3><a class="anchor" href="#hiddenservices">Hidden Services - Versteckte Dienste</a></h3>
+ <h3><a class="anchor" href="#hiddenservices">Hidden Services - Versteckte
+Dienste</a></h3>
<p>
Tor ermöglicht es seinen Benutzern auch, ihren Standort zu verstecken,
Modified: website/trunk/about/fr/overview.wml
===================================================================
--- website/trunk/about/fr/overview.wml 2011-05-23 19:44:27 UTC (rev 24777)
+++ website/trunk/about/fr/overview.wml 2011-05-23 19:52:20 UTC (rev 24778)
@@ -13,13 +13,13 @@
propos »</a>
</div>
<div id="maincol">
- <h2>Tor: Overview</h2>
+ <h2>Tor: Vue d'ensemble</h2>
<!-- BEGIN SIDEBAR -->
<div class="sidebar-left">
<h3>Sujets</h3>
<ul>
- <li><a href="<page about/overview>#inception">Inception</a></li>
+ <li><a href="<page about/overview>#inception">Création</a></li>
<li><a href="<page about/overview>#overview">Vue d'ensemble</a></li>
<li><a href="<page about/overview>#whyweneedtor">Pourquoi nous avons besoin de
Tor</a></li>
@@ -33,19 +33,20 @@
<!-- END SIDEBAR -->
<hr> <a name="inception"></a>
- <h3><a class="anchor" href="#inception">Inception</a></h3>
+ <h3><a class="anchor" href="#inception">Création</a></h3>
<p>
- Tor was originally designed, implemented, and deployed as a third-generation
-<a href="http://www.onion-router.net/">onion routing project of the
-U.S. Naval Research Laboratory</a>. It was originally developed with the
-U.S. Navy in mind, for the primary purpose of protecting government
-communications. Today, it is used every day for a wide variety of purposes
-by normal people, the military, journalists, law enforcement officers,
-activists, and many others. </p>
+ Tor a été initialement conçu, mis en œuvre et déployé en tant que troisième
+génération du <a href="http://www.onion-router.net/">projet routage en
+oignon du Naval Research Laboratory des États-Unis</a> . Il a été développé
+avec l'US Navy à l'esprit, dans le but principal de protéger les
+communications gouvernementales. Aujourd'hui, il est utilisé chaque jour
+pour une grande variété d'objectifs par des simples citoyens, des
+militaires, des journalistes, des policiers, des activistes, et bien
+d'autres. </p>
<a name="overview"></a>
- <h3><a class="anchor" href="#overview">Overview</a></h3>
+ <h3><a class="anchor" href="#overview">Vue d'ensemble</a></h3>
<p>
Tor est un réseau de tunnels virtuels permettant à des personnes ou groupes
Modified: website/trunk/about/pl/gsoc.wml
===================================================================
--- website/trunk/about/pl/gsoc.wml 2011-05-23 19:44:27 UTC (rev 24777)
+++ website/trunk/about/pl/gsoc.wml 2011-05-23 19:52:20 UTC (rev 24778)
@@ -4,7 +4,7 @@
## translation metadata
-# Revision: $Revision: 24563 $
+# Revision: $Revision: 24750 $
# Translation-Priority: 4-optional
#include "pl/head.wmi" TITLE="Tor: Google Summer of Code 2011" CHARSET="UTF-8"
<div id="content" class="clearfix">
@@ -167,6 +167,11 @@
na IRCu? Kontaktowanie się z nami na IRCu pomoże nam Cię poznać i pomoże
Tobie poznać naszą społeczność.</li>
+ <li>Are you applying to other projects for GSoC and, if so, what would be your
+preference if you're accepted to both? Having a stated preference helps with
+the deduplication process and will not impact if we accept your application
+or not.</li>
+
<li>Czy jest coś jeszcze, co powinniśmy wiedzieć, dzięki czemu bardziej spodoba
się nam Twój projekt?</li>
@@ -217,6 +222,14 @@
pomiarów sieci Tora</a> przez Kevina Berry'ego</h4></li>
<li><h4><a href="../about/gsocProposal/gsoc10-proposal-soat.txt">Rozszerzenie
SOAT</a> przez Johna Schancka</h4></li>
+ <li><h4><a href="http://inspirated.com/uploads/tor-gsoc-11.pdf">GTK+ Frontend and
+Client Mode Improvements for arm</a> by Kamran Khan</h4></li>
+ <li><h4><a href="http://www.gsathya.in/gsoc11.html">Orbot + ORLib</a> by Sathya
+Gunasekaran</h4></li>
+ <li><h4><a href="http://blanu.net/TorSummerOfCodeProposal.pdf">Blocking-resistant
+Transport Evaluation Framework</a> by Brandon Wiley</h4></li>
+ <li><h4><a href="../about/gsocProposal/gsoc11-proposal-metadataToolkit.pdf">Metadata
+Anonymisation Toolkit</a> by Julien Voisin</h4></li>
<li><h4><a href="http://www.atagar.com/misc/gsocBlog09/">Tłumaczenie strony przez
Pootle</a> przez Damiana Johnsona</h4></li>
</ul>
Modified: website/trunk/about/ru/overview.wml
===================================================================
--- website/trunk/about/ru/overview.wml 2011-05-23 19:44:27 UTC (rev 24777)
+++ website/trunk/about/ru/overview.wml 2011-05-23 19:52:20 UTC (rev 24778)
@@ -274,7 +274,7 @@
<div id = "sidecol">
-#include "side.wmi"
+ #include "side.wmi"
#include "info.wmi"
</div>
Modified: website/trunk/de/index.wml
===================================================================
--- website/trunk/de/index.wml 2011-05-23 19:44:27 UTC (rev 24777)
+++ website/trunk/de/index.wml 2011-05-23 19:52:20 UTC (rev 24778)
@@ -35,8 +35,7 @@
persönliche Freiheit und Privatsphäre bedroht, deine vertraulichen Geschäfts
Aktivitäten und Beziehungen zu schützen, und Staatssicherheit bekannt als <a
href="<page about/overview>">Daten Analyse</a><br><span class="continue"> zu
-verhindern <a href="<page about/overview>">Mehr über Tor
-»</a></span></p>
+verhindern <a href="<page about/overview>">Mehr über Tor »</a></span></p>
</div>
<!-- END SUBCOL -->
Modified: website/trunk/docs/de/documentation.wml
===================================================================
--- website/trunk/docs/de/documentation.wml 2011-05-23 19:44:27 UTC (rev 24777)
+++ website/trunk/docs/de/documentation.wml 2011-05-23 19:52:20 UTC (rev 24778)
@@ -4,7 +4,7 @@
## translation metadata
-# Revision: $Revision: 24665 $
+# Revision: $Revision: 24728 $
# Translation-Priority: 2-medium
#include "de/head.wmi" TITLE="Tor: Documentation" CHARSET="UTF-8"
<div id="content" class="clearfix">
@@ -143,11 +143,10 @@
</li>
<li>
- Unsere <a href="<gitblob>doc/TODO">Entwickler TODO Datei</a> beginnt mit
-einem Zeitplan für externe Versprechen — dinge für die <a href="<page
-about/sponsors>">unsere Sponsoren</a> gezahlt haben, um sie Fertig zu
-sehen. Sie listet außerdem Aufgaben und Themen auf, die wir als nächstes
-angehen möchten.
+ Our <a href="https://trac.torproject.org/projects/tor/wiki/sponsors">sponsor
+TODO list</a> starts with a timeline for external promises — things <a
+href="<page about/sponsors>">our sponsors</a> have paid to see done. It also
+lists many other tasks and topics we'd like to tackle next.
</li>
<li>
Added: website/trunk/docs/fi/debian-vidalia.wml
===================================================================
--- website/trunk/docs/fi/debian-vidalia.wml (rev 0)
+++ website/trunk/docs/fi/debian-vidalia.wml 2011-05-23 19:52:20 UTC (rev 24778)
@@ -0,0 +1,133 @@
+
+
+
+
+
+## translation metadata
+# Revision: $Revision: 23689 $
+# Translation-Priority: 3-low
+#include "head.wmi" TITLE="Vidalia: Debian/Ubuntu Instructions" CHARSET="UTF-8"
+<div id="content" class="clearfix">
+ <div id="breadcrumbs">
+ <a href="<page index>">Koti » </a> <a href="<page
+docs/documentation>">Ohjeistus » </a> <a href="<page
+docs/debian-vidalia>">Vidalia Debian/Ubuntu -ohjeet</a>
+ </div>
+ <div id="maincol">
+<a id="debian"></a> <a id="packages"></a>
+<h2><a class="anchor" href="#debian">Vidalia Ubuntussa tai Debianissa</a></h2>
+<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.
+</p>
+
+<p>
+Sinun on otettava käyttöön pakettivarastomme ennen kuin voit noutaa
+Torin. Ensin on tiedettävä jakeluversiosi nimi. Tässä nopea kartoitus:
+<ul>
+<li> Ubuntu 10.10 on "maverick" mutta käyttää "lucid" -paketteja.</li>
+<li> Ubuntu 10.04 tai Trisquel 4.0 on "lucid"</li>
+<li> Ubuntu 9.10 tai Trisquel 3.5 on "karmic"</li>
+<li> Ubuntu 9.04 on "jaunty"</li>
+<li> Ubuntu 8.10 on "intrepid"</li>
+<li> Ubuntu 8.04 on "hardy"</li>
+<li> Debian Etch on "etch"</li>
+<li> Debian Lenny on "lenny"</li>
+</ul>
+
+Lisää sitten tämä rivi tiedostoon <tt>/etc/apt/sources.list<tt> koneellasi:
+<pre>
+deb http://deb.torproject.org/torproject.org <JAKELUVERSIO> main
+</pre>
+jossa <JAKELUVERSIO>:n paikalle tulee ylläoleva sana (etch, lenny, sid,
+karmic, jaunty, intrepid, hardy).
+</p>
+
+<p>
+Sen jälkeen lisää pakettien allekirjoittamiseen käytettävä gpg-avain
+suorittamalla päätteessä seuraavat komennot:
+<pre>
+gpg --keyserver keys.gnupg.net --recv 886DDD89
+gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
+</pre>
+Seuraavaksi virkistä lähteesi ja asenna Vidalia suorittamalla päätteessä
+seuraavat komennot:
+<pre>
+apt-get update
+apt-get install vidalia
+</pre>
+</p>
+
+<p>
+Vidalia on nyt asennettu ja toiminnassa. Siirry "Vidalia
+Linux/Unix-käyttöjärjestelmissä" -ohjeiden <a href="<page
+docs/tor-doc-unix>#polipo">toiseen vaiheeseen</a>.
+</p>
+
+<p style="font-size: small">
+DNS-nimi <code>deb.torproject.org</code> on itse asiassa joukko palvelimia
+DNS round robin -ryhmänä. Jos et syystä tai toisesta saa yhteyttä, voit sen
+sijaan yrittää käyttää jonkin sen osan nimeä. Kokeile
+<code>deb-master.torproject.org</code>, <code>mirror.netcologne.de</code>
+tai <code>vidalia.mirror.youam.de</code>.
+</p>
+
+<hr /> <a id="source"></a>
+<h2><a class="anchor" href="#source">Lähdekoodista rakentaminen</a></h2>
+<br />
+
+<p>
+Jos haluat tehdä omat deb-pakettisi lähdekoodista, sinun on ensin lisättävä
+sopiva <tt>deb-src</tt> -rivi <tt>sources.list</tt> -tiedostoon.
+<pre>
+deb-src http://deb.torproject.org/torproject.org <JAKELUVERSIO> main
+</pre>
+Sinun on myös asennettava paketit, joita tarvitaan omien deb-pakettien
+tekemiseen ja Vidalian rakentamiseen:
+<pre>
+apt-get install build-essential fakeroot devscripts qt4-dev-tools qt4-designer libqt4-dev g++ cmake
+apt-get build-dep vidalia
+</pre>
+Sen jälkeen voit rakentaa Vidalian ~/debian-packages -hakemistossa:
+<pre>
+mkdir ~/debian-packages; cd ~/debian-packages
+apt-get source vidalia
+cd vidalia-*
+debuild -rfakeroot -uc -us
+cd ..
+</pre>
+Nyt voit asentaa uuden paketin:
+<pre>
+sudo dpkg -i vidalia_*.deb
+</pre>
+</p>
+
+<p>
+Vidalia on nyt asennettu ja toiminnassa. Siirry "Vidalia
+Linux/Unix-käyttöjärjestelmissä" -ohjeiden <a href="<page
+docs/tor-doc-unix>#polipo">toiseen vaiheeseen</a>.
+</p>
+
+<hr />
+
+<p>Jos sinulla on ehdotuksia tämän asiakirjan parantamiseksi, <a href="<page
+about/contact>">lähetäthän ne meille</a>. Kiitos!</p>
+
+ </div>
+
+ <!-- END MAINCOL -->
+<div id = "sidecol">
+
+
+ #include "side.wmi"
+#include "info.wmi"
+</div>
+
+<!-- END SIDECOL -->
+</div>
+
+
+#include "foot.wmi"
Added: website/trunk/docs/fi/debian.wml
===================================================================
--- website/trunk/docs/fi/debian.wml (rev 0)
+++ website/trunk/docs/fi/debian.wml 2011-05-23 19:52:20 UTC (rev 24778)
@@ -0,0 +1,198 @@
+
+
+
+
+
+## translation metadata
+# Revision: $Revision: 24267 $
+# Translation-Priority: 3-low
+#include "head.wmi" TITLE="Tor Project: Debian/Ubuntu Instructions" CHARSET="UTF-8"
+<div id="content" class="clearfix">
+ <div id="breadcrumbs">
+ <a href="<page index>">Koti » </a> <a href="<page
+docs/documentation>">Ohjeistus » </a> <a href="<page
+docs/debian>">Debian/Ubuntu -ohjeet</a>
+ </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>
+<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>.
+</p>
+
+<p>
+Huomaa, että tämä ei välttämättä aina asenna Torin viimeisintä vakaata
+versiota, mutta saat tärkeitä turvallisuuskorjauksia. Varmistuaksesi, että
+käytät Torin viimeisintä vakaata versiota, katso alta vaihtoehto kaksi.
+</p>
+
+<p>
+Tor on nyt asennettu ja toiminnassa. Siirry "Tor Linux/Unix
+-käyttöjärjestelmissä" -ohjeiden <a href="<page
+docs/tor-doc-unix>#polipo">toiseen vaiheeseen</a>.
+</p>
+
+<hr /> <a id="ubuntu"></a> <a id="packages"></a>
+<h2><a class="anchor" href="#ubuntu">Toinen vaihtoehto: Tor Ubuntussa tai
+Debianissa</a></h2>
+<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.
+</p>
+
+<p>
+Sinun on otettava käyttöön pakettivarastomme ennen kuin voit noutaa
+Torin. Ensin on tiedettävä jakeluversiosi nimi. Se selviää nopeasti
+komennolla <tt>lsb_release -c</tt> tai <tt>cat /etc/debian_version</tt>
+Tässä nopea kartoitus:
+<ul>
+<li> Debian unstable (sid) on "sid"</li>
+<li> Debian 6.0 (squeeze) on "squeeze"</li>
+<li> Debian 5.0 (lenny) on "lenny"</li>
+<li> Ubuntu 10.10 on "maverick"</li>
+<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:
+<pre>
+deb http://deb.torproject.org/torproject.org <JAKELUVERSIO> main
+</pre>
+jossa <JAKELUVERSIO>:n paikalle tulee ylläoleva sana (lenny, sid, maverick
+tai mikä se onkaan).
+</p>
+
+<p>
+Sen jälkeen lisää pakettien allekirjoittamiseen käytettävä gpg-avain
+suorittamalla päätteessä seuraavat komennot:
+<pre>
+gpg --keyserver keys.gnupg.net --recv 886DDD89
+gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
+</pre>
+Virkistä nyt lähteesi ja asenna Tor suorittamalla päätteessä seuraavat
+komennot (roottina):
+<pre>
+apt-get update
+apt-get install tor tor-geoipdb
+</pre>
+</p>
+
+<p>
+Tor on nyt asennettu ja toiminnassa. Siirry "Tor Linux/Unix
+-käyttöjärjestelmissä" -ohjeiden <a href="<page
+docs/tor-doc-unix>#polipo">toiseen vaiheeseen</a>.
+</p>
+
+<p style="font-size: small">
+DNS-nimi <code>deb.torproject.org</code> on itse asiassa joukko palvelimia
+DNS round robin -ryhmänä. Jos et syystä tai toisesta saa yhteyttä, voit sen
+sijaan yrittää käyttää jonkin sen osan nimeä. Kokeile
+<code>deb-master.torproject.org</code>, <code>mirror.netcologne.de</code>
+tai <code>vidalia.mirror.youam.de</code>.
+</p>
+
+<hr /> <a id="development"></a>
+<h2><a class="anchor" href="#development">Kolmas vaihtoehto: Torin kehityshaaran
+käyttö Debianissa tai Ubuntussa</a></h2>
+<br />
+
+<p>Jos haluat käyttää mieluummin Torin <a href="<page
+download/download>#packagediff">kehityshaaraa</a> (enemmän ominaisuuksia ja
+enemmän bugeja), sinun on yllä mainittujen sijaan lisättävä tiedostoon
+<tt>/etc/apt/sources.list</tt> nämä rivit:<br />
+<pre>
+deb http://deb.torproject.org/torproject.org <JAKELUVERSIO> main
+deb http://deb.torproject.org/torproject.org experimental-<JAKELUVERSIO> main
+</pre>
+jossa laitat <JAKELUVERSIO>:n paikalle jälleen oman distrosi nimen (lenny,
+sid, maverick, ...).
+</p>
+
+<p>
+Suorita sen jälkeen päätteessä seuraavat komennot:
+<pre>
+gpg --keyserver keys.gnupg.net --recv 886DDD89
+gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
+apt-get update
+apt-get install tor tor-geoipdb
+</pre>
+</p>
+
+<p>
+Tor on nyt asennettu ja toiminnassa. Siirry "Tor Linux/Unix
+-käyttöjärjestelmissä" -ohjeiden <a href="<page
+docs/tor-doc-unix>#polipo">toiseen vaiheeseen</a>.
+</p>
+
+<hr /> <a id="source"></a>
+<h2><a class="anchor" href="#source">Lähdekoodista rakentaminen</a></h2>
+<br />
+
+<p>
+Jos haluat tehdä omat deb-pakettisi lähdekoodista, sinun on ensin lisättävä
+sopiva <tt>deb-src</tt> -rivi <tt>sources.list</tt> -tiedostoon.
+<pre>
+# For the stable version.
+# For the unstable version.
+
+deb-src http://deb.torproject.org/torproject.org <JAKELUVERSIO> main
+
+
+deb-src http://deb.torproject.org/torproject.org <JAKELUVERSIO> main
+deb-src http://deb.torproject.org/torproject.org experimental-<JAKELUVERSIO> main
+</pre>
+Sinun on myös asennettava paketit, joita tarvitaan omien deb-pakettien
+tekemiseen ja Torin rakentamiseen:
+<pre>
+apt-get install build-essential fakeroot devscripts
+apt-get build-dep tor
+</pre>
+Sen jälkeen voit rakentaa Torin ~/debian-packages -hakemistossa:
+<pre>
+mkdir ~/debian-packages; cd ~/debian-packages
+apt-get source tor
+cd tor-*
+debuild -rfakeroot -uc -us
+cd ..
+</pre>
+Voit nyt asentaa uuden paketin:
+<pre>
+sudo dpkg -i tor_*.deb
+</pre>
+</p>
+
+<p>
+Tor on nyt asennettu ja toiminnassa. Siirry "Tor Linux/Unix
+-käyttöjärjestelmissä" -ohjeiden <a href="<page
+docs/tor-doc-unix>#polipo">toiseen vaiheeseen</a>.
+</p>
+
+<hr />
+
+<p>Jos sinulla on ehdotuksia tämän asiakirjan parantamiseksi, <a href="<page
+about/contact>">lähetäthän ne meille</a>. Kiitos!</p>
+
+
+ <!-- END MAIN COL -->
+</div>
+ <div id = "sidecol">
+
+
+ #include "side.wmi"
+#include "info.wmi"
+</div>
+
+<!-- END SIDECOL -->
+</div>
+
+
+#include "foot.wmi"
Added: website/trunk/docs/fi/sidenav.wmi
===================================================================
--- website/trunk/docs/fi/sidenav.wmi (rev 0)
+++ website/trunk/docs/fi/sidenav.wmi 2011-05-23 19:52:20 UTC (rev 24778)
@@ -0,0 +1,97 @@
+## translation metadata
+# Revision: $Revision: 24435 $
+# 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/tor-doc-osx',
+ 'txt' => 'Installing on Mac OS X',
+ },
+ {'url' => 'docs/android',
+ 'txt' => 'Installing on Android',
+ },
+ {'url' => 'docs/N900',
+ 'txt' => 'Installing 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',
+ },
+ ];
+:>
Added: website/trunk/docs/fi/tor-doc-unix.wml
===================================================================
--- website/trunk/docs/fi/tor-doc-unix.wml (rev 0)
+++ website/trunk/docs/fi/tor-doc-unix.wml 2011-05-23 19:52:20 UTC (rev 24778)
@@ -0,0 +1,200 @@
+
+
+
+
+
+## translation metadata
+# Revision: $Revision: 24208 $
+# Translation-Priority: 3-low
+#include "head.wmi" TITLE="Tor: Linux/BSD/Unix Install Instructions" CHARSET="UTF-8"
+<div id="content" class="clearfix">
+ <div id="breadcrumbs">
+ <a href="<page index>">Koti » </a> <a href="<page
+docs/documentation>">Ohjeistus » </a> <a href="<page
+docs/tor-doc-unix>">Linux/BSD/Unix -asiakas</a>
+ </div>
+ <div id="maincol">
+ <h1><a href="<page index>">Tor</a> -asiakasohjelman käyttö
+Linux/BSD/Unix-käyttöjärjestelmissä</h1>
+ <br>
+
+ <p>
+ Huomaathan, että nämä asennusohjeet koskevat Tor-asiakasohjelman
+käyttöä. Jos haluat välittää toisten liikennettä ja auttaa näin verkkoa
+kasvamaan (tee toki niin), lue ohjeet <a href="<page
+docs/tor-doc-relay>">Välityspalvelimen asetusten säätäminen</a>.</b>
+ </p>
+
+ <hr> <a id="installing"></a>
+ <h2><a class="anchor" href="#installing">Ensimmäinen vaihe: Lataa ja asenna
+Tor</a></h2>
+ <br>
+
+ <p>
+ Tor:n viimeisin julkaisu löytyy <a href="<page
+download/download>">lataukset</a>-sivulta. Sieltä löydät myös Debian-, Red
+Hat-, Gentoo-, *BSD-, ynnä muut paketit. Jos käytät Ubuntua, älä käytä
+oletuspaketteja: käytä sen sijaan <a href="<page
+docs/debian>#ubuntu">deb-pakettivarastoamme</a>. CentOS / Fedora / OpenSUSE
+-käyttäjien tulisi vastaavasti käyttää <a href="<page
+docs/rpms>">rpm-pakettivarastoamme</a>.
+ </p>
+
+ <p>Jos rakennat lähdekoodista, asenna ensin <a
+href="http://www.monkey.org/~provos/libevent/">libevent</a> ja varmista,
+että sinulla on asennettuna openssl ja zlib (mukaanlukien -devel paketit jos
+saatavilla). Suorita sen jälkeen:<br><tt>tar xzf
+tor-<version-stable>.tar.gz; cd tor-<version-stable></tt><br><tt>./configure
+&& make</tt><br> Nyt voit käynnistää torin - <tt>src/or/tor</tt>,
+tai voit suorittaa komennon <tt>make install</tt> (tarvittaessa roottina)
+asentaaksesi sen hakemistoon /usr/local, jonka jälkeen voit käynnistää sen
+yksinkertaisesti komennolla <tt>tor</tt>.
+ </p>
+
+ <p>Tor on oletuksena asetettu toimimaan asiakasohjelmana. Se käyttää
+sisäänrakennettua asetustiedostoa, eikä useimpien tarvitse muuttaa mitään
+näistä asetuksista. Tor on nyt asennettu.
+ </p>
+
+ <hr> <a id="privoxy"></a> <a id="polipo"></a>
+ <h2><a class="anchor" href="#polipo">Toinen vaihe: Asenna Polipo verkon
+selaamista varten</a></h2>
+ <br>
+
+ <p>Asennettuasi Tor:n sinun on asetettava sovelluksesi käyttämään sitä.
+ </p>
+
+ <p>
+ Ensimmäinen askel on verkon selaamisen säätäminen. Aloita asentamalla <a
+href="http://www.pps.jussieu.fr/~jch/software/polipo>Polipo</a>
+käyttämästäsi pakettivarastosta. Polipo on välimuistina toimiva
+välityspalvelin, joka suoriutuu hyvin http-pipeliningista, joten se sopii
+hyvin Tor:n latensseille. Varmista, että asennat vähintään Polipon version
+1.0.4, sillä aiemmista versioista puuttuu SOCKS-tuki, jota tarvitaan, jotta
+Tor toimisi Polipon kanssa. Tässä vaiheessa on syytä poistaa privoxy (siis
+apt-get remove privoxy tai yum remove privoxy), jotta ne eivät joudu
+ristiriitaan.
+ </p>
+
+ <p>Kun olet asentanut Polipon (joko paketista tai lähdekoodista), <b>sinun on
+asetettava Polipo käyttämään Toria</b>. Hae laatimamme <a
+href="<tbbrepo>/build-scripts/config/polipo.conf">Polipon asetukset
+Tor:lle</a> ja korvaa sillä nykyinen Polipon asetustiedosto
+(esim. /etc/polipo/config tai ~/.polipo). Polipo on käynnistettävä
+uudelleen, jotta muutokset tulevat
+voimaan. Esimerkiksi:<br><tt>/etc/init.d/polipo restart</tt>
+ </p>
+
+ <p>Voit halutessasi käyttää Polipon sijasta Privoxya <a
+href="<wiki>TheOnionRouter/PrivoxyConfig">näillä Privoxyn
+esimerkkiasetuksilla</a>. Polipoa ja Privoxya ei kuitenkaan pidä ajaa yhtä
+aikaa, koska molemmat asetustiedostot käyttävät porttia 8118,</p>
+
+ <hr> <a id="using"></a>
+ <h2><a class="anchor" href="#using">Kolmas vaihe: aseta sovelluksesi käyttämään
+Tor:ia</a></h2>
+ <br>
+
+ <p>Asennettuasi Tor:n ja Polipon sinun on asetettava sovelluksesi käyttämään
+niitä. Ensimmäinen askel on verkkoselaimen säätäminen.</p>
+
+ <p>Parhaan turvallisuuden saat käyttämällä Toria Firefoxin ja Torbuttonin
+avulla. Asenna vain <a href="<page torbutton/index>">Torbutton-lisäosa</a>,
+käynnistä Firefox uudelleen ja siinä kaikki:
+ </p>
+
+ <img alt="Torbutton-lisäosa Firefoxille"
+src="$(IMGROOT)/screenshot-torbutton.png" > <br>
+
+ <p>
+ Jos aiot käyttää Firefoxia eri tietokoneella kuin Toria, katso <a
+href="<wikifaq>#SocksListenAddress">FAQ:n kohta Torin käyttämisestä eri
+tietokoneella</a>.
+ </p>
+
+ <p>Muiden HTTP-välityspalvelimia tukevien sovellusten Torraamiseksi osoita ne
+vain Polipoon (siis localhost, portti 8118). Käyttääksesi SOCKSia suoraan
+(esimerkiksi pikaviestimiin, Jabberiin, IRCiin jne.) voit osoittaa
+sovelluksesi suoraan Toriin (localhost, portti 9050), mutta katso <a
+href="<wikifaq>#SOCKSAndDNS">tästä FAQ:n kohdasta</a> miksi tämä voi olla
+vaarallista. Jos käytät sovelluksia, jotka eivät tue sen paremmin SOCKSia
+kuin HTTP:täkään, tutustu <a
+href="https://code.google.com/p/torsocks/">torsocksiin</a> tai <a
+href="<wiki>TheOnionRouter/TorifyHOWTO#socat">socatiin</a>.
+ </p>
+
+ <p>Tietoa muiden ohjelmien torraamisesta löytyy <a
+href="<wiki>TheOnionRouter/TorifyHOWTO">Torify HOWTO</a>:sta.
+ </p>
+
+ <hr> <a id="verify"></a>
+ <h2><a class="anchor" href="#verify">Neljäs vaihe: Varmista että se toimii</a></h2>
+ <br>
+
+ <p>
+ Kokeile seuraavaksi käyttää webbiselaintasi Torin kanssa ja varmista, että
+IP-osoitteesi todella anonymisoidaan. Klikkaa <a
+href="https://check.torproject.org/">Tor-tunnistimen</a> linkkiä ja katso
+käytätkö sen mielestä Toria vai et. #<a href="http://ipchicken.com/">tälle
+sivulle</a> #nähdäksesi mitä IP-osoitetta sen mielestä käytät. (Jos sivu on
+alhaalla, <a href="<wikifaq>#IsMyConnectionPrivate">tästä FAQ:n kohdasta</a>
+löytyy lisää vinkkejä Torin testaamiseksi.)
+ </p>
+
+ <p>Jos käytät henkilökohtaista palomuuria, joka rajoittaa tietokoneesi kykyä
+yhdistää itseensä (tällainen on esimerkiksi Fedora Core 4:n SELinux), muista
+sallia paikallisten sovellusten yhteydet Polipoon (paikallinen portti 8118)
+ja Toriin (paikallinen portti 9050). Jos palomuurisi estää ulos menevät
+yhteydet, tee siihen aukko niin, että se antaa yhdistää ainakin
+TCP-portteihin 80 ja 443, ja lue sitten <a
+href="<wikifaq>#FirewalledClient">tämä FAQ:n kohta</a>. Jos SELinuxin
+asetukset eivät anna torin tai polipon toimia oikein, luo hakemistoon
+/etc/selinux/targeted tiedosto nimeltä booleans.local. Avaa tiedosto
+tekstieditorissa ja lisää siihen "allow_ybind=1". Käynnistä koneesi
+uudelleen, jotta muutokset tulevat voimaan.
+ </p>
+
+ <p>Eikö toimi vieläkään? Etsi lisää vinkkejä <a href="<page
+docs/faq>#DoesntWork">tästä FAQ:n kohdasta</a>.</p>
+
+ <hr> <a id="server"></a> <a id="relay"></a>
+ <h2><a class="anchor" href="#relay">Viides vaihe: Aseta se
+välityspalvelimeksi</a></h2>
+ <br>
+
+ <p>Tor-verkko on kaistatilaa tarjoavien vapaaehtoisten varassa. Mitä useammat
+ihmiset pitävät yllä välityspalvelimia, sitä nopeampi Tor-verkosta
+tulee. Jos käytössäsi on vähintään 20 kilobittiä/s kumpaankin suuntaan,
+autathan Toria asettamalla oman Torisi myös välityspalvelmieksi. Käytössämme
+on monia ominaisuuksia, jotka tekevät Tor-välityspalvelimista helppoja ja
+mukavia, kuten kaistanleveyden käytön rajoittaminen, poistumiskäytännöt,
+joiden avulla voit rajoittaa sinuun kohdistuvia valituksia väärinkäytöstä,
+ja dynaamisten IP-osoitteiden tuki.</p>
+
+ <p>Juuri se, että välityspalvelimia on monissa paikoissa eri puolilla
+internetiä, suojaa Torin käyttäjiä. Voit saada myös itsellesi vahvemman
+anonymiteetin, koska sivustot eivät voi tietää, olivatko yhteydet lähtöisin
+sinun koneeltasi vai välitetty muilta koneilta.</p>
+
+ <p>Lue lisää <a href="<page docs/tor-doc-relay>">Välityspalvelimen
+asettaminen</a> -oppaastamme.</p>
+
+ <hr>
+
+ <p>Jos sinulla on ehdotuksia tämän asiakirjan parantamiseksi, <a href="<page
+about/contact>">lähetäthän ne meille</a>. Kiitos!</p>
+ </div>
+
+ <!-- END MAINCOL -->
+<div id = "sidecol">
+
+
+ #include "side.wmi"
+#include "info.wmi"
+</div>
+
+<!-- END SIDECOL -->
+</div>
+
+
+#include "foot.wmi"
Added: website/trunk/docs/fr/bridges.wml
===================================================================
--- website/trunk/docs/fr/bridges.wml (rev 0)
+++ website/trunk/docs/fr/bridges.wml 2011-05-23 19:52:20 UTC (rev 24778)
@@ -0,0 +1,229 @@
+
+
+
+
+
+## translation metadata
+# Revision: $Revision: 24504 $
+# Translation-Priority: 1-high
+#include "head.wmi" TITLE="Tor Project: Bridges" CHARSET="UTF-8"
+<div id="content" class="clearfix">
+ <div id="breadcrumbs">
+ <a href="<page index>">Accueil »</a> <a href="<page
+docs/documentation>">Documentation »</a> <a href="<page
+docs/bridges>">Ponts</a>
+ </div>
+ <div id="maincol">
+ <a id="BridgeIntroduction"></a>
+ <h2><a class="anchor" href="#BridgeIntroduction">Tor: Ponts</a></h2>
+ <hr>
+
+ <p>
+ Les relais-ponts (ou «ponts» en abrégé) sont des relais Tor qui ne figurent
+pas dans le répertoire principal de Tor. Comme il n'en existe pas de liste
+publique, même si votre FAI filtre les connexions à tous les relais Tor
+connus, ils ne sera probablement pas en mesure de bloquer tous les ponts. Si
+vous soupçonnez que votre accès au réseau Tor est bloqué, vous pouvez
+utiliser la fonctionnalité pont de Tor.
+ </p>
+
+ <p>
+ L'ajout de ponts pour Tor est un pas en avant dans la course contre le
+blocage de sites. Il est parfaitement possible que, même si votre FAI filtre
+Internet, vous n'avez pas besoin d'un pont pour utiliser Tor. De nombreux
+programmes de filtrage cherchent en clair des demandes de répertoire Tor
+afin de reconnaître que vous utilisez Tor, Tor, mais la version 0.2.0.23-rc
+et suivantes utilisent des requêtes aux répertoires cryptée par défaut. Ce
+changement signifie que la plupart des programmes de filtrage sont
+maintenant incapables de reconnaître les connexions Tor. Donc, vous devriez
+essayer d'utiliser Tor sans ponts, car il pourrait fonctionner.
+ </p>
+
+ <p>
+ Notez qu'il est également possible que Tor ne fonctionne pas pour d'autres
+raisons. La dernière version du <a href="<page
+projects/torbrowser>">Paquetage Navigateur de Tor</a> sur Windows tente de
+vous donner de meilleurs conseils lorsque Tor a des problèmes de
+connexion. Vous devriez également lire <a
+href="<wikifaq>#IinstalledTorandPolipobutitsnotworking.">la FAQ sur les
+problèmes liés à l'utilisation de Tor</a> lorsque vous avez des
+questions. Si vous pensez que le problème relève clairement du blocage, ou
+si vous désirez simplementfaire un essai parce que vous n'êtes pas sûr ou
+que vous-vous sentez l'âme aventureuse, s'il vous plaît lisez la
+suite. Assurez-vous que vous utilisez la <a href="<page
+download/download>#Dev">dernière version 0.2.1.x ou 0.2.2.x de votre
+plate-forme</a> .
+ </p>
+
+ <p>
+ Pour utiliser une passerelle, vous devez en trouver une. En outre, vous
+aurez besoin de configurer Tor avec l'adresse du pont que vous avez
+l'intention d'utiliser. Vous pourrez faire cela avec Vidalia, qui est
+l'interface de controle de Tor. Si votre connexion Internet nécessite
+l'utilisation d'un proxy, vous aurez probablement besoin de configurer
+Vidalia à cette fin avant toute connexion. Si habituellement vous ne
+configurez pas un proxy pour votre connexion Internet, c'est que vous n'en
+avez probablement pas besoin. Faites un essai, et si vous avez des questions
+contactez-nous.
+ </p>
+
+ <p>Freedom House a produit une vidéo sur la façon d'obtenir et d'utiliser les
+ponts Tor. Si vous ne voyez pas la vidéo ci-dessous, allez à <a
+href="http://www.youtube.com/thetorproject">Youtube: Freedom4Internet</a>
+Vous connaissez une vidéo de meilleure qualité, ou une qui est traduite dans
+votre langue? Faites-nous-le savoir!</p>
+
+ <div class="center">
+ <p><video id="v1" src="https://media.torproject.org/video/2009-using-a-bridge-relay-to-access-tor.…" autobuffer="true" controls="controls"></video></p>
+ </div>
+
+ <p>
+ Vous pouvez obtenir un pont en visitant <a
+href="https://bridges.torproject.org/">https: / / bridges.torproject.org
+/</a> avec votre navigateur web. Si cette page est filtrée pour vous, et
+vous n'avez pas de proxy ou d'autres moyens pour l'atteindre, il y a aussi
+<a href="#FindingMore">d'autres façons de trouver des ponts</a>.
+ </p>
+
+ <a id="Understanding"></a>
+ <h2><a class="anchor" href="#Understanding">Comprendre les Ponts</a></h2>
+ <hr>
+
+ <p>
+ A titre d'exemple, vous obtiendrez une entrée de pont ou bridge qui
+ressemble à ce qui suit:
+ </p>
+ <pre><samp>
+ bridge 141.201.27.48:443 4352e58420e68f5e40bf7c74faddccd9d1349413
+ </samp>
+ </pre>
+
+ <p>
+ Comprendre les éléments d'une ligne de ponts n'est pas strictement
+nécessaire mais peut s'avérer utile. Vous pouvez sauter cette section si
+vous le souhaitez. <br> Le premier élément est l'adresse IP:
+<tt>'141.201.27.48 '</tt><br> Le deuxième élément est le port: <tt>'443
+'</tt> <br> Le troisième élément, l'empreinte, est facultatif:
+<tt>'4352e58420e68f5e40bf7c74faddccd9d1349413 '</tt><br>
+ </p>
+
+ <a id="UsingBridges"></a>
+ <h2><a class="anchor" href="#UsingBridges">Utiliser des ponts avec Tor et
+Vidalia</a></h2>
+ <hr>
+
+ <p>
+ Pour utiliser l'adresse du pont dans l'exemple ci-dessus, allez à Vidalia,
+page des options réseau, et cliquez sur "Mon FAI bloque les connexions au
+réseau Tor". Ajoutez chaque pont une adresse à la fois dans la page
+Paramètres du réseau Vidalia, en le collant dans "Ajouter une passerelle" et
+puis en cliquant sur le signe "+". L'ajout d'un pont est représenté
+ci-dessous:
+ </p>
+
+ <br><br><img src="$(IMGROOT)/vidalia-bridges.png" alt="Page des options
+réseau de Vidalia"><br><br>
+
+ <p>
+ Il vaut mieux ajouter autant de ponts que vous pouvez, des ponts
+supplémentaires augmentant la fiabilité. Un pont devrait être suffisant pour
+atteindre le réseau Tor, mais si vous avez seulement un pont et qu'il tombe
+en panne, vous serez coupé du réseau Tor.
+ </p>
+
+ <a id="FindingMore"></a>
+ <h2><a class="anchor" href="#FindingMore">Trouver plus de ponts pour Tor</a></h2>
+ <hr>
+
+ <p>
+ Une autre façon de trouver des adresses de ponts publics est d'envoyer un
+mail à bridges(a)torproject.org avec la ligne "get bridges" seule dans le
+corps de l'e-mail. Vous aurez besoin d'envoyer cette demande à partir d'un
+compte Gmail, faute de quoi cela serait trop facile pour un attaquant de
+créer un grand nombre d'adresses e-mail pour en savoir davantage sur tous
+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
+
+ </pre>
+ <p>
+ Une fois que vous avez reçu l'e-mail avec les informations sur les ponts,
+vous pouvez poursuivre les étapes de configuration de Vidalia décrites <a
+href="#UsingBridges">ci-dessus</a> .
+ </p>
+
+ <a id="RunningABridge"></a>
+ <h2><a class="anchor" href="#RunningABridge">Utilisation d'un Pont Tor</a></h2>
+ <hr>
+
+ <p>
+ Si vous souhaitez aider et que vous ne pouvez pas installer un <a
+href="<page docs/tor-doc-relay>">relais Tor normal</a> , vous pouvez
+installer un relais-pont. Vous pouvez le configurer ainsi:
+ <ul>
+ <li> <a href="<page docs/faq>#torrc">modifiez votre fichier torrc</a>
+manuellement pour avoir seulement ces quatre lignes: <br>
+ <pre><code>
+ SocksPort 0
+ ORPort 443
+ BridgeRelay 1
+ Exitpolicy reject *:*
+ </code></pre></li>
+ <li><a href="<page docs/tor-doc-relay>">ou en utilisant Vidalia</a> : <br><img
+src="$(IMGROOT)/vidalia-bridges-setup.png" alt="Paramètres de partage de
+Vidalia"></li>
+ </ul>
+ </p>
+
+ <p>Si vous obtenez l'erreur "Impossible de se connecter à 0.0.0.0:443:
+Permission refusée" au démarrage, vous aurez besoin de choisir une plus
+grande valeur d'ORPort (par exemple 8080) ou de mettre en place <a
+href="<page
+docs/faq>#HowcanImakemyrelayaccessibletopeoplestuckbehindrestrictivefirewalls">des
+redirections complexes de ports</a> .
+ </p>
+
+ <p>
+ Lorsque vous mettez en place un pont, votre serveur n'apparaîtra <b>pas</b>
+dans le réseau public de Tor.
+ </p>
+
+ <p>
+ Votre pont va automatiquement publier son adresse à l'administrateur des
+ponts, qui va le distribuer via https ou e-mail comme indiqué
+ci-dessus. Vous pouvez aussi donner à un utilisateur l'adresse de votre
+pont: si vous utilisez Vidalia, vous pouvez copier-coller l'adresse de la
+passerelle dans la fenêtre Paramètres. Si vous êtes sous Linux ou BSD, vous
+pouvez construire l'adresse de la passerelle manuellement en utilisant le <a
+href="#Understanding">le format ci-dessus</a> (vous pouvez trouver
+l'empreinte dans vos fichiers journaux ou dans
+<tt>/var/lib/tor/fingerprint</tt> selon votre plate-forme).
+ </p>
+
+ <p>
+ Si vous souhaitez en savoir plus sur notre conception des ponts d'un point
+de vue technique, vous pouvez lire les <a
+href="<specblob>bridges-spec.txt">spécifications des Ponts Tor</a>. Si vous
+envisagez de faire tourner un pont inédit ou d'autres utilisations
+non-standard, merci de lire le cahier des charges.
+ </p>
+ </div>
+
+ <!-- END MAINCOL -->
+<div id = "sidecol">
+
+
+ #include "side.wmi"
+#include "info.wmi"
+</div>
+
+<!-- END SIDECOL -->
+</div>
+
+
+#include "foot.wmi"
Added: website/trunk/docs/fr/proxychain.wml
===================================================================
--- website/trunk/docs/fr/proxychain.wml (rev 0)
+++ website/trunk/docs/fr/proxychain.wml 2011-05-23 19:52:20 UTC (rev 24778)
@@ -0,0 +1,70 @@
+
+
+
+
+
+## translation metadata
+# Revision: $Revision: 24336 $
+# Translation-Priority: 1-high
+#include "head.wmi" TITLE="Tor Project: Configuring Tor to use a Proxy" CHARSET="UTF-8"
+<div id="content" class="clearfix">
+ <div id="breadcrumbs">
+ <a href="<page index>">Accueil » </a> <a href="<page
+docs/documentation>">Documentation » </a> <a href="<page
+docs/proxychain>">Configuration de Tor pour l'utilisation d'un proxy</a>
+ </div>
+ <div id="maincol">
+ <a id="proxychain"></a>
+ <h2><a class="anchor" href="#proxychain">Tor: Configuration de Tor pour
+l'utilisation d'un proxy</a></h2>
+ <hr>
+
+ <p>
+ La version actuelle de Tor et le panneau de contrôle graphique Vidalia de
+Tor permettent d'utiliser tout proxy HTTPS ou SOCKS pour accéder au réseau
+Tor. Cela signifie que même si Tor est bloqué par votre réseau local, des
+proxies ouverts peuvent être utilisés en toute sécurité pour se connecter au
+réseau Tor et à l'Internet non censuré. Un inconvénient est que le proxy
+ouvert verra que vous utilisez Tor, mais il ne sera pas en mesure de lire
+votre trafic car il sera chiffré.
+ </p>
+
+ <p>
+ Ces étapes supposent que vous disposez d'une configuration Tor/Vidalia
+fonctionnelle, et que vous avez obtenu une liste de proxiesHTTPS, SOCKS4 ou
+SOCKS5. (Pour préciser, un proxy HTTPS est un proxy HTTP qui supporte
+également les requêtes CONNECT.)
+ <ol>
+ <li>Ouvrez le Panneau de configuration Vidalia, cliquez sur Paramètres.</li>
+ <li>Cliquez sur Réseau. Sélectionnez «J'utilise un proxy pour accéder à
+l'Internet".</li>
+ <li>Sur la ligne d'adresse, entrez l'adresse du proxy ouvert. Cela peut être un
+nom d'hôte ou une adresse IP.</li>
+ <li>Entrez le port du proxy.</li>
+ <li>Généralement, vous n'avez pas besoin d'un nom d'utilisateur et d'un mot de
+passe. Mais si c'est le cas, entrez ces informations dans les champs
+appropriés.</li>
+ <li>Choisissez le type de proxy que vous utilisez, si HTTP/HTTPS, SOCKS4 ou
+SOCKS5.</li>
+ <li>Cliquez sur le bouton Ok. Vidalia et Tor sont maintenant configurés pour
+utiliser un proxy pour accéder au reste du réseau Tor.</li>
+ </ol>
+ </p>
+ <br><br><img src="$(IMGROOT)/vidalia-proxy.png" alt="Page des Paramètres du
+Proxy Réseau de Vidalia"><br><br>
+
+ </div>
+
+ <!-- END MAINCOL -->
+<div id = "sidecol">
+
+
+ #include "side.wmi"
+#include "info.wmi"
+</div>
+
+<!-- END SIDECOL -->
+</div>
+
+
+#include "foot.wmi"
Added: website/trunk/docs/it/tor-doc-windows.wml
===================================================================
--- website/trunk/docs/it/tor-doc-windows.wml (rev 0)
+++ website/trunk/docs/it/tor-doc-windows.wml 2011-05-23 19:52:20 UTC (rev 24778)
@@ -0,0 +1,192 @@
+
+
+
+
+
+## translation metadata
+# Revision: $Revision: 24504 $
+# Translation-Priority: 1-high
+#include "head.wmi" TITLE="Tor Project: MS Windows Install Instructions" CHARSET="UTF-8"
+<div id="content" class="clearfix">
+ <div id="breadcrumbs">
+ <a href="<page index>">Pagina iniziale » </a> <a href="<page
+docs/documentation>">Documentazione » </a> <a href="<page
+docs/tor-doc-windows>">Client Windows</a>
+ </div>
+ <div id="maincol">
+ <h1>Eseguire il <a href="<page index>">Tor</a> client in Microsoft Windows</h1>
+ <br>
+
+ <p>
+ <b>Note that these are the installation instructions for running a Tor
+client on Microsoft Windows (XP, Vista, 7, and Server Editions). If you
+want to relay traffic for others to help the network grow (please do), read
+the <a href="<page docs/tor-doc-relay>">Configuring a relay</a> guide.</b>
+ </p>
+
+ <p>Freedom House has produced a video on how to install Tor. You can view it
+at <a
+href="https://media.torproject.org/video/2009-install-and-use-tor.ogv">How
+to install Tor on Windows</a>. Know of a better video, or one translated
+into your language? Let us know!</p>
+
+ <div class="center">
+ <p><video id="v1" src="https://media.torproject.org/video/2009-install-and-use-tor.ogv" autobuffer="true" controls="controls"></video></p>
+ </div>
+
+ <hr> <a id="installing"></a>
+ <h2><a class="anchor" href="#installing">Passo n.1: scaricare e installare
+Tor</a></h2>
+ <br>
+
+ <p>
+ The Vidalia Bundle for Windows contains <a href="<page index>">Tor</a>, <a
+href="<page projects/vidalia>">Vidalia</a> (a GUI for Tor), <a href="<page
+torbutton/index>">Torbutton</a> (a plugin for Mozilla Firefox), and <a
+href="http://www.pps.jussieu.fr/~jch/software/polipo/">Polipo</a> (a web
+proxy) packaged into one bundle, with the four applications pre-configured
+to work together. Download either the <a
+href="../<package-win32-bundle-stable>">stable</a> or the <a
+href="../<package-win32-bundle-alpha>">experimental</a> version of the
+Vidalia Bundle, or look for more options on the <a href="<page
+download/download>">download page</a>.
+ </p>
+
+ <img alt="tor installer splash page"
+src="$(IMGROOT)/screenshot-win32-installer-splash.png">
+
+ <p>Se Tor, Vidalia o Polipo sono già stati installati, nella finestra di
+dialogo mostrata sotto sarà possibile deselezionare i componenti che non si
+desidera più installare.
+ </p>
+
+ <img alt="select components to install"
+src="$(IMGROOT)/screenshot-win32-installer-components.png">
+
+ <p>Al termine dell'installazione, i componenti selezionati si avvieranno
+automaticamente.
+ </p>
+
+ <p>Per impostazione predefinta, Tor si configurerà come client attraverso un
+file di configurazione predefinito e, nella maggior parte dei casi, non
+occorrerà modificare alcuna impostazione. Da questo momento Tor è
+installato.
+ </p>
+
+ <hr> <a id="using"></a>
+ <h2><a class="anchor" href="#using">Passo n.2: Configurare le applicazioni
+personali per l'utilizzo di Tor</a></h2>
+ <br>
+
+ <p>Dopo aver installato Tor e Polipo, sarà necessario configurare le
+applicazioni personali per poterle utilizzare. Il primo passo è quello di
+configurare il browser web.</p>
+
+ <p>Per una maggiore sicurezza, è consigliabile usare Tor con
+Firefox. L'aggregazione installa al posto dell'utente il <a href="<page
+torbutton/index>">plug-in Torbutton</a>. Riavviare Firefox.
+ </p>
+
+ <img alt="Torbutton plugin for Firefox"
+src="$(IMGROOT)/screenshot-torbutton.png"/> <br>
+
+ <p>
+ Se si vuole eseguire Firefox su un computer diverso rispetto a Tor, vedere
+<a href="<wikifaq>#SocksListenAddress">la sezione FAQ per eseguire Tor su un
+altro computer</a>.
+ </p>
+
+ <p>Per eseguire Tor su altre applicazioni che supportano i proxy HTTP, portarli
+su Polipo (porta localhost 8118). Per utilizzare direttamente SOCKS (per
+messaggistica istantanea, Jabber, IRC ecc.), è possibile portare
+l'applicazione personale direttamente su Tor (porta localhost 9050). Fare
+riferimento <a href="<wikifaq>#SOCKSAndDNS">a questa FAQ</a> per capire i
+motivi per i quali tale azione potrebbe essere pericolosa. Per le
+applicazioni che non supportano né Socks né HTTP, consultare SocksCap o <a
+href="http://www.freecap.ru/eng/">FreeCap</a>. (FreeCap è un software
+gratuito; SocksCap ne è il proprietario).</p>
+
+ <p>Per informazioni su come eseguire Tor su altre applicazioni, vedere <a
+href="<wiki>/TheOnionRouter/TorifyHOWTO">Torify HOWTO</a>.
+ </p>
+
+ <hr> <a id="verify"></a>
+ <h2><a class="anchor" href="#verify">Passo n.3: assicurarsi che Tor sia in
+esecuzione</a></h2>
+ <br>
+
+ <p>
+ Controllare l'effettiva esecuzione di Vidalia. Vidalia usa una piccola
+cipolla per indicare che Tor è in esecuzione o una cipolla nera con una "X"
+di colore rosso quando non lo è. Per avviare o arrestare Tor, è necessario
+fare clic col tasto destro del mouse sull'icona di Vidalia nella barra delle
+applicazioni, e selezionare "Start" o "Stop" dal menu, come mostrato di
+seguito:
+ </p>
+
+ <img alt="Vidalia Tray Icon" src="$(IMGROOT)/screenshot-win32-vidalia.png"/>
+
+ <p>
+ Successivamente, occorrerà usare il browser personale con Tor e assicurarsi
+che il proprio indirizzo IP sia stato occultato. Fare clic sul <a
+href="https://check.torproject.org/">rilevatore Tor </a> e accertarsi che
+sia verificata l'esecuzione di Tor sul computer. (Se ciò non risulta
+possibile, leggere <a href="<wikifaq>#IsMyConnectionPrivate">questa FAQ</a>
+per ulteriori consigli su come analizzare l'esecuzione di Tor).
+ </p>
+
+ <p>Se si è in possesso di un firewall personale che limita la capacità di
+connessione del computer, assicurarsi di consentire le connessioni dalle
+applicazioni alle porte locali 8118 e 9050. Se il firewall blocca le
+connessioni in uscita, usare la tecnica dell'hole punching per far sì che
+venga resa possibile la connessione almeno alle porte TCP 80 e 443; quindi
+vedere <a href="<wikifaq>#FirewalledClient">la seguente FAQ</a>.
+ </p>
+
+ <p>Se Tor non si esegue ancora, consultare <a href="<page
+docs/faq>#DoesntWork"> la seguente FAQ </a> per ulteriori suggerimenti.</p>
+
+ <p>
+ Una volta avviata l'esecuzione, visita questo link per avere maggiori
+informazioni <a href="<page download/download>#Warning">sull'offerta di
+Tor</a>.
+ </p>
+
+ <hr> <a id="server"></a> <a id="relay"></a>
+ <h2><a class="anchor" href="#relay">Passo n.4: Configurare Tor come un relay</a></h2>
+ <br>
+
+ <p>The Tor network relies on volunteers to donate bandwidth. The more people
+who run relays, the faster the Tor network will be. If you have at least 20
+kilobytes/s each way, please help out Tor by configuring your Tor to be a
+relay too. We have many features that make Tor relays easy and convenient,
+including rate limiting for bandwidth, exit policies so you can limit your
+exposure to abuse complaints, and support for dynamic IP addresses.</p>
+
+ <p>Having relays in many different places on the Internet is what makes Tor
+users secure. <a href="<wikifaq>#RelayAnonymity">You may also get stronger
+anonymity yourself</a>, since remote sites can't know whether connections
+originated at your computer or were relayed from others.</p>
+
+ <p>Maggiori informazioni nella guida<a href="<page
+docs/tor-doc-relay>">Configurare un relay</a>.</p>
+
+ <hr>
+
+ <p>Se si hanno consigli su come migliorare questo documento<a href="<page
+about/contact>">inviateceli</a>. Grazie!</p>
+ </div>
+
+ <!-- END MAINCOL -->
+<div id = "sidecol">
+
+
+ #include "side.wmi"
+#include "info.wmi"
+</div>
+
+<!-- END SIDECOL -->
+</div>
+
+
+#include "foot.wmi"
Modified: website/trunk/docs/pl/documentation.wml
===================================================================
--- website/trunk/docs/pl/documentation.wml 2011-05-23 19:44:27 UTC (rev 24777)
+++ website/trunk/docs/pl/documentation.wml 2011-05-23 19:52:20 UTC (rev 24778)
@@ -4,7 +4,7 @@
## translation metadata
-# Revision: $Revision: 24665 $
+# Revision: $Revision: 24728 $
# Translation-Priority: 2-medium
#include "pl/head.wmi" TITLE="Tor: Documentation" CHARSET="UTF-8"
<div id="content" class="clearfix">
@@ -53,10 +53,10 @@
związane z projektem Tora w USA.
</li>
- <li>The <a href="<page docs/tor-manual>">manual</a> lists all the possible
-entries you can put in your <a href="<page docs/faq>#torrc">torrc
-file</a>. We also provide a <a href="<page docs/tor-manual-dev>">manual for
-the development version of Tor</a>.</li>
+ <li><a href="<page docs/tor-manual>">Podręcznik</a> zawiera wszystkie możliwe
+wpisy, które można umieścić w swoim <a href="<page docs/faq>#torrc">pliku
+torrc</a>. Mamy też <a href="<page docs/tor-manual-dev>">podręcznik do
+wersji rozwojowej Tora</a>.</li>
<li>Jsli masz pytania, mamy kanał IRC Tora (dla użytkowników, operatorów
przekaźników sieci i deweloperów): <a href="irc://irc.oftc.net/tor">#tor na
@@ -138,11 +138,10 @@
</li>
<li>
- Nasz <a href="<gitblob>doc/TODO">plik do-zrobienia dla deweloperów</a>
-zaczyna się od terminów obietnic zewnętrznych — spraw, za których
-zrobienie zapłacili <a href="<page about/sponsors>">nasi
-sponsorzy</a>. Zawiera też wiele innych zadań i tematów, za które powinniśmy
-się potem zabrać.
+ Our <a href="https://trac.torproject.org/projects/tor/wiki/sponsors">sponsor
+TODO list</a> starts with a timeline for external promises — things <a
+href="<page about/sponsors>">our sponsors</a> have paid to see done. It also
+lists many other tasks and topics we'd like to tackle next.
</li>
<li>
Modified: website/trunk/docs/pl/faq.wml
===================================================================
--- website/trunk/docs/pl/faq.wml 2011-05-23 19:44:27 UTC (rev 24777)
+++ website/trunk/docs/pl/faq.wml 2011-05-23 19:52:20 UTC (rev 24778)
@@ -1442,14 +1442,15 @@
</p>
<p>
-The solution is "entry guards": each Tor client selects a few relays at
-random to use as entry points, and uses only those relays for her first
-hop. If those relays are not controlled or observed, the attacker can't win,
-ever, and the user is secure. If those relays <i>are</i> observed or
-controlled by the attacker, the attacker sees a larger <i>fraction</i> of
-the user's traffic — but still the user is no more profiled than
-before. Thus, the user has some chance (on the order of <i>(n-c)/n</i>) of
-avoiding profiling, whereas she had none before.
+Rozwiązaniem są "strażnicy wejściowi": każdy klient Tora wybiera kilka
+przekaźników losowo, by służyły jako punkty wejścia i używa tylko tych
+przekaźników do pierwszego skoku. Jeśli te przekaźniki nie są kontrolowane
+ani obserwowane, napatnik nigdy nie może wygrać i użytkownik jest
+bezpieczny. Jeśli te przekaźniki <i>są</i> obserwowane lub kontrolowane
+przez napastnika, widzi on większą <i>część</i> ruchu użytkownika —
+ale użytkownik i tak nie jest bardziej profilowany niż przedtem. Tak więc,
+użytkownik ma jakieś szanse (rzędu <i>(n-c)/n</i>) na uniknięcie
+profilowania, a przedtem nie miał żadnych.
</p>
<p>
Modified: website/trunk/docs/pl/verifying-signatures.wml
===================================================================
--- website/trunk/docs/pl/verifying-signatures.wml 2011-05-23 19:44:27 UTC (rev 24777)
+++ website/trunk/docs/pl/verifying-signatures.wml 2011-05-23 19:52:20 UTC (rev 24778)
@@ -4,7 +4,7 @@
## translation metadata
-# Revision: $Revision: 24624 $
+# Revision: $Revision: 24766 $
# Translation-Priority: 2-medium
#include "pl/head.wmi" TITLE="Tor Project: Verifying Signatures" CHARSET="UTF-8"
<div id="content" class="clearfix">
@@ -41,6 +41,7 @@
<li>Mike'a (0xDDC6C0AD) podpisuje xpi Torbuttona.</li>
<li>Karsten (0xF7C11265) podpisuje archiwa pomiarów i narzędzia.</li>
<li>Roberta Hogana (0x22F6856F) podpisuje wydania torsocks i tagi.</li>
+ <li>Nathan's (0xB374CBD2) signs the Android APK file for Orbot.</li>.
</ul>
<h3>Krok zero: Instalacja GnuPG</h3>
@@ -179,6 +180,11 @@
uid Robert Hogan <robert(a)roberthogan.net>
sub 1024g/FC4A9460 2006-08-19
+ pub 3072D/B374CBD2 2010-06-09 [expires: 2011-06-09]
+ Key fingerprint = B92B CA64 72F7 C6F0 8D47 8503 D2AC D203 B374 CBD2
+ uid Nathan of Guardian <nathan(a)guardianproject.info>
+ sub 4096g/B5878C3B 2010-06-09 [expires: 2011-06-09]
+
</pre>
<h3>Krok trzeci: weryfikacja pobranej paczki</h3>
Modified: website/trunk/download/ar/download.wml
===================================================================
--- website/trunk/download/ar/download.wml 2011-05-23 19:44:27 UTC (rev 24777)
+++ website/trunk/download/ar/download.wml 2011-05-23 19:52:20 UTC (rev 24778)
@@ -4,7 +4,7 @@
## translation metadata
-# Revision: $Revision: 24703 $
+# Revision: $Revision: 24729 $
# Translation-Priority: 3-low
#include "ar/head.wmi" TITLE="Download Tor" CHARSET="UTF-8" ANNOUNCE_RSS="yes" STYLESHEET="css/master-rtl.css"
<div id="content" class="clearfix">
@@ -326,6 +326,12 @@
عدد مستخدمي تور حولك وكلما <a href="<page about/torusers>">تعددت</a>
اهتماماتهم، كلما قل خطر أن تكون منهم.
</li>
+
+<li> 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>.
+</li>
</ol>
<br>
<p>
Modified: website/trunk/download/fr/download.wml
===================================================================
--- website/trunk/download/fr/download.wml 2011-05-23 19:44:27 UTC (rev 24777)
+++ website/trunk/download/fr/download.wml 2011-05-23 19:52:20 UTC (rev 24778)
@@ -4,7 +4,7 @@
## translation metadata
-# Revision: $Revision: 24703 $
+# Revision: $Revision: 24729 $
# Translation-Priority: 3-low
#include "head.wmi" TITLE="Download Tor" CHARSET="UTF-8" ANNOUNCE_RSS="yes"
<div id="content" class="clearfix">
@@ -370,6 +370,12 @@
about/torusers>">diversifiés,</a> et moins dangereux ça sera d'êtes l'un
d'entre-eux.
</li>
+
+<li> 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>.
+</li>
</ol>
<br>
<p>
Modified: website/trunk/download/pl/download.wml
===================================================================
--- website/trunk/download/pl/download.wml 2011-05-23 19:44:27 UTC (rev 24777)
+++ website/trunk/download/pl/download.wml 2011-05-23 19:52:20 UTC (rev 24778)
@@ -4,7 +4,7 @@
## translation metadata
-# Revision: $Revision: 24703 $
+# Revision: $Revision: 24729 $
# Translation-Priority: 3-low
#include "pl/head.wmi" TITLE="Download Tor" CHARSET="UTF-8" ANNOUNCE_RSS="yes"
<div id="content" class="clearfix">
@@ -31,20 +31,20 @@
<td class="nopad"><div class="title"><a name="Windows">Microsoft Windows</a></div></td>
</tr>
<tr>
-<td>The Tor Software for Windows comes bundled in four different ways:
+<td>Oprogramowanie Tor dla Windows jest pakowane na cztery różne sposoby:
<ul>
<li><strong>Paczka Tora z przeglądarką</strong> zawiera wszystko, czego
potrzebujesz bo bezpiecznego przeglądania Internetu. Nie wymaga ona
instalacji. Po prostu rozpakuj i uruchom. <a href="<page
projects/torbrowser>">Dowiedz się więcej i sprawdź inne języki »</a></li>
-<li>The <strong>Vidalia Bundle</strong> contains Tor, <a href="<page
-projects/vidalia>">Vidalia</a>, Polipo, and Torbutton for installation on
-your system. You need your own Firefox, and you'll need to configure other
-applications if you want them to use Tor.</li>
-<li>The <strong>Bridge-by-Default Vidalia Bundle</strong> is a <strong>Vidalia
-Bundle</strong> which is configured to be a <a href="<page
-docs/bridges>">bridge</a> in order to help censored users reach the Tor
-network.</li>
+<li><strong>Paczka z Vidalią</strong> zawiera Tora, <a href="<page
+projects/vidalia>">Vidalię</a>, Polipo i Torbuttona do instalacji na Twoim
+systemie. Musisz skonfigurować swojego własnego Firefoksa i inne aplikacje,
+jeśli chcesz, by używały Tora.</li>
+<li><strong>Paczka Vidalia Domyślnie-Mostek</strong> to <strong>Paczka z
+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><strong>Paczka dla Ekspertów</strong> zawiera tylko Tora i nic poza
tym. Musisz ręcznie skonfigurować Tora i wszystkie swoje aplikacje.</li>
</ul>
@@ -55,9 +55,8 @@
wersji niż paczki stabilne, istnieje w nich większe prawdopodobieństwo
poważnych błędów związanych z niezawodnością i bezpieczeństwem. Proszę się
przygotować na <a href="https://bugs.torproject.org/">zgłaszanie błędów</a>.</p>
-<p>The current stable version of Tor for Windows is <version-win32-stable>.
-The current alpha/unstable version of Tor for Windows is
-<version-win32-alpha>.</p>
+<p>Bieżąca wersja stabilna Tora dla Windows to <version-win32-stable>. Bieżąca
+wersja alfa/niestabilna Tora dla Windows to <version-win32-alpha>.</p>
</td>
</tr>
<tr class="gray">
@@ -69,10 +68,10 @@
</td>
</tr>
<tr>
-<td><span class="windows"> Tor Browser Instant Messaging Bundle (English) has
-been <a
-href="https://blog.torproject.org/blog/tor-im-browser-bundle-discontinued-tempora…">temporarily
-discontinued</a>. </span>
+<td><span class="windows"> Paczka Tora z Przeglądrką i Komunikatorem (po
+angielsku) została <a
+href="https://blog.torproject.org/blog/tor-im-browser-bundle-discontinued-tempora…">tymczasowo
+zawieszona</a>. </span>
</td>
</tr>
<tr class="gray">
@@ -84,14 +83,15 @@
XP, <a href="<package-win32-bundle-stable>">Pobierz Stabilną</a> (<a
href="<package-win32-bundle-stable>.asc">sig</a>) </span></td>
</tr>
- <tr class="gray"><td><span class="windows">Unstable Vidalia Bundle works with Windows 7, Vista,
-XP, <a href="<package-win32-bundle-alpha>">Download Unstable</a> (<a
+ <tr class="gray"><td><span class="windows">Niestabilna Paczka z Vidalią działa z Windows 7,
+Vista, XP, <a href="<package-win32-bundle-alpha>">Pobierz
+Niestabilną</a> (<a
href="<package-win32-bundle-alpha>.asc">sig</a>)</span></td>
</tr>
- <tr class="gray"><td><span class="windows">Unstable Bridge-by-Default Vidalia Bundle works with
+ <tr class="gray"><td><span class="windows">Niestabilna Paczka Domyślnie-Mostek z Vidalią działa z
Windows 7, Vista, XP, <a
-href="../dist/vidalia-bundles/vidalia-bridge-bundle-<version-win32-bridge-bundle-alpha>.exe">Download
-Unstable</a> (<a
+href="../dist/vidalia-bundles/vidalia-bridge-bundle-<version-win32-bridge-bundle-alpha>.exe">Pobierz
+Niestabilną</a> (<a
href="../dist/vidalia-bundles/vidalia-bridge-bundle-<version-win32-bridge-bundle-alpha>.asc">sig</a>)</span></td>
</tr>
<tr>
@@ -131,10 +131,10 @@
potrzebujesz bo bezpiecznego przeglądania Internetu. Nie wymaga ona
instalacji. Po prostu rozpakuj i uruchom. <a href="<page
projects/torbrowser>">Dowiedz się więcej i sprawdź inne języki »</a></li>
-<li>The <strong>Vidalia Bundle</strong> contains Tor, <a href="<page
-projects/vidalia>">Vidalia</a>, Polipo, and Torbutton for installation on
-your system. You need your own Firefox, and you'll need to configure other
-applications if you want them to use Tor.</li>
+<li><strong>Paczka z Vidalią</strong> zawiera Tora, <a href="<page
+projects/vidalia>">Vidalię</a>, Polipo i Torbuttona do instalacji na Twoim
+systemie. Musisz mieć swojego własnego Firefoksa i musisz skonfigurować inne
+aplikacje, jeśli chcesz, by używały Tora.</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
@@ -347,6 +347,12 @@
blisko Ciebie i im bardziej <a href="<page about/torusers>">różne</a> są ich
zainteresowania, tym mniej groźne jest to, że jesteś jednym z nich.
</li>
+
+<li> 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>.
+</li>
</ol>
<br>
<p>
Modified: website/trunk/download/ru/download.wml
===================================================================
--- website/trunk/download/ru/download.wml 2011-05-23 19:44:27 UTC (rev 24777)
+++ website/trunk/download/ru/download.wml 2011-05-23 19:52:20 UTC (rev 24778)
@@ -4,7 +4,7 @@
## translation metadata
-# Revision: $Revision: 24703 $
+# Revision: $Revision: 24729 $
# Translation-Priority: 3-low
#include "head.wmi" TITLE="Download Tor" CHARSET="UTF-8" ANNOUNCE_RSS="yes"
<div id="content" class="clearfix">
@@ -354,6 +354,12 @@
about/torusers>">разнообразны</a> их интересы, тем менее опасным будет тот
факт, что вы один из них.
</li>
+
+<li> 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>.
+</li>
</ol>
<br>
<p>
Added: website/trunk/getinvolved/fi/sidenav.wmi
===================================================================
--- website/trunk/getinvolved/fi/sidenav.wmi (rev 0)
+++ website/trunk/getinvolved/fi/sidenav.wmi 2011-05-23 19:52:20 UTC (rev 24778)
@@ -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/fi/translation-overview.wml
===================================================================
--- website/trunk/getinvolved/fi/translation-overview.wml (rev 0)
+++ website/trunk/getinvolved/fi/translation-overview.wml 2011-05-23 19:52:20 UTC (rev 24778)
@@ -0,0 +1,117 @@
+
+
+
+
+
+## translation metadata
+# Revision: $Revision: 24032 $
+# Translation-Priority: 4-optional
+#include "head.wmi" TITLE="Tor Project: Translation Overview" CHARSET="UTF-8"
+<div id="content" class="clearfix">
+ <div id="breadcrumbs">
+ <a href="<page index>">Koti » </a> <a href="<page
+getinvolved/volunteer>">Osallistu » </a> <a href="<page
+getinvolved/translation-overview>">Käännösten yleiskuva</a>
+ </div>
+ <div id="maincol">
+ <h1>Tor: Käännösten yleiskuva</h1>
+ <hr>
+
+ <p>
+ Kaikki käännösprojektit löytyvät osoitteesta <a
+href="https://www.transifex.net/projects/p/torproject/">https://www.transifex.net/projects/p/torproject/</a>.
+ </p>
+
+ <p>
+ Tor-nippuihin sisältyy useita eri ohjelmia, jotka kaikki tarvitsevat
+käännösapua. Ne ovat tärkeysjärjestyksessä: <a href="<page
+projects/vidalia>">Vidalia</a>, <a href="<page
+torbutton/index>">Torbutton</a>, ja <a
+href="https://check.torproject.org/">TorCheck</a>. Voit auttaa kääntämään
+myös Vidalian ohjetiedostoja, Vidalian asentajaa, Torbutton-alphaa, <a
+href="<page docs/android>">Orbot</a>ia, <a href="<page
+projects/gettor>">GetTor</a>ia, Torin käyttöohjeita ja webbisivuja.
+ </p>
+
+ <p>
+ Luethan alla olevat kappaleet ja tulet auttamaan. Jos tarvitse apua, kysy
+ihmeessä; ojennamme aina mielellämme auttavan kätemme.
+ </p>
+
+ <a id="TTP"></a> <a id="TTPVidalia"></a>
+ <h2><a class="anchor" href="#TTP">Transifexin käyttö</a></h2>
+ <hr>
+
+ <p>
+ <a href="https://www.transifex.net/">Transifex</a> on sivusto, joka antaa
+käyttäjille mahdollisuuden osallistua käännöstyöhön suoraan webbiselaimen
+välityksellä. Kussakin projektissa voi olla lukuisia tiedostoja
+käännettäväksi. Transifexissa näitä tiedostoja kutsutaan lähteiksi
+<i>(resources)</i>. Transifex listaa kaikki tietyn lähteen lauseet tai
+fraasit (joita kutsutaan "sarjoiksi" <i>("strings")</i>), ja antaa
+kiinnostuneille vapaaehtoisille mahdollisuuden kääntää yksittäisiä lauseita
+tai fraaseja kykyjensä mukaan.
+ </p>
+
+ <p>
+ Voit tarkistaa kaikkien käännösten tilan tietylle lähteelle vierailemalla
+kunkin lähteen sivulla. Kaikki tilat päivittyvät reaaliajassa sitä mukaa kun
+uusia käännöksiä lisätään.
+ </p>
+
+ <p>
+ Päästäksesi alkuun Transifexin käytössä sinun on avattava
+käyttäjätili. Vieraile <a
+href="https://www.transifex.net/accounts/register/">tilin rekisteröinti
+-sivulla</a> alkuun pääsemiseksi. Varmista, että annat toimivan
+sähköpostiosoitteen ja vahvan salasanan. Kun olet valmis, klikkaa lähdettä
+jonka haluat kääntää, valitse kielesi ja klikkaa "Translate Now"
+-nappia. Transifex antaa sinulle mahdollisuuden lukita käännös, jotta muut
+tietävät sinun työstävän sitä. Voit myös ladata po-tiedoston koneellesi
+käännettäväksi ja lähettää sen takaisin kun olet valmis.
+ </p>
+
+ <p>
+ Transifex tukee automaattisia käännöksiä Google Translaten API:a käyttäen
+(joka tukee tällä hetkellä noin 50 eri kieltä). Jos Google Translaten API
+tukee kieltä, jolla työskentelet, näet keltaisen salaman tekstikentän
+vasemmalla puolella (kun liikutat hiirtä sen yllä).
+ </p>
+
+ <p>
+ Jos pystyt, käännä näkemäsi sarjat ja klikkaa 'Tallenna kaikki' -nappulaa
+sivun alareunassa. Jos et ole varma, klikkaa 'ehdotukset' -nappia (joka
+näkyy kun liikutat hiirtä tekstikentän yllä). Jätä vapaasti kommentteja
+mihin tahansa käännökseen, jos sinusta tuntuu, että jokin asia kaipaa
+selvennystä.
+ </p>
+
+ <p>
+ Edistyneemmät käyttäjät, jotka kääntävät mieluummin ilman webbiselainta,
+voivat myös ladata .po-tiedoston suoraan. Tämä optio löytyy kun olet
+valinnut lähteen nimen ja kielen. Jos tämä optio sopii työskentelytapoihisi,
+käytä ihmeessä sitä! Ohjelma nimeltä <a
+href="http://www.poedit.net/">Poedit</a> tekee hommasta helpomman, etenkin
+oikealta vasemmalle kirjoitettavissa kielissä, jotka eivät toimi niin hyvin
+tekstieditoreissa. Jos käytät Poeditiä, sinun on otettava pois päältä
+.mo-tiedostojen kokoaminen Poeditin asetuksissa (File -> Preferences
+-> Editor -> Behavior, poista valinta kohdasta "Automatically compile
+.mo file on save"). Kun olet saanut valmiiksi .po-tiedoston kääntämisen,
+voit lähettää sen klikkaamalla kääntämäsi lähteen nimeä, valitsemalla oman
+kielesi ja klikkaamalla "Lähetä tiedosto" -nappia.
+ </p>
+ </div>
+
+ <!-- END MAINCOL -->
+<div id = "sidecol">
+
+
+ #include "side.wmi"
+#include "info.wmi"
+</div>
+
+<!-- END SIDECOL -->
+</div>
+
+
+#include "foot.wmi"
Added: website/trunk/getinvolved/it/sidenav.wmi
===================================================================
--- website/trunk/getinvolved/it/sidenav.wmi (rev 0)
+++ website/trunk/getinvolved/it/sidenav.wmi 2011-05-23 19:52:20 UTC (rev 24778)
@@ -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/it/translation.wml
===================================================================
--- website/trunk/getinvolved/it/translation.wml (rev 0)
+++ website/trunk/getinvolved/it/translation.wml 2011-05-23 19:52:20 UTC (rev 24778)
@@ -0,0 +1,95 @@
+
+
+
+
+
+## translation metadata
+# Revision: $Revision: 24025 $
+# Translation-Priority: 4-optional
+#include "head.wmi" TITLE="Tor Website Translation Guidelines" CHARSET="UTF-8"
+<div id="content" class="clearfix">
+ <div id="breadcrumbs">
+ <a href="<page index>">Pagina iniziale » </a> <a href="<page
+getinvolved/volunteer>">Collabora » </a> <a href="<page
+getinvolved/translation>">Istruzioni per la traduzione</a>
+ </div>
+ <div id="maincol">
+ <h1>Istruzioni per la traduzione del sito di Tor</h1>
+ <hr>
+
+ <p>
+ Chi fosse interessato a collaborare alla traduzione del sito in altre lingue
+e la documentazione di Tor, qui di seguito troverà le istruzioni per farlo
+nella maniera migliore.
+ </p>
+
+ <p>
+ Se si desidera tradurre altre informazioni relative al progetto Tor,
+visitare la pagina <a href="<page
+getinvolved/translation-overview>">Informazioni generali sulla
+traduzione</a> per conoscere i contenuti che richiedono una traduzione. Se
+ciò non risulta possibile, contattateci via posta elettronica:
+<tt>tor-translation AT torproject.org</tt>.
+ </p>
+
+ <p>
+ Non è necessario tradurre una grande quantità di testo, poche pagine sono
+altrettanto utili. Inoltre, per rendere il testo più leggibile nella lingua
+in cui verrà tradotto, è preferibile una traduzione dei concetti piuttosto
+di una traduzione del testo parola per parola.</p>
+
+ <p>
+ Abbiamo bisogno delle traduzioni relative ai file di intestazione, piè di
+pagina, menu e navigazione del sito. I file con estensione .wmi sono
+recuperabili nell'archivio SVN, nelle seguenti cartelle: <a
+href="https://svn.torproject.org/svn/website/trunk/about/en/">about/en</a>,
+<a href="https://svn.torproject.org/svn/website/trunk/docs/en/">docs/en</a>,
+<a
+href="https://svn.torproject.org/svn/website/trunk/donate/en/">donate/en</a>,
+<a href="https://svn.torproject.org/svn/website/trunk/en/">en</a>, <a
+href="https://svn.torproject.org/svn/website/trunk/getinvolved/en/">getinvolved/en</a>,
+<a href="https://svn.torproject.org/svn/website/trunk/include/">include</a>,
+<a
+href="https://svn.torproject.org/svn/website/trunk/press/en/">press/en</a>,
+<a
+href="https://svn.torproject.org/svn/website/trunk/projects/en/">projects/en</a>
+and <a
+href="https://svn.torproject.org/svn/website/trunk/torbutton/en/">torbutton/en</a>.
+ </p>
+
+ <p>
+ Oltre a ciò, abbiamo la necessità di traduzioni per i diagrammi della pagina
+delle <a href="<page about/overview>">informazioni generali </a>. Il
+traduttore dovrà inviare il testo tradotto contenuto nei diagrammi e sarà
+nostro compito provvedere a realizzare le nuove versioni delle immagini.
+ </p>
+
+ <p>
+ Quando si possiedono delle traduzioni pronte per essere inviate, spedirle
+all'alias <tt>tor-translation</tt> alla <a href="<page
+about/contact>">pagina dei contatti</a>. (Se si vogliono apportare
+modifiche a pagine già tradotte, utilizzare lo strumento diff per generare,
+se possibile, file di patch.) Altrimenti, vi verrà fornito un account SVN
+per gestire direttamente le modifiche sul testo.
+ </p>
+
+ <p>Abbiamo la necessità di traduttori anche per altri progetti collegati a Tor;
+visitare il nostro portale di traduzione <a href="<page
+getinvolved/translation-overview>">per tradurre gli altri utili software
+collegati</a>.
+ </p>
+ </div>
+
+ <!-- END MAINCOL -->
+<div id = "sidecol">
+
+
+ #include "side.wmi"
+#include "info.wmi"
+</div>
+
+<!-- END SIDECOL -->
+</div>
+
+
+#include "foot.wmi"
Added: website/trunk/projects/cy/sidenav.wmi
===================================================================
--- website/trunk/projects/cy/sidenav.wmi (rev 0)
+++ website/trunk/projects/cy/sidenav.wmi 2011-05-23 19:52:20 UTC (rev 24778)
@@ -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/projects/cy/torweather.wml
===================================================================
--- website/trunk/projects/cy/torweather.wml (rev 0)
+++ website/trunk/projects/cy/torweather.wml 2011-05-23 19:52:20 UTC (rev 24778)
@@ -0,0 +1,39 @@
+
+
+
+
+
+## translation metadata
+# Revision: $Revision: 24200 $
+# Translation-Priority: 3-low
+#include "head.wmi" TITLE="Tor Project: Tor Weather" CHARSET="UTF-8" ANNOUNCE_RSS="yes"
+<div id="content" class="clearfix">
+<div id="breadcrumbs">
+ <a href="<page index>">Hafan » </a> <a href="<page
+projects/projects>">Prosiectau » </a> <a href="<page
+projects/torweather>">Tywydd Tor</a>
+ </div>
+<div id="maincol">
+
+ <h1>Tywydd</h1>
+ <p>Cais ar y we sy'n caniatáu i weithredwyr cyfnewid Tor danysgrifio i
+rhybuddion ynghylch argaeledd eu cyfnewid yw <a
+href="https://weather.torproject.org">Tor Weather</a>, a yw eu lled band ras
+gyfnewid wedi gostwng yn ddramatig, neu a yw eu Tor fersiwn yn darfod.</p>
+
+ </div>
+
+ <!-- END MAINCOL -->
+<div id = "sidecol">
+
+
+ #include "side.wmi"
+#include "info.wmi"
+</div>
+
+<!-- END SIDECOL -->
+</div>
+
+
+
+#include "foot.wmi"
Modified: website/trunk/projects/it/vidalia.wml
===================================================================
--- website/trunk/projects/it/vidalia.wml 2011-05-23 19:44:27 UTC (rev 24777)
+++ website/trunk/projects/it/vidalia.wml 2011-05-23 19:52:20 UTC (rev 24778)
@@ -4,7 +4,7 @@
## translation metadata
-# Revision: $Revision: 24618 $
+# Revision: $Revision: 24773 $
# Translation-Priority: 4-optional
#include "head.wmi" TITLE="Tor Project: Vidalia" CHARSET="UTF-8" ANNOUNCE_RSS="yes"
<div id="content" class="clearfix">
@@ -40,7 +40,7 @@
<p>
Vidalia ti permette di avviare e terminare l'esecuzione di Tor, di
visualizzare la quantità di bandalarga che si sta consumando, di controllare
-quanti circuiti sono attivi e dove sono connessi attraverso una mappa
+quanti circuiti sono attivi e dove sono connessi, attraverso una mappa
mondiale; di visualizzare i messaggi di Tor relativi al suo progresso e al
suo stato corrente e di configurare client, bridge o relay con una semplice
interfaccia. In Vidalia è inoltre inclusa una guida completa che aiuta a
@@ -92,6 +92,27 @@
</li>
</ul>
+ <h4>Alpha Releases</h4>
+ <p> The most recent alpha release is: 0.3.0</p>
+ <p> <strong>WARNING</strong> this are very alpha bundles.</p>
+ <ul>
+ <li>
+ <a
+href="https://archive.torproject.org/tor-package-archive/technology-preview/vidal…">Windows
+Installer</a> (<a
+href="https://archive.torproject.org/tor-package-archive/technology-preview/vidal…">sig</a>)
+ </li>
+ <li>
+ <a
+href="https://archive.torproject.org/tor-package-archive/technology-preview/vidal…">Mac
+OS X x86 Only</a> (<a
+href="https://archive.torproject.org/tor-package-archive/technology-preview/vidal…">sig</a>)
+ </li>
+ <li>
+ <a href="../dist/vidalia/vidalia-0.3.0.tar.gz">Source Tarball</a> (<a
+href="../dist/vidalia/vidalia-0.3.0-alpha.tar.gz.asc">sig</a>)
+ </li>
+ </ul>
<a id="Contribute"></a>
<h3><a class="anchor" href="#Contribute">Contributo</a></h3>
Modified: website/trunk/projects/pl/vidalia.wml
===================================================================
--- website/trunk/projects/pl/vidalia.wml 2011-05-23 19:44:27 UTC (rev 24777)
+++ website/trunk/projects/pl/vidalia.wml 2011-05-23 19:52:20 UTC (rev 24778)
@@ -4,7 +4,7 @@
## translation metadata
-# Revision: $Revision: 24618 $
+# Revision: $Revision: 24773 $
# Translation-Priority: 4-optional
#include "pl/head.wmi" TITLE="Tor Project: Vidalia" CHARSET="UTF-8" ANNOUNCE_RSS="yes"
<div id="content" class="clearfix">
@@ -90,6 +90,27 @@
</li>
</ul>
+ <h4>Alpha Releases</h4>
+ <p> The most recent alpha release is: 0.3.0</p>
+ <p> <strong>WARNING</strong> this are very alpha bundles.</p>
+ <ul>
+ <li>
+ <a
+href="https://archive.torproject.org/tor-package-archive/technology-preview/vidal…">Windows
+Installer</a> (<a
+href="https://archive.torproject.org/tor-package-archive/technology-preview/vidal…">sig</a>)
+ </li>
+ <li>
+ <a
+href="https://archive.torproject.org/tor-package-archive/technology-preview/vidal…">Mac
+OS X x86 Only</a> (<a
+href="https://archive.torproject.org/tor-package-archive/technology-preview/vidal…">sig</a>)
+ </li>
+ <li>
+ <a href="../dist/vidalia/vidalia-0.3.0.tar.gz">Source Tarball</a> (<a
+href="../dist/vidalia/vidalia-0.3.0-alpha.tar.gz.asc">sig</a>)
+ </li>
+ </ul>
<a id="Contribute"></a>
<h3><a class="anchor" href="#Contribute">Wkład w projekt</a></h3>
Added: website/trunk/projects/vi/gettor.wml
===================================================================
--- website/trunk/projects/vi/gettor.wml (rev 0)
+++ website/trunk/projects/vi/gettor.wml 2011-05-23 19:52:20 UTC (rev 24778)
@@ -0,0 +1,117 @@
+
+
+
+
+
+## translation metadata
+# Revision: $Revision: 24336 $
+# Translation-Priority: 3-low
+#include "head.wmi" TITLE="Tor Project: GetTor email autoresponder" 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/gettor>">GetTor » </a>
+ </div>
+ <div id="maincol">
+
+ <h1>Hệ thống tự động trả lời email GetTor</h1>
+<p>GetTor là một chương trình cung cấp bộ cài Tor và các tập tin liên quan
+thông qua email.</p>
+
+<h2>Tìm GetTor</h2>
+
+<p>Mỗi người dùng có thể có một phương pháp tìm ra địa chỉ email còn hiệu ực
+của GetTor. Hiện tại, địa chỉ email GetTor ổn định nhất là
+gettor(a)torproject.org, được quản lí bởi Tor Project.</p>
+
+
+<h2>Yêu cầu cần thết để sử dụng GetTor</h2>
+
+<p>Người sử dụng dùng GetTor bằng cách gửi email. Hiện tại, các từ khóa phải
+bằng tiếng Anh. Người dùng phải sử dụng dịch vụ email của nhà cung cấp dịch
+vụ nào hỗ trợ DKIM. Người dùng sẽ được thông báo khi gửi email từ nhà cung
+cấp dịch vụ không được hỗ trợ.</p>
+
+<h2>Sử dụng GetTor</h2>
+
+<p>Hiện tại, người dùng chỉ có một số lựa chọn giới hạn. Tốt nhất là bạn nên
+gửi một email với phần nội dung thư là từ "help" (không có ngoặc kép; tiêu
+đề thư có thể để trống) để lấy thông tin trợ giúp.</p>
+
+<pre>
+ Xin chào, đây là GetTor.
+
+ Xin lỗi nhưng GetTor không hiểu yêu cầu của bạn. Hãy chọn
+ một trong các tập tin sau:
+
+ panther-bundle
+ source-bundle
+ windows-bundle
+ tiger-bundle
+ tor-browser-bundle
+ tor-im-browser-bundle
+
+ Xin gửi GetTor một email khác, nội dung thư chỉ là tên của tập tin mà bạn muốn.
+</pre>
+<br>
+
+<p>Ví dụ, bạn có thể lấy phần mềm phiên bản mới nhất dùng cho Windows. Bạn chỉ
+cần gửi email với cụm từ "windows-bundle" trong nội dung thư. Email trả lời
+sẽ giống như sau:</p>
+
+<pre>
+ Xin chào! Đây là GetTor.
+
+ Đây là phần mềm bạn yêu cầu dưới dạng nén zip. Xin giải nén
+ tập tin và kiểm tra chữ kí.
+
+ Gợi ý: Nếu máy tính có cài GnuPG, sử dụng công cụ dòng lệnh gpg để giải nén tập tin zip như sau:
+
+ gpg --verify <têntậptin>.asc <têntậptin>
+
+ Kết quả trả về trong cửa sổ lệnh sẽ giống như sau:
+
+ gpg: Good signature from "Roger Dingledine <arma(a)mit.edu>"
+
+ Nếu bạn không quen với những công cụ dòng lệnh, hãy thử tìm một gói giao diện đồ họa cho GnuPG trên website:
+
+ http://www.gnupg.org/related_software/frontends.html
+
+ Chúc vui vẻ.
+</pre>
+<br>
+
+<p>Email cũng sẽ có một tập tin đính kèm tên "windows-bundle.z". Bạn phải giải
+nén tập tin zip và kiểm tra chữ kí từ Tor Project nếu muốn.</p>
+
+<h2>Đang giải nén và kiểm tra các tập tin được yêu cầu</h2>
+
+<p>Bạn nên có một phần mềm để giải nén tập tin .zip. Tập tin đó chứa ít nhất 2
+tập tin: tập tin cài đặt và chữ kí điện tử. Trước khi bạn cài đặt, nên kiểm
+tra chữ kí.</p>
+
+<p>Bạn nên làm theo những chỉ dẫn để <a href="<page
+docs/verifying-signatures>">kiểm tra chữ kí</a>.</p>
+
+<h2>Đang cài đặt những tập tin được yêu cầu.</h2>
+
+<p>sau khi kiểm tra tính toàn vẹn của các tập tin, bạn chỉ cần chạy chương
+trình. Nếu bạn yêu cầu mã nguồn Tor, chúng tôi cho rằng bạn có khả năng làm
+theo những chỉ dẫn trong bộ mã nguồn.</p>
+
+ </div>
+
+ <!-- END MAINCOL -->
+<div id = "sidecol">
+
+
+ #include "side.wmi"
+#include "info.wmi"
+</div>
+
+<!-- END SIDECOL -->
+</div>
+
+
+#include "foot.wmi"
Added: website/trunk/projects/vi/sidenav.wmi
===================================================================
--- website/trunk/projects/vi/sidenav.wmi (rev 0)
+++ website/trunk/projects/vi/sidenav.wmi 2011-05-23 19:52:20 UTC (rev 24778)
@@ -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/projects/vi/torbrowser-details.wml
===================================================================
--- website/trunk/projects/vi/torbrowser-details.wml (rev 0)
+++ website/trunk/projects/vi/torbrowser-details.wml 2011-05-23 19:52:20 UTC (rev 24778)
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+## translation metadata
+# Revision: $Revision: 23689 $
+# Translation-Priority: 4-optional
+#include "head.wmi" TITLE="Tor Browser Bundle: Details" CHARSET="UTF-8"
+<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/torbrowser>">TorBrowser</a>
+ </div>
+ <div id="maincol">
+
+
+
+ <!-- PUT CONTENT AFTER THIS TAG -->
+<h2>Tor Browser Bundle: Chi tiết</h2>
+ <hr>
+
+ <h3 id="contents">Nội dung</h3>
+
+ <ul>
+ <li>Vidalia <version-torbrowser-vidalia></li>
+ <li>Tor <version-torbrowser-tor> (with <version-torbrowser-tor-components>)</li>
+ <li>FirefoxPortable <version-torbrowser-firefox> (bao gồm Firefox
+<version-torbrowser-firefox> và Torbutton <version-torbrowser-torbutton>)</li>
+ <li>Polipo <version-torbrowser-polipo></li>
+ <li>Pidgin <version-torbrowser-pidgin> và OTR <version-torbrowser-otr> (chỉ có
+trong Tor IM Browser Bundle)</li>
+ </ul>
+
+ <h3 id="build">Building the bundle</h3>
+
+ <p>To re-build the bundle, download the <a
+href="../dist/torbrowser/tor-browser-<version-torbrowserbundle>-src.tar.gz">source
+distribution</a> (<a
+href="../dist/torbrowser/tor-browser-<version-torbrowserbundle>-src.tar.gz.asc">signature</a>).
+See <a href="<tbbrepo>/README">README</a> for the directory layout and
+changelog. Build instructions can be found in <a
+href="<tbbrepo>/build-scripts/INSTALL">build-scripts/INSTALL</a>.</p>
+ </div>
+
+ <!-- END MAINCOL -->
+<div id = "sidecol">
+
+
+ #include "side.wmi"
+#include "info.wmi"
+</div>
+
+<!-- END SIDECOL -->
+</div>
+
+
+#include "foot.wmi"
1
0