tor-commits
Threads by month
- ----- 2025 -----
- July
- 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
September 2011
- 19 participants
- 865 discussions

[tor/master] Make documentation for TokenBucketRefillInterval match its behavior
by nickm@torproject.org 22 Sep '11
by nickm@torproject.org 22 Sep '11
22 Sep '11
commit 1e611846280b3198445e4e6d8fb56c426e452b7b
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Wed Sep 7 21:03:08 2011 -0400
Make documentation for TokenBucketRefillInterval match its behavior
---
doc/tor.1.txt | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/tor.1.txt b/doc/tor.1.txt
index 05f52f8..15f5a21 100644
--- a/doc/tor.1.txt
+++ b/doc/tor.1.txt
@@ -737,13 +737,13 @@ The following options are useful only for clients (that is, if
unattached waiting for an appropriate circuit, before we fail it. (Default:
2 minutes.)
-**TokenBucketRefillInterval** __NUM__::
+**TokenBucketRefillInterval** __NUM__ [**msec**|**second**]::
Set the refill interval of Tor's token bucket to NUM milliseconds.
- NUM must be positive and either a divisor or a multiple of 1 second.
- Note that this option retains the configured bandwidth limits and refills
- token buckets only in ratio to the interval. This option will be ignored
- when Tor was built with Libevent's bufferevents enabled. (Default: 1 second)
-
+ NUM must be between 1 and 1000, inclusive. Note that the configured
+ bandwidth limits are still expressed in bytes per second: this
+ option only affects the frequency with which Tor checks to see whether
+ previously exhausted connections may read again. This option is
+ if Tor was built with Libevent's bufferevents enabled. (Default: 10 msec.)
**TrackHostExits** __host__,__.domain__,__...__::
For each value in the comma separated list, Tor will track recent
1
0

[tor/master] Refactor connection_bucket_refill(_helper) to avoid roundoff
by nickm@torproject.org 22 Sep '11
by nickm@torproject.org 22 Sep '11
22 Sep '11
commit 052b95e2f196211c97b33ce8c68960e1c2561ea0
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Wed Sep 7 21:22:02 2011 -0400
Refactor connection_bucket_refill(_helper) to avoid roundoff
We were doing "divide bandwidth by 1000, then multiply by msec", but
that would lose accuracy: instead of getting your full bandwidth,
you'd lose up to 999 bytes per sec. (Not a big deal, but every byte
helps.)
Instead, do the multiply first, then the division. This can easily
overflow a 32-bit value, so make sure to do it as a 64-bit operation.
---
src/or/connection.c | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/src/or/connection.c b/src/or/connection.c
index 42d7e2f..cb93a81 100644
--- a/src/or/connection.c
+++ b/src/or/connection.c
@@ -2389,7 +2389,7 @@ connection_bucket_init(void)
}
/** Refill a single <b>bucket</b> called <b>name</b> with bandwidth rate
- * per millisecond <b>rate</b> and bandwidth burst per refill interval
+ * per second <b>rate</b> and bandwidth burst per refill interval
* <b>burst</b>, assuming that <b>milliseconds_elapsed</b> milliseconds
* have passed since the last call. */
static void
@@ -2398,13 +2398,13 @@ connection_bucket_refill_helper(int *bucket, int rate, int burst,
const char *name)
{
int starting_bucket = *bucket;
- if (starting_bucket < burst && milliseconds_elapsed) {
- if (((burst - starting_bucket)/milliseconds_elapsed) < rate) {
+ if (starting_bucket < burst && milliseconds_elapsed > 0) {
+ int64_t incr = (((int64_t)rate) * milliseconds_elapsed) / 1000;
+ if ((burst - starting_bucket) < incr) {
*bucket = burst; /* We would overflow the bucket; just set it to
* the maximum. */
} else {
- int incr = rate*milliseconds_elapsed;
- *bucket += incr;
+ *bucket += (int)incr;
if (*bucket > burst || *bucket < starting_bucket) {
/* If we overflow the burst, or underflow our starting bucket,
* cap the bucket value to burst. */
@@ -2425,11 +2425,11 @@ connection_bucket_refill(int milliseconds_elapsed, time_t now)
smartlist_t *conns = get_connection_array();
int bandwidthrate, bandwidthburst, relayrate, relayburst;
- bandwidthrate = (int)options->BandwidthRate / 1000;
+ bandwidthrate = (int)options->BandwidthRate;
bandwidthburst = (int)options->BandwidthBurst;
if (options->RelayBandwidthRate) {
- relayrate = (int)options->RelayBandwidthRate / 1000;
+ relayrate = (int)options->RelayBandwidthRate;
relayburst = (int)options->RelayBandwidthBurst;
} else {
relayrate = bandwidthrate;
@@ -2464,7 +2464,7 @@ connection_bucket_refill(int milliseconds_elapsed, time_t now)
{
if (connection_speaks_cells(conn)) {
or_connection_t *or_conn = TO_OR_CONN(conn);
- int orbandwidthrate = or_conn->bandwidthrate / 1000;
+ int orbandwidthrate = or_conn->bandwidthrate;
int orbandwidthburst = or_conn->bandwidthburst;
if (connection_bucket_should_increase(or_conn->read_bucket, or_conn)) {
connection_bucket_refill_helper(&or_conn->read_bucket,
1
0

[tor/master] Make bufferevents work with TokenBucketRefillInterval
by nickm@torproject.org 22 Sep '11
by nickm@torproject.org 22 Sep '11
22 Sep '11
commit 41dfc4c19c4e0ee37d092fa0ed7faf349e6ab467
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Wed Sep 7 22:00:48 2011 -0400
Make bufferevents work with TokenBucketRefillInterval
---
doc/tor.1.txt | 3 +--
src/common/compat_libevent.c | 34 +++++++++++++++++++++-------------
src/common/compat_libevent.h | 2 +-
src/or/config.c | 1 +
src/or/connection.c | 5 ++++-
src/or/connection_or.c | 7 ++++++-
6 files changed, 34 insertions(+), 18 deletions(-)
diff --git a/doc/tor.1.txt b/doc/tor.1.txt
index 15f5a21..4ae721e 100644
--- a/doc/tor.1.txt
+++ b/doc/tor.1.txt
@@ -742,8 +742,7 @@ The following options are useful only for clients (that is, if
NUM must be between 1 and 1000, inclusive. Note that the configured
bandwidth limits are still expressed in bytes per second: this
option only affects the frequency with which Tor checks to see whether
- previously exhausted connections may read again. This option is
- if Tor was built with Libevent's bufferevents enabled. (Default: 10 msec.)
+ previously exhausted connections may read again. (Default: 10 msec.)
**TrackHostExits** __host__,__.domain__,__...__::
For each value in the comma separated list, Tor will track recent
diff --git a/src/common/compat_libevent.c b/src/common/compat_libevent.c
index beae950..3201738 100644
--- a/src/common/compat_libevent.c
+++ b/src/common/compat_libevent.c
@@ -169,6 +169,7 @@ struct event_base *the_event_base = NULL;
#ifdef USE_BUFFEREVENTS
static int using_iocp_bufferevents = 0;
+static void tor_libevent_set_tick_timeout(int msec_per_tick);
int
tor_libevent_using_iocp_bufferevents(void)
@@ -236,6 +237,10 @@ tor_libevent_initialize(tor_libevent_cfg *torcfg)
"You have a *VERY* old version of libevent. It is likely to be buggy; "
"please build Tor with a more recent version.");
#endif
+
+#ifdef USE_BUFFEREVENTS
+ tor_libevent_set_tick_timeout(torcfg->msec_per_tick);
+#endif
}
/** Return the current Libevent event base that we're set up to use. */
@@ -598,26 +603,29 @@ static const struct timeval *one_tick = NULL;
/**
* Return a special timeout to be passed whenever libevent's O(1) timeout
* implementation should be used. Only use this when the timer is supposed
- * to fire after 1 / TOR_LIBEVENT_TICKS_PER_SECOND seconds have passed.
+ * to fire after msec_per_tick ticks have elapsed.
*/
const struct timeval *
tor_libevent_get_one_tick_timeout(void)
{
- if (PREDICT_UNLIKELY(one_tick == NULL)) {
- struct event_base *base = tor_libevent_get_base();
- struct timeval tv;
- if (TOR_LIBEVENT_TICKS_PER_SECOND == 1) {
- tv.tv_sec = 1;
- tv.tv_usec = 0;
- } else {
- tv.tv_sec = 0;
- tv.tv_usec = 1000000 / TOR_LIBEVENT_TICKS_PER_SECOND;
- }
- one_tick = event_base_init_common_timeout(base, &tv);
- }
+ tor_assert(one_tick);
return one_tick;
}
+/** Initialize the common timeout that we'll use to refill the buckets every
+ * time a tick elapses. */
+static void
+tor_libevent_set_tick_timeout(int msec_per_tick)
+{
+ struct event_base *base = tor_libevent_get_base();
+ struct timeval tv;
+
+ tor_assert(! one_tick);
+ tv.tv_sec = msec_per_tick / 1000;
+ tv.tv_usec = (msec_per_tick % 1000) * 1000;
+ one_tick = event_base_init_common_timeout(base, &tv);
+}
+
static struct bufferevent *
tor_get_root_bufferevent(struct bufferevent *bev)
{
diff --git a/src/common/compat_libevent.h b/src/common/compat_libevent.h
index 15b0fc2..0247297 100644
--- a/src/common/compat_libevent.h
+++ b/src/common/compat_libevent.h
@@ -62,6 +62,7 @@ int tor_event_base_loopexit(struct event_base *base, struct timeval *tv);
typedef struct tor_libevent_cfg {
int disable_iocp;
int num_cpus;
+ int msec_per_tick;
} tor_libevent_cfg;
void tor_libevent_initialize(tor_libevent_cfg *cfg);
@@ -73,7 +74,6 @@ void tor_check_libevent_header_compatibility(void);
const char *tor_libevent_get_version_str(void);
#ifdef USE_BUFFEREVENTS
-#define TOR_LIBEVENT_TICKS_PER_SECOND 3
const struct timeval *tor_libevent_get_one_tick_timeout(void);
int tor_libevent_using_iocp_bufferevents(void);
int tor_set_bufferevent_rate_limit(struct bufferevent *bev,
diff --git a/src/or/config.c b/src/or/config.c
index 5a7a590..e22f539 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -5645,6 +5645,7 @@ init_libevent(const or_options_t *options)
memset(&cfg, 0, sizeof(cfg));
cfg.disable_iocp = options->DisableIOCP;
cfg.num_cpus = get_num_cpus(options);
+ cfg.msec_per_tick = options->TokenBucketRefillInterval;
tor_libevent_initialize(&cfg);
diff --git a/src/or/connection.c b/src/or/connection.c
index cb93a81..9dd9297 100644
--- a/src/or/connection.c
+++ b/src/or/connection.c
@@ -2561,7 +2561,10 @@ connection_bucket_init(void)
burst = options->BandwidthBurst;
}
- rate /= TOR_LIBEVENT_TICKS_PER_SECOND;
+ /* This can't overflow, since TokenBucketRefillInterval <= 1000,
+ * and rate started out less than INT32_MAX. */
+ rate = (rate * options->TokenBucketRefillInterval) / 1000;
+
bucket_cfg = ev_token_bucket_cfg_new((uint32_t)rate, (uint32_t)burst,
(uint32_t)rate, (uint32_t)burst,
tick);
diff --git a/src/or/connection_or.c b/src/or/connection_or.c
index a75444e..29f0f8d 100644
--- a/src/or/connection_or.c
+++ b/src/or/connection_or.c
@@ -580,7 +580,12 @@ connection_or_update_token_buckets_helper(or_connection_t *conn, int reset,
{
const struct timeval *tick = tor_libevent_get_one_tick_timeout();
struct ev_token_bucket_cfg *cfg, *old_cfg;
- int rate_per_tick = rate / TOR_LIBEVENT_TICKS_PER_SECOND;
+ int64_t rate64 = (((int64_t)rate) * options->TokenBucketRefillInterval)
+ / 1000;
+ /* This can't overflow, since TokenBucketRefillInterval <= 1000,
+ * and rate started out less than INT_MAX. */
+ int rate_per_tick = (int) rate64;
+
cfg = ev_token_bucket_cfg_new(rate_per_tick, burst, rate_per_tick,
burst, tick);
old_cfg = conn->bucket_cfg;
1
0
commit 5a8dcca8f7f8637792d63a9aec1408da26c7cbe6
Merge: 40288e1 fee094a
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Thu Sep 22 15:54:40 2011 -0400
Merge branch 'feature3630-rebased'
changes/feature3630 | 8 +++
doc/tor.1.txt | 7 +++
src/common/compat_libevent.c | 34 ++++++++-----
src/common/compat_libevent.h | 2 +-
src/or/config.c | 13 +++++
src/or/connection.c | 71 ++++++++++++++++-----------
src/or/connection_or.c | 7 ++-
src/or/main.c | 110 ++++++++++++++++++++++++++++++++---------
src/or/or.h | 2 +
9 files changed, 185 insertions(+), 69 deletions(-)
1
0

22 Sep '11
commit fee094afcdd8589f29be82190acd73dbb60ee08b
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Thu Sep 22 15:07:01 2011 -0400
Fix issues in 3630 patch noted by Karsten
---
src/or/connection.c | 10 +++++-----
src/or/or.h | 3 +--
2 files changed, 6 insertions(+), 7 deletions(-)
diff --git a/src/or/connection.c b/src/or/connection.c
index 9dd9297..ad63a9d 100644
--- a/src/or/connection.c
+++ b/src/or/connection.c
@@ -2388,10 +2388,10 @@ connection_bucket_init(void)
}
}
-/** Refill a single <b>bucket</b> called <b>name</b> with bandwidth rate
- * per second <b>rate</b> and bandwidth burst per refill interval
- * <b>burst</b>, assuming that <b>milliseconds_elapsed</b> milliseconds
- * have passed since the last call. */
+/** Refill a single <b>bucket</b> called <b>name</b> with bandwidth rate per
+ * second <b>rate</b> and bandwidth burst <b>burst</b>, assuming that
+ * <b>milliseconds_elapsed</b> milliseconds have passed since the last
+ * call. */
static void
connection_bucket_refill_helper(int *bucket, int rate, int burst,
int milliseconds_elapsed,
@@ -2449,7 +2449,7 @@ connection_bucket_refill(int milliseconds_elapsed, time_t now)
connection_bucket_refill_helper(&global_write_bucket,
bandwidthrate, bandwidthburst,
milliseconds_elapsed,
- "global_read_bucket");
+ "global_write_bucket");
connection_bucket_refill_helper(&global_relayed_read_bucket,
relayrate, relayburst,
milliseconds_elapsed,
diff --git a/src/or/or.h b/src/or/or.h
index 37eea1c..b05c767 100644
--- a/src/or/or.h
+++ b/src/or/or.h
@@ -3107,8 +3107,7 @@ typedef struct {
* log whether it was DNS-leaking or not? */
int HardwareAccel; /**< Boolean: Should we enable OpenSSL hardware
* acceleration where available? */
- /** Token Bucket Refill resolution in milliseconds (ignored when
- * bufferevents are enabled) */
+ /** Token Bucket Refill resolution in milliseconds. */
int TokenBucketRefillInterval;
char *AccelName; /**< Optional hardware acceleration engine name. */
char *AccelDir; /**< Optional hardware acceleration engine search dir. */
1
0
commit a8297a301e118a9e77fec51fe8d9d4d0f3350980
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Wed Sep 7 22:10:49 2011 -0400
Changes file for feature3630
---
changes/feature3630 | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/changes/feature3630 b/changes/feature3630
new file mode 100644
index 0000000..dab46c8
--- /dev/null
+++ b/changes/feature3630
@@ -0,0 +1,8 @@
+ o Major features (networking):
+ - Add a new TokenBucketRefillInterval option to refill token buckets
+ more frequently than once per second. This should improve network
+ performance, alleviate queueing problems, and make traffic less
+ bursty. Implements proposal 183; closes ticket 3630. Design by
+ Florian Tschorsch and Björn Scheuermann; implementation by
+ Florian Tschorsch.
+
1
0

r25110: {website} add factor.cc mirror and update mirrors table with current s (in website/trunk: . include)
by Andrew Lewman 22 Sep '11
by Andrew Lewman 22 Sep '11
22 Sep '11
Author: phobos
Date: 2011-09-22 15:24:59 +0000 (Thu, 22 Sep 2011)
New Revision: 25110
Modified:
website/trunk/include/mirrors-table.wmi
website/trunk/update-mirrors.pl
Log:
add factor.cc mirror and update mirrors table with current state.
Modified: website/trunk/include/mirrors-table.wmi
===================================================================
--- website/trunk/include/mirrors-table.wmi 2011-09-22 12:12:48 UTC (rev 25109)
+++ website/trunk/include/mirrors-table.wmi 2011-09-22 15:24:59 UTC (rev 25110)
@@ -1,6 +1,23 @@
<tr>
+ <td>NL</td>
+
+ <td>CCC</td>
+
+ <td>Up to date</td>
+
+ <td> - </td>
+ <td><a href="http://tor.ccc.de/dist/">http</a></td>
+ <td><a href="http://tor.ccc.de/">http</a></td>
+ <td> - </td>
+ <td> - </td>
+ <td> - </td>
+ <td> - </td>
+</tr>
+
+<tr>
+
<td>EE</td>
<td>CyberSIDE</td>
@@ -52,6 +69,23 @@
<tr>
+ <td>DE</td>
+
+ <td>torservers</td>
+
+ <td>Up to date</td>
+
+ <td> - </td>
+ <td><a href="http://www.torservers.net/mirrors/torproject.org/dist">http</a></td>
+ <td><a href="http://www.torservers.net/mirrors/torproject.org/">http</a></td>
+ <td><a href="https://www.torservers.net/mirrors/torproject.org/dist">https</a></td>
+ <td><a href="https://www.torservers.net/mirrors/torproject.org/">https</a></td>
+ <td> - </td>
+ <td> - </td>
+</tr>
+
+<tr>
+
<td>IR</td>
<td>Ninjas</td>
@@ -71,81 +105,81 @@
<td>AT</td>
- <td>FoDT.IT</td>
+ <td></td>
<td>Up to date</td>
- <td><a href="ftp://ftp.fodt.it/pub/mirror/tor/">ftp</a></td>
- <td><a href="http://tor.fodt.it/dist/">http</a></td>
- <td><a href="http://tor.fodt.it/">http</a></td>
<td> - </td>
+ <td><a href="http://tor.webersiedlung.at/dist/">http</a></td>
+ <td><a href="http://tor.webersiedlung.at/">http</a></td>
<td> - </td>
<td> - </td>
<td> - </td>
+ <td> - </td>
</tr>
<tr>
- <td>FR</td>
+ <td>DE</td>
- <td>BarkerJr</td>
+ <td>CCC-Hanau</td>
<td>Up to date</td>
+ <td><a href="ftp://key-server.org/tor">ftp</a></td>
+ <td><a href="http://tor.key-server.org/dist">http</a></td>
+ <td><a href="http://tor.key-server.org">http</a></td>
+ <td><a href="https://tor.key-server.org/dist">https</a></td>
+ <td><a href="https://tor.key-server.org">https</a></td>
<td> - </td>
- <td><a href="http://www.oignon.net/dist/">http</a></td>
- <td><a href="http://www.oignon.net/">http</a></td>
- <td><a href="https://www.oignon.net/dist/">https</a></td>
- <td><a href="https://www.oignon.net/">https</a></td>
<td> - </td>
- <td> - </td>
</tr>
<tr>
- <td>US</td>
+ <td>AT</td>
- <td>searchprivate</td>
+ <td>FoDT.IT</td>
<td>Up to date</td>
+ <td><a href="ftp://ftp.fodt.it/pub/mirror/tor/">ftp</a></td>
+ <td><a href="http://tor.fodt.it/dist/">http</a></td>
+ <td><a href="http://tor.fodt.it/">http</a></td>
<td> - </td>
- <td><a href="http://tor.searchprivate.com/dist">http</a></td>
- <td><a href="http://tor.searchprivate.com">http</a></td>
<td> - </td>
<td> - </td>
<td> - </td>
- <td> - </td>
</tr>
<tr>
- <td>DE</td>
+ <td>FR</td>
- <td>beme it</td>
+ <td>BarkerJr</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.beme-it.de/dist/">http</a></td>
- <td><a href="http://tor.beme-it.de/">http</a></td>
- <td><a href="https://tor.beme-it.de/dist/">https</a></td>
- <td><a href="https://tor.beme-it.de/">https</a></td>
+ <td><a href="http://www.oignon.net/dist/">http</a></td>
+ <td><a href="http://www.oignon.net/">http</a></td>
+ <td><a href="https://www.oignon.net/dist/">https</a></td>
+ <td><a href="https://www.oignon.net/">https</a></td>
<td> - </td>
- <td><a href="rsync://tor.beme-it.de/tor">rsync</a></td>
+ <td> - </td>
</tr>
<tr>
- <td>IL</td>
+ <td>AT</td>
- <td>Host4site</td>
+ <td>cyberarmy</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://mirror.host4site.co.il/torproject.org/dist">http</a></td>
- <td><a href="http://mirror.host4site.co.il/torproject.org/">http</a></td>
+ <td><a href="http://tor.cyberarmy.at/dist">http</a></td>
+ <td><a href="http://tor.cyberarmy.at">http</a></td>
<td> - </td>
<td> - </td>
<td> - </td>
@@ -154,15 +188,15 @@
<tr>
- <td>IS</td>
+ <td>US</td>
- <td>TheOnionRouter</td>
+ <td>searchprivate</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://theonionrouter.com/dist/">http</a></td>
- <td><a href="http://theonionrouter.com/">http</a></td>
+ <td><a href="http://tor.searchprivate.com/dist">http</a></td>
+ <td><a href="http://tor.searchprivate.com">http</a></td>
<td> - </td>
<td> - </td>
<td> - </td>
@@ -171,32 +205,32 @@
<tr>
- <td>NL</td>
+ <td>AT</td>
- <td>Amorphis</td>
+ <td>factor.cc</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.amorphis.eu/dist/">http</a></td>
- <td><a href="http://tor.amorphis.eu/">http</a></td>
+ <td><a href="http://tor.factor.cc/dist/">http</a></td>
+ <td><a href="http://tor.factor.cc/">http</a></td>
+ <td><a href="https://tor.factor.cc/dist/">https</a></td>
+ <td><a href="https://tor.factor.cc/">https</a></td>
<td> - </td>
<td> - </td>
- <td> - </td>
- <td> - </td>
</tr>
<tr>
- <td>NL</td>
+ <td>DE</td>
- <td>CCC</td>
+ <td>chaos darmstadt</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.ccc.de/dist/">http</a></td>
- <td><a href="http://tor.ccc.de/">http</a></td>
+ <td><a href="http://mirrors.chaos-darmstadt.de/tor-mirror/dist/">http</a></td>
+ <td><a href="http://mirrors.chaos-darmstadt.de/tor-mirror/">http</a></td>
<td> - </td>
<td> - </td>
<td> - </td>
@@ -205,15 +239,15 @@
<tr>
- <td>DK</td>
+ <td>HU</td>
- <td>Zentrum der Gesundheit</td>
+ <td>Unknown</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.idnr.ws/dist/">http</a></td>
- <td><a href="http://tor.idnr.ws/">http</a></td>
+ <td><a href="http://mirror.tor.hu/dist">http</a></td>
+ <td><a href="http://mirror.tor.hu/">http</a></td>
<td> - </td>
<td> - </td>
<td> - </td>
@@ -224,64 +258,64 @@
<td>DE</td>
- <td>torservers</td>
+ <td>beme it</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://www.torservers.net/mirrors/torproject.org/dist">http</a></td>
- <td><a href="http://www.torservers.net/mirrors/torproject.org/">http</a></td>
- <td><a href="https://www.torservers.net/mirrors/torproject.org/dist">https</a></td>
- <td><a href="https://www.torservers.net/mirrors/torproject.org/">https</a></td>
+ <td><a href="http://tor.beme-it.de/dist/">http</a></td>
+ <td><a href="http://tor.beme-it.de/">http</a></td>
+ <td><a href="https://tor.beme-it.de/dist/">https</a></td>
+ <td><a href="https://tor.beme-it.de/">https</a></td>
<td> - </td>
- <td> - </td>
+ <td><a href="rsync://tor.beme-it.de/tor">rsync</a></td>
</tr>
<tr>
- <td>AT</td>
+ <td>US</td>
- <td></td>
+ <td>NW Linux</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.webersiedlung.at/dist/">http</a></td>
- <td><a href="http://tor.webersiedlung.at/">http</a></td>
+ <td><a href="http://torproject.nwlinux.us/dist">http</a></td>
+ <td><a href="http://torproject.nwlinux.us">http</a></td>
<td> - </td>
<td> - </td>
<td> - </td>
- <td> - </td>
+ <td><a href="rsync://nwlinux.us/tor-web">rsync</a></td>
</tr>
<tr>
- <td>DE</td>
+ <td>US</td>
- <td>CCC-Hanau</td>
+ <td>Xpdm</td>
<td>Up to date</td>
- <td><a href="ftp://key-server.org/tor">ftp</a></td>
- <td><a href="http://tor.key-server.org/dist">http</a></td>
- <td><a href="http://tor.key-server.org">http</a></td>
- <td><a href="https://tor.key-server.org/dist">https</a></td>
- <td><a href="https://tor.key-server.org">https</a></td>
<td> - </td>
+ <td><a href="http://torproj.xpdm.us/dist/">http</a></td>
+ <td><a href="http://torproj.xpdm.us/">http</a></td>
+ <td><a href="https://torproj.xpdm.us/dist/">https</a></td>
+ <td><a href="https://torproj.xpdm.us/">https</a></td>
<td> - </td>
+ <td> - </td>
</tr>
<tr>
- <td>AT</td>
+ <td>IL</td>
- <td>cyberarmy</td>
+ <td>Host4site</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.cyberarmy.at/dist">http</a></td>
- <td><a href="http://tor.cyberarmy.at">http</a></td>
+ <td><a href="http://mirror.host4site.co.il/torproject.org/dist">http</a></td>
+ <td><a href="http://mirror.host4site.co.il/torproject.org/">http</a></td>
<td> - </td>
<td> - </td>
<td> - </td>
@@ -290,15 +324,15 @@
<tr>
- <td>DE</td>
+ <td>US</td>
- <td>chaos darmstadt</td>
+ <td>AskApache</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://mirrors.chaos-darmstadt.de/tor-mirror/dist/">http</a></td>
- <td><a href="http://mirrors.chaos-darmstadt.de/tor-mirror/">http</a></td>
+ <td><a href="http://tor.askapache.com/dist/">http</a></td>
+ <td><a href="http://tor.askapache.com/">http</a></td>
<td> - </td>
<td> - </td>
<td> - </td>
@@ -307,15 +341,15 @@
<tr>
- <td>HU</td>
+ <td>FR</td>
- <td>Unknown</td>
+ <td>LazyTiger</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://mirror.tor.hu/dist">http</a></td>
- <td><a href="http://mirror.tor.hu/">http</a></td>
+ <td><a href="http://tor.taiga-san.net/dist">http</a></td>
+ <td><a href="http://tor.taiga-san.net/">http</a></td>
<td> - </td>
<td> - </td>
<td> - </td>
@@ -324,66 +358,49 @@
<tr>
- <td>US</td>
+ <td>IS</td>
- <td>NW Linux</td>
+ <td>TheOnionRouter</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://torproject.nwlinux.us/dist">http</a></td>
- <td><a href="http://torproject.nwlinux.us">http</a></td>
+ <td><a href="http://theonionrouter.com/dist/">http</a></td>
+ <td><a href="http://theonionrouter.com/">http</a></td>
<td> - </td>
<td> - </td>
<td> - </td>
- <td><a href="rsync://nwlinux.us/tor-web">rsync</a></td>
-</tr>
-
-<tr>
-
- <td>US</td>
-
- <td>Xpdm</td>
-
- <td>Up to date</td>
-
<td> - </td>
- <td><a href="http://torproj.xpdm.us/dist/">http</a></td>
- <td><a href="http://torproj.xpdm.us/">http</a></td>
- <td><a href="https://torproj.xpdm.us/dist/">https</a></td>
- <td><a href="https://torproj.xpdm.us/">https</a></td>
- <td> - </td>
- <td> - </td>
</tr>
<tr>
- <td>US</td>
+ <td>DE</td>
- <td>AskApache</td>
+ <td>[[:bbs:]]</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.askapache.com/dist/">http</a></td>
- <td><a href="http://tor.askapache.com/">http</a></td>
+ <td><a href="http://tor.blingblingsquad.net/dist">http</a></td>
+ <td><a href="http://tor.blingblingsquad.net/">http</a></td>
+ <td><a href="https://tor.blingblingsquad.net/dist">https</a></td>
+ <td><a href="https://tor.blingblingsquad.net/">https</a></td>
<td> - </td>
<td> - </td>
- <td> - </td>
- <td> - </td>
</tr>
<tr>
- <td>FR</td>
+ <td>NL</td>
- <td>LazyTiger</td>
+ <td>Amorphis</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.taiga-san.net/dist">http</a></td>
- <td><a href="http://tor.taiga-san.net/">http</a></td>
+ <td><a href="http://tor.amorphis.eu/dist/">http</a></td>
+ <td><a href="http://tor.amorphis.eu/">http</a></td>
<td> - </td>
<td> - </td>
<td> - </td>
@@ -409,19 +426,19 @@
<tr>
- <td>DE</td>
+ <td>DK</td>
- <td>[[:bbs:]]</td>
+ <td>Zentrum der Gesundheit</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.blingblingsquad.net/dist">http</a></td>
- <td><a href="http://tor.blingblingsquad.net/">http</a></td>
- <td><a href="https://tor.blingblingsquad.net/dist">https</a></td>
- <td><a href="https://tor.blingblingsquad.net/">https</a></td>
+ <td><a href="http://tor.idnr.ws/dist/">http</a></td>
+ <td><a href="http://tor.idnr.ws/">http</a></td>
<td> - </td>
<td> - </td>
+ <td> - </td>
+ <td> - </td>
</tr>
<tr>
Modified: website/trunk/update-mirrors.pl
===================================================================
--- website/trunk/update-mirrors.pl 2011-09-22 12:12:48 UTC (rev 25109)
+++ website/trunk/update-mirrors.pl 2011-09-22 15:24:59 UTC (rev 25110)
@@ -696,6 +696,24 @@
httpsDistMirror => "",
rsyncDistMirror => "",
hiddenServiceMirror => "",
+ },
+ mirror043 => {
+ adminContact => "",
+ orgName => "factor.cc",
+ isoCC => "AT",
+ subRegion => "",
+ region => "AT",
+ ipv4 => "True",
+ ipv6 => "False",
+ loadBalanced => "No",
+ httpWebsiteMirror => "http://tor.factor.cc/",
+ httpsWebsiteMirror => "https://tor.factor.cc/",
+ rsyncWebsiteMirror => "",
+ ftpWebsiteMirror => "",
+ httpDistMirror => "http://tor.factor.cc/dist/",
+ httpsDistMirror => "https://tor.factor.cc/dist/",
+ rsyncDistMirror => "",
+ hiddenServiceMirror => "",
}
);
1
0
Author: runa
Date: 2011-09-22 12:12:48 +0000 (Thu, 22 Sep 2011)
New Revision: 25109
Modified:
translation/trunk/projects/orbot/po/af/strings.po
translation/trunk/projects/orbot/po/ak/strings.po
translation/trunk/projects/orbot/po/am/strings.po
translation/trunk/projects/orbot/po/ar/strings.po
translation/trunk/projects/orbot/po/arn/strings.po
translation/trunk/projects/orbot/po/ast/strings.po
translation/trunk/projects/orbot/po/az/strings.po
translation/trunk/projects/orbot/po/be/strings.po
translation/trunk/projects/orbot/po/bg/strings.po
translation/trunk/projects/orbot/po/bn/strings.po
translation/trunk/projects/orbot/po/bn_IN/strings.po
translation/trunk/projects/orbot/po/bo/strings.po
translation/trunk/projects/orbot/po/br/strings.po
translation/trunk/projects/orbot/po/bs/strings.po
translation/trunk/projects/orbot/po/ca/strings.po
translation/trunk/projects/orbot/po/cs/strings.po
translation/trunk/projects/orbot/po/csb/strings.po
translation/trunk/projects/orbot/po/cy/strings.po
translation/trunk/projects/orbot/po/da/strings.po
translation/trunk/projects/orbot/po/de/strings.po
translation/trunk/projects/orbot/po/dz/strings.po
translation/trunk/projects/orbot/po/el/strings.po
translation/trunk/projects/orbot/po/eo/strings.po
translation/trunk/projects/orbot/po/es/strings.po
translation/trunk/projects/orbot/po/et/strings.po
translation/trunk/projects/orbot/po/eu/strings.po
translation/trunk/projects/orbot/po/fa/strings.po
translation/trunk/projects/orbot/po/fi/strings.po
translation/trunk/projects/orbot/po/fil/strings.po
translation/trunk/projects/orbot/po/fo/strings.po
translation/trunk/projects/orbot/po/fr/strings.po
translation/trunk/projects/orbot/po/fur/strings.po
translation/trunk/projects/orbot/po/fy/strings.po
translation/trunk/projects/orbot/po/ga/strings.po
translation/trunk/projects/orbot/po/gl/strings.po
translation/trunk/projects/orbot/po/gu/strings.po
translation/trunk/projects/orbot/po/gun/strings.po
translation/trunk/projects/orbot/po/ha/strings.po
translation/trunk/projects/orbot/po/he/strings.po
translation/trunk/projects/orbot/po/hi/strings.po
translation/trunk/projects/orbot/po/hr/strings.po
translation/trunk/projects/orbot/po/ht/strings.po
translation/trunk/projects/orbot/po/hu/strings.po
translation/trunk/projects/orbot/po/hy/strings.po
translation/trunk/projects/orbot/po/id/strings.po
translation/trunk/projects/orbot/po/is/strings.po
translation/trunk/projects/orbot/po/it/strings.po
translation/trunk/projects/orbot/po/ja/strings.po
translation/trunk/projects/orbot/po/jv/strings.po
translation/trunk/projects/orbot/po/ka/strings.po
translation/trunk/projects/orbot/po/km/strings.po
translation/trunk/projects/orbot/po/kn/strings.po
translation/trunk/projects/orbot/po/ko/strings.po
translation/trunk/projects/orbot/po/ku/strings.po
translation/trunk/projects/orbot/po/kw/strings.po
translation/trunk/projects/orbot/po/ky/strings.po
translation/trunk/projects/orbot/po/lb/strings.po
translation/trunk/projects/orbot/po/ln/strings.po
translation/trunk/projects/orbot/po/lo/strings.po
translation/trunk/projects/orbot/po/lt/strings.po
translation/trunk/projects/orbot/po/lv/strings.po
translation/trunk/projects/orbot/po/mg/strings.po
translation/trunk/projects/orbot/po/mi/strings.po
translation/trunk/projects/orbot/po/mk/strings.po
translation/trunk/projects/orbot/po/ml/strings.po
translation/trunk/projects/orbot/po/mn/strings.po
translation/trunk/projects/orbot/po/mr/strings.po
translation/trunk/projects/orbot/po/ms/strings.po
translation/trunk/projects/orbot/po/mt/strings.po
translation/trunk/projects/orbot/po/my/strings.po
translation/trunk/projects/orbot/po/nah/strings.po
translation/trunk/projects/orbot/po/nap/strings.po
translation/trunk/projects/orbot/po/nb/strings.po
translation/trunk/projects/orbot/po/ne/strings.po
translation/trunk/projects/orbot/po/nl/strings.po
translation/trunk/projects/orbot/po/nn/strings.po
translation/trunk/projects/orbot/po/nso/strings.po
translation/trunk/projects/orbot/po/oc/strings.po
translation/trunk/projects/orbot/po/or/strings.po
translation/trunk/projects/orbot/po/pa/strings.po
translation/trunk/projects/orbot/po/pap/strings.po
translation/trunk/projects/orbot/po/pl/strings.po
translation/trunk/projects/orbot/po/pms/strings.po
translation/trunk/projects/orbot/po/ps/strings.po
translation/trunk/projects/orbot/po/pt/strings.po
translation/trunk/projects/orbot/po/pt_BR/strings.po
translation/trunk/projects/orbot/po/ro/strings.po
translation/trunk/projects/orbot/po/ru/strings.po
translation/trunk/projects/orbot/po/sco/strings.po
translation/trunk/projects/orbot/po/sk/strings.po
translation/trunk/projects/orbot/po/sl/strings.po
translation/trunk/projects/orbot/po/so/strings.po
translation/trunk/projects/orbot/po/son/strings.po
translation/trunk/projects/orbot/po/sq/strings.po
translation/trunk/projects/orbot/po/sr/strings.po
translation/trunk/projects/orbot/po/st/strings.po
translation/trunk/projects/orbot/po/sv/strings.po
translation/trunk/projects/orbot/po/sw/strings.po
translation/trunk/projects/orbot/po/ta/strings.po
translation/trunk/projects/orbot/po/te/strings.po
translation/trunk/projects/orbot/po/tg/strings.po
translation/trunk/projects/orbot/po/th/strings.po
translation/trunk/projects/orbot/po/ti/strings.po
translation/trunk/projects/orbot/po/tk/strings.po
translation/trunk/projects/orbot/po/tr/strings.po
translation/trunk/projects/orbot/po/uk/strings.po
translation/trunk/projects/orbot/po/ve/strings.po
translation/trunk/projects/orbot/po/vi/strings.po
translation/trunk/projects/orbot/po/wa/strings.po
translation/trunk/projects/orbot/po/wo/strings.po
translation/trunk/projects/orbot/po/zh_CN/strings.po
translation/trunk/projects/orbot/po/zh_HK/strings.po
translation/trunk/projects/orbot/po/zh_TW/strings.po
translation/trunk/projects/orbot/po/zu/strings.po
Log:
pulled updated orbot translations from transifex
Modified: translation/trunk/projects/orbot/po/af/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/af/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/af/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:07+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/ak/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/ak/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/ak/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/am/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/am/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/am/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/ar/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/ar/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/ar/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,8 +1,10 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
+# gahgeer <gahgeer(a)gmail.com>, 2011.
+# mohammad Alhargan <malham1(a)gmail.com>, 2011.
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
@@ -616,3 +618,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/arn/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/arn/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/arn/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:03+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/ast/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/ast/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/ast/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:03+0000\n"
+"PO-Revision-Date: 2011-09-22 12:09+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/az/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/az/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/az/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:03+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/be/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/be/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/be/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:03+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/bg/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/bg/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/bg/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:03+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/bn/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/bn/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/bn/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:03+0000\n"
+"PO-Revision-Date: 2011-09-22 12:09+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/bn_IN/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/bn_IN/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/bn_IN/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:03+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/bo/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/bo/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/bo/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,40 +1,35 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#, fuzzy
+#
+# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-09-22 12:09+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"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: bo\n"
+"Plural-Forms: nplurals=1; plural=0\n"
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
+msgid "Orbot"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:4
#, no-wrap
-msgid "Orbot"
+msgid "1.0.5-dev"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:5
-#, no-wrap
-msgid "1.0.2"
-msgstr ""
-
-#. type: Content of: <resources><string>
#: strings.xml:6
#, no-wrap
msgid "http://orbot/"
@@ -152,7 +147,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr ""
@@ -176,85 +171,135 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
+msgid "About"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
+msgid "Wizard"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
-msgid "Clear Log"
+msgid "Close"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:41
#, no-wrap
+msgid "Clear Log"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:44
+#, no-wrap
msgid "Check"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
+msgid "- long press to start -"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
msgid ""
"The Tor binary files were unable to be installed. Please check the log and "
@@ -262,95 +307,95 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
msgid ""
"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* "
-"Simply installing Orbot will _not_ magically anonymize your mobile traffic! "
-"This wizard will help you get started."
+"relationships, and state security known as traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
msgid ""
-"Orbot is an open-source application that contains Tor, LibEvent and "
-"Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into "
-"the Tor network. Orbot also has the ability, on rooted device, to send all "
-"internet traffic through Tor."
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
msgid ""
"Excellent! We\\'ve detected that you have root permissions enabled for "
@@ -358,7 +403,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
msgid ""
" While it is not required, Orbot can become a more powerful tool if your "
@@ -366,7 +411,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
msgid ""
"If you don\\'t have root access or have no idea what we\\'re talking about, "
@@ -374,25 +419,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
msgid ""
"Orbot gives you the option to route all application traffic through Tor OR "
@@ -400,25 +445,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
msgid ""
"We encourage you to download & use apps that know how to connect "
@@ -426,52 +471,49 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
+msgid "Gibberbot - Secure instant messaging client for Android"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
-"If the Android app you are using can support the use of an HTTP or SOCKS "
-"proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
-" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port "
-"setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or "
-"SOCKS5 if possible.\n"
+"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
+" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or SOCKS5 if possible.\n"
" \\n\\n\n"
-" You can learn more about proxying on Android via the FAQ at: "
-"http://tinyurl.com/proxyandroid\n"
+" You can learn more about proxying on Android via the FAQ at: http://tinyurl.com/proxyandroid\n"
" "
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
msgid ""
"Hundreds of thousands of people around the world use Tor for a wide variety "
@@ -481,31 +523,58 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
msgid ""
-" You\\'ve successfully connected to the Tor network - but this does NOT mean "
-"your device is secure. You can use the \\'Check\\' option from the menu to "
-"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot "
-"or send an email to help(a)guardianproject.info to learn more."
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
msgid ""
"This will open your default web browser to https://check.torproject.org in "
"order to see if Orbot is probably configured and you are connected to Tor."
msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:127
+#, no-wrap
+msgid "Hidden Services"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:129
+#, no-wrap
+msgid "General"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:130
+#, no-wrap
+msgid "Start Orbot on Boot"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:131
+#, no-wrap
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/br/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/br/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/br/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,40 +1,35 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#, fuzzy
+#
+# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-09-22 12:09+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"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: br\n"
+"Plural-Forms: nplurals=2; plural=(n > 1)\n"
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
+msgid "Orbot"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:4
#, no-wrap
-msgid "Orbot"
+msgid "1.0.5-dev"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:5
-#, no-wrap
-msgid "1.0.2"
-msgstr ""
-
-#. type: Content of: <resources><string>
#: strings.xml:6
#, no-wrap
msgid "http://orbot/"
@@ -152,7 +147,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr ""
@@ -176,85 +171,135 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
+msgid "About"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
+msgid "Wizard"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
-msgid "Clear Log"
+msgid "Close"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:41
#, no-wrap
+msgid "Clear Log"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:44
+#, no-wrap
msgid "Check"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
+msgid "- long press to start -"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
msgid ""
"The Tor binary files were unable to be installed. Please check the log and "
@@ -262,95 +307,95 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
msgid ""
"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* "
-"Simply installing Orbot will _not_ magically anonymize your mobile traffic! "
-"This wizard will help you get started."
+"relationships, and state security known as traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
msgid ""
-"Orbot is an open-source application that contains Tor, LibEvent and "
-"Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into "
-"the Tor network. Orbot also has the ability, on rooted device, to send all "
-"internet traffic through Tor."
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
msgid ""
"Excellent! We\\'ve detected that you have root permissions enabled for "
@@ -358,7 +403,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
msgid ""
" While it is not required, Orbot can become a more powerful tool if your "
@@ -366,7 +411,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
msgid ""
"If you don\\'t have root access or have no idea what we\\'re talking about, "
@@ -374,25 +419,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
msgid ""
"Orbot gives you the option to route all application traffic through Tor OR "
@@ -400,25 +445,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
msgid ""
"We encourage you to download & use apps that know how to connect "
@@ -426,52 +471,49 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
+msgid "Gibberbot - Secure instant messaging client for Android"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
-"If the Android app you are using can support the use of an HTTP or SOCKS "
-"proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
-" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port "
-"setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or "
-"SOCKS5 if possible.\n"
+"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
+" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or SOCKS5 if possible.\n"
" \\n\\n\n"
-" You can learn more about proxying on Android via the FAQ at: "
-"http://tinyurl.com/proxyandroid\n"
+" You can learn more about proxying on Android via the FAQ at: http://tinyurl.com/proxyandroid\n"
" "
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
msgid ""
"Hundreds of thousands of people around the world use Tor for a wide variety "
@@ -481,31 +523,58 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
msgid ""
-" You\\'ve successfully connected to the Tor network - but this does NOT mean "
-"your device is secure. You can use the \\'Check\\' option from the menu to "
-"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot "
-"or send an email to help(a)guardianproject.info to learn more."
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
msgid ""
"This will open your default web browser to https://check.torproject.org in "
"order to see if Orbot is probably configured and you are connected to Tor."
msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:127
+#, no-wrap
+msgid "Hidden Services"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:129
+#, no-wrap
+msgid "General"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:130
+#, no-wrap
+msgid "Start Orbot on Boot"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:131
+#, no-wrap
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/bs/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/bs/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/bs/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,40 +1,35 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#, fuzzy
+#
+# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-09-22 12:09+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"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: bs\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
+msgid "Orbot"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:4
#, no-wrap
-msgid "Orbot"
+msgid "1.0.5-dev"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:5
-#, no-wrap
-msgid "1.0.2"
-msgstr ""
-
-#. type: Content of: <resources><string>
#: strings.xml:6
#, no-wrap
msgid "http://orbot/"
@@ -152,7 +147,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr ""
@@ -176,85 +171,135 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
+msgid "About"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
+msgid "Wizard"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
-msgid "Clear Log"
+msgid "Close"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:41
#, no-wrap
+msgid "Clear Log"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:44
+#, no-wrap
msgid "Check"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
+msgid "- long press to start -"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
msgid ""
"The Tor binary files were unable to be installed. Please check the log and "
@@ -262,95 +307,95 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
msgid ""
"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* "
-"Simply installing Orbot will _not_ magically anonymize your mobile traffic! "
-"This wizard will help you get started."
+"relationships, and state security known as traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
msgid ""
-"Orbot is an open-source application that contains Tor, LibEvent and "
-"Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into "
-"the Tor network. Orbot also has the ability, on rooted device, to send all "
-"internet traffic through Tor."
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
msgid ""
"Excellent! We\\'ve detected that you have root permissions enabled for "
@@ -358,7 +403,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
msgid ""
" While it is not required, Orbot can become a more powerful tool if your "
@@ -366,7 +411,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
msgid ""
"If you don\\'t have root access or have no idea what we\\'re talking about, "
@@ -374,25 +419,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
msgid ""
"Orbot gives you the option to route all application traffic through Tor OR "
@@ -400,25 +445,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
msgid ""
"We encourage you to download & use apps that know how to connect "
@@ -426,52 +471,49 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
+msgid "Gibberbot - Secure instant messaging client for Android"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
-"If the Android app you are using can support the use of an HTTP or SOCKS "
-"proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
-" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port "
-"setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or "
-"SOCKS5 if possible.\n"
+"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
+" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or SOCKS5 if possible.\n"
" \\n\\n\n"
-" You can learn more about proxying on Android via the FAQ at: "
-"http://tinyurl.com/proxyandroid\n"
+" You can learn more about proxying on Android via the FAQ at: http://tinyurl.com/proxyandroid\n"
" "
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
msgid ""
"Hundreds of thousands of people around the world use Tor for a wide variety "
@@ -481,31 +523,58 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
msgid ""
-" You\\'ve successfully connected to the Tor network - but this does NOT mean "
-"your device is secure. You can use the \\'Check\\' option from the menu to "
-"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot "
-"or send an email to help(a)guardianproject.info to learn more."
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
msgid ""
"This will open your default web browser to https://check.torproject.org in "
"order to see if Orbot is probably configured and you are connected to Tor."
msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:127
+#, no-wrap
+msgid "Hidden Services"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:129
+#, no-wrap
+msgid "General"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:130
+#, no-wrap
+msgid "Start Orbot on Boot"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:131
+#, no-wrap
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/ca/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/ca/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/ca/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,8 +1,9 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
+# runasand <runa.sandvik(a)gmail.com>, 2011.
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
@@ -624,3 +625,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/cs/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/cs/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/cs/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:01+0000\n"
+"PO-Revision-Date: 2011-09-22 12:07+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/csb/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/csb/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/csb/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:03+0000\n"
+"PO-Revision-Date: 2011-09-22 12:07+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/cy/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/cy/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/cy/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,8 +1,8 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
@@ -579,3 +579,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/da/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/da/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/da/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,15 +1,16 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
+# Aputsiaq Janussen <aputtu(a)gmail.com>, 2011.
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2011-05-02 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 14:49+0000\n"
-"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
+"PO-Revision-Date: 2011-08-18 03:21+0000\n"
+"Last-Translator: aputsiaq <aputtu(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -27,7 +28,7 @@
#: strings.xml:4
#, no-wrap
msgid "1.0.5-dev"
-msgstr ""
+msgstr "1.0.5-dev"
#. type: Content of: <resources><string>
#: strings.xml:6
@@ -183,7 +184,7 @@
#: strings.xml:34
#, no-wrap
msgid "Wizard"
-msgstr ""
+msgstr "Guide"
#. type: Content of: <resources><string>
#: strings.xml:38
@@ -195,7 +196,7 @@
#: strings.xml:41
#, no-wrap
msgid "Clear Log"
-msgstr ""
+msgstr "Ryd log"
#. type: Content of: <resources><string>
#: strings.xml:44
@@ -219,7 +220,7 @@
#: strings.xml:47
#, no-wrap
msgid "- long press to start -"
-msgstr ""
+msgstr "- Langt tryk for at starte -"
#. type: Content of: <resources><string>
#: strings.xml:49
@@ -249,7 +250,7 @@
#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
-msgstr ""
+msgstr "Før trafik for alle programmer via Tor-proxy"
#. type: Content of: <resources><string>
#: strings.xml:56
@@ -287,7 +288,7 @@
#: strings.xml:63
#, no-wrap
msgid "Request Root Access"
-msgstr ""
+msgstr "Anmod om rod-adgang"
#. type: Content of: <resources><string>
#: strings.xml:64
@@ -299,7 +300,7 @@
#: strings.xml:66
#, no-wrap
msgid "Tor binaries successfully installed!"
-msgstr ""
+msgstr "Binære Tor-filer installeret med succes!"
#. type: Content of: <resources><string>
#: strings.xml:67
@@ -308,54 +309,56 @@
"The Tor binary files were unable to be installed. Please check the log and "
"notify tor-assistants(a)torproject.org"
msgstr ""
+"De binære Tor-filer kunne ikke installeres. Tjek venligst loggen og giv "
+"besked til tor-assistants(a)torproject.org"
#. type: Content of: <resources><string>
#: strings.xml:69
#, no-wrap
msgid "Application Error"
-msgstr ""
+msgstr "Programfejl"
#. type: Content of: <resources><string>
#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
-msgstr ""
+msgstr "Velkommen til Orbot"
#. type: Content of: <resources><string>
#: strings.xml:73
#, no-wrap
msgid "About Orbot"
-msgstr ""
+msgstr "Om Orbot"
#. type: Content of: <resources><string>
#: strings.xml:74
#, no-wrap
msgid "Next"
-msgstr ""
+msgstr "Næste"
#. type: Content of: <resources><string>
#: strings.xml:75
#, no-wrap
msgid "Back"
-msgstr ""
+msgstr "Tilbage"
#. type: Content of: <resources><string>
#: strings.xml:76
#, no-wrap
msgid "Finish"
-msgstr ""
+msgstr "Afslut"
#. type: Content of: <resources><string>
#: strings.xml:78
#, no-wrap
msgid "Okay"
-msgstr ""
+msgstr "Okay"
#. type: Content of: <resources><string>
#: strings.xml:79
#, no-wrap
msgid "Cancel"
-msgstr ""
+msgstr "Annullér"
#. type: Content of: <resources><string>
#: strings.xml:83
@@ -373,7 +376,7 @@
#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
-msgstr ""
+msgstr "Nogle detaljer om Orbot"
#. type: Content of: <resources><string>
#: strings.xml:85
@@ -384,18 +387,22 @@
" network. Orbot also has the ability, on rooted device, to send all internet"
" traffic through Tor."
msgstr ""
+"Orbot er et open-source program, der indeholder Tor, LibEvent og Privoxy. "
+"Det giver en lokal HTTP-proxy (8118) og en SOCKS-proxy (9050) ind i Tor-"
+"netværket. Orbot har også evnen til, på rod-enhed, til at sende al internet-"
+"trafik gennem Tor."
#. type: Content of: <resources><string>
#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
-msgstr ""
+msgstr "Tilladelse tildelt"
#. type: Content of: <resources><string>
#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
-msgstr ""
+msgstr "Orbot-rettigheder"
#. type: Content of: <resources><string>
#: strings.xml:88
@@ -404,6 +411,8 @@
"Excellent! We\\'ve detected that you have root permissions enabled for "
"Orbot. We will use this power wisely."
msgstr ""
+"Fremragende! Vi har registreret, at du har root tilladelser aktiveret for "
+"Orbot. Vi vil bruge denne magt med omtanke."
#. type: Content of: <resources><string>
#: strings.xml:89
@@ -412,6 +421,9 @@
" While it is not required, Orbot can become a more powerful tool if your "
"device has root access. Use the button below to grant Orbot superpowers! "
msgstr ""
+" Selv om det ikke er påkrævet, så kan Orbot gøres til et stærkere værktøj "
+"hvis din enhed har rod-adgang. Brug knappen nedenfor for at tildele Orbot "
+"superkræfter! "
#. type: Content of: <resources><string>
#: strings.xml:91
@@ -420,24 +432,26 @@
"If you don\\'t have root access or have no idea what we\\'re talking about, "
"just be sure to use apps made to work with Orbot."
msgstr ""
+"Hvis du ikke har rod-adgang eller ikke har nogen ide om hvad vi taler om, så"
+" sørg blot for at anvende programmer som fungerer med Orbot."
#. type: Content of: <resources><string>
#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
-msgstr ""
+msgstr "Jeg forstår og vil gerne fortsætte uden root"
#. type: Content of: <resources><string>
#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
-msgstr ""
+msgstr "Tildel Root for Orbot"
#. type: Content of: <resources><string>
#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
-msgstr ""
+msgstr "Konfigurer Torifikation"
#. type: Content of: <resources><string>
#: strings.xml:96
@@ -457,13 +471,13 @@
#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
-msgstr ""
+msgstr "Vælg individuelle programmer for Tor"
#. type: Content of: <resources><string>
#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
-msgstr ""
+msgstr "Orbot-aktiverede programmer"
#. type: Content of: <resources><string>
#: strings.xml:102
@@ -491,12 +505,14 @@
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
+"Proxy-indstillinger - Lær hvordan programmer konfigureres til at fungere med"
+" Orbot"
#. type: Content of: <resources><string>
#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
-msgstr ""
+msgstr "Proxy-indstillinger"
#. type: Content of: <resources><string>
#: strings.xml:108
@@ -513,7 +529,7 @@
#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
-msgstr ""
+msgstr "Orbot er klar!"
#. type: Content of: <resources><string>
#: strings.xml:115
@@ -579,3 +595,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/de/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/de/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/de/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,15 +1,19 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
+# cosimacosa <leccefv(a)libero.it>, 2011.
+# kurzhaarhippie <kurzhaarhippie(a)googlemail.com>, 2011.
+# Locke <locke(a)dena-design.de>, 2011.
+# Sacro <Razor30(a)web.de>, 2011.
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: 2011-01-15 17:10+0000\n"
-"Last-Translator: kurzhaarhippie <kurzhaarhippie(a)googlemail.com>\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-05-11 03:33+0000\n"
+"Last-Translator: Sacro <Scion(a)T-Online.de>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -20,20 +24,14 @@
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
-msgstr "Versteckte Dienste"
-
-#. type: Content of: <resources><string>
-#: strings.xml:4
-#, no-wrap
msgid "Orbot"
msgstr "Orbot"
#. type: Content of: <resources><string>
-#: strings.xml:5
+#: strings.xml:4
#, no-wrap
-msgid "1.0.2"
-msgstr "1.0.2"
+msgid "1.0.5-dev"
+msgstr "1.0.5-dev"
#. type: Content of: <resources><string>
#: strings.xml:6
@@ -122,8 +120,14 @@
#. type: Content of: <resources><string>
#: strings.xml:23
#, no-wrap
-msgid "WARNING: Your traffic is not anonymous yet! Please configure your applications to use HTTP proxy 127.0.0.1:8118 or SOCKS4A or SOCKS5 proxy 127.0.0.1:9050"
-msgstr "WARNUNG: Die Verbindung ist noch nicht anonymisiert! Bitte stellen Sie Ihre Programme so ein, dass sie entwederden HTTP proxy 127.0.0.1:8118, SOCKS4A oder SOCKS proxy 127.0.0.1:9050 nutzen."
+msgid ""
+"WARNING: Your traffic is not anonymous yet! Please configure your "
+"applications to use HTTP proxy 127.0.0.1:8118 or SOCKS4A or SOCKS5 proxy "
+"127.0.0.1:9050"
+msgstr ""
+"WARNUNG: Ihr Datenverkehr ist noch nicht anonymisiert! Bitte stellen Sie "
+"Ihre Programme so ein, dass sie entweder den HTTP Proxy 127.0.0.1:8118 oder "
+"den SOCKS4A bzw. SOCKS5 Proxy 127.0.0.1:9050 nutzen."
#. type: Content of: <resources><string>
#: strings.xml:24
@@ -150,7 +154,7 @@
msgstr "Log"
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr "Hilfe"
@@ -174,262 +178,364 @@
msgstr "Stop"
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
-msgstr "Schließen"
+msgid "About"
+msgstr "Über"
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
-msgstr "Über"
+msgid "Wizard"
+msgstr "Wizard"
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
+msgid "Close"
+msgstr "Schließen"
+
+#. type: Content of: <resources><string>
+#: strings.xml:41
+#, no-wrap
msgid "Clear Log"
msgstr "Log löschen"
#. type: Content of: <resources><string>
-#: strings.xml:41
+#: strings.xml:44
#, no-wrap
msgid "Check"
msgstr "Überprüfen"
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr "Beenden"
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr "ermöglicht durch das Tor Projekt"
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
-msgstr "- zum Starten drücken -"
+msgid "- long press to start -"
+msgstr "- Lang drücken zum starten -"
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr "Transparenter Proxy (benötigt Administratorrechte)"
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr "Transparenter Proxy"
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr "Anwendungen automatisch durch Tor leiten"
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr "Alles durch Tor leiten"
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr "Verbindungen aller Anwendungen durch Tor leiten"
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr "Port Proxy Fallback"
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+"WARNUNG: Umgeht öffentliche Ports (80, 443, etc). *NUR BENUTZEN* wenn "
+"\\'All\\' oder \\'App\\' modus nicht funktioniert."
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr "Port-Liste"
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+"Liste von Ports für Proxy. *NUR BENUTZEN* wenn \\'All\\' oder \\'App\\' "
+"modus nicht funktioniert"
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr "Eingabe der Ports für Proxy"
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr "Anfrage auf Root Zugriff"
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr "Anfrage auf Root Zugriff für Transperente Proxys"
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr "Die Tor-Pakete wurden erfolgreich installiert!"
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
-msgid "The Tor binary files were unable to be installed. Please check the log and notify tor-assistants(a)torproject.org"
-msgstr "Die Tor-Pakete konnten nicht erfolgreich installiert werden. Bitte prüfen Sie das Logfile und wenden Sie sich an tor-assistants(a)torproject.org."
+msgid ""
+"The Tor binary files were unable to be installed. Please check the log and "
+"notify tor-assistants(a)torproject.org"
+msgstr ""
+"Die Tor-Pakete konnten nicht erfolgreich installiert werden. Bitte prüfen "
+"Sie das Logfile und wenden Sie sich an tor-assistants(a)torproject.org."
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr "Anwendungsfehler"
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr "Willkommen bei Orbot"
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr "Über Orbot"
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr "Weiter"
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr "Zurück"
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr "Fertigstellen"
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr "OK"
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr "Abbrechen"
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
-msgid "Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* Simply installing Orbot will _not_ magically anonymize your mobile traffic! This wizard will help you get started."
+msgid ""
+"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
"Orbot bringt Tor auf Android Geräte. Tor ist ein freies Programm und ein offenes Netzwerk, dass Ihnen hilft sich gegen Datenverkehrsüberwachung zu wehren, eine Form der Onlineüberwachung, die Ihre persönliche Freiheit, Privatsphäre, vertrauliche Geschäfte und Geschäftseziehungen bedroht.\n"
"\n"
-"*WARNUNG:* Durch die Installation von Orbot wird _nicht_ sofort Ihr kompletter Datenverkehr anonymisiert! Hilfestellung erhalten Sie von diesem Assitenten."
+"*WARNUNG:* Durch die Installation von Orbot wird _nicht_ sofort Ihr kompletter Datenverkehr anonymisiert! Hilfestellung erhalten Sie von diesem Assistenten."
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr "Nähere Informationen zu Orbot"
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
-msgid "Orbot is an open-source application that contains Tor, LibEvent and Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor network. Orbot also has the ability, on rooted device, to send all internet traffic through Tor."
-msgstr "Orbot ist eine quelloffene Anwendung die Tor, LibEvent und Privoxy enthält. Es stellt einen lokalen HTTP Proxy (8118) und einen SOCKS Proxy (9050) zum Tor-Netzwerk zur Verfügung. Orbot hat auf einem System mit Administrationsrechten auch die Fähigkeit, jeglichen Internetverkehr über das Tor-Netzwerk abzuwickeln."
+msgid ""
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
+msgstr ""
+"Orbot ist eine quelloffene Anwendung die Tor, LibEvent und Privoxy enthält. "
+"Es stellt einen lokalen HTTP Proxy (8118) und einen SOCKS Proxy (9050) zum "
+"Tor-Netzwerk zur Verfügung. Orbot hat auf einem System mit "
+"Administrationsrechten auch die Fähigkeit, jeglichen Internetverkehr über "
+"das Tor-Netzwerk abzuwickeln."
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr "Erlaubnis erteilt"
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr "Orbot Rechte"
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
-msgid "Excellent! We\\'ve detected that you have root permissions enabled for Orbot. We will use this power wisely."
-msgstr "Exzellent! Wir haben festgestellt, dass Sie Orbot Administrator-Rechte eingeräumt haben. Wir werden diese Macht weise nutzen."
+msgid ""
+"Excellent! We\\'ve detected that you have root permissions enabled for "
+"Orbot. We will use this power wisely."
+msgstr ""
+"Exzellent! Wir haben festgestellt, dass Sie Orbot Administrator-Rechte "
+"eingeräumt haben. Wir werden diese Macht weise nutzen."
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
-msgid " While it is not required, Orbot can become a more powerful tool if your device has root access. Use the button below to grant Orbot superpowers! "
-msgstr "Obwohl es nicht nötig ist, kann Orbot ein mächtigeres Tool werden, wenn Sie ihm Administrator-Rechte einräumen. Drücken Sie auf den Kopf unten um Orbot diese Superkräfte einzuräumen."
+msgid ""
+" While it is not required, Orbot can become a more powerful tool if your "
+"device has root access. Use the button below to grant Orbot superpowers! "
+msgstr ""
+"Obwohl es nicht nötig ist, kann Orbot ein mächtigeres Tool werden, wenn Sie "
+"ihm Administrator-Rechte einräumen. Drücken Sie auf den Kopf unten um Orbot "
+"diese Superkräfte einzuräumen."
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
-msgid "If you don\\'t have root access or have no idea what we\\'re talking about, just be sure to use apps made to work with Orbot."
-msgstr "Falls Sie keinen Administrator-Zugang haben oder nicht wissen was das ist, stellen Sie sicher, dass Sie Anwendungen benutzen die mit Orbot kompatibel können."
+msgid ""
+"If you don\\'t have root access or have no idea what we\\'re talking about, "
+"just be sure to use apps made to work with Orbot."
+msgstr ""
+"Falls Sie keinen Administrator-Zugang haben oder nicht wissen was das ist, "
+"stellen Sie sicher, dass Sie Anwendungen benutzen die mit Orbot kompatibel "
+"können."
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
-msgstr "Ich habe verstanden und möchte ohne Administrator-Rechte weitermachen."
+msgstr ""
+"Ich habe verstanden und möchte ohne Administrator-Rechte weitermachen."
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr "Orbot Administrator-Rechte einräumen"
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
-msgstr ""
+msgstr "Torification konfigurieren"
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
-msgid "Orbot gives you the option to route all application traffic through Tor OR to choose your applications individually."
-msgstr "Orbot gibt Ihnen die Wahl den Datenverkehr aller Programme durch Tor zu leiten ODER die Wahl für alle Programme einzeln zu treffen."
+msgid ""
+"Orbot gives you the option to route all application traffic through Tor OR "
+"to choose your applications individually."
+msgstr ""
+"Orbot gibt Ihnen die Wahl den Datenverkehr aller Programme durch Tor zu "
+"leiten ODER die Wahl für alle Programme einzeln zu treffen."
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr "Den Verkehr aller Programme durch Tor leiten"
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr "Programme einzeln wählen"
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr "Programme, für die Orbot aktiviert ist"
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
-msgid "We encourage you to download & use apps that know how to connect directly to Orbot. Click on the buttons below to install."
-msgstr "Wir raten Ihnen Programme herunterzuladen & zu nutzen, die wissen, wie sie sich direkt mit Orbot verbinden. Klicken Sie zum Installieren auf den Knopf unten."
+msgid ""
+"We encourage you to download & use apps that know how to connect "
+"directly to Orbot. Click on the buttons below to install."
+msgstr ""
+"Wir raten Ihnen Programme herunterzuladen & zu nutzen, die wissen, wie "
+"sie sich direkt mit Orbot verbinden. Klicken Sie zum Installieren auf den "
+"Knopf unten."
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
-msgstr "OTRCHAT - Ein sicheres Instant-Messaging-Programm für Android"
+msgid "Gibberbot - Secure instant messaging client for Android"
+msgstr "Gibberbot - Ein sicheres Instant-Messaging Programm für Android"
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
-msgstr "ORWEB (Nur Android 1.x) - Ein für Privatsphäre & Orbot entworfener Browser"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgstr ""
+"ORWEB (Nur Android 1.x) - Ein für Privatsphäre & Orbot entworfener "
+"Browser"
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
-msgstr "Proxy-Einstellungen - Lernen Sie Anwendungen so zu konfigurieren, dass sie mit Orbot zusammenarbeiten."
+msgstr ""
+"Proxy-Einstellungen - Lernen Sie Anwendungen so zu konfigurieren, dass sie "
+"mit Orbot zusammenarbeiten."
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr "Proxy-Einstellungen"
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
@@ -449,40 +555,86 @@
" "
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr "Orbot ist bereit!"
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
-msgid "Hundreds of thousands of people around the world use Tor for a wide variety of reasons: journalists and bloggers, human rights workers, law enforcement officers, soldiers, corporations, citizens of repressive regimes, and just ordinary citizens... and now you are ready to, as well!"
-msgstr "Hunderttausende Menschen auf der ganzen Welt nutzen Tor aus einer Vielzahl von Gründen: Journalisten und Blogger, Menschenrechtsaktivisten, Strafverfolgungsbehörden, Soldaten, Unternehmen, Bürger repressiver Regime und ganz normale Menschen... und sind Sie ebenfalls bereit!"
+msgid ""
+"Hundreds of thousands of people around the world use Tor for a wide variety "
+"of reasons: journalists and bloggers, human rights workers, law enforcement "
+"officers, soldiers, corporations, citizens of repressive regimes, and just "
+"ordinary citizens... and now you are ready to, as well!"
+msgstr ""
+"Hunderttausende Menschen auf der ganzen Welt nutzen Tor aus einer Vielzahl "
+"von Gründen: Journalisten und Blogger, Menschenrechtsaktivisten, "
+"Strafverfolgungsbehörden, Soldaten, Unternehmen, Bürger repressiver Regime "
+"und ganz normale Menschen... und sind Sie ebenfalls bereit!"
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
-msgstr "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
+msgstr "market://search?q=pname:info.guardianproject.otr.app.im"
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
-msgstr "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
+msgstr "market://search?q=pname:nfo.guardianproject.browser"
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
-msgid " You\\'ve successfully connected to the Tor network - but this does NOT mean your device is secure. You can use the \\'Check\\' option from the menu to test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot or send an email to help(a)guardianproject.info to learn more."
+msgid ""
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
"Sie haben sich erfolgreich mit dem Tor-Netzwerk verbunden - das bedeutet aber NICHT, dass Ihr Gerät sicher ist. Sie können die \\'Überprüfen\\'-Option aus dem Menü benutzen, um Ihren Browser zu testen. \n"
"\n"
-"Besuchen Sie https://guardianproject.info/apps/orbot oder senden Sie eine E-Mail an help(a)guardianproject.info um mehr zu erfahren."
+"Besuchen Sie https://guardianproject.info/apps/orbot oder senden Sie eine E-Mail an help(a)guardianproject.info um mehr darüber zu erfahren."
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
-msgid "This will open your default web browser to https://check.torproject.org in order to see if Orbot is probably configured and you are connected to Tor."
-msgstr "Das wird die Seite https://check.torproject.org in Ihrem Webbrowser öffnen, so dass Sie überprüfen können, ob Orbot richtig configuriert ist und Sie mit Tor verbunden sind."
+msgid ""
+"This will open your default web browser to https://check.torproject.org in "
+"order to see if Orbot is probably configured and you are connected to Tor."
+msgstr ""
+"Hiermit wird die Seite https://check.torproject.org in Ihrem Webbrowser "
+"geöffnet, so dass Sie überprüfen können, ob Orbot richtig configuriert ist "
+"und Sie mit Tor verbunden sind."
+
+#. type: Content of: <resources><string>
+#: strings.xml:127
+#, no-wrap
+msgid "Hidden Services"
+msgstr "Versteckte Dienste"
+
+#. type: Content of: <resources><string>
+#: strings.xml:129
+#, no-wrap
+msgid "General"
+msgstr "Allgemein"
+
+#. type: Content of: <resources><string>
+#: strings.xml:130
+#, no-wrap
+msgid "Start Orbot on Boot"
+msgstr "Orbot beim Systemstart ausführen"
+
+#. type: Content of: <resources><string>
+#: strings.xml:131
+#, no-wrap
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
+"Automatisches starten von Orbor und verbinden von Tor, wenn dein Android-"
+"Gerät startet"
+
+
Modified: translation/trunk/projects/orbot/po/dz/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/dz/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/dz/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/el/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/el/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/el/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/eo/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/eo/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/eo/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/es/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/es/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/es/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,8 +1,8 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
@@ -10,7 +10,7 @@
"POT-Creation-Date: 2011-05-02 15:49+0200\n"
"PO-Revision-Date: 2011-05-02 14:49+0000\n"
"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
-"Language-Team: Spanish (Castilian) <None>\n"
+"Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/torproject/team/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -621,3 +621,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/et/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/et/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/et/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/eu/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/eu/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/eu/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:03+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/fa/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/fa/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/fa/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,39 +1,33 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: 2010-09-17 00:43+0200\n"
-"Last-Translator: iranfree <green.dove88(a)gmail.com>\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-05-02 14:49+0000\n"
+"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.0.5\n"
+"Language: fa\n"
+"Plural-Forms: nplurals=1; plural=0\n"
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
-msgstr "سرويس هاي مخفي"
-
-#. type: Content of: <resources><string>
-#: strings.xml:4
-#, no-wrap
msgid "Orbot"
msgstr "اوربات"
#. type: Content of: <resources><string>
-#: strings.xml:5
+#: strings.xml:4
#, no-wrap
-msgid "1.0.2"
-msgstr "1.0.2"
+msgid "1.0.5-dev"
+msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:6
@@ -127,8 +121,8 @@
"applications to use HTTP proxy 127.0.0.1:8118 or SOCKS4A or SOCKS5 proxy "
"127.0.0.1:9050"
msgstr ""
-"هشدار: فعالیت شما هنوز \"گمنام\" نیست! لطفن اپلیکیشن خود را تنظیم کنید تا از "
-"HTTP پروکسی 127.0.0.1:8118 و یا SOCKS4A و یا SOCKS5 پروکسی 127.0.01:9050 "
+"هشدار: فعالیت شما هنوز \"گمنام\" نیست! لطفن اپلیکیشن خود را تنظیم کنید تا از"
+" HTTP پروکسی 127.0.0.1:8118 و یا SOCKS4A و یا SOCKS5 پروکسی 127.0.01:9050 "
"استفاده کند."
#. type: Content of: <resources><string>
@@ -156,7 +150,7 @@
msgstr "ورود"
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr "کمک"
@@ -180,85 +174,135 @@
msgstr "ایست"
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
-msgstr "بسته"
+msgid "About"
+msgstr "درباره"
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
-msgstr "درباره"
+msgid "Wizard"
+msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
+msgid "Close"
+msgstr "بسته"
+
+#. type: Content of: <resources><string>
+#: strings.xml:41
+#, no-wrap
msgid "Clear Log"
msgstr "Clear Log"
#. type: Content of: <resources><string>
-#: strings.xml:41
+#: strings.xml:44
#, no-wrap
msgid "Check"
msgstr "بررسی"
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr "خروج"
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr "فعال شده توسط Tor Project"
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
-msgstr "برای شروع، کلیک کنید."
+msgid "- long press to start -"
+msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr "پروکسیدن شفاف (نیاز به Root دارد)"
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr "پروکسیدن شفاف"
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr "Tori-نمایی اتوماتیک اپلیکیشن ها"
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr "شامل همه"
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr "فعالیت همه اپلیکیشن ها را از طریق Tor پروکسی کنید."
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr "دوتایی های Tor با موفقیت نصب شدند!"
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
msgid ""
"The Tor binary files were unable to be installed. Please check the log and "
@@ -268,104 +312,104 @@
"assistance(a)torproject.org اطلاع دهید."
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr "خطای اپلیکیشین"
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr "به اوربات خوش آمدید"
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr "درباره اوربات"
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr "بعدی"
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr "بازگشت"
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr "پایان"
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr "لغو"
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr "لغو"
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
msgid ""
"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* "
-"Simply installing Orbot will _not_ magically anonymize your mobile traffic! "
-"This wizard will help you get started."
+"relationships, and state security known as traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
"اوربات Tor را به آندرونید وارد می کند. Tor نرم افزاری رایگان و شبکه ای باز "
"است که در مقابل تهدید شبکه های نظارتی علیه آزادی و حریم فردی، فعالیت ها و "
-"روابط محرمانه شرکت ها، و امنیت ملی، که \"کاوش فعالیت\" معروف است، به شما کمک "
-"می کند. *هشدار:* نصب اوربات به تنهایی قادر نیست معجزه ای صورت دهد و فعالیت "
+"روابط محرمانه شرکت ها، و امنیت ملی، که \"کاوش فعالیت\" معروف است، به شما کمک"
+" می کند. *هشدار:* نصب اوربات به تنهایی قادر نیست معجزه ای صورت دهد و فعالیت "
"آنلاین شما را مخفی کند! این ابزار تنها کمک می کند که قدم اول را بردارید."
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr "برخی جزئیات در مورد اوربات"
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
msgid ""
-"Orbot is an open-source application that contains Tor, LibEvent and "
-"Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into "
-"the Tor network. Orbot also has the ability, on rooted device, to send all "
-"internet traffic through Tor."
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
msgstr ""
"اوربات اپلیکیشنی با متن-باز است که شامل Tor, LibEvent و Privoxy. این "
"اپلیکیشن، HTTP پروکسی (8118) محلی و SOCKS پروکسی (9050) را در شبکه Tor در "
-"دسترس قرار می دهد. اوربات همچنین قادر است بر روی ابزار root شده، تمام ترافیک "
-"اینترنت را از Tor ارسال کند."
+"دسترس قرار می دهد. اوربات همچنین قادر است بر روی ابزار root شده، تمام ترافیک"
+" اینترنت را از Tor ارسال کند."
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr "مجوز صادر گردید"
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr "مجوزهای اوربات"
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
msgid ""
"Excellent! We\\'ve detected that you have root permissions enabled for "
@@ -375,7 +419,7 @@
"هستید. این امکان را بخوبی مورد استفاده قرار خواهیم داد. "
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
msgid ""
" While it is not required, Orbot can become a more powerful tool if your "
@@ -386,7 +430,7 @@
"حداکثری بشود."
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
msgid ""
"If you don\\'t have root access or have no idea what we\\'re talking about, "
@@ -397,25 +441,25 @@
"اند. "
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
msgstr "متوجه هستم و ترجیح می دهم بدون root ادامه بدهم."
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr "واگذاری root برای اوربات"
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
msgstr "تنظیمات تبدیل به Tor"
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
msgid ""
"Orbot gives you the option to route all application traffic through Tor OR "
@@ -425,25 +469,25 @@
"یا اپلیکیشن مورد نظر خود را شخصن انتخاب کنید."
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr "تمام اپلیکیشن ها را از طریق Tor منتقل کنید."
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr "اپلیکیشن های منفرد برای Tor انتخاب کنید."
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr "اپلیکیشن هایی که برای اوربات تنظیم شده اند"
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
msgid ""
"We encourage you to download & use apps that know how to connect "
@@ -453,61 +497,58 @@
"به اوربات وصل می شوند. دکمه های زیر را فشار دهید تا نصب شود. "
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
-msgstr "OTRCHAT - کاربر ایمن انتقال پیام فوری برای آندروید"
+msgid "Gibberbot - Secure instant messaging client for Android"
+msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
"ORWEB (فقط آندروید 1.x) - مرورگر طراحی شده برای حفظ حریم خصوصی و افزونساز "
"اوربات"
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr "تنظیمات پروکسی - یادگیری تنظیم اپلیکیشن ها برای کار با اوربات"
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr "تنظیمات پروکسی"
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
-"If the Android app you are using can support the use of an HTTP or SOCKS "
-"proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
-" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port "
-"setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or "
-"SOCKS5 if possible.\n"
+"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
+" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or SOCKS5 if possible.\n"
" \\n\\n\n"
-" You can learn more about proxying on Android via the FAQ at: "
-"http://tinyurl.com/proxyandroid\n"
+" You can learn more about proxying on Android via the FAQ at: http://tinyurl.com/proxyandroid\n"
" "
msgstr ""
-"اگر اپلیکشین آندرونوید مورد استفاده شما قابلیت کار با HTTP و یا SOCKS پروکسی "
-"دارد می توانید تنظیمش کنید تا به اوربات وصل شود و از Tor استفاده کند. "
+"اگر اپلیکشین آندرونوید مورد استفاده شما قابلیت کار با HTTP و یا SOCKS پروکسی"
+" دارد می توانید تنظیمش کنید تا به اوربات وصل شود و از Tor استفاده کند. "
"تنظیمات سرویس دهنده 127.0.0.1 و یا \"سرویس-ده محلی\" است. برای HTTP تنظیمات "
"درگاه (port) 8118 است. برای SOCKS، پروکسی مناسب، 9050 است. شما می بایست "
-"SOCKS4A و یا در صورت امکان از socks5 استفاده کنید. در صورت نیاز به اطلاعات "
-"بیشتر در مورد انتقالده آندروید، می توانید به FAQ (سوالهای معمول) در "
+"SOCKS4A و یا در صورت امکان از socks5 استفاده کنید. در صورت نیاز به اطلاعات"
+" بیشتر در مورد انتقالده آندروید، می توانید به FAQ (سوالهای معمول) در "
"http://tinyurl.com/proxyandroid مراجعه کنید."
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr "اوربات آماده استفاده میباشد!"
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
msgid ""
"Hundreds of thousands of people around the world use Tor for a wide variety "
@@ -515,43 +556,40 @@
"officers, soldiers, corporations, citizens of repressive regimes, and just "
"ordinary citizens... and now you are ready to, as well!"
msgstr ""
-"صدها هزار نفر در سراسر جهان به دلایل گوناگون از Tor استفاده می کنند: روزنامه "
-"نویسها و بلاگرها، کارکنان حقوق بشر، ماموران انتظامی، سربازان، شرکتها، "
+"صدها هزار نفر در سراسر جهان به دلایل گوناگون از Tor استفاده می کنند: روزنامه"
+" نویسها و بلاگرها، کارکنان حقوق بشر، ماموران انتظامی، سربازان، شرکتها، "
"شهروندان دولتهای سرکوبگر، و شهروندان عادی، و حالا شما نیز آماده استفاده از "
"آن هستید!"
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
msgstr ""
-"http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-"
-"build6a.apk"
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
-msgstr "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
+msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
msgid ""
-" You\\'ve successfully connected to the Tor network - but this does NOT mean "
-"your device is secure. You can use the \\'Check\\' option from the menu to "
-"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot "
-"or send an email to help(a)guardianproject.info to learn more."
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
"اکنون با موفقیت به شبکه Tor وصل شده اید اما به آن معنا نیست که سیستم شما "
"ایمن است. می توانید از منیو گزینه /\"Check/\" را برای آزمایش مرورگر انتخاب "
-"کنید. به ما در صفحه https://guardianproject.info/apps/orbot مراجعه کنید و به "
-"آدرس help(a)guardianproject.info ایمیلی بفرستید تا اطلاعات بیشتری دریافت "
+"کنید. به ما در صفحه https://guardianproject.info/apps/orbot مراجعه کنید و به"
+" آدرس help(a)guardianproject.info ایمیلی بفرستید تا اطلاعات بیشتری دریافت "
"کنید. "
-# برای
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
msgid ""
"This will open your default web browser to https://check.torproject.org in "
@@ -561,60 +599,29 @@
"می شود تا شما مشاهده کنید آیا اوربات تنظیم شده است و آیا شما به Tor وصل شده "
"اید یا نه."
+#. type: Content of: <resources><string>
+#: strings.xml:127
#, no-wrap
-#~ msgid ""
-#~ "Orbot requires different configuration depending on the Android operating "
-#~ "system version it is used on.\n"
-#~ "Please visit https://www.torproject.org/docs/android.html for the latest "
-#~ "information."
-#~ msgstr ""
-#~ "اوربات، با توجه به سیستم عاملی (operating systme)که بر روی آن مورد استفاده "
-#~ "قرار می گیرد، به تنظیمات متفاوتی نیاز دارد. لطفن از صفحه "
-#~ "https://www.torproject.org/docs/android.html برای دریافت تازه ترین اطلاعات "
-#~ "دیدن کنید."
+msgid "Hidden Services"
+msgstr "سرويس هاي مخفي"
+#. type: Content of: <resources><string>
+#: strings.xml:129
#, no-wrap
-#~ msgid ""
-#~ "For non-rooted Android 1.x devices: Please use the \"ProxySurf\" browser "
-#~ "available in the Android Market, and set \n"
-#~ "the HTTP Proxy to 127.0.0.1 and port 8118, for HTTP traffic only (HTTP/S "
-#~ "will not work)."
-#~ msgstr ""
-#~ "برای ابزار x.1 آندرونید بی-ریشه (non-rooted): لطفن از جستجوگر\"ProxySurf\" که "
-#~ "در بازار-اندرونوید دردسترس است استفاده کنید و برای ترافیک HTTP فقط، HTTP "
-#~ "پروکسی را روی 127.0.0.1 و پورت 8118 تنظیم کنید. برای ترافیک HTTP کار نخواهد "
-#~ "کرد. "
+msgid "General"
+msgstr ""
+#. type: Content of: <resources><string>
+#: strings.xml:130
#, no-wrap
-#~ msgid ""
-#~ "For Instant Messaging, try \"Beem\" in the market, and set the SOCKS5 proxy "
-#~ "to 127.0.0.1 / port 9050."
-#~ msgstr ""
-#~ "For Instant Messaging, try \"Beem\" in the market, and set the SOCKS5 proxy to "
-#~ "127.0.0.1 / port 9050."
+msgid "Start Orbot on Boot"
+msgstr ""
+#. type: Content of: <resources><string>
+#: strings.xml:131
#, no-wrap
-#~ msgid ""
-#~ "For Android 2.x devices, you MUST ROOT your device in order for Orbot to "
-#~ "work transparently, as there is no browser that will work for non-root "
-#~ "devices. Otherwise, the \"Beem\" app will allow\n"
-#~ "you to set the SOCKS5 proxy to 127.0.0.1 and port 9050. You should also "
-#~ "enable SSL to protect your username and password."
-#~ msgstr ""
-#~ "برای ابزارهای آندرونید 2.x می بایست ابزار را ROOT کنید تا اوربات بتواند "
-#~ "فعالیت خود را به صورت شفاف انجام دهد، زیرا هیچ مرورگری قادر به کار با ابزار "
-#~ "non-root نیست. در غیر این صورت، \"Beem\" app به شما امکان می دهد که SOCKS5 را "
-#~ "بر 127.0.0.1 و پورت 9050 تنظیم کنید. همچنین می بایست SSL را فعال کنید تا "
-#~ "نام کاربری و کلمه ورود را مخفی نگاه دارد."
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
-#, no-wrap
-#~ msgid ""
-#~ "If you root your device, whether it is 1.x or 2.x based, Orbot can "
-#~ "transparently proxy any applicatons you select\n"
-#~ "and all DNS requests. This includes the built-in Browser, Gmail, YouTube and "
-#~ "Maps, as well as any third-party app."
-#~ msgstr ""
-#~ "اگر ابزار خود را root کنید، در صورتی که پایه اش 1.x و یا 2.x باشد، اوربات "
-#~ "قادر خواهد بود با شفافیت اپلیکیشن انتخابی شما و همه الزامات DNS را پروکسی "
-#~ "کند. این شامل مرورگر نصب شده، جیمیل، یوتیوب، و نقشه ها و نیز همه app های شخص "
-#~ "ثالث هم می شود."
+
Modified: translation/trunk/projects/orbot/po/fi/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/fi/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/fi/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,40 +1,35 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#, fuzzy
+#
+# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-09-22 12:09+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"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: fi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
+msgid "Orbot"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:4
#, no-wrap
-msgid "Orbot"
+msgid "1.0.5-dev"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:5
-#, no-wrap
-msgid "1.0.2"
-msgstr ""
-
-#. type: Content of: <resources><string>
#: strings.xml:6
#, no-wrap
msgid "http://orbot/"
@@ -152,7 +147,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr ""
@@ -176,85 +171,135 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
+msgid "About"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
+msgid "Wizard"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
-msgid "Clear Log"
+msgid "Close"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:41
#, no-wrap
+msgid "Clear Log"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:44
+#, no-wrap
msgid "Check"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
+msgid "- long press to start -"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
msgid ""
"The Tor binary files were unable to be installed. Please check the log and "
@@ -262,95 +307,95 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
msgid ""
"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* "
-"Simply installing Orbot will _not_ magically anonymize your mobile traffic! "
-"This wizard will help you get started."
+"relationships, and state security known as traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
msgid ""
-"Orbot is an open-source application that contains Tor, LibEvent and "
-"Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into "
-"the Tor network. Orbot also has the ability, on rooted device, to send all "
-"internet traffic through Tor."
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
msgid ""
"Excellent! We\\'ve detected that you have root permissions enabled for "
@@ -358,7 +403,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
msgid ""
" While it is not required, Orbot can become a more powerful tool if your "
@@ -366,7 +411,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
msgid ""
"If you don\\'t have root access or have no idea what we\\'re talking about, "
@@ -374,25 +419,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
msgid ""
"Orbot gives you the option to route all application traffic through Tor OR "
@@ -400,25 +445,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
msgid ""
"We encourage you to download & use apps that know how to connect "
@@ -426,52 +471,49 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
+msgid "Gibberbot - Secure instant messaging client for Android"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
-"If the Android app you are using can support the use of an HTTP or SOCKS "
-"proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
-" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port "
-"setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or "
-"SOCKS5 if possible.\n"
+"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
+" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or SOCKS5 if possible.\n"
" \\n\\n\n"
-" You can learn more about proxying on Android via the FAQ at: "
-"http://tinyurl.com/proxyandroid\n"
+" You can learn more about proxying on Android via the FAQ at: http://tinyurl.com/proxyandroid\n"
" "
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
msgid ""
"Hundreds of thousands of people around the world use Tor for a wide variety "
@@ -481,31 +523,58 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
msgid ""
-" You\\'ve successfully connected to the Tor network - but this does NOT mean "
-"your device is secure. You can use the \\'Check\\' option from the menu to "
-"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot "
-"or send an email to help(a)guardianproject.info to learn more."
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
msgid ""
"This will open your default web browser to https://check.torproject.org in "
"order to see if Orbot is probably configured and you are connected to Tor."
msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:127
+#, no-wrap
+msgid "Hidden Services"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:129
+#, no-wrap
+msgid "General"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:130
+#, no-wrap
+msgid "Start Orbot on Boot"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:131
+#, no-wrap
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/fil/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/fil/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/fil/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/fo/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/fo/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/fo/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,40 +1,35 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#, fuzzy
+#
+# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-09-22 12:09+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"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: fo\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
+msgid "Orbot"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:4
#, no-wrap
-msgid "Orbot"
+msgid "1.0.5-dev"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:5
-#, no-wrap
-msgid "1.0.2"
-msgstr ""
-
-#. type: Content of: <resources><string>
#: strings.xml:6
#, no-wrap
msgid "http://orbot/"
@@ -152,7 +147,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr ""
@@ -176,85 +171,135 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
+msgid "About"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
+msgid "Wizard"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
-msgid "Clear Log"
+msgid "Close"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:41
#, no-wrap
+msgid "Clear Log"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:44
+#, no-wrap
msgid "Check"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
+msgid "- long press to start -"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
msgid ""
"The Tor binary files were unable to be installed. Please check the log and "
@@ -262,95 +307,95 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
msgid ""
"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* "
-"Simply installing Orbot will _not_ magically anonymize your mobile traffic! "
-"This wizard will help you get started."
+"relationships, and state security known as traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
msgid ""
-"Orbot is an open-source application that contains Tor, LibEvent and "
-"Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into "
-"the Tor network. Orbot also has the ability, on rooted device, to send all "
-"internet traffic through Tor."
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
msgid ""
"Excellent! We\\'ve detected that you have root permissions enabled for "
@@ -358,7 +403,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
msgid ""
" While it is not required, Orbot can become a more powerful tool if your "
@@ -366,7 +411,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
msgid ""
"If you don\\'t have root access or have no idea what we\\'re talking about, "
@@ -374,25 +419,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
msgid ""
"Orbot gives you the option to route all application traffic through Tor OR "
@@ -400,25 +445,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
msgid ""
"We encourage you to download & use apps that know how to connect "
@@ -426,52 +471,49 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
+msgid "Gibberbot - Secure instant messaging client for Android"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
-"If the Android app you are using can support the use of an HTTP or SOCKS "
-"proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
-" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port "
-"setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or "
-"SOCKS5 if possible.\n"
+"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
+" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or SOCKS5 if possible.\n"
" \\n\\n\n"
-" You can learn more about proxying on Android via the FAQ at: "
-"http://tinyurl.com/proxyandroid\n"
+" You can learn more about proxying on Android via the FAQ at: http://tinyurl.com/proxyandroid\n"
" "
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
msgid ""
"Hundreds of thousands of people around the world use Tor for a wide variety "
@@ -481,31 +523,58 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
msgid ""
-" You\\'ve successfully connected to the Tor network - but this does NOT mean "
-"your device is secure. You can use the \\'Check\\' option from the menu to "
-"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot "
-"or send an email to help(a)guardianproject.info to learn more."
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
msgid ""
"This will open your default web browser to https://check.torproject.org in "
"order to see if Orbot is probably configured and you are connected to Tor."
msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:127
+#, no-wrap
+msgid "Hidden Services"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:129
+#, no-wrap
+msgid "General"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:130
+#, no-wrap
+msgid "Start Orbot on Boot"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:131
+#, no-wrap
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/fr/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/fr/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/fr/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,15 +1,18 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
+# <ecuriesduperche(a)free.fr>, 2011.
+# <pierre.antoine(a)ieee.org>, 2011.
+# <tpweb1780(a)yahoo.fr>, 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-05-02 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 14:49+0000\n"
-"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
+"PO-Revision-Date: 2011-09-12 02:57+0000\n"
+"Last-Translator: pigati <pierre.antoine(a)ieee.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -27,13 +30,13 @@
#: strings.xml:4
#, no-wrap
msgid "1.0.5-dev"
-msgstr ""
+msgstr "1.0.5-dev"
#. type: Content of: <resources><string>
#: strings.xml:6
#, no-wrap
msgid "http://orbot/"
-msgstr "http://orbot"
+msgstr "http://orbot/"
#. type: Content of: <resources><string>
#: strings.xml:7
@@ -57,7 +60,7 @@
#: strings.xml:10
#, no-wrap
msgid "start and stop Tor"
-msgstr "démarrer et quitter Tor"
+msgstr "démarrer et arrêter Tor"
#. type: Content of: <resources><string>
#: strings.xml:11
@@ -87,7 +90,7 @@
#: strings.xml:16
#, no-wrap
msgid "Orbot is shutting down"
-msgstr "Orbot est en train de fermer"
+msgstr "Orbot s'arrête"
#. type: Content of: <resources><string>
#: strings.xml:18
@@ -99,7 +102,7 @@
#: strings.xml:19
#, no-wrap
msgid "Setting up control..."
-msgstr ""
+msgstr "Configuration en cours..."
#. type: Content of: <resources><string>
#: strings.xml:20
@@ -121,21 +124,21 @@
"applications to use HTTP proxy 127.0.0.1:8118 or SOCKS4A or SOCKS5 proxy "
"127.0.0.1:9050"
msgstr ""
-"AVERTISSEMENT: Votre traffic n'est pas encore anonyme ! Veuillez configurer "
-"vos applications pour qu'elles utilisent le proxy HTTP 127.0.0.1:8118 ou les"
-" proxys SOCKS4A ou SOCKS5 127.0.0.1:9050"
+"AVERTISSEMENT: Votre traffic n\\'est pas encore anonyme ! Veuillez "
+"configurer vos applications pour qu\\'elles utilisent le proxy HTTP à "
+"127.0.0.1:8118 ou le proxy SOCKS4A ou SOCKS5 à 127.0.0.1:9050"
#. type: Content of: <resources><string>
#: strings.xml:24
#, no-wrap
msgid "Home"
-msgstr "Home"
+msgstr "Accueil"
#. type: Content of: <resources><string>
#: strings.xml:25
#, no-wrap
msgid "Browse"
-msgstr "Navigation"
+msgstr "Parcourir"
#. type: Content of: <resources><string>
#: strings.xml:26
@@ -177,13 +180,13 @@
#: strings.xml:33 strings.xml:39
#, no-wrap
msgid "About"
-msgstr "A propos"
+msgstr "À propos"
#. type: Content of: <resources><string>
#: strings.xml:34
#, no-wrap
msgid "Wizard"
-msgstr ""
+msgstr "Assistant"
#. type: Content of: <resources><string>
#: strings.xml:38
@@ -195,67 +198,67 @@
#: strings.xml:41
#, no-wrap
msgid "Clear Log"
-msgstr ""
+msgstr "Effacer le journal"
#. type: Content of: <resources><string>
#: strings.xml:44
#, no-wrap
msgid "Check"
-msgstr ""
+msgstr "Vérifier"
#. type: Content of: <resources><string>
#: strings.xml:45
#, no-wrap
msgid "Exit"
-msgstr ""
+msgstr "Sortie"
#. type: Content of: <resources><string>
#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
-msgstr ""
+msgstr "propulsé par le Projet Tor "
#. type: Content of: <resources><string>
#: strings.xml:47
#, no-wrap
msgid "- long press to start -"
-msgstr ""
+msgstr "- appuyez longtemps pour démarrer -"
#. type: Content of: <resources><string>
#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
-msgstr ""
+msgstr "Proxy transparent (accès privilègié requis) "
#. type: Content of: <resources><string>
#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
-msgstr ""
+msgstr "Proxy transparent"
#. type: Content of: <resources><string>
#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
-msgstr ""
+msgstr "Torifaction automatique des applications"
#. type: Content of: <resources><string>
#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
-msgstr ""
+msgstr "Tout passer par Tor"
#. type: Content of: <resources><string>
#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
-msgstr ""
+msgstr "Passer le trafic de toutes les applications par Tor"
#. type: Content of: <resources><string>
#: strings.xml:56
#, no-wrap
msgid "Port Proxy Fallback"
-msgstr ""
+msgstr "Mode proxy de secours"
#. type: Content of: <resources><string>
#: strings.xml:57
@@ -264,42 +267,46 @@
"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
" \\'App\\' mode doesn\\'t work."
msgstr ""
+"ATTENTION : Contourne les ports communs (80, 443, etc). *À N'UTILISER QUE* "
+"si les modes \\'Tout \\' ou \\'Application\\' ne fonctionnent pas."
#. type: Content of: <resources><string>
#: strings.xml:59
#, no-wrap
msgid "Port List"
-msgstr ""
+msgstr "Liste des ports"
#. type: Content of: <resources><string>
#: strings.xml:60
#, no-wrap
msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
msgstr ""
+"Liste des ports vers le proxy. *À N'UTILISER QUE* si les modes \\'Tout \\' "
+"ou \\'Application\\' ne fonctionnent pas."
#. type: Content of: <resources><string>
#: strings.xml:61
#, no-wrap
msgid "Enter ports to proxy"
-msgstr ""
+msgstr "Entrez les ports vers le proxy"
#. type: Content of: <resources><string>
#: strings.xml:63
#, no-wrap
msgid "Request Root Access"
-msgstr ""
+msgstr "Demander un accès privilégié"
#. type: Content of: <resources><string>
#: strings.xml:64
#, no-wrap
msgid "Request root access for transparent proxying"
-msgstr ""
+msgstr "Demande un accès privilégié pour le proxy transparent"
#. type: Content of: <resources><string>
#: strings.xml:66
#, no-wrap
msgid "Tor binaries successfully installed!"
-msgstr ""
+msgstr "Tor a été installé avec succès !"
#. type: Content of: <resources><string>
#: strings.xml:67
@@ -308,54 +315,56 @@
"The Tor binary files were unable to be installed. Please check the log and "
"notify tor-assistants(a)torproject.org"
msgstr ""
+"Tor n\\'a pas pu installé. S'il vous plaît, vérifiez le fichier journal et "
+"contactez tor-assistants(a)torproject.org"
#. type: Content of: <resources><string>
#: strings.xml:69
#, no-wrap
msgid "Application Error"
-msgstr ""
+msgstr "Erreur de l'application"
#. type: Content of: <resources><string>
#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
-msgstr ""
+msgstr "Bienvenue dans Orbot"
#. type: Content of: <resources><string>
#: strings.xml:73
#, no-wrap
msgid "About Orbot"
-msgstr ""
+msgstr "À propos de Orbot"
#. type: Content of: <resources><string>
#: strings.xml:74
#, no-wrap
msgid "Next"
-msgstr ""
+msgstr "Suivant"
#. type: Content of: <resources><string>
#: strings.xml:75
#, no-wrap
msgid "Back"
-msgstr ""
+msgstr "Précédent"
#. type: Content of: <resources><string>
#: strings.xml:76
#, no-wrap
msgid "Finish"
-msgstr ""
+msgstr "Fin"
#. type: Content of: <resources><string>
#: strings.xml:78
#, no-wrap
msgid "Okay"
-msgstr ""
+msgstr "Valider"
#. type: Content of: <resources><string>
#: strings.xml:79
#, no-wrap
msgid "Cancel"
-msgstr ""
+msgstr "Annuler"
#. type: Content of: <resources><string>
#: strings.xml:83
@@ -368,12 +377,20 @@
" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
" This wizard will help you get started."
msgstr ""
+"Orbot permet de fournir les services de Tor à Android. Tor est un logiciel "
+"libre et un réseau ouvert qui aide à vous défendre contre une forme de "
+"surveillance des réseaux informatiques qui menace les libertés individuelles"
+" et l'anonymat, la confidentialité des activités d\\'affaires et des "
+"relations interpersonnelles, et la sécurité des gouvernements, connu sous le"
+" nom d'analyse de trafic \\ n \\ n * AVERTISSEMENT : * Il ne suffit pas "
+"d'installer Orbot pour que votre trafic mobile soit anonymisé ! Cet "
+"assistant va vous y aider."
#. type: Content of: <resources><string>
#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
-msgstr ""
+msgstr "Quelques détails sur Orbot"
#. type: Content of: <resources><string>
#: strings.xml:85
@@ -384,18 +401,22 @@
" network. Orbot also has the ability, on rooted device, to send all internet"
" traffic through Tor."
msgstr ""
+"Orbot est une application logicielle libre qui contient Tor, LibEvent et "
+"Privoxy. Il fournit un proxy local HTTP (8118) et un proxy SOCKS (9050) dans"
+" le réseau Tor. Orbot a aussi la capacité, avec les droits administrateurs, "
+"d\\'envoyer tout le trafic Internet à travers Tor."
#. type: Content of: <resources><string>
#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
-msgstr ""
+msgstr "Permission accordée"
#. type: Content of: <resources><string>
#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
-msgstr ""
+msgstr "Permissions d\\'Orbot"
#. type: Content of: <resources><string>
#: strings.xml:88
@@ -404,6 +425,8 @@
"Excellent! We\\'ve detected that you have root permissions enabled for "
"Orbot. We will use this power wisely."
msgstr ""
+"Excellent ! Nous avons détecté que vous avez donné les droits privilégiés "
+"pour Orbot. Nous utiliserions ces droits avec sagesse."
#. type: Content of: <resources><string>
#: strings.xml:89
@@ -412,6 +435,9 @@
" While it is not required, Orbot can become a more powerful tool if your "
"device has root access. Use the button below to grant Orbot superpowers! "
msgstr ""
+" Bien que cela ne soit pas nécessaire, Orbot peut devenir un outil bien plus"
+" utile si vous lui donnez un accès privilégié. Utilisez le bouton ci-dessous"
+" pour donner à Orbot de grands pouvoirs ! "
#. type: Content of: <resources><string>
#: strings.xml:91
@@ -420,24 +446,27 @@
"If you don\\'t have root access or have no idea what we\\'re talking about, "
"just be sure to use apps made to work with Orbot."
msgstr ""
+"Si vous n\\'avez pas d'accès privilégié ou n\\'avez pas idée de ce que cela "
+"est, vérifiez bien que vous utilisez des applications conçues pour "
+"fonctionner avec Orbot."
#. type: Content of: <resources><string>
#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
-msgstr ""
+msgstr "Je comprends et je souhaite continuer sans les droits privilégiés"
#. type: Content of: <resources><string>
#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
-msgstr ""
+msgstr "Donner les droits privilégiés à Orbot"
#. type: Content of: <resources><string>
#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
-msgstr ""
+msgstr "Configurer la Torification"
#. type: Content of: <resources><string>
#: strings.xml:96
@@ -446,24 +475,26 @@
"Orbot gives you the option to route all application traffic through Tor OR "
"to choose your applications individually."
msgstr ""
+"Orbot vous donne le choix entre faire passer le trafic de toutes les "
+"applications à travers Tor OU de choisir pour chaque application"
#. type: Content of: <resources><string>
#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
-msgstr ""
+msgstr "Toutes les applications par Tor"
#. type: Content of: <resources><string>
#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
-msgstr ""
+msgstr "Choisir les applications utilisant Tor"
#. type: Content of: <resources><string>
#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
-msgstr ""
+msgstr "Applications avec Orbot"
#. type: Content of: <resources><string>
#: strings.xml:102
@@ -472,12 +503,15 @@
"We encourage you to download & use apps that know how to connect "
"directly to Orbot. Click on the buttons below to install."
msgstr ""
+"Nous vous encouragons à télécharger & utiliser les applications conçues "
+"pour se connecter directement à Orbot. Cliquez sur les boutons ci-dessous "
+"pour installer."
#. type: Content of: <resources><string>
#: strings.xml:103
#, no-wrap
msgid "Gibberbot - Secure instant messaging client for Android"
-msgstr ""
+msgstr "Gibberbot - Client de messagerie instantanée pour Android"
#. type: Content of: <resources><string>
#: strings.xml:104
@@ -485,18 +519,22 @@
msgid ""
"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
+"ORWEB (Android 1.x seulement) - navigateur créé pour protéger votre vie "
+"privée & pour Orbot"
#. type: Content of: <resources><string>
#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
+"Configuration du proxy - Apprendre comment configurer les applications pour "
+"qu'elles fonctionnent avec Orbot"
#. type: Content of: <resources><string>
#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
-msgstr ""
+msgstr "Configuration du proxy"
#. type: Content of: <resources><string>
#: strings.xml:108
@@ -508,12 +546,17 @@
" You can learn more about proxying on Android via the FAQ at: http://tinyurl.com/proxyandroid\n"
" "
msgstr ""
+"Si l\\'application Android que vous utilisez peut supporter un proxy HTTP ou un proxy SOCKS, vous pouvez la configurer pour se connecter à Orbot et utiliser Tor./n/n\n"
+" La configuration de l'hôte est 127.0.0.1 ou \"localhost\". Pour le HTTP, le port utilisé est le 8118. Pour SOCKS, le port utilisé est 9050. Vous devriez, si possible, utiliser SOCKS4A ou SOCKS5.\n"
+" /n/n\n"
+" Vous pouvez en apprendre plus sur la configuration de proxy sous Android sur la FAQ à : http://tinyurl.com/proxyandroid\n"
+" "
#. type: Content of: <resources><string>
#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
-msgstr ""
+msgstr "Orbot est prêt!"
#. type: Content of: <resources><string>
#: strings.xml:115
@@ -524,18 +567,23 @@
"officers, soldiers, corporations, citizens of repressive regimes, and just "
"ordinary citizens... and now you are ready to, as well!"
msgstr ""
+"Des milliers de personnes dans le monde utilisent Tor pour une grande "
+"variétés de raisons : journalistes et bloggers, défenseurs des droits de "
+"l\\'homme, policiers, soldats, entreprises, les citoyens de régimes "
+"répressifs, et aussi de simples citoyens ... et maintenant vous êtes prêts "
+"aussi !"
#. type: Content of: <resources><string>
#: strings.xml:117
#, no-wrap
msgid "market://search?q=pname:info.guardianproject.otr.app.im"
-msgstr ""
+msgstr "market://search?q=pname:info.guardianproject.otr.app.im"
#. type: Content of: <resources><string>
#: strings.xml:118
#, no-wrap
msgid "market://search?q=pname:nfo.guardianproject.browser"
-msgstr ""
+msgstr "market://search?q=pname:nfo.guardianproject.browser"
#. type: Content of: <resources><string>
#: strings.xml:122
@@ -546,6 +594,11 @@
"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
+" Vous êtes connectés avec succés au réseau Tor - mais cela ne signifie PAS "
+"que votre appareil est sécurisé. Vous pouvez utiliser l\\'option "
+"\\'Vérifier\\' du menu pour vérifier avec votre navigateur. \\n\\nAllez à "
+"la page https://guardianproject.info/apps/orbot ou envoyez un courriel à "
+"help(a)guardianproject.info pour en savoir plus."
#. type: Content of: <resources><string>
#: strings.xml:124
@@ -554,24 +607,27 @@
"This will open your default web browser to https://check.torproject.org in "
"order to see if Orbot is probably configured and you are connected to Tor."
msgstr ""
+"Ceci va ouvrir la page https://check.torproject.org avec le navigateur web "
+"par défaut pour vérifier si Orbot est suffisamment configuré pour vous "
+"connecter à Tor."
#. type: Content of: <resources><string>
#: strings.xml:127
#, no-wrap
msgid "Hidden Services"
-msgstr ""
+msgstr "Services cachés"
#. type: Content of: <resources><string>
#: strings.xml:129
#, no-wrap
msgid "General"
-msgstr ""
+msgstr "Général"
#. type: Content of: <resources><string>
#: strings.xml:130
#, no-wrap
msgid "Start Orbot on Boot"
-msgstr ""
+msgstr "Exécuter Orbot automatiquement"
#. type: Content of: <resources><string>
#: strings.xml:131
@@ -579,3 +635,7 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+"Démarrer automatiquement Orbot et se connecter à Tor quand votre "
+"périphérique Android démarre"
+
+
Modified: translation/trunk/projects/orbot/po/fur/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/fur/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/fur/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/fy/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/fy/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/fy/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,40 +1,35 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#, fuzzy
+#
+# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-09-22 12:09+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"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: fy\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
+msgid "Orbot"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:4
#, no-wrap
-msgid "Orbot"
+msgid "1.0.5-dev"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:5
-#, no-wrap
-msgid "1.0.2"
-msgstr ""
-
-#. type: Content of: <resources><string>
#: strings.xml:6
#, no-wrap
msgid "http://orbot/"
@@ -152,7 +147,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr ""
@@ -176,85 +171,135 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
+msgid "About"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
+msgid "Wizard"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
-msgid "Clear Log"
+msgid "Close"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:41
#, no-wrap
+msgid "Clear Log"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:44
+#, no-wrap
msgid "Check"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
+msgid "- long press to start -"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
msgid ""
"The Tor binary files were unable to be installed. Please check the log and "
@@ -262,95 +307,95 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
msgid ""
"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* "
-"Simply installing Orbot will _not_ magically anonymize your mobile traffic! "
-"This wizard will help you get started."
+"relationships, and state security known as traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
msgid ""
-"Orbot is an open-source application that contains Tor, LibEvent and "
-"Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into "
-"the Tor network. Orbot also has the ability, on rooted device, to send all "
-"internet traffic through Tor."
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
msgid ""
"Excellent! We\\'ve detected that you have root permissions enabled for "
@@ -358,7 +403,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
msgid ""
" While it is not required, Orbot can become a more powerful tool if your "
@@ -366,7 +411,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
msgid ""
"If you don\\'t have root access or have no idea what we\\'re talking about, "
@@ -374,25 +419,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
msgid ""
"Orbot gives you the option to route all application traffic through Tor OR "
@@ -400,25 +445,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
msgid ""
"We encourage you to download & use apps that know how to connect "
@@ -426,52 +471,49 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
+msgid "Gibberbot - Secure instant messaging client for Android"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
-"If the Android app you are using can support the use of an HTTP or SOCKS "
-"proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
-" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port "
-"setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or "
-"SOCKS5 if possible.\n"
+"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
+" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or SOCKS5 if possible.\n"
" \\n\\n\n"
-" You can learn more about proxying on Android via the FAQ at: "
-"http://tinyurl.com/proxyandroid\n"
+" You can learn more about proxying on Android via the FAQ at: http://tinyurl.com/proxyandroid\n"
" "
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
msgid ""
"Hundreds of thousands of people around the world use Tor for a wide variety "
@@ -481,31 +523,58 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
msgid ""
-" You\\'ve successfully connected to the Tor network - but this does NOT mean "
-"your device is secure. You can use the \\'Check\\' option from the menu to "
-"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot "
-"or send an email to help(a)guardianproject.info to learn more."
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
msgid ""
"This will open your default web browser to https://check.torproject.org in "
"order to see if Orbot is probably configured and you are connected to Tor."
msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:127
+#, no-wrap
+msgid "Hidden Services"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:129
+#, no-wrap
+msgid "General"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:130
+#, no-wrap
+msgid "Start Orbot on Boot"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:131
+#, no-wrap
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/ga/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/ga/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/ga/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:01+0000\n"
+"PO-Revision-Date: 2011-09-22 12:07+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/gl/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/gl/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/gl/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:01+0000\n"
+"PO-Revision-Date: 2011-09-22 12:07+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/gu/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/gu/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/gu/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:01+0000\n"
+"PO-Revision-Date: 2011-09-22 12:07+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/gun/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/gun/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/gun/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/ha/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/ha/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/ha/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/he/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/he/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/he/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/hi/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/hi/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/hi/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/hr/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/hr/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/hr/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/ht/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/ht/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/ht/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/hu/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/hu/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/hu/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: 2011-01-15 17:09+0000\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -20,22 +20,16 @@
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
+msgid "Orbot"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:4
#, no-wrap
-msgid "Orbot"
+msgid "1.0.5-dev"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:5
-#, no-wrap
-msgid "1.0.2"
-msgstr ""
-
-#. type: Content of: <resources><string>
#: strings.xml:6
#, no-wrap
msgid "http://orbot/"
@@ -122,7 +116,10 @@
#. type: Content of: <resources><string>
#: strings.xml:23
#, no-wrap
-msgid "WARNING: Your traffic is not anonymous yet! Please configure your applications to use HTTP proxy 127.0.0.1:8118 or SOCKS4A or SOCKS5 proxy 127.0.0.1:9050"
+msgid ""
+"WARNING: Your traffic is not anonymous yet! Please configure your "
+"applications to use HTTP proxy 127.0.0.1:8118 or SOCKS4A or SOCKS5 proxy "
+"127.0.0.1:9050"
msgstr ""
#. type: Content of: <resources><string>
@@ -150,7 +147,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr ""
@@ -174,259 +171,332 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
+msgid "About"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
+msgid "Wizard"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
-msgid "Clear Log"
+msgid "Close"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:41
#, no-wrap
+msgid "Clear Log"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:44
+#, no-wrap
msgid "Check"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
+msgid "- long press to start -"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
-msgid "The Tor binary files were unable to be installed. Please check the log and notify tor-assistants(a)torproject.org"
+msgid ""
+"The Tor binary files were unable to be installed. Please check the log and "
+"notify tor-assistants(a)torproject.org"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
-msgid "Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* Simply installing Orbot will _not_ magically anonymize your mobile traffic! This wizard will help you get started."
+msgid ""
+"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
-msgid "Orbot is an open-source application that contains Tor, LibEvent and Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor network. Orbot also has the ability, on rooted device, to send all internet traffic through Tor."
+msgid ""
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
-msgid "Excellent! We\\'ve detected that you have root permissions enabled for Orbot. We will use this power wisely."
+msgid ""
+"Excellent! We\\'ve detected that you have root permissions enabled for "
+"Orbot. We will use this power wisely."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
-msgid " While it is not required, Orbot can become a more powerful tool if your device has root access. Use the button below to grant Orbot superpowers! "
+msgid ""
+" While it is not required, Orbot can become a more powerful tool if your "
+"device has root access. Use the button below to grant Orbot superpowers! "
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
-msgid "If you don\\'t have root access or have no idea what we\\'re talking about, just be sure to use apps made to work with Orbot."
+msgid ""
+"If you don\\'t have root access or have no idea what we\\'re talking about, "
+"just be sure to use apps made to work with Orbot."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
-msgid "Orbot gives you the option to route all application traffic through Tor OR to choose your applications individually."
+msgid ""
+"Orbot gives you the option to route all application traffic through Tor OR "
+"to choose your applications individually."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
-msgid "We encourage you to download & use apps that know how to connect directly to Orbot. Click on the buttons below to install."
+msgid ""
+"We encourage you to download & use apps that know how to connect "
+"directly to Orbot. Click on the buttons below to install."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
+msgid "Gibberbot - Secure instant messaging client for Android"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
@@ -437,37 +507,74 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
-msgid "Hundreds of thousands of people around the world use Tor for a wide variety of reasons: journalists and bloggers, human rights workers, law enforcement officers, soldiers, corporations, citizens of repressive regimes, and just ordinary citizens... and now you are ready to, as well!"
+msgid ""
+"Hundreds of thousands of people around the world use Tor for a wide variety "
+"of reasons: journalists and bloggers, human rights workers, law enforcement "
+"officers, soldiers, corporations, citizens of repressive regimes, and just "
+"ordinary citizens... and now you are ready to, as well!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
-msgid " You\\'ve successfully connected to the Tor network - but this does NOT mean your device is secure. You can use the \\'Check\\' option from the menu to test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot or send an email to help(a)guardianproject.info to learn more."
+msgid ""
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
-msgid "This will open your default web browser to https://check.torproject.org in order to see if Orbot is probably configured and you are connected to Tor."
+msgid ""
+"This will open your default web browser to https://check.torproject.org in "
+"order to see if Orbot is probably configured and you are connected to Tor."
msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:127
+#, no-wrap
+msgid "Hidden Services"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:129
+#, no-wrap
+msgid "General"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:130
+#, no-wrap
+msgid "Start Orbot on Boot"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:131
+#, no-wrap
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/hy/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/hy/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/hy/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,40 +1,35 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#, fuzzy
+#
+# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-09-22 12: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"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: hy\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
+msgid "Orbot"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:4
#, no-wrap
-msgid "Orbot"
+msgid "1.0.5-dev"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:5
-#, no-wrap
-msgid "1.0.2"
-msgstr ""
-
-#. type: Content of: <resources><string>
#: strings.xml:6
#, no-wrap
msgid "http://orbot/"
@@ -152,7 +147,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr ""
@@ -176,85 +171,135 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
+msgid "About"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
+msgid "Wizard"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
-msgid "Clear Log"
+msgid "Close"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:41
#, no-wrap
+msgid "Clear Log"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:44
+#, no-wrap
msgid "Check"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
+msgid "- long press to start -"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
msgid ""
"The Tor binary files were unable to be installed. Please check the log and "
@@ -262,95 +307,95 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
msgid ""
"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* "
-"Simply installing Orbot will _not_ magically anonymize your mobile traffic! "
-"This wizard will help you get started."
+"relationships, and state security known as traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
msgid ""
-"Orbot is an open-source application that contains Tor, LibEvent and "
-"Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into "
-"the Tor network. Orbot also has the ability, on rooted device, to send all "
-"internet traffic through Tor."
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
msgid ""
"Excellent! We\\'ve detected that you have root permissions enabled for "
@@ -358,7 +403,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
msgid ""
" While it is not required, Orbot can become a more powerful tool if your "
@@ -366,7 +411,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
msgid ""
"If you don\\'t have root access or have no idea what we\\'re talking about, "
@@ -374,25 +419,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
msgid ""
"Orbot gives you the option to route all application traffic through Tor OR "
@@ -400,25 +445,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
msgid ""
"We encourage you to download & use apps that know how to connect "
@@ -426,52 +471,49 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
+msgid "Gibberbot - Secure instant messaging client for Android"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
-"If the Android app you are using can support the use of an HTTP or SOCKS "
-"proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
-" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port "
-"setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or "
-"SOCKS5 if possible.\n"
+"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
+" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or SOCKS5 if possible.\n"
" \\n\\n\n"
-" You can learn more about proxying on Android via the FAQ at: "
-"http://tinyurl.com/proxyandroid\n"
+" You can learn more about proxying on Android via the FAQ at: http://tinyurl.com/proxyandroid\n"
" "
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
msgid ""
"Hundreds of thousands of people around the world use Tor for a wide variety "
@@ -481,31 +523,58 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
msgid ""
-" You\\'ve successfully connected to the Tor network - but this does NOT mean "
-"your device is secure. You can use the \\'Check\\' option from the menu to "
-"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot "
-"or send an email to help(a)guardianproject.info to learn more."
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
msgid ""
"This will open your default web browser to https://check.torproject.org in "
"order to see if Orbot is probably configured and you are connected to Tor."
msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:127
+#, no-wrap
+msgid "Hidden Services"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:129
+#, no-wrap
+msgid "General"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:130
+#, no-wrap
+msgid "Start Orbot on Boot"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:131
+#, no-wrap
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/id/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/id/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/id/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:03+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/is/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/is/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/is/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,8 +1,8 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/it/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/it/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/it/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,8 +1,8 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
@@ -10,7 +10,7 @@
"POT-Creation-Date: 2011-05-02 15:49+0200\n"
"PO-Revision-Date: 2011-05-02 14:49+0000\n"
"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
-"Language-Team: Italian <None>\n"
+"Language-Team: Italian (http://www.transifex.net/projects/p/torproject/team/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/ja/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/ja/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/ja/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,40 +1,35 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#, fuzzy
+#
+# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-09-22 12:09+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"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: ja\n"
+"Plural-Forms: nplurals=1; plural=0\n"
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
+msgid "Orbot"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:4
#, no-wrap
-msgid "Orbot"
+msgid "1.0.5-dev"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:5
-#, no-wrap
-msgid "1.0.2"
-msgstr ""
-
-#. type: Content of: <resources><string>
#: strings.xml:6
#, no-wrap
msgid "http://orbot/"
@@ -152,7 +147,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr ""
@@ -176,85 +171,135 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
+msgid "About"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
+msgid "Wizard"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
-msgid "Clear Log"
+msgid "Close"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:41
#, no-wrap
+msgid "Clear Log"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:44
+#, no-wrap
msgid "Check"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
+msgid "- long press to start -"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
msgid ""
"The Tor binary files were unable to be installed. Please check the log and "
@@ -262,95 +307,95 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
msgid ""
"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* "
-"Simply installing Orbot will _not_ magically anonymize your mobile traffic! "
-"This wizard will help you get started."
+"relationships, and state security known as traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
msgid ""
-"Orbot is an open-source application that contains Tor, LibEvent and "
-"Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into "
-"the Tor network. Orbot also has the ability, on rooted device, to send all "
-"internet traffic through Tor."
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
msgid ""
"Excellent! We\\'ve detected that you have root permissions enabled for "
@@ -358,7 +403,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
msgid ""
" While it is not required, Orbot can become a more powerful tool if your "
@@ -366,7 +411,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
msgid ""
"If you don\\'t have root access or have no idea what we\\'re talking about, "
@@ -374,25 +419,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
msgid ""
"Orbot gives you the option to route all application traffic through Tor OR "
@@ -400,25 +445,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
msgid ""
"We encourage you to download & use apps that know how to connect "
@@ -426,52 +471,49 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
+msgid "Gibberbot - Secure instant messaging client for Android"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
-"If the Android app you are using can support the use of an HTTP or SOCKS "
-"proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
-" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port "
-"setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or "
-"SOCKS5 if possible.\n"
+"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
+" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or SOCKS5 if possible.\n"
" \\n\\n\n"
-" You can learn more about proxying on Android via the FAQ at: "
-"http://tinyurl.com/proxyandroid\n"
+" You can learn more about proxying on Android via the FAQ at: http://tinyurl.com/proxyandroid\n"
" "
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
msgid ""
"Hundreds of thousands of people around the world use Tor for a wide variety "
@@ -481,31 +523,58 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
msgid ""
-" You\\'ve successfully connected to the Tor network - but this does NOT mean "
-"your device is secure. You can use the \\'Check\\' option from the menu to "
-"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot "
-"or send an email to help(a)guardianproject.info to learn more."
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
msgid ""
"This will open your default web browser to https://check.torproject.org in "
"order to see if Orbot is probably configured and you are connected to Tor."
msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:127
+#, no-wrap
+msgid "Hidden Services"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:129
+#, no-wrap
+msgid "General"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:130
+#, no-wrap
+msgid "Start Orbot on Boot"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:131
+#, no-wrap
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/jv/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/jv/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/jv/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,40 +1,35 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#, fuzzy
+#
+# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-09-22 12: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"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: jv\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
+msgid "Orbot"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:4
#, no-wrap
-msgid "Orbot"
+msgid "1.0.5-dev"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:5
-#, no-wrap
-msgid "1.0.2"
-msgstr ""
-
-#. type: Content of: <resources><string>
#: strings.xml:6
#, no-wrap
msgid "http://orbot/"
@@ -152,7 +147,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr ""
@@ -176,85 +171,135 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
+msgid "About"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
+msgid "Wizard"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
-msgid "Clear Log"
+msgid "Close"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:41
#, no-wrap
+msgid "Clear Log"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:44
+#, no-wrap
msgid "Check"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
+msgid "- long press to start -"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
msgid ""
"The Tor binary files were unable to be installed. Please check the log and "
@@ -262,95 +307,95 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
msgid ""
"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* "
-"Simply installing Orbot will _not_ magically anonymize your mobile traffic! "
-"This wizard will help you get started."
+"relationships, and state security known as traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
msgid ""
-"Orbot is an open-source application that contains Tor, LibEvent and "
-"Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into "
-"the Tor network. Orbot also has the ability, on rooted device, to send all "
-"internet traffic through Tor."
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
msgid ""
"Excellent! We\\'ve detected that you have root permissions enabled for "
@@ -358,7 +403,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
msgid ""
" While it is not required, Orbot can become a more powerful tool if your "
@@ -366,7 +411,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
msgid ""
"If you don\\'t have root access or have no idea what we\\'re talking about, "
@@ -374,25 +419,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
msgid ""
"Orbot gives you the option to route all application traffic through Tor OR "
@@ -400,25 +445,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
msgid ""
"We encourage you to download & use apps that know how to connect "
@@ -426,52 +471,49 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
+msgid "Gibberbot - Secure instant messaging client for Android"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
-"If the Android app you are using can support the use of an HTTP or SOCKS "
-"proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
-" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port "
-"setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or "
-"SOCKS5 if possible.\n"
+"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
+" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or SOCKS5 if possible.\n"
" \\n\\n\n"
-" You can learn more about proxying on Android via the FAQ at: "
-"http://tinyurl.com/proxyandroid\n"
+" You can learn more about proxying on Android via the FAQ at: http://tinyurl.com/proxyandroid\n"
" "
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
msgid ""
"Hundreds of thousands of people around the world use Tor for a wide variety "
@@ -481,31 +523,58 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
msgid ""
-" You\\'ve successfully connected to the Tor network - but this does NOT mean "
-"your device is secure. You can use the \\'Check\\' option from the menu to "
-"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot "
-"or send an email to help(a)guardianproject.info to learn more."
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
msgid ""
"This will open your default web browser to https://check.torproject.org in "
"order to see if Orbot is probably configured and you are connected to Tor."
msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:127
+#, no-wrap
+msgid "Hidden Services"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:129
+#, no-wrap
+msgid "General"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:130
+#, no-wrap
+msgid "Start Orbot on Boot"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:131
+#, no-wrap
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/ka/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/ka/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/ka/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,40 +1,35 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#, fuzzy
+#
+# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-09-22 12:09+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"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: ka\n"
+"Plural-Forms: nplurals=1; plural=0\n"
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
+msgid "Orbot"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:4
#, no-wrap
-msgid "Orbot"
+msgid "1.0.5-dev"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:5
-#, no-wrap
-msgid "1.0.2"
-msgstr ""
-
-#. type: Content of: <resources><string>
#: strings.xml:6
#, no-wrap
msgid "http://orbot/"
@@ -152,7 +147,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr ""
@@ -176,85 +171,135 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
+msgid "About"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
+msgid "Wizard"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
-msgid "Clear Log"
+msgid "Close"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:41
#, no-wrap
+msgid "Clear Log"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:44
+#, no-wrap
msgid "Check"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
+msgid "- long press to start -"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
msgid ""
"The Tor binary files were unable to be installed. Please check the log and "
@@ -262,95 +307,95 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
msgid ""
"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* "
-"Simply installing Orbot will _not_ magically anonymize your mobile traffic! "
-"This wizard will help you get started."
+"relationships, and state security known as traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
msgid ""
-"Orbot is an open-source application that contains Tor, LibEvent and "
-"Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into "
-"the Tor network. Orbot also has the ability, on rooted device, to send all "
-"internet traffic through Tor."
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
msgid ""
"Excellent! We\\'ve detected that you have root permissions enabled for "
@@ -358,7 +403,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
msgid ""
" While it is not required, Orbot can become a more powerful tool if your "
@@ -366,7 +411,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
msgid ""
"If you don\\'t have root access or have no idea what we\\'re talking about, "
@@ -374,25 +419,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
msgid ""
"Orbot gives you the option to route all application traffic through Tor OR "
@@ -400,25 +445,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
msgid ""
"We encourage you to download & use apps that know how to connect "
@@ -426,52 +471,49 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
+msgid "Gibberbot - Secure instant messaging client for Android"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
-"If the Android app you are using can support the use of an HTTP or SOCKS "
-"proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
-" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port "
-"setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or "
-"SOCKS5 if possible.\n"
+"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
+" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or SOCKS5 if possible.\n"
" \\n\\n\n"
-" You can learn more about proxying on Android via the FAQ at: "
-"http://tinyurl.com/proxyandroid\n"
+" You can learn more about proxying on Android via the FAQ at: http://tinyurl.com/proxyandroid\n"
" "
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
msgid ""
"Hundreds of thousands of people around the world use Tor for a wide variety "
@@ -481,31 +523,58 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
msgid ""
-" You\\'ve successfully connected to the Tor network - but this does NOT mean "
-"your device is secure. You can use the \\'Check\\' option from the menu to "
-"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot "
-"or send an email to help(a)guardianproject.info to learn more."
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
msgid ""
"This will open your default web browser to https://check.torproject.org in "
"order to see if Orbot is probably configured and you are connected to Tor."
msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:127
+#, no-wrap
+msgid "Hidden Services"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:129
+#, no-wrap
+msgid "General"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:130
+#, no-wrap
+msgid "Start Orbot on Boot"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:131
+#, no-wrap
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/km/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/km/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/km/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,40 +1,35 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#, fuzzy
+#
+# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-09-22 12:09+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"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: km\n"
+"Plural-Forms: nplurals=1; plural=0\n"
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
+msgid "Orbot"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:4
#, no-wrap
-msgid "Orbot"
+msgid "1.0.5-dev"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:5
-#, no-wrap
-msgid "1.0.2"
-msgstr ""
-
-#. type: Content of: <resources><string>
#: strings.xml:6
#, no-wrap
msgid "http://orbot/"
@@ -152,7 +147,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr ""
@@ -176,85 +171,135 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
+msgid "About"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
+msgid "Wizard"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
-msgid "Clear Log"
+msgid "Close"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:41
#, no-wrap
+msgid "Clear Log"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:44
+#, no-wrap
msgid "Check"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
+msgid "- long press to start -"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
msgid ""
"The Tor binary files were unable to be installed. Please check the log and "
@@ -262,95 +307,95 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
msgid ""
"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* "
-"Simply installing Orbot will _not_ magically anonymize your mobile traffic! "
-"This wizard will help you get started."
+"relationships, and state security known as traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
msgid ""
-"Orbot is an open-source application that contains Tor, LibEvent and "
-"Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into "
-"the Tor network. Orbot also has the ability, on rooted device, to send all "
-"internet traffic through Tor."
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
msgid ""
"Excellent! We\\'ve detected that you have root permissions enabled for "
@@ -358,7 +403,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
msgid ""
" While it is not required, Orbot can become a more powerful tool if your "
@@ -366,7 +411,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
msgid ""
"If you don\\'t have root access or have no idea what we\\'re talking about, "
@@ -374,25 +419,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
msgid ""
"Orbot gives you the option to route all application traffic through Tor OR "
@@ -400,25 +445,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
msgid ""
"We encourage you to download & use apps that know how to connect "
@@ -426,52 +471,49 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
+msgid "Gibberbot - Secure instant messaging client for Android"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
-"If the Android app you are using can support the use of an HTTP or SOCKS "
-"proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
-" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port "
-"setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or "
-"SOCKS5 if possible.\n"
+"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
+" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or SOCKS5 if possible.\n"
" \\n\\n\n"
-" You can learn more about proxying on Android via the FAQ at: "
-"http://tinyurl.com/proxyandroid\n"
+" You can learn more about proxying on Android via the FAQ at: http://tinyurl.com/proxyandroid\n"
" "
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
msgid ""
"Hundreds of thousands of people around the world use Tor for a wide variety "
@@ -481,31 +523,58 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
msgid ""
-" You\\'ve successfully connected to the Tor network - but this does NOT mean "
-"your device is secure. You can use the \\'Check\\' option from the menu to "
-"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot "
-"or send an email to help(a)guardianproject.info to learn more."
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
msgid ""
"This will open your default web browser to https://check.torproject.org in "
"order to see if Orbot is probably configured and you are connected to Tor."
msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:127
+#, no-wrap
+msgid "Hidden Services"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:129
+#, no-wrap
+msgid "General"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:130
+#, no-wrap
+msgid "Start Orbot on Boot"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:131
+#, no-wrap
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/kn/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/kn/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/kn/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:09+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/ko/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/ko/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/ko/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,40 +1,35 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#, fuzzy
+#
+# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-09-22 12: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"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: ko\n"
+"Plural-Forms: nplurals=1; plural=0\n"
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
+msgid "Orbot"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:4
#, no-wrap
-msgid "Orbot"
+msgid "1.0.5-dev"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:5
-#, no-wrap
-msgid "1.0.2"
-msgstr ""
-
-#. type: Content of: <resources><string>
#: strings.xml:6
#, no-wrap
msgid "http://orbot/"
@@ -152,7 +147,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr ""
@@ -176,85 +171,135 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
+msgid "About"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
+msgid "Wizard"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
-msgid "Clear Log"
+msgid "Close"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:41
#, no-wrap
+msgid "Clear Log"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:44
+#, no-wrap
msgid "Check"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
+msgid "- long press to start -"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
msgid ""
"The Tor binary files were unable to be installed. Please check the log and "
@@ -262,95 +307,95 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
msgid ""
"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* "
-"Simply installing Orbot will _not_ magically anonymize your mobile traffic! "
-"This wizard will help you get started."
+"relationships, and state security known as traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
msgid ""
-"Orbot is an open-source application that contains Tor, LibEvent and "
-"Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into "
-"the Tor network. Orbot also has the ability, on rooted device, to send all "
-"internet traffic through Tor."
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
msgid ""
"Excellent! We\\'ve detected that you have root permissions enabled for "
@@ -358,7 +403,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
msgid ""
" While it is not required, Orbot can become a more powerful tool if your "
@@ -366,7 +411,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
msgid ""
"If you don\\'t have root access or have no idea what we\\'re talking about, "
@@ -374,25 +419,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
msgid ""
"Orbot gives you the option to route all application traffic through Tor OR "
@@ -400,25 +445,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
msgid ""
"We encourage you to download & use apps that know how to connect "
@@ -426,52 +471,49 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
+msgid "Gibberbot - Secure instant messaging client for Android"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
-"If the Android app you are using can support the use of an HTTP or SOCKS "
-"proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
-" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port "
-"setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or "
-"SOCKS5 if possible.\n"
+"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
+" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or SOCKS5 if possible.\n"
" \\n\\n\n"
-" You can learn more about proxying on Android via the FAQ at: "
-"http://tinyurl.com/proxyandroid\n"
+" You can learn more about proxying on Android via the FAQ at: http://tinyurl.com/proxyandroid\n"
" "
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
msgid ""
"Hundreds of thousands of people around the world use Tor for a wide variety "
@@ -481,31 +523,58 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
msgid ""
-" You\\'ve successfully connected to the Tor network - but this does NOT mean "
-"your device is secure. You can use the \\'Check\\' option from the menu to "
-"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot "
-"or send an email to help(a)guardianproject.info to learn more."
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
msgid ""
"This will open your default web browser to https://check.torproject.org in "
"order to see if Orbot is probably configured and you are connected to Tor."
msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:127
+#, no-wrap
+msgid "Hidden Services"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:129
+#, no-wrap
+msgid "General"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:130
+#, no-wrap
+msgid "Start Orbot on Boot"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:131
+#, no-wrap
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/ku/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/ku/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/ku/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,40 +1,35 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#, fuzzy
+#
+# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-09-22 12:09+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"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: ku\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
+msgid "Orbot"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:4
#, no-wrap
-msgid "Orbot"
+msgid "1.0.5-dev"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:5
-#, no-wrap
-msgid "1.0.2"
-msgstr ""
-
-#. type: Content of: <resources><string>
#: strings.xml:6
#, no-wrap
msgid "http://orbot/"
@@ -152,7 +147,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr ""
@@ -176,85 +171,135 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
+msgid "About"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
+msgid "Wizard"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
-msgid "Clear Log"
+msgid "Close"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:41
#, no-wrap
+msgid "Clear Log"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:44
+#, no-wrap
msgid "Check"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
+msgid "- long press to start -"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
msgid ""
"The Tor binary files were unable to be installed. Please check the log and "
@@ -262,95 +307,95 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
msgid ""
"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* "
-"Simply installing Orbot will _not_ magically anonymize your mobile traffic! "
-"This wizard will help you get started."
+"relationships, and state security known as traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
msgid ""
-"Orbot is an open-source application that contains Tor, LibEvent and "
-"Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into "
-"the Tor network. Orbot also has the ability, on rooted device, to send all "
-"internet traffic through Tor."
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
msgid ""
"Excellent! We\\'ve detected that you have root permissions enabled for "
@@ -358,7 +403,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
msgid ""
" While it is not required, Orbot can become a more powerful tool if your "
@@ -366,7 +411,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
msgid ""
"If you don\\'t have root access or have no idea what we\\'re talking about, "
@@ -374,25 +419,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
msgid ""
"Orbot gives you the option to route all application traffic through Tor OR "
@@ -400,25 +445,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
msgid ""
"We encourage you to download & use apps that know how to connect "
@@ -426,52 +471,49 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
+msgid "Gibberbot - Secure instant messaging client for Android"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
-"If the Android app you are using can support the use of an HTTP or SOCKS "
-"proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
-" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port "
-"setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or "
-"SOCKS5 if possible.\n"
+"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
+" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or SOCKS5 if possible.\n"
" \\n\\n\n"
-" You can learn more about proxying on Android via the FAQ at: "
-"http://tinyurl.com/proxyandroid\n"
+" You can learn more about proxying on Android via the FAQ at: http://tinyurl.com/proxyandroid\n"
" "
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
msgid ""
"Hundreds of thousands of people around the world use Tor for a wide variety "
@@ -481,31 +523,58 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
msgid ""
-" You\\'ve successfully connected to the Tor network - but this does NOT mean "
-"your device is secure. You can use the \\'Check\\' option from the menu to "
-"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot "
-"or send an email to help(a)guardianproject.info to learn more."
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
msgid ""
"This will open your default web browser to https://check.torproject.org in "
"order to see if Orbot is probably configured and you are connected to Tor."
msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:127
+#, no-wrap
+msgid "Hidden Services"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:129
+#, no-wrap
+msgid "General"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:130
+#, no-wrap
+msgid "Start Orbot on Boot"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:131
+#, no-wrap
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/kw/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/kw/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/kw/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:03+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/ky/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/ky/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/ky/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,40 +1,35 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#, fuzzy
+#
+# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-09-22 12:09+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"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: ky\n"
+"Plural-Forms: nplurals=1; plural=0\n"
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
+msgid "Orbot"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:4
#, no-wrap
-msgid "Orbot"
+msgid "1.0.5-dev"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:5
-#, no-wrap
-msgid "1.0.2"
-msgstr ""
-
-#. type: Content of: <resources><string>
#: strings.xml:6
#, no-wrap
msgid "http://orbot/"
@@ -152,7 +147,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr ""
@@ -176,85 +171,135 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
+msgid "About"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
+msgid "Wizard"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
-msgid "Clear Log"
+msgid "Close"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:41
#, no-wrap
+msgid "Clear Log"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:44
+#, no-wrap
msgid "Check"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
+msgid "- long press to start -"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
msgid ""
"The Tor binary files were unable to be installed. Please check the log and "
@@ -262,95 +307,95 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
msgid ""
"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* "
-"Simply installing Orbot will _not_ magically anonymize your mobile traffic! "
-"This wizard will help you get started."
+"relationships, and state security known as traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
msgid ""
-"Orbot is an open-source application that contains Tor, LibEvent and "
-"Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into "
-"the Tor network. Orbot also has the ability, on rooted device, to send all "
-"internet traffic through Tor."
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
msgid ""
"Excellent! We\\'ve detected that you have root permissions enabled for "
@@ -358,7 +403,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
msgid ""
" While it is not required, Orbot can become a more powerful tool if your "
@@ -366,7 +411,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
msgid ""
"If you don\\'t have root access or have no idea what we\\'re talking about, "
@@ -374,25 +419,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
msgid ""
"Orbot gives you the option to route all application traffic through Tor OR "
@@ -400,25 +445,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
msgid ""
"We encourage you to download & use apps that know how to connect "
@@ -426,52 +471,49 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
+msgid "Gibberbot - Secure instant messaging client for Android"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
-"If the Android app you are using can support the use of an HTTP or SOCKS "
-"proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
-" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port "
-"setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or "
-"SOCKS5 if possible.\n"
+"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
+" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or SOCKS5 if possible.\n"
" \\n\\n\n"
-" You can learn more about proxying on Android via the FAQ at: "
-"http://tinyurl.com/proxyandroid\n"
+" You can learn more about proxying on Android via the FAQ at: http://tinyurl.com/proxyandroid\n"
" "
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
msgid ""
"Hundreds of thousands of people around the world use Tor for a wide variety "
@@ -481,31 +523,58 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
msgid ""
-" You\\'ve successfully connected to the Tor network - but this does NOT mean "
-"your device is secure. You can use the \\'Check\\' option from the menu to "
-"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot "
-"or send an email to help(a)guardianproject.info to learn more."
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
msgid ""
"This will open your default web browser to https://check.torproject.org in "
"order to see if Orbot is probably configured and you are connected to Tor."
msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:127
+#, no-wrap
+msgid "Hidden Services"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:129
+#, no-wrap
+msgid "General"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:130
+#, no-wrap
+msgid "Start Orbot on Boot"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:131
+#, no-wrap
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/lb/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/lb/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/lb/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:07+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/ln/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/ln/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/ln/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:07+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/lo/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/lo/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/lo/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:07+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/lt/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/lt/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/lt/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:07+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/lv/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/lv/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/lv/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:07+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/mg/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/mg/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/mg/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/mi/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/mi/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/mi/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/mk/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/mk/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/mk/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,8 +1,10 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
+# orvel_mk <george.orwell50(a)gmail.com>, 2011.
+# runasand <runa.sandvik(a)gmail.com>, 2011.
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
@@ -624,3 +626,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/ml/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/ml/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/ml/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/mn/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/mn/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/mn/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/mr/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/mr/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/mr/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/ms/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/ms/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/ms/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:03+0000\n"
+"PO-Revision-Date: 2011-09-22 12:09+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/mt/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/mt/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/mt/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/my/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/my/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/my/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/nah/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/nah/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/nah/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: 2011-01-15 17:10+0000\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -20,22 +20,16 @@
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
+msgid "Orbot"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:4
#, no-wrap
-msgid "Orbot"
+msgid "1.0.5-dev"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:5
-#, no-wrap
-msgid "1.0.2"
-msgstr ""
-
-#. type: Content of: <resources><string>
#: strings.xml:6
#, no-wrap
msgid "http://orbot/"
@@ -122,7 +116,10 @@
#. type: Content of: <resources><string>
#: strings.xml:23
#, no-wrap
-msgid "WARNING: Your traffic is not anonymous yet! Please configure your applications to use HTTP proxy 127.0.0.1:8118 or SOCKS4A or SOCKS5 proxy 127.0.0.1:9050"
+msgid ""
+"WARNING: Your traffic is not anonymous yet! Please configure your "
+"applications to use HTTP proxy 127.0.0.1:8118 or SOCKS4A or SOCKS5 proxy "
+"127.0.0.1:9050"
msgstr ""
#. type: Content of: <resources><string>
@@ -150,7 +147,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr ""
@@ -174,259 +171,332 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
+msgid "About"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
+msgid "Wizard"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
-msgid "Clear Log"
+msgid "Close"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:41
#, no-wrap
+msgid "Clear Log"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:44
+#, no-wrap
msgid "Check"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
+msgid "- long press to start -"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
-msgid "The Tor binary files were unable to be installed. Please check the log and notify tor-assistants(a)torproject.org"
+msgid ""
+"The Tor binary files were unable to be installed. Please check the log and "
+"notify tor-assistants(a)torproject.org"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
-msgid "Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* Simply installing Orbot will _not_ magically anonymize your mobile traffic! This wizard will help you get started."
+msgid ""
+"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
-msgid "Orbot is an open-source application that contains Tor, LibEvent and Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor network. Orbot also has the ability, on rooted device, to send all internet traffic through Tor."
+msgid ""
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
-msgid "Excellent! We\\'ve detected that you have root permissions enabled for Orbot. We will use this power wisely."
+msgid ""
+"Excellent! We\\'ve detected that you have root permissions enabled for "
+"Orbot. We will use this power wisely."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
-msgid " While it is not required, Orbot can become a more powerful tool if your device has root access. Use the button below to grant Orbot superpowers! "
+msgid ""
+" While it is not required, Orbot can become a more powerful tool if your "
+"device has root access. Use the button below to grant Orbot superpowers! "
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
-msgid "If you don\\'t have root access or have no idea what we\\'re talking about, just be sure to use apps made to work with Orbot."
+msgid ""
+"If you don\\'t have root access or have no idea what we\\'re talking about, "
+"just be sure to use apps made to work with Orbot."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
-msgid "Orbot gives you the option to route all application traffic through Tor OR to choose your applications individually."
+msgid ""
+"Orbot gives you the option to route all application traffic through Tor OR "
+"to choose your applications individually."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
-msgid "We encourage you to download & use apps that know how to connect directly to Orbot. Click on the buttons below to install."
+msgid ""
+"We encourage you to download & use apps that know how to connect "
+"directly to Orbot. Click on the buttons below to install."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
+msgid "Gibberbot - Secure instant messaging client for Android"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
@@ -437,37 +507,74 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
-msgid "Hundreds of thousands of people around the world use Tor for a wide variety of reasons: journalists and bloggers, human rights workers, law enforcement officers, soldiers, corporations, citizens of repressive regimes, and just ordinary citizens... and now you are ready to, as well!"
+msgid ""
+"Hundreds of thousands of people around the world use Tor for a wide variety "
+"of reasons: journalists and bloggers, human rights workers, law enforcement "
+"officers, soldiers, corporations, citizens of repressive regimes, and just "
+"ordinary citizens... and now you are ready to, as well!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
-msgid " You\\'ve successfully connected to the Tor network - but this does NOT mean your device is secure. You can use the \\'Check\\' option from the menu to test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot or send an email to help(a)guardianproject.info to learn more."
+msgid ""
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
-msgid "This will open your default web browser to https://check.torproject.org in order to see if Orbot is probably configured and you are connected to Tor."
+msgid ""
+"This will open your default web browser to https://check.torproject.org in "
+"order to see if Orbot is probably configured and you are connected to Tor."
msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:127
+#, no-wrap
+msgid "Hidden Services"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:129
+#, no-wrap
+msgid "General"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:130
+#, no-wrap
+msgid "Start Orbot on Boot"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:131
+#, no-wrap
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/nap/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/nap/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/nap/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:03+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/nb/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/nb/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/nb/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,8 +1,9 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
+# runasand <runa.sandvik(a)gmail.com>, 2011.
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
@@ -579,3 +580,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/ne/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/ne/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/ne/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:03+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/nl/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/nl/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/nl/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,8 +1,8 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
@@ -619,3 +619,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/nn/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/nn/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/nn/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:03+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/nso/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/nso/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/nso/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:01+0000\n"
+"PO-Revision-Date: 2011-09-22 12:07+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/oc/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/oc/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/oc/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:09+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/or/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/or/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/or/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,40 +1,35 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#, fuzzy
+#
+# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-09-22 12:09+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"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: or\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
+msgid "Orbot"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:4
#, no-wrap
-msgid "Orbot"
+msgid "1.0.5-dev"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:5
-#, no-wrap
-msgid "1.0.2"
-msgstr ""
-
-#. type: Content of: <resources><string>
#: strings.xml:6
#, no-wrap
msgid "http://orbot/"
@@ -152,7 +147,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr ""
@@ -176,85 +171,135 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
+msgid "About"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
+msgid "Wizard"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
-msgid "Clear Log"
+msgid "Close"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:41
#, no-wrap
+msgid "Clear Log"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:44
+#, no-wrap
msgid "Check"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
+msgid "- long press to start -"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
msgid ""
"The Tor binary files were unable to be installed. Please check the log and "
@@ -262,95 +307,95 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
msgid ""
"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* "
-"Simply installing Orbot will _not_ magically anonymize your mobile traffic! "
-"This wizard will help you get started."
+"relationships, and state security known as traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
msgid ""
-"Orbot is an open-source application that contains Tor, LibEvent and "
-"Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into "
-"the Tor network. Orbot also has the ability, on rooted device, to send all "
-"internet traffic through Tor."
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
msgid ""
"Excellent! We\\'ve detected that you have root permissions enabled for "
@@ -358,7 +403,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
msgid ""
" While it is not required, Orbot can become a more powerful tool if your "
@@ -366,7 +411,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
msgid ""
"If you don\\'t have root access or have no idea what we\\'re talking about, "
@@ -374,25 +419,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
msgid ""
"Orbot gives you the option to route all application traffic through Tor OR "
@@ -400,25 +445,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
msgid ""
"We encourage you to download & use apps that know how to connect "
@@ -426,52 +471,49 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
+msgid "Gibberbot - Secure instant messaging client for Android"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
-"If the Android app you are using can support the use of an HTTP or SOCKS "
-"proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
-" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port "
-"setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or "
-"SOCKS5 if possible.\n"
+"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
+" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or SOCKS5 if possible.\n"
" \\n\\n\n"
-" You can learn more about proxying on Android via the FAQ at: "
-"http://tinyurl.com/proxyandroid\n"
+" You can learn more about proxying on Android via the FAQ at: http://tinyurl.com/proxyandroid\n"
" "
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
msgid ""
"Hundreds of thousands of people around the world use Tor for a wide variety "
@@ -481,31 +523,58 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
msgid ""
-" You\\'ve successfully connected to the Tor network - but this does NOT mean "
-"your device is secure. You can use the \\'Check\\' option from the menu to "
-"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot "
-"or send an email to help(a)guardianproject.info to learn more."
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
msgid ""
"This will open your default web browser to https://check.torproject.org in "
"order to see if Orbot is probably configured and you are connected to Tor."
msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:127
+#, no-wrap
+msgid "Hidden Services"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:129
+#, no-wrap
+msgid "General"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:130
+#, no-wrap
+msgid "Start Orbot on Boot"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:131
+#, no-wrap
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/pa/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/pa/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/pa/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:07+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/pap/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/pap/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/pap/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:03+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/pl/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/pl/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/pl/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,15 +1,16 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
+# bogdrozd <bog.d(a)gazeta.pl>, 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-05-02 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 14:49+0000\n"
-"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
+"PO-Revision-Date: 2011-05-14 17:31+0000\n"
+"Last-Translator: bogdrozd <bog.d(a)gazeta.pl>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -27,7 +28,7 @@
#: strings.xml:4
#, no-wrap
msgid "1.0.5-dev"
-msgstr ""
+msgstr "1.0.5-dev"
#. type: Content of: <resources><string>
#: strings.xml:6
@@ -183,7 +184,7 @@
#: strings.xml:34
#, no-wrap
msgid "Wizard"
-msgstr ""
+msgstr "Kreator"
#. type: Content of: <resources><string>
#: strings.xml:38
@@ -219,7 +220,7 @@
#: strings.xml:47
#, no-wrap
msgid "- long press to start -"
-msgstr ""
+msgstr "- wciśnij na dłużej, by uruchomić -"
#. type: Content of: <resources><string>
#: strings.xml:49
@@ -255,7 +256,7 @@
#: strings.xml:56
#, no-wrap
msgid "Port Proxy Fallback"
-msgstr ""
+msgstr "Zapasowy Port Proxy"
#. type: Content of: <resources><string>
#: strings.xml:57
@@ -264,36 +265,40 @@
"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
" \\'App\\' mode doesn\\'t work."
msgstr ""
+"UWAGA: Unika powszechnych portów (80, 443, etc). *UŻYWAĆ TYLKO* gdy "
+"\\'All\\' lub tryb \\'App\\' nie działa."
#. type: Content of: <resources><string>
#: strings.xml:59
#, no-wrap
msgid "Port List"
-msgstr ""
+msgstr "Lista Portów"
#. type: Content of: <resources><string>
#: strings.xml:60
#, no-wrap
msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
msgstr ""
+"Lista portów, które przechwytywać. *UŻYWAĆ TYLKO* gdy \\'All\\' lub tryb "
+"\\'App\\' nie działa."
#. type: Content of: <resources><string>
#: strings.xml:61
#, no-wrap
msgid "Enter ports to proxy"
-msgstr ""
+msgstr "Wpisz porty do przechwytywania"
#. type: Content of: <resources><string>
#: strings.xml:63
#, no-wrap
msgid "Request Root Access"
-msgstr ""
+msgstr "Żądaj dostępu administratora"
#. type: Content of: <resources><string>
#: strings.xml:64
#, no-wrap
msgid "Request root access for transparent proxying"
-msgstr ""
+msgstr "Żądaj dostępu administratora dla przezroczystego przekierowania"
#. type: Content of: <resources><string>
#: strings.xml:66
@@ -500,7 +505,7 @@
#: strings.xml:103
#, no-wrap
msgid "Gibberbot - Secure instant messaging client for Android"
-msgstr ""
+msgstr "Gibberbot - Bezpieczny komunikator dla Androida"
#. type: Content of: <resources><string>
#: strings.xml:104
@@ -565,13 +570,13 @@
#: strings.xml:117
#, no-wrap
msgid "market://search?q=pname:info.guardianproject.otr.app.im"
-msgstr ""
+msgstr "market://search?q=pname:info.guardianproject.otr.app.im"
#. type: Content of: <resources><string>
#: strings.xml:118
#, no-wrap
msgid "market://search?q=pname:nfo.guardianproject.browser"
-msgstr ""
+msgstr "market://search?q=pname:nfo.guardianproject.browser"
#. type: Content of: <resources><string>
#: strings.xml:122
@@ -609,13 +614,13 @@
#: strings.xml:129
#, no-wrap
msgid "General"
-msgstr ""
+msgstr "Ogólne"
#. type: Content of: <resources><string>
#: strings.xml:130
#, no-wrap
msgid "Start Orbot on Boot"
-msgstr ""
+msgstr "Uruchamiaj Orbota przy starcie"
#. type: Content of: <resources><string>
#: strings.xml:131
@@ -623,3 +628,7 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+"Automatycznie uruchamiaj Orbota i łącz się z Torem, gdy Twoje urządzenie z "
+"Androidem się uruchomi"
+
+
Modified: translation/trunk/projects/orbot/po/pms/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/pms/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/pms/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/ps/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/ps/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/ps/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:07+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/pt/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/pt/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/pt/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,8 +1,8 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
@@ -579,3 +579,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/pt_BR/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/pt_BR/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/pt_BR/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/ro/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/ro/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/ro/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:03+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/ru/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/ru/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/ru/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,8 +1,8 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
@@ -10,7 +10,7 @@
"POT-Creation-Date: 2011-05-02 15:49+0200\n"
"PO-Revision-Date: 2011-05-02 14:49+0000\n"
"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
-"Language-Team: Russian <None>\n"
+"Language-Team: Russian (http://www.transifex.net/projects/p/torproject/team/ru/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -625,3 +625,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/sco/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/sco/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/sco/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:01+0000\n"
+"PO-Revision-Date: 2011-09-22 12:07+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/sk/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/sk/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/sk/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,40 +1,35 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#, fuzzy
+#
+# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-09-22 12:09+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"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: sk\n"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n"
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
+msgid "Orbot"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:4
#, no-wrap
-msgid "Orbot"
+msgid "1.0.5-dev"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:5
-#, no-wrap
-msgid "1.0.2"
-msgstr ""
-
-#. type: Content of: <resources><string>
#: strings.xml:6
#, no-wrap
msgid "http://orbot/"
@@ -152,7 +147,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr ""
@@ -176,85 +171,135 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
+msgid "About"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
+msgid "Wizard"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
-msgid "Clear Log"
+msgid "Close"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:41
#, no-wrap
+msgid "Clear Log"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:44
+#, no-wrap
msgid "Check"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
+msgid "- long press to start -"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
msgid ""
"The Tor binary files were unable to be installed. Please check the log and "
@@ -262,95 +307,95 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
msgid ""
"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* "
-"Simply installing Orbot will _not_ magically anonymize your mobile traffic! "
-"This wizard will help you get started."
+"relationships, and state security known as traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
msgid ""
-"Orbot is an open-source application that contains Tor, LibEvent and "
-"Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into "
-"the Tor network. Orbot also has the ability, on rooted device, to send all "
-"internet traffic through Tor."
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
msgid ""
"Excellent! We\\'ve detected that you have root permissions enabled for "
@@ -358,7 +403,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
msgid ""
" While it is not required, Orbot can become a more powerful tool if your "
@@ -366,7 +411,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
msgid ""
"If you don\\'t have root access or have no idea what we\\'re talking about, "
@@ -374,25 +419,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
msgid ""
"Orbot gives you the option to route all application traffic through Tor OR "
@@ -400,25 +445,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
msgid ""
"We encourage you to download & use apps that know how to connect "
@@ -426,52 +471,49 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
+msgid "Gibberbot - Secure instant messaging client for Android"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
-"If the Android app you are using can support the use of an HTTP or SOCKS "
-"proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
-" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port "
-"setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or "
-"SOCKS5 if possible.\n"
+"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
+" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or SOCKS5 if possible.\n"
" \\n\\n\n"
-" You can learn more about proxying on Android via the FAQ at: "
-"http://tinyurl.com/proxyandroid\n"
+" You can learn more about proxying on Android via the FAQ at: http://tinyurl.com/proxyandroid\n"
" "
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
msgid ""
"Hundreds of thousands of people around the world use Tor for a wide variety "
@@ -481,31 +523,58 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
msgid ""
-" You\\'ve successfully connected to the Tor network - but this does NOT mean "
-"your device is secure. You can use the \\'Check\\' option from the menu to "
-"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot "
-"or send an email to help(a)guardianproject.info to learn more."
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
msgid ""
"This will open your default web browser to https://check.torproject.org in "
"order to see if Orbot is probably configured and you are connected to Tor."
msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:127
+#, no-wrap
+msgid "Hidden Services"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:129
+#, no-wrap
+msgid "General"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:130
+#, no-wrap
+msgid "Start Orbot on Boot"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:131
+#, no-wrap
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/sl/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/sl/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/sl/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,40 +1,35 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#, fuzzy
+#
+# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-09-22 12:09+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"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: sl\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n"
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
+msgid "Orbot"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:4
#, no-wrap
-msgid "Orbot"
+msgid "1.0.5-dev"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:5
-#, no-wrap
-msgid "1.0.2"
-msgstr ""
-
-#. type: Content of: <resources><string>
#: strings.xml:6
#, no-wrap
msgid "http://orbot/"
@@ -152,7 +147,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr ""
@@ -176,85 +171,135 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
+msgid "About"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
+msgid "Wizard"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
-msgid "Clear Log"
+msgid "Close"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:41
#, no-wrap
+msgid "Clear Log"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:44
+#, no-wrap
msgid "Check"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
+msgid "- long press to start -"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
msgid ""
"The Tor binary files were unable to be installed. Please check the log and "
@@ -262,95 +307,95 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
msgid ""
"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* "
-"Simply installing Orbot will _not_ magically anonymize your mobile traffic! "
-"This wizard will help you get started."
+"relationships, and state security known as traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
msgid ""
-"Orbot is an open-source application that contains Tor, LibEvent and "
-"Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into "
-"the Tor network. Orbot also has the ability, on rooted device, to send all "
-"internet traffic through Tor."
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
msgid ""
"Excellent! We\\'ve detected that you have root permissions enabled for "
@@ -358,7 +403,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
msgid ""
" While it is not required, Orbot can become a more powerful tool if your "
@@ -366,7 +411,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
msgid ""
"If you don\\'t have root access or have no idea what we\\'re talking about, "
@@ -374,25 +419,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
msgid ""
"Orbot gives you the option to route all application traffic through Tor OR "
@@ -400,25 +445,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
msgid ""
"We encourage you to download & use apps that know how to connect "
@@ -426,52 +471,49 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
+msgid "Gibberbot - Secure instant messaging client for Android"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
-"If the Android app you are using can support the use of an HTTP or SOCKS "
-"proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
-" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port "
-"setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or "
-"SOCKS5 if possible.\n"
+"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
+" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or SOCKS5 if possible.\n"
" \\n\\n\n"
-" You can learn more about proxying on Android via the FAQ at: "
-"http://tinyurl.com/proxyandroid\n"
+" You can learn more about proxying on Android via the FAQ at: http://tinyurl.com/proxyandroid\n"
" "
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
msgid ""
"Hundreds of thousands of people around the world use Tor for a wide variety "
@@ -481,31 +523,58 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
msgid ""
-" You\\'ve successfully connected to the Tor network - but this does NOT mean "
-"your device is secure. You can use the \\'Check\\' option from the menu to "
-"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot "
-"or send an email to help(a)guardianproject.info to learn more."
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
msgid ""
"This will open your default web browser to https://check.torproject.org in "
"order to see if Orbot is probably configured and you are connected to Tor."
msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:127
+#, no-wrap
+msgid "Hidden Services"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:129
+#, no-wrap
+msgid "General"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:130
+#, no-wrap
+msgid "Start Orbot on Boot"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:131
+#, no-wrap
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/so/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/so/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/so/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,40 +1,35 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#, fuzzy
+#
+# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-09-22 12:09+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"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: so\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
+msgid "Orbot"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:4
#, no-wrap
-msgid "Orbot"
+msgid "1.0.5-dev"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:5
-#, no-wrap
-msgid "1.0.2"
-msgstr ""
-
-#. type: Content of: <resources><string>
#: strings.xml:6
#, no-wrap
msgid "http://orbot/"
@@ -152,7 +147,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr ""
@@ -176,85 +171,135 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
+msgid "About"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
+msgid "Wizard"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
-msgid "Clear Log"
+msgid "Close"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:41
#, no-wrap
+msgid "Clear Log"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:44
+#, no-wrap
msgid "Check"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
+msgid "- long press to start -"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
msgid ""
"The Tor binary files were unable to be installed. Please check the log and "
@@ -262,95 +307,95 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
msgid ""
"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* "
-"Simply installing Orbot will _not_ magically anonymize your mobile traffic! "
-"This wizard will help you get started."
+"relationships, and state security known as traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
msgid ""
-"Orbot is an open-source application that contains Tor, LibEvent and "
-"Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into "
-"the Tor network. Orbot also has the ability, on rooted device, to send all "
-"internet traffic through Tor."
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
msgid ""
"Excellent! We\\'ve detected that you have root permissions enabled for "
@@ -358,7 +403,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
msgid ""
" While it is not required, Orbot can become a more powerful tool if your "
@@ -366,7 +411,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
msgid ""
"If you don\\'t have root access or have no idea what we\\'re talking about, "
@@ -374,25 +419,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
msgid ""
"Orbot gives you the option to route all application traffic through Tor OR "
@@ -400,25 +445,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
msgid ""
"We encourage you to download & use apps that know how to connect "
@@ -426,52 +471,49 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
+msgid "Gibberbot - Secure instant messaging client for Android"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
-"If the Android app you are using can support the use of an HTTP or SOCKS "
-"proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
-" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port "
-"setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or "
-"SOCKS5 if possible.\n"
+"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
+" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or SOCKS5 if possible.\n"
" \\n\\n\n"
-" You can learn more about proxying on Android via the FAQ at: "
-"http://tinyurl.com/proxyandroid\n"
+" You can learn more about proxying on Android via the FAQ at: http://tinyurl.com/proxyandroid\n"
" "
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
msgid ""
"Hundreds of thousands of people around the world use Tor for a wide variety "
@@ -481,31 +523,58 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
msgid ""
-" You\\'ve successfully connected to the Tor network - but this does NOT mean "
-"your device is secure. You can use the \\'Check\\' option from the menu to "
-"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot "
-"or send an email to help(a)guardianproject.info to learn more."
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
msgid ""
"This will open your default web browser to https://check.torproject.org in "
"order to see if Orbot is probably configured and you are connected to Tor."
msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:127
+#, no-wrap
+msgid "Hidden Services"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:129
+#, no-wrap
+msgid "General"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:130
+#, no-wrap
+msgid "Start Orbot on Boot"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:131
+#, no-wrap
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/son/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/son/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/son/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:01+0000\n"
+"PO-Revision-Date: 2011-09-22 12:07+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/sq/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/sq/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/sq/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,40 +1,35 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#, fuzzy
+#
+# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-09-22 12:09+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"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: sq\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
+msgid "Orbot"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:4
#, no-wrap
-msgid "Orbot"
+msgid "1.0.5-dev"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:5
-#, no-wrap
-msgid "1.0.2"
-msgstr ""
-
-#. type: Content of: <resources><string>
#: strings.xml:6
#, no-wrap
msgid "http://orbot/"
@@ -152,7 +147,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr ""
@@ -176,85 +171,135 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
+msgid "About"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
+msgid "Wizard"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
-msgid "Clear Log"
+msgid "Close"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:41
#, no-wrap
+msgid "Clear Log"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:44
+#, no-wrap
msgid "Check"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
+msgid "- long press to start -"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
msgid ""
"The Tor binary files were unable to be installed. Please check the log and "
@@ -262,95 +307,95 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
msgid ""
"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* "
-"Simply installing Orbot will _not_ magically anonymize your mobile traffic! "
-"This wizard will help you get started."
+"relationships, and state security known as traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
msgid ""
-"Orbot is an open-source application that contains Tor, LibEvent and "
-"Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into "
-"the Tor network. Orbot also has the ability, on rooted device, to send all "
-"internet traffic through Tor."
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
msgid ""
"Excellent! We\\'ve detected that you have root permissions enabled for "
@@ -358,7 +403,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
msgid ""
" While it is not required, Orbot can become a more powerful tool if your "
@@ -366,7 +411,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
msgid ""
"If you don\\'t have root access or have no idea what we\\'re talking about, "
@@ -374,25 +419,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
msgid ""
"Orbot gives you the option to route all application traffic through Tor OR "
@@ -400,25 +445,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
msgid ""
"We encourage you to download & use apps that know how to connect "
@@ -426,52 +471,49 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
+msgid "Gibberbot - Secure instant messaging client for Android"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
-"If the Android app you are using can support the use of an HTTP or SOCKS "
-"proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
-" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port "
-"setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or "
-"SOCKS5 if possible.\n"
+"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
+" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or SOCKS5 if possible.\n"
" \\n\\n\n"
-" You can learn more about proxying on Android via the FAQ at: "
-"http://tinyurl.com/proxyandroid\n"
+" You can learn more about proxying on Android via the FAQ at: http://tinyurl.com/proxyandroid\n"
" "
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
msgid ""
"Hundreds of thousands of people around the world use Tor for a wide variety "
@@ -481,31 +523,58 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
msgid ""
-" You\\'ve successfully connected to the Tor network - but this does NOT mean "
-"your device is secure. You can use the \\'Check\\' option from the menu to "
-"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot "
-"or send an email to help(a)guardianproject.info to learn more."
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
msgid ""
"This will open your default web browser to https://check.torproject.org in "
"order to see if Orbot is probably configured and you are connected to Tor."
msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:127
+#, no-wrap
+msgid "Hidden Services"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:129
+#, no-wrap
+msgid "General"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:130
+#, no-wrap
+msgid "Start Orbot on Boot"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:131
+#, no-wrap
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/sr/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/sr/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/sr/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,40 +1,35 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#, fuzzy
+#
+# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-09-22 12:09+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"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: sr\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
+msgid "Orbot"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:4
#, no-wrap
-msgid "Orbot"
+msgid "1.0.5-dev"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:5
-#, no-wrap
-msgid "1.0.2"
-msgstr ""
-
-#. type: Content of: <resources><string>
#: strings.xml:6
#, no-wrap
msgid "http://orbot/"
@@ -152,7 +147,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr ""
@@ -176,85 +171,135 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
+msgid "About"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
+msgid "Wizard"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
-msgid "Clear Log"
+msgid "Close"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:41
#, no-wrap
+msgid "Clear Log"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:44
+#, no-wrap
msgid "Check"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
+msgid "- long press to start -"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
msgid ""
"The Tor binary files were unable to be installed. Please check the log and "
@@ -262,95 +307,95 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
msgid ""
"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* "
-"Simply installing Orbot will _not_ magically anonymize your mobile traffic! "
-"This wizard will help you get started."
+"relationships, and state security known as traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
msgid ""
-"Orbot is an open-source application that contains Tor, LibEvent and "
-"Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into "
-"the Tor network. Orbot also has the ability, on rooted device, to send all "
-"internet traffic through Tor."
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
msgid ""
"Excellent! We\\'ve detected that you have root permissions enabled for "
@@ -358,7 +403,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
msgid ""
" While it is not required, Orbot can become a more powerful tool if your "
@@ -366,7 +411,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
msgid ""
"If you don\\'t have root access or have no idea what we\\'re talking about, "
@@ -374,25 +419,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
msgid ""
"Orbot gives you the option to route all application traffic through Tor OR "
@@ -400,25 +445,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
msgid ""
"We encourage you to download & use apps that know how to connect "
@@ -426,52 +471,49 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
+msgid "Gibberbot - Secure instant messaging client for Android"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
-"If the Android app you are using can support the use of an HTTP or SOCKS "
-"proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
-" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port "
-"setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or "
-"SOCKS5 if possible.\n"
+"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
+" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or SOCKS5 if possible.\n"
" \\n\\n\n"
-" You can learn more about proxying on Android via the FAQ at: "
-"http://tinyurl.com/proxyandroid\n"
+" You can learn more about proxying on Android via the FAQ at: http://tinyurl.com/proxyandroid\n"
" "
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
msgid ""
"Hundreds of thousands of people around the world use Tor for a wide variety "
@@ -481,31 +523,58 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
msgid ""
-" You\\'ve successfully connected to the Tor network - but this does NOT mean "
-"your device is secure. You can use the \\'Check\\' option from the menu to "
-"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot "
-"or send an email to help(a)guardianproject.info to learn more."
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
msgid ""
"This will open your default web browser to https://check.torproject.org in "
"order to see if Orbot is probably configured and you are connected to Tor."
msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:127
+#, no-wrap
+msgid "Hidden Services"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:129
+#, no-wrap
+msgid "General"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:130
+#, no-wrap
+msgid "Start Orbot on Boot"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:131
+#, no-wrap
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/st/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/st/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/st/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,40 +1,35 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#, fuzzy
+#
+# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-09-22 12:09+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"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: st\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
+msgid "Orbot"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:4
#, no-wrap
-msgid "Orbot"
+msgid "1.0.5-dev"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:5
-#, no-wrap
-msgid "1.0.2"
-msgstr ""
-
-#. type: Content of: <resources><string>
#: strings.xml:6
#, no-wrap
msgid "http://orbot/"
@@ -152,7 +147,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr ""
@@ -176,85 +171,135 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
+msgid "About"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
+msgid "Wizard"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
-msgid "Clear Log"
+msgid "Close"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:41
#, no-wrap
+msgid "Clear Log"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:44
+#, no-wrap
msgid "Check"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
+msgid "- long press to start -"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
msgid ""
"The Tor binary files were unable to be installed. Please check the log and "
@@ -262,95 +307,95 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
msgid ""
"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* "
-"Simply installing Orbot will _not_ magically anonymize your mobile traffic! "
-"This wizard will help you get started."
+"relationships, and state security known as traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
msgid ""
-"Orbot is an open-source application that contains Tor, LibEvent and "
-"Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into "
-"the Tor network. Orbot also has the ability, on rooted device, to send all "
-"internet traffic through Tor."
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
msgid ""
"Excellent! We\\'ve detected that you have root permissions enabled for "
@@ -358,7 +403,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
msgid ""
" While it is not required, Orbot can become a more powerful tool if your "
@@ -366,7 +411,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
msgid ""
"If you don\\'t have root access or have no idea what we\\'re talking about, "
@@ -374,25 +419,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
msgid ""
"Orbot gives you the option to route all application traffic through Tor OR "
@@ -400,25 +445,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
msgid ""
"We encourage you to download & use apps that know how to connect "
@@ -426,52 +471,49 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
+msgid "Gibberbot - Secure instant messaging client for Android"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
-"If the Android app you are using can support the use of an HTTP or SOCKS "
-"proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
-" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port "
-"setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or "
-"SOCKS5 if possible.\n"
+"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
+" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or SOCKS5 if possible.\n"
" \\n\\n\n"
-" You can learn more about proxying on Android via the FAQ at: "
-"http://tinyurl.com/proxyandroid\n"
+" You can learn more about proxying on Android via the FAQ at: http://tinyurl.com/proxyandroid\n"
" "
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
msgid ""
"Hundreds of thousands of people around the world use Tor for a wide variety "
@@ -481,31 +523,58 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
msgid ""
-" You\\'ve successfully connected to the Tor network - but this does NOT mean "
-"your device is secure. You can use the \\'Check\\' option from the menu to "
-"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot "
-"or send an email to help(a)guardianproject.info to learn more."
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
msgid ""
"This will open your default web browser to https://check.torproject.org in "
"order to see if Orbot is probably configured and you are connected to Tor."
msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:127
+#, no-wrap
+msgid "Hidden Services"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:129
+#, no-wrap
+msgid "General"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:130
+#, no-wrap
+msgid "Start Orbot on Boot"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:131
+#, no-wrap
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/sv/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/sv/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/sv/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,36 +1,32 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: 2010-06-27 09:12-0600\n"
-"Last-Translator: Yosh Marklund <torproject(a)yosh.se>\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-05-02 14:49+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"
-"X-Generator: Pootle 1.1.0\n"
+"Language: sv\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
-msgstr ""
-
-#. type: Content of: <resources><string>
-#: strings.xml:4
-#, no-wrap
msgid "Orbot"
msgstr "Orbot"
#. type: Content of: <resources><string>
-#: strings.xml:5
+#: strings.xml:4
#, no-wrap
-msgid "1.0.2"
+msgid "1.0.5-dev"
msgstr ""
#. type: Content of: <resources><string>
@@ -137,9 +133,8 @@
#. type: Content of: <resources><string>
#: strings.xml:25
#, no-wrap
-#, fuzzy
msgid "Browse"
-msgstr "Bläddra"
+msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:26
@@ -154,7 +149,7 @@
msgstr "Logg"
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr "Hjälp"
@@ -178,85 +173,135 @@
msgstr "Stopp"
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
-msgstr "Stäng"
+msgid "About"
+msgstr "Om"
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
-msgstr "Om"
+msgid "Wizard"
+msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
+msgid "Close"
+msgstr "Stäng"
+
+#. type: Content of: <resources><string>
+#: strings.xml:41
+#, no-wrap
msgid "Clear Log"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:41
+#: strings.xml:44
#, no-wrap
msgid "Check"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
+msgid "- long press to start -"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
msgid ""
"The Tor binary files were unable to be installed. Please check the log and "
@@ -264,95 +309,95 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
msgid ""
"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* "
-"Simply installing Orbot will _not_ magically anonymize your mobile traffic! "
-"This wizard will help you get started."
+"relationships, and state security known as traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
msgid ""
-"Orbot is an open-source application that contains Tor, LibEvent and "
-"Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into "
-"the Tor network. Orbot also has the ability, on rooted device, to send all "
-"internet traffic through Tor."
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
msgid ""
"Excellent! We\\'ve detected that you have root permissions enabled for "
@@ -360,7 +405,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
msgid ""
" While it is not required, Orbot can become a more powerful tool if your "
@@ -368,7 +413,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
msgid ""
"If you don\\'t have root access or have no idea what we\\'re talking about, "
@@ -376,25 +421,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
msgid ""
"Orbot gives you the option to route all application traffic through Tor OR "
@@ -402,25 +447,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
msgid ""
"We encourage you to download & use apps that know how to connect "
@@ -428,52 +473,49 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
+msgid "Gibberbot - Secure instant messaging client for Android"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
-"If the Android app you are using can support the use of an HTTP or SOCKS "
-"proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
-" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port "
-"setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or "
-"SOCKS5 if possible.\n"
+"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
+" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or SOCKS5 if possible.\n"
" \\n\\n\n"
-" You can learn more about proxying on Android via the FAQ at: "
-"http://tinyurl.com/proxyandroid\n"
+" You can learn more about proxying on Android via the FAQ at: http://tinyurl.com/proxyandroid\n"
" "
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
msgid ""
"Hundreds of thousands of people around the world use Tor for a wide variety "
@@ -483,72 +525,58 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
msgid ""
-" You\\'ve successfully connected to the Tor network - but this does NOT mean "
-"your device is secure. You can use the \\'Check\\' option from the menu to "
-"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot "
-"or send an email to help(a)guardianproject.info to learn more."
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
msgid ""
"This will open your default web browser to https://check.torproject.org in "
"order to see if Orbot is probably configured and you are connected to Tor."
msgstr ""
+#. type: Content of: <resources><string>
+#: strings.xml:127
#, no-wrap
-#~ msgid ""
-#~ "Orbot requires different configuration depending on the Android operating "
-#~ "system version it is used on.\n"
-#~ "Please visit https://www.torproject.org/docs/android.html for the latest "
-#~ "information."
-#~ msgstr ""
-#~ "Orbot behöver olika inställningar beroende på vilken Android utgåva det körs "
-#~ "på.\n"
-#~ " Besök https://www.torproject.org/docs/android.html för den senaste "
-#~ "informationen."
+msgid "Hidden Services"
+msgstr ""
+#. type: Content of: <resources><string>
+#: strings.xml:129
#, no-wrap
-#, fuzzy
-#~ msgid ""
-#~ "For non-rooted Android 1.x devices: Please use the \"ProxySurf\" browser "
-#~ "available in the Android Market, and set \n"
-#~ "the HTTP Proxy to 127.0.0.1 and port 8118, for HTTP traffic only (HTTP/S "
-#~ "will not work)."
-#~ msgstr ""
-#~ "För icke rootade Android 1.x enheter (G1, MyTouch3G, Hero): Vänligen använd "
-#~ "\"ProxySurf\" browsern som finns tillgänglig i Android Market, och ställ in\n"
-#~ " HTTP Proxyn till 127.0.0.1 med port 8118, observera att endast HTTP trafik "
-#~ "kommer tunnlas (inte HTTP/S)."
+msgid "General"
+msgstr ""
+#. type: Content of: <resources><string>
+#: strings.xml:130
#, no-wrap
-#~ msgid ""
-#~ "For Instant Messaging, try \"Beem\" in the market, and set the SOCKS5 proxy "
-#~ "to 127.0.0.1 / port 9050."
-#~ msgstr ""
-#~ "För chatt/IM, pröva \"Beem\" från Android Market, och ställ in SOCKS5 proxy "
-#~ "till 127.0.0.1 / port 9050."
+msgid "Start Orbot on Boot"
+msgstr ""
+#. type: Content of: <resources><string>
+#: strings.xml:131
#, no-wrap
-#~ msgid "0.0.5"
-#~ msgstr "0.0.5"
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
-#, no-wrap
-#~ msgid "authenticating control connection..."
-#~ msgstr "verifierar kontroll uppkopplingen..."
+
Modified: translation/trunk/projects/orbot/po/sw/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/sw/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/sw/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:07+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/ta/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/ta/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/ta/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/te/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/te/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/te/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/tg/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/tg/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/tg/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/th/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/th/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/th/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:07+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/ti/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/ti/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/ti/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/tk/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/tk/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/tk/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:07+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/tr/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/tr/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/tr/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,8 +1,10 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
+# runasand <runa.sandvik(a)gmail.com>, 2011.
+# yunus kaba <yunuskaba(a)gmail.com>, 2011.
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
@@ -576,3 +578,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/uk/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/uk/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/uk/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/ve/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/ve/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/ve/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/vi/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/vi/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/vi/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/wa/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/wa/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/wa/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:03+0000\n"
+"PO-Revision-Date: 2011-09-22 12:09+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/wo/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/wo/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/wo/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,40 +1,35 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#, fuzzy
+#
+# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-14 18:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-02 15:49+0200\n"
+"PO-Revision-Date: 2011-09-22 12:09+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"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: wo\n"
+"Plural-Forms: nplurals=1; plural=0\n"
#. type: Content of: <resources><string>
#: strings.xml:3
#, no-wrap
-msgid "Hidden Services"
+msgid "Orbot"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:4
#, no-wrap
-msgid "Orbot"
+msgid "1.0.5-dev"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:5
-#, no-wrap
-msgid "1.0.2"
-msgstr ""
-
-#. type: Content of: <resources><string>
#: strings.xml:6
#, no-wrap
msgid "http://orbot/"
@@ -152,7 +147,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:28 strings.xml:34
+#: strings.xml:28 strings.xml:37
#, no-wrap
msgid "Help"
msgstr ""
@@ -176,85 +171,135 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:35
+#: strings.xml:33 strings.xml:39
#, no-wrap
-msgid "Close"
+msgid "About"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:36
+#: strings.xml:34
#, no-wrap
-msgid "About"
+msgid "Wizard"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:38
#, no-wrap
-msgid "Clear Log"
+msgid "Close"
msgstr ""
#. type: Content of: <resources><string>
#: strings.xml:41
#, no-wrap
+msgid "Clear Log"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:44
+#, no-wrap
msgid "Check"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:42
+#: strings.xml:45
#, no-wrap
msgid "Exit"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:43
+#: strings.xml:46
#, no-wrap
msgid "powered by the Tor Project"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:44
+#: strings.xml:47
#, no-wrap
-msgid "- press to start -"
+msgid "- long press to start -"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:46
+#: strings.xml:49
#, no-wrap
msgid "Transparent Proxying (Requires Root)"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:47
+#: strings.xml:50
#, no-wrap
msgid "Transparent Proxying"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:48
+#: strings.xml:51
#, no-wrap
msgid "Automatic Torifying of Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:50
+#: strings.xml:53
#, no-wrap
msgid "Tor Everything"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:51
+#: strings.xml:54
#, no-wrap
msgid "Proxy traffic for all apps through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:53
+#: strings.xml:56
#, no-wrap
+msgid "Port Proxy Fallback"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:57
+#, no-wrap
+msgid ""
+"WARNING: Circumvents common ports (80, 443, etc). *USE ONLY* if \\'All\\' or"
+" \\'App\\' mode doesn\\'t work."
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:59
+#, no-wrap
+msgid "Port List"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:60
+#, no-wrap
+msgid "List of ports to proxy. *USE ONLY* if \\'All\\' or \\'App\\' mode doesn\\'t work"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:61
+#, no-wrap
+msgid "Enter ports to proxy"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:63
+#, no-wrap
+msgid "Request Root Access"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:64
+#, no-wrap
+msgid "Request root access for transparent proxying"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:66
+#, no-wrap
msgid "Tor binaries successfully installed!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:54
+#: strings.xml:67
#, no-wrap
msgid ""
"The Tor binary files were unable to be installed. Please check the log and "
@@ -262,95 +307,95 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:56
+#: strings.xml:69
#, no-wrap
msgid "Application Error"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:58
+#: strings.xml:71
#, no-wrap
msgid "Welcome to Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:60
+#: strings.xml:73
#, no-wrap
msgid "About Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:61
+#: strings.xml:74
#, no-wrap
msgid "Next"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:62
+#: strings.xml:75
#, no-wrap
msgid "Back"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:63
+#: strings.xml:76
#, no-wrap
msgid "Finish"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:65
+#: strings.xml:78
#, no-wrap
msgid "Okay"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:66
+#: strings.xml:79
#, no-wrap
msgid "Cancel"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:70
+#: strings.xml:83
#, no-wrap
msgid ""
"Orbot brings Tor to Android. 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 traffic analysis.\\n\\n*WARNING:* "
-"Simply installing Orbot will _not_ magically anonymize your mobile traffic! "
-"This wizard will help you get started."
+"relationships, and state security known as traffic analysis.\\n\\n*WARNING:*"
+" Simply installing Orbot will _not_ magically anonymize your mobile traffic!"
+" This wizard will help you get started."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:71
+#: strings.xml:84
#, no-wrap
msgid "Some Orbot Details"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:72
+#: strings.xml:85
#, no-wrap
msgid ""
-"Orbot is an open-source application that contains Tor, LibEvent and "
-"Privoxy. It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into "
-"the Tor network. Orbot also has the ability, on rooted device, to send all "
-"internet traffic through Tor."
+"Orbot is an open-source application that contains Tor, LibEvent and Privoxy."
+" It provides a local HTTP proxy (8118) and a SOCKS proxy (9050) into the Tor"
+" network. Orbot also has the ability, on rooted device, to send all internet"
+" traffic through Tor."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:73
+#: strings.xml:86
#, no-wrap
msgid "Permission Granted"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:74
+#: strings.xml:87
#, no-wrap
msgid "Orbot Permissions"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:75
+#: strings.xml:88
#, no-wrap
msgid ""
"Excellent! We\\'ve detected that you have root permissions enabled for "
@@ -358,7 +403,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:76
+#: strings.xml:89
#, no-wrap
msgid ""
" While it is not required, Orbot can become a more powerful tool if your "
@@ -366,7 +411,7 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:78
+#: strings.xml:91
#, no-wrap
msgid ""
"If you don\\'t have root access or have no idea what we\\'re talking about, "
@@ -374,25 +419,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:79
+#: strings.xml:92
#, no-wrap
msgid "I understand and would like to continue without root"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:81
+#: strings.xml:94
#, no-wrap
msgid "Grant Root for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:82
+#: strings.xml:95
#, no-wrap
msgid "Configure Torification"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:83
+#: strings.xml:96
#, no-wrap
msgid ""
"Orbot gives you the option to route all application traffic through Tor OR "
@@ -400,25 +445,25 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:84
+#: strings.xml:97
#, no-wrap
msgid "Proxy All Apps Through Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:85
+#: strings.xml:98
#, no-wrap
msgid "Select Individual Apps for Tor"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:88
+#: strings.xml:101
#, no-wrap
msgid "Orbot-enabled Apps"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:89
+#: strings.xml:102
#, no-wrap
msgid ""
"We encourage you to download & use apps that know how to connect "
@@ -426,52 +471,49 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:90
+#: strings.xml:103
#, no-wrap
-msgid "OTRCHAT - Secure instant messaging client for Android"
+msgid "Gibberbot - Secure instant messaging client for Android"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:91
+#: strings.xml:104
#, no-wrap
-msgid "ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
+msgid ""
+"ORWEB (Android 1.x Only) - Browser designed for privacy & for Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:92
+#: strings.xml:105
#, no-wrap
msgid "Proxy Settings - Learn how to configure apps to work with Orbot"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:94
+#: strings.xml:107
#, no-wrap
msgid "Proxy Settings"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:95
+#: strings.xml:108
#, no-wrap
msgid ""
-"If the Android app you are using can support the use of an HTTP or SOCKS "
-"proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
-" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port "
-"setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or "
-"SOCKS5 if possible.\n"
+"If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\\n\\n\n"
+" The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or SOCKS5 if possible.\n"
" \\n\\n\n"
-" You can learn more about proxying on Android via the FAQ at: "
-"http://tinyurl.com/proxyandroid\n"
+" You can learn more about proxying on Android via the FAQ at: http://tinyurl.com/proxyandroid\n"
" "
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:101
+#: strings.xml:114
#, no-wrap
msgid "Orbot is ready!"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:102
+#: strings.xml:115
#, no-wrap
msgid ""
"Hundreds of thousands of people around the world use Tor for a wide variety "
@@ -481,31 +523,58 @@
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:104
+#: strings.xml:117
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-bui…"
+msgid "market://search?q=pname:info.guardianproject.otr.app.im"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:105
+#: strings.xml:118
#, no-wrap
-msgid "http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk"
+msgid "market://search?q=pname:nfo.guardianproject.browser"
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:109
+#: strings.xml:122
#, no-wrap
msgid ""
-" You\\'ve successfully connected to the Tor network - but this does NOT mean "
-"your device is secure. You can use the \\'Check\\' option from the menu to "
-"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot "
-"or send an email to help(a)guardianproject.info to learn more."
+" You\\'ve successfully connected to the Tor network - but this does NOT mean"
+" your device is secure. You can use the \\'Check\\' option from the menu to "
+"test your browser. \\n\\nVisit us at https://guardianproject.info/apps/orbot"
+" or send an email to help(a)guardianproject.info to learn more."
msgstr ""
#. type: Content of: <resources><string>
-#: strings.xml:111
+#: strings.xml:124
#, no-wrap
msgid ""
"This will open your default web browser to https://check.torproject.org in "
"order to see if Orbot is probably configured and you are connected to Tor."
msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:127
+#, no-wrap
+msgid "Hidden Services"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:129
+#, no-wrap
+msgid "General"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:130
+#, no-wrap
+msgid "Start Orbot on Boot"
+msgstr ""
+
+#. type: Content of: <resources><string>
+#: strings.xml:131
+#, no-wrap
+msgid ""
+"Automatically start Orbot and connect Tor when your Android device boots"
+msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/zh_CN/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/zh_CN/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/zh_CN/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,8 +1,8 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
@@ -593,3 +593,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/zh_HK/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/zh_HK/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/zh_HK/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/zh_TW/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/zh_TW/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/zh_TW/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:02+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
Modified: translation/trunk/projects/orbot/po/zu/strings.po
===================================================================
--- translation/trunk/projects/orbot/po/zu/strings.po 2011-09-22 12:07:34 UTC (rev 25108)
+++ translation/trunk/projects/orbot/po/zu/strings.po 2011-09-22 12:12:48 UTC (rev 25109)
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR The Tor Project, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
+# Translators:
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 15:49+0200\n"
-"PO-Revision-Date: 2011-05-02 16:03+0000\n"
+"PO-Revision-Date: 2011-09-22 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -576,3 +576,5 @@
msgid ""
"Automatically start Orbot and connect Tor when your Android device boots"
msgstr ""
+
+
1
0

r25108: {} Remove lg from orbot translations because it doesn't exist o (translation/trunk/projects/orbot/po)
by Runa Sandvik 22 Sep '11
by Runa Sandvik 22 Sep '11
22 Sep '11
Author: runa
Date: 2011-09-22 12:07:34 +0000 (Thu, 22 Sep 2011)
New Revision: 25108
Removed:
translation/trunk/projects/orbot/po/lg/
Log:
Remove lg from orbot translations because it doesn't exist on Transifex
1
0

r25107: {} one wmi per language will make us sad (website/trunk/donate/pl)
by Roger Dingledine 21 Sep '11
by Roger Dingledine 21 Sep '11
21 Sep '11
Author: arma
Date: 2011-09-21 22:03:23 +0000 (Wed, 21 Sep 2011)
New Revision: 25107
Removed:
website/trunk/donate/pl/thankyou-head.wmi
Log:
one wmi per language will make us sad
Deleted: website/trunk/donate/pl/thankyou-head.wmi
===================================================================
--- website/trunk/donate/pl/thankyou-head.wmi 2011-09-21 21:57:25 UTC (rev 25106)
+++ website/trunk/donate/pl/thankyou-head.wmi 2011-09-21 22:03:23 UTC (rev 25107)
@@ -1,151 +0,0 @@
-#! /usr/bin/wml
-<: use strict; :>
-<: use warnings; :>
-#use "perl-globals.wmi"
-#use "links.wmi"
-#use "versions.wmi"
-#use "navigation.wmi"
-
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
-<html>
-<head>
- <title>$(TITLE)</title>
- <link rel="shortcut icon" type="image/x-icon" href="$(IMGROOT)/favicon.ico">
- <ifneq "$(REDIRECT)" "" "<meta http-equiv="refresh" content="0;url=$(DOCROOT)/$(REDIRECT)">">
- <ifneq "$(REDIRECT_GLOBAL)" "" "<meta http-equiv="refresh" content="0;url=$(REDIRECT_GLOBAL)">">
- <ifeq "$(ANNOUNCE_RSS)" "yes" "<link rel="alternate" title="Tor Project OR-announce" href="http://rss.gmane.org/gmane.network.onion-routing.announce"
-type="application/rss+xml">">
-
- # begin WML to generate css/js paths
- <ifneq "$(STYLESHEET)" "" "<link rel="stylesheet" type="text/css" href="$(DOCROOT)/$(STYLESHEET)">">
- <ifeq "$(STYLESHEET)" "" "<link rel="stylesheet" type="text/css" href="$(DOCROOT)/css/master.css">">
-
- <link href="$(DOCROOT)/css/thankyou.css" rel="stylesheet" type="text/css">
- <!--[if lte IE 8]>
- <link rel="stylesheet" type="text/css" href="$(DOCROOT)/css/ie8-and-down.css">
- <![endif]-->
- <!--[if lte IE 7]>
- <link rel="stylesheet" type="text/css" href="$(DOCROOT)/css/ie7-and-down.css">
- <![endif]-->
- <!--[if IE 6]>
- <link rel="stylesheet" type="text/css" href="$(DOCROOT)/css/ie6.css">
- <![endif]-->
-# <script language="javascript" type="text/javascript" src="$(DOCROOT)/global.js"></script>
- # end WML to generate css/js paths
-
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <meta name="author" content="The Tor Project, Inc.">
- <meta name="keywords" content="anonymity online, tor, tor project, censorship circumvention, traffic analysis, anonymous communications research">
-<script type="text/javascript" src="$(DOCROOT)/js/jquery.min.js" charset="utf-8"></script>
-<script type="text/javascript" src="$(DOCROOT)/js/jquery.infieldlabel.min.js" charset="utf-8"></script>
-<script type="text/javascript" charset="utf-8">
-/* email placeholder function */
- $(function(){ $("label").replaceWith('<label class="active" for="email">Enter your email address</label>'); $("label").inFieldLabels(); });
-</script>
-</head>
-<body>
-<div id="wrap">
- <div id="header">
- <h1 id="logo"><a href="<page index>">Tor</a></h1>
- # navigation menu generation
- <div id="nav">
- <ul>
- <:{
- # create a hash and maintain order of keys
- my %navigation;
- my @keys;
- while (@navigation) {
- my $key = shift @navigation;
- my $val = shift @navigation;
- push @keys, $key;
- $navigation{$key} = $val;
- }
-
- my $page = $WML_SRC_BASENAME;
- my $lang = "$(LANG)";
-
- for my $key (@keys) {
- my ($dir, $base) = $key =~ m,^(?:(.*)/)?(.*?)$,;
-
- # in directory of active link, set class active
- my $class;
- if ((defined $dir) and ($WML_SRC_DIRNAME =~/$dir/) or ($WML_SRC_BASENAME eq $base)) {
- $class = 'class="active"';
- } else {
- $class = '';
- }
-
- $dir = '.' unless defined $dir;
-
- # translated version
- if (-e "$(DOCROOT)/$dir/$lang/$base.wml") {
- printf '<li><a '.$class.' href="%s">%s</a></li>'."\n",
- stripDotSlashs("$(DOCROOT)/$dir/$base.html.$(LANG)"),$navigation{$key};
- }
- # english version
- elsif (-e "$(DOCROOT)/$dir/en/$base.wml") {
- printf '<li><a '.$class.' href="%s">%s</a></li>'."\n",
- stripDotSlashs("$(DOCROOT)/$dir/$base.html"), $navigation{$key};
- }
- # full url
- elsif ($key =~/^http/) {
- printf '<li><a href="%s">%s</a></li>'."\n", $key, $navigation{$key};
- } else {
- warn "$WML_SRC_FILENAME has a [page $key] (parses to
-docdir: $(DOCROOT)/; dir: $dir; base: $base -> $(DOCROOT)/$dir/$lang/$base.wml), but that doesn't exist.";
- }
- }
- }:>
- </ul>
- </div>
- <!-- END NAV -->
- # end navigation generation
- <div id="calltoaction">
- <ul>
- <:{
- my %calltoaction;
- my @keys;
- while (@calltoaction) {
- my $key = shift @calltoaction;
- my $val = shift @calltoaction;
- push @keys, $key;
- $calltoaction{$key} = $val;
- }
-
- my $page = $WML_SRC_BASENAME;
- my $lang = "$(LANG)";
- for my $key (@keys) {
- my ($dir, $base) = $key =~ m,^(?:(.*)/)?(.*?)$,;
-
- # in directory, set active
- my $class;
- if ((defined $dir) and ($WML_SRC_DIRNAME =~/$dir/) or ($WML_SRC_BASENAME eq $base)) {
- #if ($WML_SRC_BASENAME eq $base) {
- $class = 'class="active"';
- } else {
- $class = '';
- }
-
- $dir = '.' unless defined $dir;
- # try to use a translated version
- if (-e "$(DOCROOT)/$dir/$lang/$base.wml") {
- printf '<li class="donate"><a '.$class.' href="%s">%s</a></li>'."\n",
- stripDotSlashs("$(DOCROOT)/$dir/$base.html.$(LANG)"),$calltoaction{$key};
- }
- # default to english version
- elsif (-e "$(DOCROOT)/$dir/en/$base.wml") {
- printf '<li class="donate"><a '.$class.' href="%s">%s</a></li>'."\n",
- stripDotSlashs("$(DOCROOT)/$dir/$base.html"), $calltoaction{$key};
- } else {
- warn "$WML_SRC_FILENAME has a [page $key] (parses to docdir: $(DOCROOT)/; dir: $dir; base: $base -> $(DOCROOT)/$dir/$lang/$base.wml), but that doesn't exist.";
- }
- }
- }:>
- </ul>
- </div>
- <!-- END CALLTOACTION -->
- </div>
- <!-- END HEADER -->
-
-#<ifneq "$(REDIRECT)" "" "Redirecting to <a href="$(DOCROOT)/$(REDIRECT)">$(DOCROOT)/$(REDIRECT)</a>.">
-#<ifneq "$(REDIRECT_GLOBAL)" "" "Redirecting to <a href="$(REDIRECT_GLOBAL)">$(REDIRECT_GLOBAL)</a>.">
1
0