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

[tor/maint-0.4.4] Refactor some guard state file parsing code into functions.
by asn@torproject.org 11 Jun '20
by asn@torproject.org 11 Jun '20
11 Jun '20
commit 7bf0587ef1c25d739a8eadf9b747d3a68c99ff51
Author: Florentin Rochet <florentin.rochet(a)uclouvain.be>
Date: Wed Apr 22 20:36:16 2020 +0200
Refactor some guard state file parsing code into functions.
Co-authored-by: Florentin Rochet <florentin.rochet(a)uclouvain.be>
---
src/feature/client/entrynodes.c | 128 +++++++++++++++++++++++-----------------
1 file changed, 73 insertions(+), 55 deletions(-)
diff --git a/src/feature/client/entrynodes.c b/src/feature/client/entrynodes.c
index ded7db969..3d2abd920 100644
--- a/src/feature/client/entrynodes.c
+++ b/src/feature/client/entrynodes.c
@@ -2861,6 +2861,76 @@ entry_guard_encode_for_state(entry_guard_t *guard)
}
/**
+ * Extract key=val from the state string <b>s</s> and duplicate the value to
+ * some string target declared in entry_guard_parse_from_state
+ */
+static void parse_from_state_set_vals(const char *s, smartlist_t *entries,
+ smartlist_t *extra, strmap_t *vals)
+{
+ smartlist_split_string(entries, s, " ",
+ SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
+
+ SMARTLIST_FOREACH_BEGIN(entries, char *, entry) {
+ const char *eq = strchr(entry, '=');
+ if (!eq) {
+ smartlist_add(extra, entry);
+ continue;
+ }
+ char *key = tor_strndup(entry, eq-entry);
+ char **target = strmap_get(vals, key);
+ if (target == NULL || *target != NULL) {
+ /* unrecognized or already set */
+ smartlist_add(extra, entry);
+ tor_free(key);
+ continue;
+ }
+
+ *target = tor_strdup(eq+1);
+ tor_free(key);
+ tor_free(entry);
+ } SMARTLIST_FOREACH_END(entry);
+}
+
+/**
+ * Handle part of the parsing state file logic, focused on time related things
+ */
+static void parse_from_state_handle_time(entry_guard_t *guard, char *sampled_on,
+ char *unlisted_since, char *confirmed_on)
+{
+#define HANDLE_TIME(field) do { \
+ if (field) { \
+ int r = parse_iso_time_nospace(field, &field ## _time); \
+ if (r < 0) { \
+ log_warn(LD_CIRC, "Unable to parse %s %s from guard", \
+ #field, escaped(field)); \
+ field##_time = -1; \
+ } \
+ } \
+ } while (0)
+
+ time_t sampled_on_time = 0;
+ time_t unlisted_since_time = 0;
+ time_t confirmed_on_time = 0;
+
+ HANDLE_TIME(sampled_on);
+ HANDLE_TIME(unlisted_since);
+ HANDLE_TIME(confirmed_on);
+
+ if (sampled_on_time <= 0)
+ sampled_on_time = approx_time();
+ if (unlisted_since_time < 0)
+ unlisted_since_time = 0;
+ if (confirmed_on_time < 0)
+ confirmed_on_time = 0;
+
+ #undef HANDLE_TIME
+
+ guard->sampled_on_date = sampled_on_time;
+ guard->unlisted_since_date = unlisted_since_time;
+ guard->confirmed_on_date = confirmed_on_time;
+}
+
+/**
* Given a string generated by entry_guard_encode_for_state(), parse it
* (if possible) and return an entry_guard_t object for it. Return NULL
* on complete failure.
@@ -2920,29 +2990,8 @@ entry_guard_parse_from_state(const char *s)
FIELD(pb_unusable_circuits);
FIELD(pb_timeouts);
#undef FIELD
-
- smartlist_split_string(entries, s, " ",
- SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
-
- SMARTLIST_FOREACH_BEGIN(entries, char *, entry) {
- const char *eq = strchr(entry, '=');
- if (!eq) {
- smartlist_add(extra, entry);
- continue;
- }
- char *key = tor_strndup(entry, eq-entry);
- char **target = strmap_get(vals, key);
- if (target == NULL || *target != NULL) {
- /* unrecognized or already set */
- smartlist_add(extra, entry);
- tor_free(key);
- continue;
- }
-
- *target = tor_strdup(eq+1);
- tor_free(key);
- tor_free(entry);
- } SMARTLIST_FOREACH_END(entry);
+ /* Extract from s the key=val that we recognize, put the others in extra*/
+ parse_from_state_set_vals(s, entries, extra, vals);
smartlist_free(entries);
strmap_free(vals, NULL);
@@ -2990,38 +3039,7 @@ entry_guard_parse_from_state(const char *s)
}
/* Process the various time fields. */
-
-#define HANDLE_TIME(field) do { \
- if (field) { \
- int r = parse_iso_time_nospace(field, &field ## _time); \
- if (r < 0) { \
- log_warn(LD_CIRC, "Unable to parse %s %s from guard", \
- #field, escaped(field)); \
- field##_time = -1; \
- } \
- } \
- } while (0)
-
- time_t sampled_on_time = 0;
- time_t unlisted_since_time = 0;
- time_t confirmed_on_time = 0;
-
- HANDLE_TIME(sampled_on);
- HANDLE_TIME(unlisted_since);
- HANDLE_TIME(confirmed_on);
-
- if (sampled_on_time <= 0)
- sampled_on_time = approx_time();
- if (unlisted_since_time < 0)
- unlisted_since_time = 0;
- if (confirmed_on_time < 0)
- confirmed_on_time = 0;
-
- #undef HANDLE_TIME
-
- guard->sampled_on_date = sampled_on_time;
- guard->unlisted_since_date = unlisted_since_time;
- guard->confirmed_on_date = confirmed_on_time;
+ parse_from_state_handle_time(guard, sampled_on, unlisted_since, confirmed_on);
/* Take sampled_by_version verbatim. */
guard->sampled_by_version = sampled_by;
1
0

[tor/maint-0.4.4] Fold in a changes file and update exceptions.txt.
by asn@torproject.org 11 Jun '20
by asn@torproject.org 11 Jun '20
11 Jun '20
commit 52edea121e34dbbecc009a9f18fbc508db247ebe
Author: George Kadianakis <desnacked(a)riseup.net>
Date: Thu Jun 11 13:45:00 2020 +0300
Fold in a changes file and update exceptions.txt.
Co-authored-by: Florentin Rochet <florentin.rochet(a)uclouvain.be>
---
changes/ticket32088 | 13 +++++++++++++
scripts/maint/practracker/exceptions.txt | 4 ++--
2 files changed, 15 insertions(+), 2 deletions(-)
diff --git a/changes/ticket32088 b/changes/ticket32088
new file mode 100644
index 000000000..0d4fc7475
--- /dev/null
+++ b/changes/ticket32088
@@ -0,0 +1,13 @@
+ o Major features (Proposal 310, performance + security):
+ - Implements Proposal 310 - Bandaid on guard selection.
+ Proposal 310 solves a load-balancing issue within Prop271 which strongly
+ impact experimental research with Shadow.
+ Security improvement: Proposal 310 prevents any newly Guard relay to
+ have a chance to get into the primary list of older Tor clients,
+ except if the N first sampled guards of these clients are unreachable.
+ Implements recommendation from 32088.
+
+ Proposal 310 is linked to the CLAPS project researching optimal
+ client location-aware path selections. This project is a collaboration
+ between the UCLouvain Crypto Group, the U.S. Naval Research Laboratory and
+ Princeton University.
diff --git a/scripts/maint/practracker/exceptions.txt b/scripts/maint/practracker/exceptions.txt
index fc9a05c84..35e860d8b 100644
--- a/scripts/maint/practracker/exceptions.txt
+++ b/scripts/maint/practracker/exceptions.txt
@@ -182,10 +182,10 @@ problem function-size /src/feature/client/addressmap.c:addressmap_rewrite() 109
problem function-size /src/feature/client/bridges.c:rewrite_node_address_for_bridge() 125
problem function-size /src/feature/client/circpathbias.c:pathbias_measure_close_rate() 108
problem function-size /src/feature/client/dnsserv.c:evdns_server_callback() 153
-problem file-size /src/feature/client/entrynodes.c 3827
+problem file-size /src/feature/client/entrynodes.c 4000
problem function-size /src/feature/client/entrynodes.c:entry_guards_upgrade_waiting_circuits() 155
problem function-size /src/feature/client/entrynodes.c:entry_guard_parse_from_state() 246
-problem file-size /src/feature/client/entrynodes.h 639
+problem file-size /src/feature/client/entrynodes.h 700
problem function-size /src/feature/client/transports.c:handle_proxy_line() 108
problem function-size /src/feature/client/transports.c:parse_method_line_helper() 110
problem function-size /src/feature/client/transports.c:create_managed_proxy_environment() 111
1
0
commit 755b8252a431ecc07644dee7a98e4318fe2ff692
Author: George Kadianakis <desnacked(a)riseup.net>
Date: Thu Jun 11 13:44:50 2020 +0300
Fix and update unittests.
Co-authored-by: Florentin Rochet <florentin.rochet(a)uclouvain.be>
---
src/test/test_entrynodes.c | 147 +++++++++++++++++++++++++++++++--------------
1 file changed, 102 insertions(+), 45 deletions(-)
diff --git a/src/test/test_entrynodes.c b/src/test/test_entrynodes.c
index 12b4fcde3..5ddd1a3db 100644
--- a/src/test/test_entrynodes.c
+++ b/src/test/test_entrynodes.c
@@ -390,12 +390,13 @@ test_entry_guard_encode_for_state_minimal(void *arg)
eg->confirmed_idx = -1;
char *s = NULL;
- s = entry_guard_encode_for_state(eg);
+ s = entry_guard_encode_for_state(eg, 0);
tt_str_op(s, OP_EQ,
"in=wubwub "
"rsa_id=706C75727079666C75727079736C75727079646F "
"sampled_on=2016-11-14T00:00:00 "
+ "sampled_idx=0 "
"listed=0");
done:
@@ -421,10 +422,11 @@ test_entry_guard_encode_for_state_maximal(void *arg)
eg->currently_listed = 1;
eg->confirmed_on_date = 1479081690;
eg->confirmed_idx = 333;
+ eg->sampled_idx = 42;
eg->extra_state_fields = tor_strdup("and the green grass grew all around");
char *s = NULL;
- s = entry_guard_encode_for_state(eg);
+ s = entry_guard_encode_for_state(eg, 0);
tt_str_op(s, OP_EQ,
"in=default "
@@ -432,6 +434,7 @@ test_entry_guard_encode_for_state_maximal(void *arg)
"bridge_addr=8.8.4.4:9999 "
"nickname=Fred "
"sampled_on=2016-11-14T00:00:00 "
+ "sampled_idx=0 "
"sampled_by=1.2.3 "
"unlisted_since=2016-11-14T00:00:45 "
"listed=1 "
@@ -621,39 +624,47 @@ test_entry_guard_parse_from_state_full(void *arg)
const char STATE[] =
"Guard in=default rsa_id=214F44BD5B638E8C817D47FF7C97397790BF0345 "
"nickname=TotallyNinja sampled_on=2016-11-12T19:32:49 "
+ "sampled_idx=0 "
"sampled_by=0.3.0.0-alpha-dev "
"listed=1\n"
"Guard in=default rsa_id=052900AB0EA3ED54BAB84AE8A99E74E8693CE2B2 "
"nickname=5OfNovember sampled_on=2016-11-20T04:32:05 "
+ "sampled_idx=1 "
"sampled_by=0.3.0.0-alpha-dev "
"listed=1 confirmed_on=2016-11-22T08:13:28 confirmed_idx=0 "
"pb_circ_attempts=4.000000 pb_circ_successes=2.000000 "
"pb_successful_circuits_closed=2.000000\n"
"Guard in=default rsa_id=7B700C0C207EBD0002E00F499BE265519AC3C25A "
"nickname=dc6jgk11 sampled_on=2016-11-28T11:50:13 "
+ "sampled_idx=2 "
"sampled_by=0.3.0.0-alpha-dev "
"listed=1 confirmed_on=2016-11-24T08:45:30 confirmed_idx=4 "
"pb_circ_attempts=5.000000 pb_circ_successes=5.000000 "
"pb_successful_circuits_closed=5.000000\n"
"Guard in=wobblesome rsa_id=7B700C0C207EBD0002E00F499BE265519AC3C25A "
"nickname=dc6jgk11 sampled_on=2016-11-28T11:50:13 "
+ "sampled_idx=0 "
"sampled_by=0.3.0.0-alpha-dev "
"listed=1\n"
"Guard in=default rsa_id=E9025AD60D86875D5F11548D536CC6AF60F0EF5E "
"nickname=maibrunn sampled_on=2016-11-25T22:36:38 "
+ "sampled_idx=3 "
"sampled_by=0.3.0.0-alpha-dev listed=1\n"
"Guard in=default rsa_id=DCD30B90BA3A792DA75DC54A327EF353FB84C38E "
"nickname=Unnamed sampled_on=2016-11-25T14:34:00 "
+ "sampled_idx=10 "
"sampled_by=0.3.0.0-alpha-dev listed=1\n"
"Guard in=bridges rsa_id=8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2E "
"bridge_addr=24.1.1.1:443 sampled_on=2016-11-25T06:44:14 "
+ "sampled_idx=0 "
"sampled_by=0.3.0.0-alpha-dev listed=1 "
"confirmed_on=2016-11-29T10:36:06 confirmed_idx=0 "
"pb_circ_attempts=8.000000 pb_circ_successes=8.000000 "
"pb_successful_circuits_closed=13.000000\n"
"Guard in=bridges rsa_id=5800000000000000000000000000000000000000 "
"bridge_addr=37.218.246.143:28366 "
- "sampled_on=2016-11-18T15:07:34 sampled_by=0.3.0.0-alpha-dev listed=1\n";
+ "sampled_on=2016-11-18T15:07:34 sampled_idx=1 "
+ "sampled_by=0.3.0.0-alpha-dev listed=1\n";
config_line_t *lines = NULL;
or_state_t *state = tor_malloc_zero(sizeof(or_state_t));
@@ -729,35 +740,42 @@ test_entry_guard_parse_from_state_full(void *arg)
tt_str_op(joined, OP_EQ,
"Guard in=default rsa_id=052900AB0EA3ED54BAB84AE8A99E74E8693CE2B2 "
"nickname=5OfNovember sampled_on=2016-11-20T04:32:05 "
+ "sampled_idx=0 "
"sampled_by=0.3.0.0-alpha-dev "
"listed=1 confirmed_on=2016-11-22T08:13:28 confirmed_idx=0 "
"pb_circ_attempts=4.000000 pb_circ_successes=2.000000 "
"pb_successful_circuits_closed=2.000000\n"
"Guard in=default rsa_id=7B700C0C207EBD0002E00F499BE265519AC3C25A "
"nickname=dc6jgk11 sampled_on=2016-11-28T11:50:13 "
+ "sampled_idx=1 "
"sampled_by=0.3.0.0-alpha-dev "
"listed=1 confirmed_on=2016-11-24T08:45:30 confirmed_idx=1 "
"pb_circ_attempts=5.000000 pb_circ_successes=5.000000 "
"pb_successful_circuits_closed=5.000000\n"
"Guard in=default rsa_id=E9025AD60D86875D5F11548D536CC6AF60F0EF5E "
"nickname=maibrunn sampled_on=2016-11-25T22:36:38 "
+ "sampled_idx=2 "
"sampled_by=0.3.0.0-alpha-dev listed=1\n"
"Guard in=default rsa_id=DCD30B90BA3A792DA75DC54A327EF353FB84C38E "
"nickname=Unnamed sampled_on=2016-11-25T14:34:00 "
+ "sampled_idx=3 "
"sampled_by=0.3.0.0-alpha-dev listed=1\n"
"Guard in=wobblesome rsa_id=7B700C0C207EBD0002E00F499BE265519AC3C25A "
"nickname=dc6jgk11 sampled_on=2016-11-28T11:50:13 "
+ "sampled_idx=0 "
"sampled_by=0.3.0.0-alpha-dev "
"listed=1\n"
"Guard in=bridges rsa_id=8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2E "
"bridge_addr=24.1.1.1:443 sampled_on=2016-11-25T06:44:14 "
+ "sampled_idx=0 "
"sampled_by=0.3.0.0-alpha-dev listed=1 "
"confirmed_on=2016-11-29T10:36:06 confirmed_idx=0 "
"pb_circ_attempts=8.000000 pb_circ_successes=8.000000 "
"pb_successful_circuits_closed=13.000000\n"
"Guard in=bridges rsa_id=5800000000000000000000000000000000000000 "
"bridge_addr=37.218.246.143:28366 "
- "sampled_on=2016-11-18T15:07:34 sampled_by=0.3.0.0-alpha-dev listed=1\n");
+ "sampled_on=2016-11-18T15:07:34 sampled_idx=1 "
+ "sampled_by=0.3.0.0-alpha-dev listed=1\n");
done:
config_free_lines(lines);
@@ -1461,8 +1479,8 @@ test_entry_guard_confirming_guards(void *arg)
tt_i64_op(g1->confirmed_on_date, OP_EQ, start+10);
tt_i64_op(g2->confirmed_on_date, OP_EQ, start);
tt_i64_op(g3->confirmed_on_date, OP_EQ, start+10);
- tt_ptr_op(smartlist_get(gs->confirmed_entry_guards, 0), OP_EQ, g2);
- tt_ptr_op(smartlist_get(gs->confirmed_entry_guards, 1), OP_EQ, g1);
+ tt_ptr_op(smartlist_get(gs->confirmed_entry_guards, 0), OP_EQ, g1);
+ tt_ptr_op(smartlist_get(gs->confirmed_entry_guards, 1), OP_EQ, g2);
tt_ptr_op(smartlist_get(gs->confirmed_entry_guards, 2), OP_EQ, g3);
/* Now make sure we can regenerate the confirmed_entry_guards list. */
@@ -1474,8 +1492,8 @@ test_entry_guard_confirming_guards(void *arg)
tt_int_op(g1->confirmed_idx, OP_EQ, 1);
tt_int_op(g2->confirmed_idx, OP_EQ, 0);
tt_int_op(g3->confirmed_idx, OP_EQ, 2);
- tt_ptr_op(smartlist_get(gs->confirmed_entry_guards, 0), OP_EQ, g2);
- tt_ptr_op(smartlist_get(gs->confirmed_entry_guards, 1), OP_EQ, g1);
+ tt_ptr_op(smartlist_get(gs->confirmed_entry_guards, 0), OP_EQ, g1);
+ tt_ptr_op(smartlist_get(gs->confirmed_entry_guards, 1), OP_EQ, g2);
tt_ptr_op(smartlist_get(gs->confirmed_entry_guards, 2), OP_EQ, g3);
/* Now make sure we can regenerate the confirmed_entry_guards list if
@@ -1492,9 +1510,9 @@ test_entry_guard_confirming_guards(void *arg)
g1 = smartlist_get(gs->confirmed_entry_guards, 0);
g2 = smartlist_get(gs->confirmed_entry_guards, 1);
g3 = smartlist_get(gs->confirmed_entry_guards, 2);
- tt_int_op(g1->confirmed_idx, OP_EQ, 0);
- tt_int_op(g2->confirmed_idx, OP_EQ, 1);
- tt_int_op(g3->confirmed_idx, OP_EQ, 2);
+ tt_int_op(g1->sampled_idx, OP_EQ, 0);
+ tt_int_op(g2->sampled_idx, OP_EQ, 1);
+ tt_int_op(g3->sampled_idx, OP_EQ, 8);
tt_assert(g1 != g2);
tt_assert(g1 != g3);
tt_assert(g2 != g3);
@@ -1510,9 +1528,6 @@ test_entry_guard_sample_reachable_filtered(void *arg)
(void)arg;
guard_selection_t *gs = guard_selection_new("default", GS_TYPE_NORMAL);
entry_guards_expand_sample(gs);
- const int N = 10000;
- bitarray_t *selected = NULL;
- int i, j;
/* We've got a sampled list now; let's make one non-usable-filtered; some
* confirmed, some primary, some pending.
@@ -1547,32 +1562,21 @@ test_entry_guard_sample_reachable_filtered(void *arg)
{ SAMPLE_EXCLUDE_PENDING, 0 },
{ -1, -1},
};
-
+ int j;
for (j = 0; tests[j].flag >= 0; ++j) {
- selected = bitarray_init_zero(n_guards);
const int excluded_flags = tests[j].flag;
const int excluded_idx = tests[j].idx;
- for (i = 0; i < N; ++i) {
- g = sample_reachable_filtered_entry_guards(gs, NULL, excluded_flags);
- tor_assert(g);
- int pos = smartlist_pos(gs->sampled_entry_guards, g);
- tt_int_op(smartlist_len(gs->sampled_entry_guards), OP_EQ, n_guards);
- tt_int_op(pos, OP_GE, 0);
- tt_int_op(pos, OP_LT, n_guards);
- bitarray_set(selected, pos);
- }
- for (i = 0; i < n_guards; ++i) {
- const int should_be_set = (i != excluded_idx &&
- i != 3); // filtered out.
- tt_int_op(!!bitarray_is_set(selected, i), OP_EQ, should_be_set);
- }
- bitarray_free(selected);
- selected = NULL;
+ g = first_reachable_filtered_entry_guard(gs, NULL, excluded_flags);
+ tor_assert(g);
+ int pos = smartlist_pos(gs->sampled_entry_guards, g);
+ tt_int_op(smartlist_len(gs->sampled_entry_guards), OP_EQ, n_guards);
+ const int should_be_set = (pos != excluded_idx &&
+ pos != 3); // filtered out.
+ tt_int_op(1, OP_EQ, should_be_set);
}
done:
guard_selection_free(gs);
- bitarray_free(selected);
}
static void
@@ -1584,7 +1588,7 @@ test_entry_guard_sample_reachable_filtered_empty(void *arg)
SMARTLIST_FOREACH(big_fake_net_nodes, node_t *, n,
n->is_possible_guard = 0);
- entry_guard_t *g = sample_reachable_filtered_entry_guards(gs, NULL, 0);
+ entry_guard_t *g = first_reachable_filtered_entry_guard(gs, NULL, 0);
tt_ptr_op(g, OP_EQ, NULL);
done:
@@ -1675,10 +1679,13 @@ test_entry_guard_manage_primary(void *arg)
tt_ptr_op(g, OP_EQ, smartlist_get(prev_guards, g_sl_idx));
});
- /* If we have one confirmed guard, that guards becomes the first primary
- * guard, and the other primary guards get kept. */
+ /**
+ * If we have one confirmed guard, that guards becomes the first primary
+ * only if its sampled_idx is smaller
+ * */
- /* find a non-primary guard... */
+ /* find a non-primary guard... it should have a sampled_idx higher than
+ * existing primary guards */
entry_guard_t *confirmed = NULL;
SMARTLIST_FOREACH(gs->sampled_entry_guards, entry_guard_t *, g, {
if (! g->is_primary) {
@@ -1694,15 +1701,13 @@ test_entry_guard_manage_primary(void *arg)
smartlist_add_all(prev_guards, gs->primary_entry_guards);
entry_guards_update_primary(gs);
- /* and see what's primary now! */
+ /* the confirmed guard should be at the end of the primary list! Hopefully,
+ * one of the primary guards with a lower sampled_idx will confirm soon :)
+ * Doing this won't make the client switches between primaries depending on
+ * the order of confirming events */
tt_int_op(smartlist_len(gs->primary_entry_guards), OP_EQ, n_primary);
- tt_ptr_op(smartlist_get(gs->primary_entry_guards, 0), OP_EQ, confirmed);
- SMARTLIST_FOREACH(gs->primary_entry_guards, entry_guard_t *, g, {
- tt_assert(g->is_primary);
- if (g_sl_idx == 0)
- continue;
- tt_ptr_op(g, OP_EQ, smartlist_get(prev_guards, g_sl_idx - 1));
- });
+ tt_ptr_op(smartlist_get(gs->primary_entry_guards,
+ smartlist_len(gs->primary_entry_guards)-1), OP_EQ, confirmed);
{
entry_guard_t *prev_last_guard = smartlist_get(prev_guards, n_primary-1);
tt_assert(! prev_last_guard->is_primary);
@@ -1793,6 +1798,57 @@ test_entry_guard_guard_preferred(void *arg)
}
static void
+test_entry_guard_correct_cascading_order(void *arg)
+{
+ (void)arg;
+ smartlist_t *old_primary_guards = smartlist_new();
+ guard_selection_t *gs = guard_selection_new("default", GS_TYPE_NORMAL);
+ entry_guards_expand_sample(gs);
+ /** First, a test in which the primary guards need be pulled from different
+ * lists to fill up the primary list -- this may happen, if for example, not
+ * enough guards have confirmed yet */
+ entry_guard_t *g;
+ /** just one confirmed */
+ g = smartlist_get(gs->sampled_entry_guards, 2);
+ make_guard_confirmed(gs, g);
+ entry_guards_update_primary(gs);
+ g = smartlist_get(gs->primary_entry_guards, 0);
+ tt_int_op(g->sampled_idx, OP_EQ, 0);
+ g = smartlist_get(gs->primary_entry_guards, 1);
+ tt_int_op(g->sampled_idx, OP_EQ, 1);
+ g = smartlist_get(gs->primary_entry_guards, 2);
+ tt_int_op(g->sampled_idx, OP_EQ, 2);
+
+ /** Now the primaries get all confirmed, and the primary list should not
+ * change */
+ make_guard_confirmed(gs, smartlist_get(gs->primary_entry_guards, 0));
+ make_guard_confirmed(gs, smartlist_get(gs->primary_entry_guards, 1));
+ smartlist_add_all(old_primary_guards, gs->primary_entry_guards);
+ entry_guards_update_primary(gs);
+ smartlist_ptrs_eq(gs->primary_entry_guards, old_primary_guards);
+ /** the confirmed guards should also have the same set of guards, in the same
+ * order :-) */
+ smartlist_ptrs_eq(gs->confirmed_entry_guards, gs->primary_entry_guards);
+ /** Now select a guard for a circuit, and make sure it is the first primary
+ * guard */
+ unsigned state = 9999;
+ g = select_entry_guard_for_circuit(gs, GUARD_USAGE_TRAFFIC, NULL, &state);
+ tt_ptr_op(g, OP_EQ, smartlist_get(gs->primary_entry_guards, 0));
+ /** Now, let's mark this guard as unreachable and let's update the lists */
+ g->is_reachable = GUARD_REACHABLE_NO;
+ g->failing_since = approx_time() - 10;
+ g->last_tried_to_connect = approx_time() - 10;
+ state = 9999;
+ entry_guards_update_primary(gs);
+ g = select_entry_guard_for_circuit(gs, GUARD_USAGE_TRAFFIC, NULL, &state);
+ /** we should have switched to the next one is sampled order */
+ tt_int_op(g->sampled_idx, OP_EQ, 1);
+ done:
+ smartlist_free(old_primary_guards);
+ guard_selection_free(gs);
+}
+
+static void
test_entry_guard_select_for_circuit_no_confirmed(void *arg)
{
/* Simpler cases: no gaurds are confirmed yet. */
@@ -3094,6 +3150,7 @@ struct testcase_t entrynodes_tests[] = {
BFN_TEST(sample_reachable_filtered_empty),
BFN_TEST(retry_unreachable),
BFN_TEST(manage_primary),
+ BFN_TEST(correct_cascading_order),
EN_TEST_FORK(guard_preferred),
1
0

[tor-browser/tor-browser-68.9.0esr-10.0-1] fixup! Bug 21952: Implement Onion-Location
by gk@torproject.org 11 Jun '20
by gk@torproject.org 11 Jun '20
11 Jun '20
commit 8c3168ab58f038cc1e72d2f408bee1e5f715c455
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Tue Jun 9 14:59:00 2020 -0400
fixup! Bug 21952: Implement Onion-Location
Fixes bug 34379.
---
browser/modules/TorStrings.jsm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/browser/modules/TorStrings.jsm b/browser/modules/TorStrings.jsm
index 66c44257c163..05bbfd63ef60 100644
--- a/browser/modules/TorStrings.jsm
+++ b/browser/modules/TorStrings.jsm
@@ -434,7 +434,7 @@ var TorStrings = {
tryThis: getString("tryThis", "Try this: Onionsite"),
onionAvailable: getString("onionAvailable", "Onionsite available"),
learnMore: getString("learnMore", "Learn more"),
- learnMoreURL: `https://tb-manual.torproject.org/${getLocale()}`, // TODO: replace when manual page is available.
+ learnMoreURL: `https://tb-manual.torproject.org/${getLocale()}/onion-services/`,
always: getString("always", "Always"),
askEverytime: getString("askEverytime", "Ask you every time"),
prioritizeOnionsDescription: getString(
1
0

[tor-browser/tor-browser-68.9.0esr-9.5-1] fixup! Bug 21952: Implement Onion-Location
by gk@torproject.org 11 Jun '20
by gk@torproject.org 11 Jun '20
11 Jun '20
commit e2d86fb3d25e5044c0b514c096b1af1a632829ab
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Tue Jun 9 14:59:00 2020 -0400
fixup! Bug 21952: Implement Onion-Location
Fixes bug 34379.
---
browser/modules/TorStrings.jsm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/browser/modules/TorStrings.jsm b/browser/modules/TorStrings.jsm
index 66c44257c163..05bbfd63ef60 100644
--- a/browser/modules/TorStrings.jsm
+++ b/browser/modules/TorStrings.jsm
@@ -434,7 +434,7 @@ var TorStrings = {
tryThis: getString("tryThis", "Try this: Onionsite"),
onionAvailable: getString("onionAvailable", "Onionsite available"),
learnMore: getString("learnMore", "Learn more"),
- learnMoreURL: `https://tb-manual.torproject.org/${getLocale()}`, // TODO: replace when manual page is available.
+ learnMoreURL: `https://tb-manual.torproject.org/${getLocale()}/onion-services/`,
always: getString("always", "Always"),
askEverytime: getString("askEverytime", "Ask you every time"),
prioritizeOnionsDescription: getString(
1
0

[translation/bridgedb_completed] https://gitweb.torproject.org/translation.git/commit/?h=bridgedb_completed
by translation@torproject.org 11 Jun '20
by translation@torproject.org 11 Jun '20
11 Jun '20
commit 5d2338debc4951c63118741a42de90258d63bcee
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Jun 11 12:15:24 2020 +0000
https://gitweb.torproject.org/translation.git/commit/?h=bridgedb_completed
---
nl/LC_MESSAGES/bridgedb.po | 35 +++++++++++++++--------------------
1 file changed, 15 insertions(+), 20 deletions(-)
diff --git a/nl/LC_MESSAGES/bridgedb.po b/nl/LC_MESSAGES/bridgedb.po
index c92ca16941..43647db323 100644
--- a/nl/LC_MESSAGES/bridgedb.po
+++ b/nl/LC_MESSAGES/bridgedb.po
@@ -8,7 +8,7 @@
# Ann Boen <ann.boen(a)gmail.com>, 2014
# bacovane <bart-ts(a)tushmail.com>, 2018-2019
# Cleveridge <erwin.de.laat(a)cleveridge.org>, 2014,2016
-# Dick, 2014
+# d750abf749618fbe4373515716ded093_04912a2, 2014
# Johann Behrens <info(a)wmrkameleon.nl>, 2013
# Joren Vandeweyer <jorenvandeweyer(a)gmail.com>, 2019
# kwadronaut <kwadronaut(a)autistici.org>, 2019
@@ -17,7 +17,7 @@
# Meteor0id, 2019-2020
# Not Much <1028484728393(a)protonmail.com>, 2018
# Shondoit Walker <shondoit(a)gmail.com>, 2011
-# Marco Brohet <inactive+therbom(a)transifex.com>, 2012
+# 3f74806218aa7cde07d14719d1bb902d_de6e039 <14df31a60204a91ecbe9faa10731d537_25249>, 2012
# Tom Becht <tombecht(a)live.nl>, 2014
# Tonko Mulder <tonko(a)tonkomulder.nl>, 2015
# Tonnes <tonnes.mb(a)gmail.com>, 2019-2020
@@ -27,14 +27,14 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: 'https://trac.torproject.org/projects/tor/newticket?component=BridgeDB&keywo…'\n"
-"POT-Creation-Date: 2020-04-09 14:45-0700\n"
-"PO-Revision-Date: 2020-04-15 19:46+0000\n"
-"Last-Translator: Transifex Bot <>\n"
+"POT-Creation-Date: 2020-05-14 14:21-0700\n"
+"PO-Revision-Date: 2020-06-11 12:09+0000\n"
+"Last-Translator: Tonnes <tonnes.mb(a)gmail.com>\n"
"Language-Team: Dutch (http://www.transifex.com/otf/torproject/language/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.7.0\n"
+"Generated-By: Babel 2.8.0\n"
"Language: nl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -98,31 +98,26 @@ msgstr "QRCode tonen"
msgid "QRCode for your bridge lines"
msgstr "QRCode voor uw bridge regels"
-#. TRANSLATORS: Please translate this into some silly way to say
-#. "There was a problem!" in your language. For example,
-#. for Italian, you might translate this into "Mama mia!",
-#. or for French: "Sacrebleu!". :)
-#: bridgedb/distributors/https/templates/bridges.html:67
-#: bridgedb/distributors/https/templates/bridges.html:119
-msgid "Uh oh, spaghettios!"
-msgstr "Helaas pindakaas!"
-
-#: bridgedb/distributors/https/templates/bridges.html:68
+#: bridgedb/distributors/https/templates/bridges.html:63
msgid "It seems there was an error getting your QRCode."
msgstr "Er was een fout tijdens het ophalen van uw QRCode."
-#: bridgedb/distributors/https/templates/bridges.html:73
+#: bridgedb/distributors/https/templates/bridges.html:68
msgid ""
"This QRCode contains your bridge lines. Scan it with a QRCode reader to copy"
" your bridge lines onto mobile and other devices."
msgstr "Deze QRCode bevat uw bridge regels. Scan het met een QRCode lezer om uw bridge regels te kopiëren naar mobiele of andere apparaten."
-#: bridgedb/distributors/https/templates/bridges.html:125
+#: bridgedb/distributors/https/templates/bridges.html:110
+msgid "BridgeDB encountered an error."
+msgstr ""
+
+#: bridgedb/distributors/https/templates/bridges.html:116
msgid "There currently aren't any bridges available..."
msgstr "Er zijn momenteel geen bridges beschikbaar..."
-#: bridgedb/distributors/https/templates/bridges.html:127
-#: bridgedb/distributors/https/templates/bridges.html:131
+#: bridgedb/distributors/https/templates/bridges.html:118
+#: bridgedb/distributors/https/templates/bridges.html:122
#, python-format
msgid ""
" Perhaps you should try %s going back %s and choosing a different bridge "
1
0

[translation/bridgedb] https://gitweb.torproject.org/translation.git/commit/?h=bridgedb
by translation@torproject.org 11 Jun '20
by translation@torproject.org 11 Jun '20
11 Jun '20
commit c30b42c8202234933b667ea90dc4c9bb1ce35b3b
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Jun 11 12:15:17 2020 +0000
https://gitweb.torproject.org/translation.git/commit/?h=bridgedb
---
nl/LC_MESSAGES/bridgedb.po | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/nl/LC_MESSAGES/bridgedb.po b/nl/LC_MESSAGES/bridgedb.po
index 71c26fcd12..89645cf237 100644
--- a/nl/LC_MESSAGES/bridgedb.po
+++ b/nl/LC_MESSAGES/bridgedb.po
@@ -8,7 +8,7 @@
# Ann Boen <ann.boen(a)gmail.com>, 2014
# bacovane <bart-ts(a)tushmail.com>, 2018-2019
# Cleveridge <erwin.de.laat(a)cleveridge.org>, 2014,2016
-# Dick, 2014
+# d750abf749618fbe4373515716ded093_04912a2, 2014
# Johann Behrens <info(a)wmrkameleon.nl>, 2013
# Joren Vandeweyer <jorenvandeweyer(a)gmail.com>, 2019
# kwadronaut <kwadronaut(a)autistici.org>, 2019
@@ -17,7 +17,7 @@
# Meteor0id, 2019-2020
# Not Much <1028484728393(a)protonmail.com>, 2018
# Shondoit Walker <shondoit(a)gmail.com>, 2011
-# Marco Brohet <inactive+therbom(a)transifex.com>, 2012
+# 3f74806218aa7cde07d14719d1bb902d_de6e039 <14df31a60204a91ecbe9faa10731d537_25249>, 2012
# Tom Becht <tombecht(a)live.nl>, 2014
# Tonko Mulder <tonko(a)tonkomulder.nl>, 2015
# Tonnes <tonnes.mb(a)gmail.com>, 2019-2020
@@ -28,8 +28,8 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: 'https://trac.torproject.org/projects/tor/newticket?component=BridgeDB&keywo…'\n"
"POT-Creation-Date: 2020-05-14 14:21-0700\n"
-"PO-Revision-Date: 2020-05-15 08:24+0000\n"
-"Last-Translator: Transifex Bot <>\n"
+"PO-Revision-Date: 2020-06-11 12:09+0000\n"
+"Last-Translator: Tonnes <tonnes.mb(a)gmail.com>\n"
"Language-Team: Dutch (http://www.transifex.com/otf/torproject/language/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -110,7 +110,7 @@ msgstr "Deze QRCode bevat uw bridge regels. Scan het met een QRCode lezer om uw
#: bridgedb/distributors/https/templates/bridges.html:110
msgid "BridgeDB encountered an error."
-msgstr ""
+msgstr "BridgeDB heeft een fout aangetroffen."
#: bridgedb/distributors/https/templates/bridges.html:116
msgid "There currently aren't any bridges available..."
1
0

[torspec/master] Padding spec update for Bug 30992's machine_ctr field.
by asn@torproject.org 11 Jun '20
by asn@torproject.org 11 Jun '20
11 Jun '20
commit f26e739db4d6d330165efe72cee8812d99a49598
Author: Mike Perry <mikeperry-git(a)torproject.org>
Date: Wed Jun 10 17:39:13 2020 -0500
Padding spec update for Bug 30992's machine_ctr field.
---
padding-spec.txt | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/padding-spec.txt b/padding-spec.txt
index 22ed171..b9d99b7 100644
--- a/padding-spec.txt
+++ b/padding-spec.txt
@@ -325,13 +325,19 @@ the anonymity and load-balancing implications of their choices.
u8 command IN [CIRCPAD_COMMAND_START, CIRCPAD_COMMAND_STOP];
u8 machine_type IN [CIRCPAD_MACHINE_CIRC_SETUP];
+
+ u8 unused; // Formerly echo_request
+
+ u32 machine_ctr;
};
When a client wants to start a circuit padding machine, it first checks that
the desired destination hop advertises the appropriate subprotocol version for
that machine. It then sends a circpad_negotiate cell to that hop with
command=CIRCPAD_COMMAND_START, and machine_type=CIRCPAD_MACHINE_CIRC_SETUP (for
- the circ setup machine, the destination hop is the second hop in the circuit).
+ the circ setup machine, the destination hop is the second hop in the
+ circuit). The machine_ctr is the count of which machine instance this is on
+ the circuit. It is used to disambiguate shutdown requests.
When a relay receives a circpad_negotiate cell, it checks that it supports
the requested machine, and sends a circpad_negotiated cell, which is formatted
@@ -343,6 +349,8 @@ the anonymity and load-balancing implications of their choices.
u8 response IN [CIRCPAD_RESPONSE_OK, CIRCPAD_RESPONSE_ERR];
u8 machine_type IN [CIRCPAD_MACHINE_CIRC_SETUP];
+
+ u32 machine_ctr;
};
If the machine is supported, the response field will contain
@@ -352,6 +360,9 @@ the anonymity and load-balancing implications of their choices.
(clients MUST only send circpad_negotiate, and relays MUST only send
circpad_negotiated for this purpose).
+ If the machine_ctr does not match the current machine instance count
+ on the circuit, the command is ignored.
+
3.2. Circuit Padding Machine Message Management
Clients MAY send padding cells towards the relay before receiving the
1
0

[translation/donatepages-messagespot_completed] https://gitweb.torproject.org/translation.git/commit/?h=donatepages-messagespot_completed
by translation@torproject.org 11 Jun '20
by translation@torproject.org 11 Jun '20
11 Jun '20
commit 5ffa28c4926f326ea0c0d65300bd6c1045c78a5b
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Jun 11 04:47:52 2020 +0000
https://gitweb.torproject.org/translation.git/commit/?h=donatepages-message…
---
locale/ka/LC_MESSAGES/messages.po | 1205 +++++++----------------------
locale/tr/LC_MESSAGES/messages.po | 1537 +++++++++----------------------------
messages.pot | 1510 +++++++++---------------------------
3 files changed, 976 insertions(+), 3276 deletions(-)
diff --git a/locale/ka/LC_MESSAGES/messages.po b/locale/ka/LC_MESSAGES/messages.po
index b39821cf2f..25add504d6 100644
--- a/locale/ka/LC_MESSAGES/messages.po
+++ b/locale/ka/LC_MESSAGES/messages.po
@@ -1,7 +1,8 @@
+#
# Translators:
# IDRASSI Mounir <mounir.idrassi(a)idrix.fr>, 2018
# Giovanni Pellerano <giovanni.pellerano(a)evilaliv3.org>, 2018
-# erinm, 2019
+# erinm, 2018
# Georgianization, 2019
#
msgid ""
@@ -25,275 +26,62 @@ msgstr ""
msgid "Give today, and Mozilla will match your donation."
msgstr ""
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:34
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:53
-msgid "Tor Privacy Policy"
-msgstr ""
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:44
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:64
-msgid "Donor privacy policy"
-msgstr ""
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:58
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:79
-msgid ""
-"The Tor Project respects donor privacy and welcomes anonymous donations."
-msgstr ""
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:60
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:81
-msgid ""
-"If being anonymous is important to you, the best way to preserve your "
-"anonymity is by donating using a method that doesn't disclose your personal "
-"information."
-msgstr ""
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:65
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:86
-msgid ""
-"If you provide personal information as part of the donation process, it may "
-"be collected and retained by third-party service providers and/or the Tor "
-"Project, as described below."
-msgstr ""
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:67
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:88
-msgid ""
-"The Tor Project has very little influence over how third-party service "
-"providers, such as PayPal, may collect and use your information."
-msgstr ""
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:69
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:90
-msgid ""
-"We recommend you familiarize yourself with their <a class=\"hyperlinks "
-"links\" target=\"_blank\" href=\"https://www.paypal.com/webapps/mpp/ua"
-"/privacy-full\">policies</a>, especially if you have privacy concerns."
-msgstr ""
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:74
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:95
-msgid ""
-"When you donate to the Tor Project, depending what mechanism you use, we may"
-" learn your name, the amount you donated, your email address, phone number "
-"and/or mailing address, as well as any other information you provide."
-msgstr ""
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:76
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:97
-msgid ""
-"We may also learn incidental data such as the date and time of your "
-"donation."
-msgstr ""
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:78
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:99
-msgid ""
-"The Tor Project will never have access to your financial data, such as your "
-"credit card information.We aim to be careful with your information."
-msgstr ""
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:83
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:104
-msgid ""
-"If you have provided your email address, we will email you once to thank you"
-" and give you a receipt."
-msgstr ""
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:85
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:106
-msgid ""
-"If you opt in during the donation process, we may email you again in future."
-msgstr ""
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:87
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:108
-msgid ""
-"If you donate more than $5,000 and we know your name and address, we are "
-"required to disclose it to the IRS in <a class=\"hyperlinks links\" "
-"target=\"_blank\" href=\"https://www.irs.gov/pub/irs-"
-"pdf/f990ezb.pdf\">Schedule B of the Form 990</a>."
-msgstr ""
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:89
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:110
-msgid ""
-"But, that information is redacted from the publicly-available version of our"
-" Form 990."
-msgstr ""
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:91
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:112
-msgid ""
-"We will never publicly identify you as a donor without your permission."
-msgstr ""
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:96
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:117
-msgid "We do not publish, sell, trade, or rent any information about you."
-msgstr ""
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:98
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:119
-msgid ""
-"For our records, we retain your name, the amount of your donation, the date "
-"of the donation, and your contact information."
-msgstr ""
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:100
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:121
-msgid ""
-"Access to that information is restricted inside the Tor Project to people "
-"who need it to do their work, for example by thanking you or mailing you a "
-"t-shirt."
-msgstr ""
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:105
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:126
-msgid ""
-"<span class=\"bold\">The Tor Project very much appreciates all its donors. "
-"Thank you for supporting Tor</span>."
-msgstr ""
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:113
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:134
-#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:851
-#: tmp/cache_locale/17/179dc1a0f488d5bbb8c128dc5c0fb35d6240d83414df10335a1cf4031139609a.php:183
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:656
-msgid "Back to Donate Page"
-msgstr ""
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:35
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:54
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:35
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:54
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:54
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:35
-#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:54
-msgid "Support the Tor Project Today!"
-msgstr ""
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:61
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:83
-msgid "Want to donate by credit card or PayPal?"
-msgstr ""
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:70
-msgid ""
-"Thanks for your interest in donating cryptocurrency to the Tor Project."
-msgstr ""
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:77
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:133
-msgid ""
-"Please fill out this form and then send your coins to the appropriate "
-"wallet."
-msgstr ""
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:79
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:135
-msgid ""
-"Filling out the form is not necessary, but doing so will notify us about "
-"your donation quickly, allow us to send you an acknowledgement, and let us "
-"know your communication preferences."
-msgstr ""
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:85
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:141
-msgid ""
-"Below you will find the cryptocurrencies we accept and our wallet addresses."
-msgstr ""
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:87
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:143
-msgid ""
-"The wallet addresses will be displayed again after you complete the form."
-msgstr ""
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:89
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:145
-msgid ""
-"Please make sure to copy the wallet addresses exactly when making your "
-"donation, as we cannot recover funds sent to the wrong wallet."
-msgstr ""
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:95
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:151
-msgid ""
-"If you have any questions, or would like to donate a cryptocurrency not "
-"listed below, please email us at giving(a)torproject.org."
-msgstr ""
-
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:47
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:29
msgid ""
"The European shirt fits run a little small so you might want to consider "
"sizing up."
msgstr ""
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:54
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:36
msgid "Fit"
msgstr ""
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:58
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:40
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:508
msgid "Select Fit"
msgstr ""
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:62
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:44
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:500
msgid "Slim"
msgstr ""
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:66
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:48
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:496
msgid "Classic"
msgstr ""
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:74
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:56
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:504
msgid "European"
msgstr ""
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:84
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:66
msgid "Size"
msgstr ""
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:88
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:70
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:512
msgid "Select Size"
msgstr ""
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:92
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:74
msgid "S"
msgstr ""
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:96
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:78
msgid "M"
msgstr ""
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:100
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:82
msgid "L"
msgstr ""
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:104
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:86
msgid "XL"
msgstr ""
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:108
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:90
msgid "XXL"
msgstr ""
@@ -308,17 +96,24 @@ msgid "Donate to the Tor Project."
msgstr ""
#: tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:58
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:63
-#: tmp/cache_locale/2c/2c32942b896dd845bd6204d3104922983a843d726e231446ff21ddb2a33f6cda.php:40
msgid "summary_large_image"
msgstr ""
#: tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:62
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:67
-#: tmp/cache_locale/2c/2c32942b896dd845bd6204d3104922983a843d726e231446ff21ddb2a33f6cda.php:44
msgid "@torproject"
msgstr ""
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:54
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:54
+#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:54
+#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:54
+msgid "Support the Tor Project Today!"
+msgstr ""
+
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:83
+msgid "Want to donate by credit card or PayPal?"
+msgstr ""
+
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:92
msgid "Donate using BTCPayServer"
msgstr ""
@@ -327,6 +122,41 @@ msgstr ""
msgid "Donate using wallet addresses"
msgstr ""
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:133
+msgid ""
+"Please fill out this form and then send your coins to the appropriate "
+"wallet."
+msgstr ""
+
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:135
+msgid ""
+"Filling out the form is not necessary, but doing so will notify us about "
+"your donation quickly, allow us to send you an acknowledgement, and let us "
+"know your communication preferences."
+msgstr ""
+
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:141
+msgid ""
+"Below you will find the cryptocurrencies we accept and our wallet addresses."
+msgstr ""
+
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:143
+msgid ""
+"The wallet addresses will be displayed again after you complete the form."
+msgstr ""
+
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:145
+msgid ""
+"Please make sure to copy the wallet addresses exactly when making your "
+"donation, as we cannot recover funds sent to the wrong wallet."
+msgstr ""
+
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:151
+msgid ""
+"If you have any questions, or would like to donate a cryptocurrency not "
+"listed below, please email us at giving(a)torproject.org."
+msgstr ""
+
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:166
msgid "Copied"
msgstr ""
@@ -337,13 +167,11 @@ msgstr ""
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:174
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:69
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:51
msgid "Choose a Currency"
msgstr ""
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:178
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:91
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:73
msgid "Currency Amount"
msgstr ""
@@ -357,179 +185,194 @@ msgstr ""
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:188
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:64
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:46
msgid "Email"
msgstr ""
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:192
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:320
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:319
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:47
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:29
msgid "First Name"
msgstr ""
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:196
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:324
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:323
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:51
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:33
msgid "Last Name"
msgstr ""
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:200
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:98
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:80
msgid "Report Donation"
msgstr ""
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:204
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:370
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:369
msgid "Start sending me email updates about the Tor Project!"
msgstr ""
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:208
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:105
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:87
msgid "Wallet Addresses"
msgstr ""
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:212
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:311
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:310
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:42
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:24
msgid "Your Info"
msgstr ""
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:34
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:34
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:53
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:53
-msgid "Tor Thanks You"
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:53
+msgid "Tor Privacy Policy"
msgstr ""
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:44
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:44
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:64
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:64
-msgid "Thank you!"
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:64
+msgid "Donor privacy policy"
msgstr ""
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:51
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:51
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:71
-msgid "Thank you for supporting Tor's Strength in Numbers campaign."
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:79
+msgid ""
+"The Tor Project respects donor privacy and welcomes anonymous donations."
msgstr ""
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:53
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:53
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:63
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:73
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:70
-msgid "You should receive an email receipt shortly."
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:81
+msgid ""
+"If being anonymous is important to you, the best way to preserve your "
+"anonymity is by donating using a method that doesn't disclose your personal "
+"information."
msgstr ""
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:55
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:55
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:75
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:86
msgid ""
-"With your support and the generous matching funds from Mozilla, we'll be "
-"able to tackle ambitious projects, such as developing a more secure, "
-"privacy-enhancing browser for mobile devices and making it easier for third-"
-"party developers to integrate Tor into their applications."
+"If you provide personal information as part of the donation process, it may "
+"be collected and retained by third-party service providers and/or the Tor "
+"Project, as described below."
msgstr ""
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:61
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:81
-msgid "Thank you for standing up for privacy and freedom online."
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:88
+msgid ""
+"The Tor Project has very little influence over how third-party service "
+"providers, such as PayPal, may collect and use your information."
msgstr ""
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:63
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:83
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:90
msgid ""
-"With your gift of cryptocurrency, you're helping the Tor Project give "
-"millions of people private access to the open web."
+"We recommend you familiarize yourself with their <a class=\"hyperlinks "
+"links\" target=\"_blank\" href=\"https://www.paypal.com/webapps/mpp/ua"
+"/privacy-full\">policies</a>, especially if you have privacy concerns."
msgstr ""
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:65
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:85
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:95
msgid ""
-"Your contribution helps make Tor an even stronger tool against authoritarian"
-" governments and privacy-invading corporations."
+"When you donate to the Tor Project, depending what mechanism you use, we may"
+" learn your name, the amount you donated, your email address, phone number "
+"and/or mailing address, as well as any other information you provide."
msgstr ""
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:71
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:91
-msgid "For your convenience, our wallet addresses are listed below."
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:97
+msgid ""
+"We may also learn incidental data such as the date and time of your "
+"donation."
msgstr ""
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:73
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:93
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:99
msgid ""
-"Please make sure to copy the wallet addresses exactly when making your "
-"donation, as we are unable to recover funds sent to the wrong wallet."
+"The Tor Project will never have access to your financial data, such as your "
+"credit card information.We aim to be careful with your information."
msgstr ""
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:77
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:77
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:97
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:82
-msgid "SHARE THE TOR PROJECT"
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:104
+msgid ""
+"If you have provided your email address, we will email you once to thank you"
+" and give you a receipt."
msgstr ""
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:145
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:115
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:166
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:109
-msgid "Got Skills?"
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:106
+msgid ""
+"If you opt in during the donation process, we may email you again in future."
msgstr ""
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:151
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:121
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:172
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:115
-msgid "The Tor network depends on volunteers."
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:108
+msgid ""
+"If you donate more than $5,000 and we know your name and address, we are "
+"required to disclose it to the IRS in <a class=\"hyperlinks links\" "
+"target=\"_blank\" href=\"https://www.irs.gov/pub/irs-"
+"pdf/f990ezb.pdf\">Schedule B of the Form 990</a>."
msgstr ""
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:157
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:127
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:178
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:121
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:110
msgid ""
-"We need people to run relays, write code, organize the community and spread "
-"the word about our good work."
+"But, that information is redacted from the publicly-available version of our"
+" Form 990."
msgstr ""
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:159
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:129
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:180
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:123
-msgid "Learn how you can help."
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:112
+msgid ""
+"We will never publicly identify you as a donor without your permission."
msgstr ""
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:167
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:137
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:188
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:131
-msgid "I Want To Volunteer"
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:117
+msgid "We do not publish, sell, trade, or rent any information about you."
+msgstr ""
+
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:119
+msgid ""
+"For our records, we retain your name, the amount of your donation, the date "
+"of the donation, and your contact information."
+msgstr ""
+
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:121
+msgid ""
+"Access to that information is restricted inside the Tor Project to people "
+"who need it to do their work, for example by thanking you or mailing you a "
+"t-shirt."
+msgstr ""
+
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:126
+msgid ""
+"<span class=\"bold\">The Tor Project very much appreciates all its donors. "
+"Thank you for supporting Tor</span>."
+msgstr ""
+
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:134
+#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:851
+#: tmp/cache_locale/17/179dc1a0f488d5bbb8c128dc5c0fb35d6240d83414df10335a1cf4031139609a.php:183
+msgid "Back to Donate Page"
+msgstr ""
+
+#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:40
+msgid "See if your employer offers employee gift matching"
+msgstr ""
+
+#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:70
+msgid "Company"
+msgstr ""
+
+#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:78
+msgid "Matching Conditions"
+msgstr ""
+
+#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:86
+msgid "Contact Information"
+msgstr ""
+
+#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:94
+msgid "Additional Notes"
+msgstr ""
+
+#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:102
+msgid "Procedure"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:62
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:84
#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:116
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:134
#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:122
msgid ""
"This page requires Javascript to do PayPal or credit card\n"
" donations, but it appears you have Javascript disabled."
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:66
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:88
#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:120
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:138
#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:126
msgid ""
"If you wish to donate without enabling Javascript, please take a look at our"
@@ -537,444 +380,271 @@ msgid ""
"donations options page</a>."
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:87
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:109
msgid "Number of Donations"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:103
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:125
msgid "Total Donated"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:119
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:141
msgid "Total Raised with Mozilla's Match"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:130
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:136
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:152
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:158
msgid "donate"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:132
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:154
msgid "once"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:138
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:160
msgid "monthly"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:145
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:167
msgid "Want to donate cryptocurrency?"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:150
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:172
msgid "Want to donate stock or via postal mail?"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:166
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:187
msgid "invalid amount"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:170
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:191
msgid "$2 minimum donation"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:174
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:195
msgid "$ other"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:181
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:202
msgid "Choose your gift as a token of our thanks."
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:188
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:209
msgid "No thanks, I don't want a gift."
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:190
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:211
#, php-format
msgid "I would prefer 100% of my donation to go to the Tor Project's work."
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:201
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:222
msgid "sticker Pack"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:208
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:229
msgid ""
"A collection of our favorite logo stickers for decorating your stuff and "
"covering your cams."
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:218
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:239
msgid "t-shirt"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:226
-msgid "Get our limited edition Tor: Strength in Numbers shirt."
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:247
+msgid "Get our limited edition Take Back the Internet With Tor shirt."
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:237
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:258
msgid "t-shirt pack"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:247
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:266
msgid ""
-"Our Tor: Strength in Numbers t-shirt, plus one of either our Tor: Powering "
-"the Digital Resistance, Open Observatory of Network Interference (OONI), or "
-"Tor at the Heart of Internet Freedom t-shirts."
-msgstr ""
-
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:253
-msgid "Tor at the Heart of Internet Freedom"
-msgstr ""
-
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:257
-msgid "Powering the Digital Resistance"
-msgstr ""
-
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:261
-msgid "Open Observatory of Network Interference"
+"Get this year's Take Back the Internet With Tor t-shirt and the Tor: "
+"Strength in Numbers t-shirt."
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:272
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:277
msgid "sweatshirt"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:279
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:284
msgid "Your generous support of Tor gets you this high-quality zip hoodie."
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:289
-msgid "how do you want to <span class=\"green\">DONATE</span>?"
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:294
+msgid "how do you want to <span class=\"lime\">DONATE</span>?"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:295
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:300
msgid "Credit Card"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:304
-msgid "Want to donate Bitcoin, Stock, or via snail mail?"
-msgstr ""
-
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:315
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:314
msgid "* required fields"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:330
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:329
msgid "Street Address"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:334
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:333
msgid "Apt."
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:344
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:343
msgid "City"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:348
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:347
msgid "State"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:353
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:352
msgid "Zip"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:359
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:358
msgid "Enter email"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:363
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:362
msgid "We‘ll email you your receipt"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:377
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:376
msgid "Card Number"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:384
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:383
msgid "MM"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:388
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:387
msgid "YY"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:392
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:391
msgid "CVC"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:400
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:465
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:399
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:472
msgid "Choose your size and fit."
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:405
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:413
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:404
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:412
msgid "T-shirt:"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:423
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:427
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:429
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:422
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:426
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:428
msgid "Comments"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:435
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:434
msgid "Donating:"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:443
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:446
msgid "Donate"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:453
-msgid "Gift Selected"
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:456
+msgid "State/Province/Region"
+msgstr ""
+
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:460
+msgid "Gift Selected:"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:457
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:464
msgid "No Gift Selected"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:461
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:468
msgid "Sticker Pack"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:469
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:476
msgid "T-Shirt"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:473
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:480
msgid "Choose your size and fit for each shirt."
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:477
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:484
msgid "T-Shirt Pack"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:481
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:607
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:488
-#: tmp/cache_locale/9f/9f870858aaf6c5a7c94ea6a959618fbe485cbfd16174993d34a8e370a4567526.php:75
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:48
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:71
-#: tmp/cache_locale/2c/2c32942b896dd845bd6204d3104922983a843d726e231446ff21ddb2a33f6cda.php:25
-#: tmp/cache_locale/2c/2c32942b896dd845bd6204d3104922983a843d726e231446ff21ddb2a33f6cda.php:48
msgid "Tor: Strength in Numbers"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:485
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:492
+msgid "Take back the Internet with Tor"
+msgstr ""
+
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:516
msgid "Choose your size."
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:489
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:520
msgid "Sweatshirt"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:493
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:524
msgid "A required field is missing from the form."
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:495
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:526
msgid "Please reload the page and try again."
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:499
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:530
msgid "There was a problem submitting your request to the server:<br>"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:503
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:534
msgid "validation failed"
msgstr ""
#. notes: __field_name__ will be replaced with the field name in the
#. javascript.
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:509
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:540
msgid "__field_name__ must be filled out."
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:514
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:545
msgid "This field is required"
msgstr ""
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:518
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:549
msgid "Invalid email address."
msgstr ""
-
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:522
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:553
-msgid "per month"
-msgstr ""
-
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:614
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:622
-#: tmp/cache_locale/9f/9f870858aaf6c5a7c94ea6a959618fbe485cbfd16174993d34a8e370a4567526.php:82
-#: tmp/cache_locale/9f/9f870858aaf6c5a7c94ea6a959618fbe485cbfd16174993d34a8e370a4567526.php:90
-msgid ""
-"Stand up for the universal human rights to privacy and freedom and help keep"
-" Tor robust and secure."
-msgstr ""
-
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:616
-#: tmp/cache_locale/9f/9f870858aaf6c5a7c94ea6a959618fbe485cbfd16174993d34a8e370a4567526.php:84
-msgid "Mozilla will match your gift and double your impact."
-msgstr ""
-
-#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:40
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:22
-msgid "See if your employer offers employee gift matching"
-msgstr ""
-
-#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:70
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:52
-msgid "Company"
-msgstr ""
-
-#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:78
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:60
-msgid "Matching Conditions"
-msgstr ""
-
-#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:86
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:68
-msgid "Contact Information"
-msgstr ""
-
-#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:94
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:76
-msgid "Additional Notes"
-msgstr ""
-
-#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:102
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:84
-msgid "Procedure"
-msgstr ""
-
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:247
-msgid "Get our limited edition Take Back the Internet With Tor shirt."
-msgstr ""
-
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:266
-msgid ""
-"Get this year's Take Back the Internet With Tor t-shirt and the Tor: "
-"Strength in Numbers t-shirt."
-msgstr ""
-
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:294
-msgid "how do you want to <span class=\"lime\">DONATE</span>?"
-msgstr ""
-
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:456
-msgid "State/Province/Region"
-msgstr ""
-
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:460
-msgid "Gift Selected:"
-msgstr ""
-
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:492
-msgid "Take back the Internet with Tor"
-msgstr ""
-
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:557
-msgid "Gift selected"
-msgstr ""
-
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:61
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:68
-msgid "Thank you for your support of the Tor Project."
-msgstr ""
-
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:65
-msgid ""
-"With your support, we'll be able to tackle ambitious projects, such as "
-"developing a more secure, privacy-enhancing browser for mobile devices and "
-"making it easier for third-party developers to integrate Tor into their "
-"applications."
-msgstr ""
-
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:71
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:76
-msgid ""
-"It's an incredible time to stand up for world-leading security and privacy "
-"software."
+
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:553
+msgid "per month"
msgstr ""
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:73
-msgid ""
-"Tell family, friends, and colleagues that you're supporting privacy and "
-"security with Tor!"
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:557
+msgid "Gift selected"
msgstr ""
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:59
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:41
msgid "Estimated Donation Date:"
msgstr ""
#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:83
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:101
msgid "Become a Defender of Privacy!"
msgstr ""
#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:87
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:105
msgid ""
"Join the Tor Project - Defenders of Privacy program - a monthly giving "
"circle designed to honor donors that make privacy a priority."
@@ -995,39 +665,24 @@ msgid ""
msgstr ""
#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:97
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:115
msgid "With your help, we will make the Tor network accessible to everyone!"
msgstr ""
#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:101
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:119
msgid "Together, we will stand up for the universal right to privacy."
msgstr ""
#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:103
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:121
msgid ""
"Please make your monthly donation now and stand with the Tor Project at this"
" critical time."
msgstr ""
#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:109
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:127
msgid "Want to make a one time donation instead?"
msgstr ""
-#: tmp/cache_locale/92/9248b30ecfc0bb3509fc7e1db98f98ec86e72399ad551da3d5abe54c7cd987af.php:34
-#: tmp/cache_locale/05/05c65ace52301a00198c48e1d823da2c14fbd489e7fb45efbca4e79e5709cbdb.php:53
-msgid "Processing Donation - Tor"
-msgstr ""
-
-#: tmp/cache_locale/92/9248b30ecfc0bb3509fc7e1db98f98ec86e72399ad551da3d5abe54c7cd987af.php:44
-#: tmp/cache_locale/05/05c65ace52301a00198c48e1d823da2c14fbd489e7fb45efbca4e79e5709cbdb.php:64
-msgid "Processing Donation. Please Wait..."
-msgstr ""
-
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:43
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:25
msgid ""
"The Tor Project is a US 501(c)(3) non-profit organization advancing human "
"rights and freedoms by creating and deploying free and open source anonymity"
@@ -1036,32 +691,26 @@ msgid ""
msgstr ""
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:49
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:31
msgid "Subscribe to Our Newsletter"
msgstr ""
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:53
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:35
msgid "Get monthly updates and opportunities from the Tor Project."
msgstr ""
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:57
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:39
msgid "Sign Up"
msgstr ""
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:65
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:47
msgid "Donate FAQs"
msgstr ""
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:69
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:51
msgid "Privacy Policy"
msgstr ""
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:85
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:67
msgid ""
"Designed and built by <span class=\"stamp-bold\"><a "
"href=\"https://www.giantrabbit.com/\" class=\"stamp-bold\" "
@@ -1069,17 +718,14 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:53
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:34
msgid "Tor Donor FAQ"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:64
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:44
msgid "Questions?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:80
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:59
msgid ""
"If your question isn’t answered below, email <span "
"class=\"email\">frontdesk(at)rt.torproject.org</span> with general Tor "
@@ -1145,7 +791,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:149
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:66
msgid "What is the Tor Project and what does it do?"
msgstr ""
@@ -1170,17 +815,14 @@ msgid "The Tor Project is a 501(c)3 tax-exempt non-profit organization."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:159
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:76
msgid "It was founded in 2006."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:165
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:82
msgid "Who works for the Tor Project, and what do they do?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:169
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:86
msgid ""
"Thousands of people around the world actively support the work of the Tor "
"Project, including developers, designers, relay operators, researchers, "
@@ -1189,13 +831,11 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:171
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:88
msgid ""
"The paid staff of the Tor Project is very small: about 47 people in total."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:173
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:90
msgid ""
"You can read about the core contributors to the Tor Project on our <a "
"class=\"hyperlinks\" target=\"_blank\" "
@@ -1204,31 +844,26 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:178
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:95
msgid "Who uses Tor?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:182
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:99
msgid ""
"The vast majority of Tor users are ordinary people who want control of their"
" privacy online or people whose internet use is censored."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:184
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:101
msgid ""
"Other Tor users are journalists, human rights defenders, domestic violence "
"survivors, policymakers, diplomats, and academic and research institutions."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:190
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:107
msgid "Can anyone use Tor?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:194
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:111
msgid "Yes! Tor is free, and anyone can use it."
msgstr ""
@@ -1254,12 +889,10 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:204
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:121
msgid "What kinds of people support Tor?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:208
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:125
msgid "All kinds of people."
msgstr ""
@@ -1285,7 +918,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:214
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:131
msgid ""
"In addition, everybody who uses Tor is helping to keep other users safe and "
"anonymous, because the more people using Tor, the harder it is to identify "
@@ -1293,12 +925,10 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:220
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:137
msgid "How does the Tor software work to protect people's anonymity?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:224
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:141
msgid ""
"Tor protects you by bouncing your communications around the Tor network, "
"which is a distributed network of relays run by volunteers all around the "
@@ -1306,14 +936,12 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:226
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:143
msgid ""
"If someone is watching your internet connection, Tor prevents them from "
"finding out what sites you are visiting."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:228
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:145
msgid ""
"It also prevents sites you visit from finding out where you're located."
msgstr ""
@@ -1325,7 +953,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:237
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:154
msgid ""
"I would like to know more about how Tor works, what onion services are, or "
"how to run a relay."
@@ -1339,12 +966,10 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:247
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:164
msgid "Does the Tor software work?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:251
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:168
msgid ""
"We believe Tor is the best solution available today, and we know that it "
"does a better job of keeping you safely anonymous than other options such as"
@@ -1352,7 +977,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:253
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:170
msgid ""
"We know that both the Russian government and the NSA have tried in the past "
"to crack Tor, and failed."
@@ -1369,26 +993,22 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:261
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:178
msgid "Is what Tor does legal? Can I get in trouble for using it?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:265
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:182
msgid ""
"Downloading Tor Browser or using the Tor network is legal in nearly every "
"country."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:267
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:184
msgid ""
"A few web sites occasionally block Tor, but that doesn't mean you're doing "
"anything wrong."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:269
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:186
msgid ""
"Usually it means that site has had difficulties with visitors who've been "
"using Tor in the past, or that they misunderstand what Tor is and how it "
@@ -1396,14 +1016,12 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:271
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:188
msgid ""
"But it is not illegal to use Tor, and you shouldn't get in trouble for doing"
" it."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:273
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:190
msgid ""
"You can find more information about Tor's legal status on the <a "
"class=\"hyperlinks links\" target=\"_blank\" "
@@ -1411,7 +1029,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:279
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:196
msgid ""
"Where can I find out more about the Tor Project, especially financial "
"information?"
@@ -1425,12 +1042,10 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:289
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:206
msgid "Where does the Tor Project's money come from?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:293
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:210
msgid ""
"Tor is supported by United States government funding agencies, NGOs, private"
" foundations, research institutions, private companies, and over 20,000 "
@@ -1445,14 +1060,12 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:297
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:214
msgid ""
"While we are grateful for this funding, we don't want the Tor Project to "
"become too dependent on any single source."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:299
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:216
msgid ""
"Crowdfunding allows us to diversify our donor base and is unrestricted -- it"
" allows us to spend the money on the projects we think are most important "
@@ -1460,7 +1073,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:301
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:218
msgid ""
"And so, we are asking you to help financially support us, to increase the "
"Tor Project's independence and ensure the sustainability of the products and"
@@ -1468,7 +1080,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:307
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:224
msgid ""
"How much money does the Tor Project spend annually, and what is it used for?"
msgstr ""
@@ -1478,7 +1089,6 @@ msgid "The Tor Project spends about $5 million annually."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:313
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:230
#, php-format
msgid ""
"About 80% of the Tor Project's spending goes to staffing, mostly software "
@@ -1486,38 +1096,32 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:315
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:232
msgid ""
"About 10% goes towards administrative costs such as accounting and legal "
"costs and bank fees."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:317
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:234
msgid ""
"The remaining 10% is spent on travel, meetings and conferences, which are "
"important for Tor because the Tor community is global."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:323
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:240
msgid "Is my donation tax-deductible?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:327
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:244
msgid ""
"If you pay taxes in the United States, your donation to Tor is tax "
"deductible to the full extent required by law."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:329
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:246
msgid "Following is information you may need for reporting purposes:"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:334
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:251
msgid ""
"<b>Tor Project Tax ID Number (EIN #):</b> 20-8096820<br>\n"
" <b>Address:</b><br>\n"
@@ -1556,31 +1160,26 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:365
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:264
msgid "If I am not in the United States, can I still donate?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:369
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:268
msgid "Yes, definitely."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:371
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:270
msgid ""
"Your donation probably isn't tax-deductible (unless you pay taxes on U.S. "
"income) but we would very much appreciate your support."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:377
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:423
msgid ""
"It's important to me that my donation be tax-deductible, but I don't pay "
"taxes in the United States."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:381
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:427
msgid ""
"Right now, we can only offer tax-deductibility to donors who pay taxes in "
"the United States."
@@ -1645,7 +1244,6 @@ msgid "They're run by nice people who are part of the Tor community."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:415
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:276
msgid ""
"Can I donate to a specific project, or restrict my donation to a particular "
"purpose?"
@@ -1653,13 +1251,10 @@ msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:419
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:749
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:280
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:560
msgid "No, sorry."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:421
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:282
msgid ""
"If we accept a donation from someone who has specified how they want it "
"used, we're required by the IRS to track and report separately on that "
@@ -1667,45 +1262,38 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:423
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:284
msgid ""
"That would be a big administrative burden for a small organization, and we "
"don't think it's a good idea for us."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:425
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:286
msgid ""
"However, we would be very happy to hear your ideas and feedback about our "
"work."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:427
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:288
msgid ""
"If you're donating using a mechanism that allows for comments, feel free to "
"send your thoughts that way."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:433
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:294
msgid "Can I donate while using Tor Browser?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:437
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:298
msgid "Yes! In our testing, donation works via Tor Browser."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:439
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:300
msgid ""
"If you run into problems, please contact <span "
"class=\"email\">giving(at)torproject.org</span>."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:443
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:304
msgid ""
"For users logging in to Paypal: some people had no problem donating via "
"PayPal while using Tor Browser."
@@ -1732,7 +1320,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:457
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:314
msgid "How can I donate via debit or credit card?"
msgstr ""
@@ -1744,12 +1331,10 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:467
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:324
msgid "Why do you ask for my address and similar information?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:471
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:328
msgid ""
"If you donate by credit card, you will be asked for some information that's "
"required to process your credit card payment, including your billing "
@@ -1757,26 +1342,22 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:473
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:330
msgid ""
"This allows our payment processor to verify your identity, process your "
"payment, and prevent fraudulent charges to your credit card."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:475
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:332
msgid ""
"We don't ask for information beyond what's required by the payment "
"processor."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:481
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:338
msgid "Why is there a minimum donation?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:485
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:342
msgid ""
"People who have stolen credit card information often donate to nonprofits as"
" a way of testing whether the card works."
@@ -1789,7 +1370,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:493
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:350
msgid "Is there a maximum donation?"
msgstr ""
@@ -1805,7 +1385,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:505
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:370
msgid ""
"If I want my donation to be anonymous, what is the best way for me to "
"donate?"
@@ -1822,7 +1401,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:513
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:378
msgid "You can buy cash gift cards and mail them to us."
msgstr ""
@@ -1833,15 +1411,12 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:521
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:474
msgid "Can I donate by mail?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:525
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:537
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:771
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:478
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:584
msgid "Yes."
msgstr ""
@@ -1852,7 +1427,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:533
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:486
msgid "Do you accept cash donations?"
msgstr ""
@@ -1944,7 +1518,6 @@ msgid "Tax ID #: 20-8096820"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:617
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:387
msgid ""
"Is the Tor Project required to identify me as a donor to the United States "
"government, or to any other authority?"
@@ -1958,7 +1531,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:623
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:393
msgid ""
"However, it's normal for nonprofits to redact individual donor information "
"from the copy of the 990 that's made publicly-available, and that's what we "
@@ -1966,45 +1538,38 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:625
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:395
msgid ""
"We are not required to identify donors to any other organization or "
"authority, and we do not."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:631
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:403
msgid ""
"In your privacy policy, you say you will never publicly identify me as a "
"donor without my permission."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:633
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:405
msgid "What does that mean?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:637
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:409
msgid "Yes, that's right."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:639
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:411
msgid ""
"If you donate to the Tor Project, there will be some people at the Tor "
"Project who know about your donation."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:641
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:413
msgid ""
"However, we will never publicly identify you as a donor, unless you have "
"given us permission to do so."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:643
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:415
msgid ""
"That means we won't post your name on our website, thank you on Twitter, or "
"do anything else that would publicly identify you as someone who has "
@@ -2012,7 +1577,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:645
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:417
msgid ""
"If we decide we would like to publicly name you as a donor, we will ask you "
"first, and will not do it until and unless you say it's okay."
@@ -2026,31 +1590,26 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:653
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:448
msgid "What is your donor privacy policy?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:657
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:452
msgid ""
"Here is the Tor Project <a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"/%langcode%/privacy-policy\">donor privacy policy</a>."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:663
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:458
msgid "What is your refund policy?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:667
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:462
msgid ""
"If you want your donation refunded, please tell us by emailing <span "
"class=\"email\">giving(at)torproject.org</span>."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:669
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:464
msgid ""
"To process your refund we'll need to know the date of your donation, the "
"amount you donated, your full name, the payment method you used and your "
@@ -2058,12 +1617,10 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:671
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:466
msgid "Please also tell us why you're asking for a refund."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:673
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:468
msgid ""
"Please note that some payment methods won't support refunds, or require them"
" to be made in a specific way, so we may need additional information from "
@@ -2071,12 +1628,10 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:679
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:496
msgid "Does Tor Project accept matching donations?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:683
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:500
msgid ""
"Yes! Many companies --such as Google, Microsoft, eBay, PayPal, Apple, "
"Verizon, Red Hat, many universities, and others-- will match donations made "
@@ -2090,19 +1645,16 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:687
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:506
msgid ""
"If you want help figuring out the process, write us at <span "
"class=\"email\">giving(at)torproject.org</a>."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:693
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:512
msgid "Can I become a Tor Project member?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:697
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:516
msgid ""
"Right now, we don't have a membership program, but we may set one up in the "
"future."
@@ -2134,7 +1686,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:711
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:524
msgid "How can I get a Tor t-shirt or stickers?"
msgstr ""
@@ -2146,14 +1697,12 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:721
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:534
msgid ""
"If I want to stay in touch with the Tor Project, what's the best way for me "
"to do that?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:725
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:538
msgid ""
"You can sign up to receive <a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"https://newsletter.torproject.org/\">Tor News</a>, read the <a "
@@ -2164,7 +1713,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:731
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:544
msgid ""
"Does the Tor Project participate in the Combined Federal Campaign program?"
msgstr ""
@@ -2182,26 +1730,22 @@ msgid "Tor doesn't currently participate in the Federal CFC program."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:739
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:550
msgid ""
"If you'd like to get Tor added to the CFC program in your location, that "
"would be great: please let us know if you need any help."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:745
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:556
msgid "Can I donate my airline miles, flight vouchers, or hotel points?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:751
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:562
msgid ""
"We would like to accept your miles, vouchers and hotel points, and in the "
"future we may be able to."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:757
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:568
msgid "Can I donate hardware?"
msgstr ""
@@ -2213,7 +1757,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:767
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:580
msgid "Can I donate my time?"
msgstr ""
@@ -2225,24 +1768,20 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:779
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:592
msgid "I would like my company to support Tor."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:781
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:594
msgid "What can we do to help?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:785
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:598
msgid ""
"Your company could match donations made by its employees to the Tor Project"
"--that would be wonderful."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:787
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:600
msgid ""
"Your company may operate a corporate foundation that gives out grants, and "
"if so, you should encourage it to fund us."
@@ -2256,73 +1795,60 @@ msgid ""
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:791
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:604
msgid ""
"If your company sells cloud services, perhaps it could donate these to Tor: "
"We use them in some anti-censorship projects."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:797
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:610
msgid "You don't support my preferred way to donate."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:799
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:612
msgid "Can I recommend a new donation method to you?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:803
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:616
msgid "Sure."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:805
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:618
msgid "Just mail us at <span class=\"email\">giving(at)torproject.org</span></a>."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:811
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:624
msgid ""
"Will the Tor Project accept donations from anybody, or do you reserve the "
"right to reject support from specific organizations or individuals?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:815
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:628
msgid "We do reserve the right to reject a donation."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:817
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:630
msgid "To date though, we haven't exercised that right."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:819
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:632
msgid "We are happy that a broad range of people use and support Tor."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:825
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:638
msgid "I have more questions."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:827
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:640
msgid "How can I get answers?"
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:831
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:644
msgid ""
"Feel free to send questions to <span "
"class=\"email\">frontdesk(at)rt.torproject.org</span>."
msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:833
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:646
msgid ""
"We will try to answer you, and we'll also post your question (and the "
"answer) here."
@@ -2333,22 +1859,18 @@ msgid "State Registration Disclosures"
msgstr ""
#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:53
-#: tmp/cache_locale/0d/0de73852fd4b6afe8a4f069f907a5e1e93a3159f5ffaddbf485db43dd4ce3a8a.php:34
msgid "Subscribed | Tor"
msgstr ""
#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:64
-#: tmp/cache_locale/0d/0de73852fd4b6afe8a4f069f907a5e1e93a3159f5ffaddbf485db43dd4ce3a8a.php:44
msgid "Subscription Confirmed!"
msgstr ""
#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:78
-#: tmp/cache_locale/0d/0de73852fd4b6afe8a4f069f907a5e1e93a3159f5ffaddbf485db43dd4ce3a8a.php:57
msgid "Thanks for joining our email list - you'll hear from us soon!"
msgstr ""
#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:80
-#: tmp/cache_locale/0d/0de73852fd4b6afe8a4f069f907a5e1e93a3159f5ffaddbf485db43dd4ce3a8a.php:59
msgid ""
"In the meantime, follow <a target=\"_blank\" "
"href=\"https://twitter.com/torproject\">@TorProject</a> on Twitter to keep "
@@ -2356,7 +1878,6 @@ msgid ""
msgstr ""
#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:84
-#: tmp/cache_locale/0d/0de73852fd4b6afe8a4f069f907a5e1e93a3159f5ffaddbf485db43dd4ce3a8a.php:63
msgid ""
"As a non-profit organization, we rely on contributions from people like you "
"to help us create and maintain technology used by millions of users daily to"
@@ -2364,46 +1885,100 @@ msgid ""
msgstr ""
#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:86
-#: tmp/cache_locale/0d/0de73852fd4b6afe8a4f069f907a5e1e93a3159f5ffaddbf485db43dd4ce3a8a.php:65
msgid "Every little bit helps"
msgstr ""
#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:88
-#: tmp/cache_locale/0d/0de73852fd4b6afe8a4f069f907a5e1e93a3159f5ffaddbf485db43dd4ce3a8a.php:67
msgid "please donate today"
msgstr ""
#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:92
-#: tmp/cache_locale/0d/0de73852fd4b6afe8a4f069f907a5e1e93a3159f5ffaddbf485db43dd4ce3a8a.php:71
msgid "Donate Now"
msgstr ""
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:52
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:75
-#: tmp/cache_locale/2c/2c32942b896dd845bd6204d3104922983a843d726e231446ff21ddb2a33f6cda.php:29
-#: tmp/cache_locale/2c/2c32942b896dd845bd6204d3104922983a843d726e231446ff21ddb2a33f6cda.php:52
-msgid "Donate to the Tor Project and protect the privacy of millions."
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:53
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:53
+msgid "Tor Thanks You"
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:64
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:64
+msgid "Thank you!"
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:71
+msgid "Thank you for supporting Tor's Strength in Numbers campaign."
msgstr ""
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:54
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:77
-#: tmp/cache_locale/2c/2c32942b896dd845bd6204d3104922983a843d726e231446ff21ddb2a33f6cda.php:31
-#: tmp/cache_locale/2c/2c32942b896dd845bd6204d3104922983a843d726e231446ff21ddb2a33f6cda.php:54
-msgid "Anonymity loves company."
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:73
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:70
+msgid "You should receive an email receipt shortly."
msgstr ""
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:109
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:75
msgid ""
-"Defenders of Privacy pledge a modest amount each month - creating a steady, "
-"reliable source of funds to help us be agile in an ever-changing privacy "
-"landscape and we send exclusive gifts to show our appreciation!"
+"With your support and the generous matching funds from Mozilla, we'll be "
+"able to tackle ambitious projects, such as developing a more secure, "
+"privacy-enhancing browser for mobile devices and making it easier for third-"
+"party developers to integrate Tor into their applications."
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:81
+msgid "Thank you for standing up for privacy and freedom online."
msgstr ""
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:113
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:83
msgid ""
-"The Tor Project counts on the support of our Defenders of Privacy to "
-"continue our mission to provide tools that protect peoples privacy and "
-"identity online."
+"With your gift of cryptocurrency, you're helping the Tor Project give "
+"millions of people private access to the open web."
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:85
+msgid ""
+"Your contribution helps make Tor an even stronger tool against authoritarian"
+" governments and privacy-invading corporations."
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:91
+msgid "For your convenience, our wallet addresses are listed below."
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:93
+msgid ""
+"Please make sure to copy the wallet addresses exactly when making your "
+"donation, as we are unable to recover funds sent to the wrong wallet."
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:97
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:82
+msgid "SHARE THE TOR PROJECT"
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:166
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:109
+msgid "Got Skills?"
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:172
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:115
+msgid "The Tor network depends on volunteers."
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:178
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:121
+msgid ""
+"We need people to run relays, write code, organize the community and spread "
+"the word about our good work."
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:180
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:123
+msgid "Learn how you can help."
+msgstr ""
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:188
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:131
+msgid "I Want To Volunteer"
msgstr ""
#: tmp/cache_locale/17/179dc1a0f488d5bbb8c128dc5c0fb35d6240d83414df10335a1cf4031139609a.php:53
@@ -2593,6 +2168,10 @@ msgstr ""
msgid "Back to Donate FAQ"
msgstr ""
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:68
+msgid "Thank you for your support of the Tor Project."
+msgstr ""
+
#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:72
msgid ""
"With your support, we'll be able to tackle ambitious projects, like "
@@ -2601,280 +2180,24 @@ msgid ""
"Tor Browser for Android."
msgstr ""
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:78
-msgid ""
-"Tell family, friends, and colleagues that you're supporting privacy and "
-"security and taking back the internet with Tor!"
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:70
-msgid ""
-"The Tor Project’s mission is to advance human rights and freedoms by "
-"creating and deploying free and open anonymity and privacy technologies, "
-"supporting their unrestricted availability and use, and furthering their "
-"scientific and popular understanding."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:72
-msgid ""
-"The main product of the Tor Project is <a "
-"href=\"https://www.torproject.org/download/download-easy.html.en\">Tor "
-"Browser</a>, which enables people to browse the internet anonymously."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:74
-msgid ""
-"The Tor Project is a 501(c)3 tax-exempt non-profit organization based in "
-"Boston, Massachusetts."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:113
-msgid ""
-"To get started, you will need to <a class=\"hyperlinks\" target=\"_blank\" "
-"href=\"https://www.torproject.org/projects/torbrowser.html.en\"><span "
-"class=\"links\">download Tor Browser</span></a>."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:115
-msgid ""
-"We offer instructions on how to download for <a class=\"hyperlinks links\" "
-"target=\"_blank\" "
-"href=\"https://www.torproject.org/projects/torbrowser.html.en#windows\">Windows</a>,"
-" <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/projects/torbrowser.html.en#macosx\">Mac "
-"OS X</a> and <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/projects/torbrowser.html.en#linux\">Linux</a>."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:127
-msgid ""
-"Thousands of individuals have donated to support the Tor Project, and we "
-"have also received funding from a wide range of organizations including "
-"Google, the Ford Foundation, the Knight Foundation, Reddit, the U.S. "
-"National Science Foundation, the Electronic Frontier Foundation, Human "
-"Rights Watch, the Swedish International Development Cooperation Agency, the "
-"Federal Foreign Office of Germany, the U.S. Naval Research Laboratory, "
-"Omidyar Network, SRI International, and Radio Free Asia."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:129
-msgid ""
-"People also support Tor in non-financial ways, for example by running Tor "
-"relays to help carry traffic for other users."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:147
-msgid ""
-"You can read more about how Tor works on our <a class=\"hyperlinks links\" "
-"target=\"_blank\" "
-"href=\"https://www.torproject.org/about/overview.html.en\">overview page."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:158
-msgid ""
-"<a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/docs/faq.html.en\">This Tor Project "
-"FAQ</a> has answers to all those questions, and more."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:172
-msgid ""
-"The Electronic Frontier Foundation says that Tor offers <a "
-"class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.eff.org/deeplinks/2014/07/7-things-you-should-know-about-"
-"tor\">some of the strongest anonymity software that exists</a>, and in his "
-"book Data and Goliath, security expert Bruce Schneier wrote \"The current "
-"best tool to protect your anonymity when browsing the web is Tor.\""
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:200
-msgid ""
-"Here are the Tor Project's <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/about/financials.html.en\">financial "
-"statements, and its Form 990</a>."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:212
-msgid ""
-"(See <a class=\"hyperlinks links single-link\" target=\"_blank\" "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">https://www.torproject.org/about/sponsors</a>"
-" for more.)"
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:228
-msgid "The Tor Project spends about $4 million annually."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:306
-msgid ""
-"In past years, some people couldn't complete the donation process, and one "
-"person had their PayPal account temporarily frozen."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:308
-msgid "If you run into any problems donating via PayPal, please let us know."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:318
-msgid ""
-"To donate using a major credit card or debit card (VISA, MasterCard, "
-"Discover or American Express) or via PayPal, please visit our <a "
-"href=\"https://donate.torproject.org\">donate page</a>."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:344
-msgid ""
-"These people typically use a very small amount for their testing, and we've "
-"found that setting a $1 minimum donation seems to deter them."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:354
-msgid ""
-"No, no, no! More funding from you means we can do more things we are excited"
-" to do, like hire a person to monitor the Tor network full time, or "
-"research, test, and implement ideas we have for making the Tor network even "
-"stronger."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:360
-msgid "Can I donate via bitcoin?"
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:364
-msgid ""
-"Yes! We accept <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/donate/donate-options.html.en\">bitcoin "
-"via BitPay</a>."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:374
-msgid ""
-"You can donate by <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/donate/donate-"
-"options.html.en#cash\">sending us a postal money order</a>."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:376
-msgid ""
-"You can donate via bitcoin if you have bitcoin set up in a way that "
-"preserves your anonymity."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:380
-msgid ""
-"There are probably other ways to donate anonymously that we haven't thought "
-"of-- maybe you will :)"
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:391
-msgid ""
-"If you donate $5,000 or more to the Tor Project in a single year, we are "
-"required to report the donation amount and your name and address (if we have"
-" it) to the IRS, on Schedule B of the Form 990, which is filed annually."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:397
-msgid ""
-"(Also, if you wanted, you could give us $4,999 in late 2018 and $4,999 in "
-"early 2019.)"
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:429
-msgid ""
-"If it's important to you that your donations be tax-deductible in a "
-"different country, let us know and we will try to offer tax-deductibility in"
-" your country in future."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:431
-msgid ""
-"Or, if you are in Germany, France or Sweden, <a class=\"hyperlinks links\" "
-"target=\"_blank\" "
-"href=\"https://www.torproject.org/docs/faq.html.en#RelayDonations\">these "
-"organizations support the Tor network</a> and may be able to offer you tax-"
-"deductibility for your donation."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:437
-msgid ""
-"What if I don't want to use credit card or PayPal? Is there another way I "
-"can donate?"
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:441
-msgid ""
-"Yes! Here is a list of <a href=\"https://www.torproject.org/donate/donate-"
-"options.html.en\" class=\"hyperlinks links\" target=\"_blank\">other ways "
-"you can donate.</a>"
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:480
-msgid ""
-"Our mailing address is The Tor Project, 217 First Avenue South #4903, "
-"Seattle WA 98194, USA"
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:490
-msgid "Yes"
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:502
-msgid ""
-"The fastest way to find out if your company matches donations is usually by "
-"checking with your HR department, or you can search for your company name at"
-" <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.matchinggifts.com/rit/\">https://www.matchinggifts.com/rit/</a>."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:504
-msgid ""
-"If your company isn't currently set up to match donations to the Tor "
-"Project, we would be happy to help with the paperwork."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:518
-msgid ""
-"If you want to get involved with the Tor Project, <a class=\"hyperlinks "
-"links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">this is a "
-"good place to start</a>."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:528
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:76
msgid ""
-"A variety of thank-you gifts for donors, including t-shirts, hoodies and "
-"stickers, are presented on our main <a "
-"href=\"https://donate.torproject.org\">donation page</a>."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:548
-msgid "No, Tor doesn't currently participate in the CFC program."
-msgstr ""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:572
-msgid "Typically no, we don't encourage people to donate hardware."
+"It's an incredible time to stand up for world-leading security and privacy "
+"software."
msgstr ""
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:574
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:78
msgid ""
-"But if you want to make a hardware donation that you think might be "
-"especially useful for us, please mail <span "
-"class=\"email\">giving(at)torproject.org</span>."
+"Tell family, friends, and colleagues that you're supporting privacy and "
+"security and taking back the internet with Tor!"
msgstr ""
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:586
-msgid ""
-"Here's a <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">list of "
-"areas where we would love your help</a>."
+#: tmp/cache_locale/05/05c65ace52301a00198c48e1d823da2c14fbd489e7fb45efbca4e79e5709cbdb.php:53
+msgid "Processing Donation - Tor"
msgstr ""
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:602
-msgid ""
-"Maybe your company would be willing to <a class=\"hyperlinks links\" "
-"target=\"_blank\" "
-"href=\"https://www.torproject.org/docs/faq.html.en#HowDoIDecide\">operate a "
-"Tor relay</a>."
+#: tmp/cache_locale/05/05c65ace52301a00198c48e1d823da2c14fbd489e7fb45efbca4e79e5709cbdb.php:64
+msgid "Processing Donation. Please Wait..."
msgstr ""
#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:83
diff --git a/locale/tr/LC_MESSAGES/messages.po b/locale/tr/LC_MESSAGES/messages.po
index 9501d97747..397a4d02d4 100644
--- a/locale/tr/LC_MESSAGES/messages.po
+++ b/locale/tr/LC_MESSAGES/messages.po
@@ -1,3 +1,4 @@
+#
# Translators:
# Kaan Kudret Kölköy <kaanklky(a)gmail.com>, 2018
# Translinguini <translinguini(a)gmail.com>, 2018
@@ -5,12 +6,12 @@
# Hakan Y <hakan_yalniz(a)live.com>, 2018
# psiphon3 <psiphon3(a)gmail.com>, 2018
# Alperen Kitapçı <alperenmirac(a)gmail.com>, 2019
+# 0d1bdb3b9a0d4e8f77bc854af8bf3dfc_e6913f4, 2019
# Lale Fatoş Tunçman <latuna63(a)gmail.com>, 2019
# Taha Karadoğan <tahakaradogan(a)gmail.com>, 2019
-# Arda Büyükkaya <ardabuyukkaya(a)protonmail.com>, 2019
# erinm, 2019
+# Arda Büyükkaya <ardabuyukkaya(a)protonmail.com>, 2019
# T. E. Kalayci <tekrei(a)gmail.com>, 2019
-# Cenk Yıldızlı <goncagul(a)national.shitposting.agency>, 2019
# Kaya Zeren <kayazeren(a)gmail.com>, 2020
#
msgid ""
@@ -34,258 +35,7 @@ msgstr "Tor kullanın İnterneti geri alın"
msgid "Give today, and Mozilla will match your donation."
msgstr "Bugün yaptığınız her bağış kadar Mozilla da bağış yapacak."
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:34
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:53
-msgid "Tor Privacy Policy"
-msgstr "Tor Gizlilik İlkesi"
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:44
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:64
-msgid "Donor privacy policy"
-msgstr "Bağışçı gizlilik ilkesi"
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:58
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:79
-msgid ""
-"The Tor Project respects donor privacy and welcomes anonymous donations."
-msgstr ""
-"Tor Projesi bağışçılarının gizliliğine saygı gösterir ve anonim bağışları da"
-" kabul eder."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:60
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:81
-msgid ""
-"If being anonymous is important to you, the best way to preserve your "
-"anonymity is by donating using a method that doesn't disclose your personal "
-"information."
-msgstr ""
-"Sizin için anonim kalmak önemli ise kullanabileceğiniz en iyi yol kişisel "
-"bilgilerinizi içermeyen bir yöntem ile bağış yapmaktır."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:65
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:86
-msgid ""
-"If you provide personal information as part of the donation process, it may "
-"be collected and retained by third-party service providers and/or the Tor "
-"Project, as described below."
-msgstr ""
-"Bağış işlemi sırasında kişisel bir bilgi verirseniz, bu bilgiler aşağıda "
-"açıklandığı şekilde üçüncü taraf hizmet sağlayıcıları ve/veya Tor Projesi "
-"tarafından toplanıp saklanabilir."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:67
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:88
-msgid ""
-"The Tor Project has very little influence over how third-party service "
-"providers, such as PayPal, may collect and use your information."
-msgstr ""
-"Tor Projesi, PayPal gibi üçüncü taraf hizmet sağlayıcılarının bilgilerinizi "
-"nasıl toplayabileceği ve kullanabileceği üzerinde çok az etkisi vardır. Bu "
-"hizmet sağlayıcılar bilgilerinizi toplayabilir ve kullanabilir."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:69
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:90
-msgid ""
-"We recommend you familiarize yourself with their <a class=\"hyperlinks "
-"links\" target=\"_blank\" href=\"https://www.paypal.com/webapps/mpp/ua"
-"/privacy-full\">policies</a>, especially if you have privacy concerns."
-msgstr ""
-"Özellikle gizliliğiniz konusunda endişeleriniz varsa, bu hizmet "
-"sağlayıcıların <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.paypal.com/webapps/mpp/ua/privacy-full\">politikaları</a>"
-" hakkında bilgi edinmenizi öneririz."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:74
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:95
-msgid ""
-"When you donate to the Tor Project, depending what mechanism you use, we may"
-" learn your name, the amount you donated, your email address, phone number "
-"and/or mailing address, as well as any other information you provide."
-msgstr ""
-"Tor Projesine bağış yaptığınızda, kullandığınız yönteme bağlı olarak, "
-"adınızı, bağışladığınız tutarı, e-posta adresinizi, telefon numaranızı "
-"ve/veya posta adresinizi ve vereceğiniz diğer bilgileri öğrenebiliriz."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:76
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:97
-msgid ""
-"We may also learn incidental data such as the date and time of your "
-"donation."
-msgstr ""
-"Ayrıca bağışınızın tarih ve saati gibi anlık bilgileri de öğrenebiliriz."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:78
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:99
-msgid ""
-"The Tor Project will never have access to your financial data, such as your "
-"credit card information.We aim to be careful with your information."
-msgstr ""
-"Tor Projesi asla kredi kartınız gibi mali bilgilerinizi almaz. Kişisel "
-"bilgilerinizi korumaya özen gösteririz."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:83
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:104
-msgid ""
-"If you have provided your email address, we will email you once to thank you"
-" and give you a receipt."
-msgstr ""
-"E-posta adresinizi verdiyseniz, size teşekkür etmek ve alındınızı göndermek "
-"bir kez e-posta göndereceğiz."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:85
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:106
-msgid ""
-"If you opt in during the donation process, we may email you again in future."
-msgstr ""
-"Bağış işlemi sırasında abone olursanız, ileride size başka e-postalar da "
-"gönderebiliriz."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:87
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:108
-msgid ""
-"If you donate more than $5,000 and we know your name and address, we are "
-"required to disclose it to the IRS in <a class=\"hyperlinks links\" "
-"target=\"_blank\" href=\"https://www.irs.gov/pub/irs-"
-"pdf/f990ezb.pdf\">Schedule B of the Form 990</a>."
-msgstr ""
-"$5.000 tutarından büyük bir bağış yapıyorsanız ve adınız ile adresinizi "
-"biliyorsak, <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.irs.gov/pub/irs-pdf/f990ezb.pdf\">990 Numaralı Formun B "
-"maddesinde</a> vergi dairesine bildirmemiz gerekiyor."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:89
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:110
-msgid ""
-"But, that information is redacted from the publicly-available version of our"
-" Form 990."
-msgstr ""
-"Ancak bu bilgileri herkese açık olarak sunduğumuz 990 numaralı formda "
-"gizleyeceğiz."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:91
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:112
-msgid ""
-"We will never publicly identify you as a donor without your permission."
-msgstr "İzniniz olmadan asla sizi bağışçımız olarak ilan etmeyeceğiz."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:96
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:117
-msgid "We do not publish, sell, trade, or rent any information about you."
-msgstr ""
-"Sizinle ilgili herhangi bir bilgiyi yayınlamayacağız, satmayacağız, takas "
-"etmeyeceğiz ya da kiralamayacağız."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:98
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:119
-msgid ""
-"For our records, we retain your name, the amount of your donation, the date "
-"of the donation, and your contact information."
-msgstr ""
-"Kayıtlarımız için adınızı, bağış tutarınızı, bağış tarihinizi ve iletişim "
-"bilgilerinizi tutacağız."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:100
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:121
-msgid ""
-"Access to that information is restricted inside the Tor Project to people "
-"who need it to do their work, for example by thanking you or mailing you a "
-"t-shirt."
-msgstr ""
-"Bu bilgileri Tor Projesi içinde teşekkür e-postası ya da tişört göndermek "
-"gibi işleri gereği erişmesi gereken kişiler dışında kimse bakmayacak. "
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:105
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:126
-msgid ""
-"<span class=\"bold\">The Tor Project very much appreciates all its donors. "
-"Thank you for supporting Tor</span>."
-msgstr ""
-"<span class=\"bold\">Tor Projesi tüm bağışçılarına minnettardır. Tor "
-"uygulamasını desteklediğiniz için teşekkürler</span>."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:113
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:134
-#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:851
-#: tmp/cache_locale/17/179dc1a0f488d5bbb8c128dc5c0fb35d6240d83414df10335a1cf4031139609a.php:183
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:656
-msgid "Back to Donate Page"
-msgstr "Bağış Sayfasına Geri Dön"
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:35
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:54
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:35
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:54
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:54
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:35
-#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:54
-msgid "Support the Tor Project Today!"
-msgstr "Tor Projesine Hemen Destek Olabilirsiniz!"
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:61
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:83
-msgid "Want to donate by credit card or PayPal?"
-msgstr "Kredi kartı ya da PayPal ile bağış yapmak ister misiniz?"
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:70
-msgid ""
-"Thanks for your interest in donating cryptocurrency to the Tor Project."
-msgstr ""
-"Tor projesine kripto para birimi ile bağış yapmaya gösterdiğiniz ilgi için "
-"teşekkür ederiz."
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:77
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:133
-msgid ""
-"Please fill out this form and then send your coins to the appropriate "
-"wallet."
-msgstr "Lütfen bu formu doldurup kripto paralarınızı ilgili cüzdana gönderin."
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:79
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:135
-msgid ""
-"Filling out the form is not necessary, but doing so will notify us about "
-"your donation quickly, allow us to send you an acknowledgement, and let us "
-"know your communication preferences."
-msgstr ""
-"Formu doldurmanız şart değildir. Ancak doldurursanız yaptığınız bağıştan "
-"daha çabuk haberimiz olur, iletişim bilgilerinizi alabilir ve size "
-"işleminizle ilgili bilgi verebiliriz."
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:85
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:141
-msgid ""
-"Below you will find the cryptocurrencies we accept and our wallet addresses."
-msgstr ""
-"Aşağıda kabul ettiğimiz kripto para birimlerini ve cüzdan adreslerimizi "
-"bulabilirsiniz."
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:87
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:143
-msgid ""
-"The wallet addresses will be displayed again after you complete the form."
-msgstr "Cüzdan adresleri formu doldurduktan sonra da yeniden görüntülenir."
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:89
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:145
-msgid ""
-"Please make sure to copy the wallet addresses exactly when making your "
-"donation, as we cannot recover funds sent to the wrong wallet."
-msgstr ""
-"Lütfen bağışınızı yaparken cüzdan adreslerini doğru kopyaladığınızdan emin "
-"olun. Yanlış cüzdana gönderilen bağışları geri alamayız."
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:95
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:151
-msgid ""
-"If you have any questions, or would like to donate a cryptocurrency not "
-"listed below, please email us at giving(a)torproject.org."
-msgstr ""
-"Sorularınız varsa ya da bağış yapmak istediğiniz kripto para birimi "
-"aşağıdaki listede bulunmuyorsa giving(a)torproject.org adresine "
-"yazabilirsiniz."
-
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:47
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:29
msgid ""
"The European shirt fits run a little small so you might want to consider "
"sizing up."
@@ -294,67 +44,55 @@ msgstr ""
"isteyebilirsiniz."
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:54
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:36
msgid "Fit"
msgstr "Kesim"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:58
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:40
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:508
msgid "Select Fit"
msgstr "Kesim Seçin"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:62
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:44
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:500
msgid "Slim"
msgstr "Dar"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:66
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:48
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:496
msgid "Classic"
msgstr "Klasik"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:74
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:56
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:504
msgid "European"
msgstr "Avrupa"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:84
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:66
msgid "Size"
msgstr "Beden"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:88
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:70
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:512
msgid "Select Size"
msgstr "Beden Seçin"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:92
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:74
msgid "S"
msgstr "S"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:96
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:78
msgid "M"
msgstr "M"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:100
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:82
msgid "L"
msgstr "L"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:104
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:86
msgid "XL"
msgstr "XL"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:108
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:90
msgid "XXL"
msgstr "XXL"
@@ -369,17 +107,24 @@ msgid "Donate to the Tor Project."
msgstr "Tor Projesine bağış yapın."
#: tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:58
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:63
-#: tmp/cache_locale/2c/2c32942b896dd845bd6204d3104922983a843d726e231446ff21ddb2a33f6cda.php:40
msgid "summary_large_image"
msgstr "ozet_buyuk_gorsel"
#: tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:62
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:67
-#: tmp/cache_locale/2c/2c32942b896dd845bd6204d3104922983a843d726e231446ff21ddb2a33f6cda.php:44
msgid "@torproject"
msgstr "@torproject"
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:54
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:54
+#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:54
+#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:54
+msgid "Support the Tor Project Today!"
+msgstr "Tor Projesine Hemen Destek Olabilirsiniz!"
+
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:83
+msgid "Want to donate by credit card or PayPal?"
+msgstr "Kredi kartı ya da PayPal ile bağış yapmak ister misiniz?"
+
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:92
msgid "Donate using BTCPayServer"
msgstr "BTCPayServer ile bağış yapın"
@@ -388,6 +133,51 @@ msgstr "BTCPayServer ile bağış yapın"
msgid "Donate using wallet addresses"
msgstr "Cüzdan adresi ile bağış yapın"
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:133
+msgid ""
+"Please fill out this form and then send your coins to the appropriate "
+"wallet."
+msgstr "Lütfen bu formu doldurup kripto paralarınızı ilgili cüzdana gönderin."
+
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:135
+msgid ""
+"Filling out the form is not necessary, but doing so will notify us about "
+"your donation quickly, allow us to send you an acknowledgement, and let us "
+"know your communication preferences."
+msgstr ""
+"Formu doldurmanız şart değildir. Ancak doldurursanız yaptığınız bağıştan "
+"daha çabuk haberimiz olur, iletişim bilgilerinizi alabilir ve size "
+"işleminizle ilgili bilgi verebiliriz."
+
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:141
+msgid ""
+"Below you will find the cryptocurrencies we accept and our wallet addresses."
+msgstr ""
+"Aşağıda kabul ettiğimiz kripto para birimlerini ve cüzdan adreslerimizi "
+"bulabilirsiniz."
+
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:143
+msgid ""
+"The wallet addresses will be displayed again after you complete the form."
+msgstr "Cüzdan adresleri formu doldurduktan sonra da yeniden görüntülenir."
+
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:145
+msgid ""
+"Please make sure to copy the wallet addresses exactly when making your "
+"donation, as we cannot recover funds sent to the wrong wallet."
+msgstr ""
+"Lütfen bağışınızı yaparken cüzdan adreslerini doğru kopyaladığınızdan emin "
+"olun. Yanlış cüzdana gönderilen bağışları geri alamayız."
+
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:151
+msgid ""
+"If you have any questions, or would like to donate a cryptocurrency not "
+"listed below, please email us at giving(a)torproject.org."
+msgstr ""
+"Sorularınız varsa ya da bağış yapmak istediğiniz kripto para birimi "
+"aşağıdaki listede bulunmuyorsa giving(a)torproject.org adresine "
+"yazabilirsiniz."
+
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:166
msgid "Copied"
msgstr "Kopyalandı"
@@ -398,13 +188,11 @@ msgstr "Para birimi tutarı bir sayı olmalıdır."
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:174
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:69
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:51
msgid "Choose a Currency"
msgstr "Bir Para Birimi Seçin"
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:178
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:91
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:73
msgid "Currency Amount"
msgstr "Para Birimi Tutarı"
@@ -418,187 +206,226 @@ msgstr "Bağış yaptığımın bilinmesini istemiyorum. "
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:188
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:64
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:46
msgid "Email"
msgstr "E-posta"
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:192
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:320
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:319
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:47
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:29
msgid "First Name"
msgstr "Ad"
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:196
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:324
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:323
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:51
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:33
msgid "Last Name"
msgstr "Soyad"
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:200
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:98
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:80
msgid "Report Donation"
msgstr "Bağış Bildirimi"
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:204
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:370
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:369
msgid "Start sending me email updates about the Tor Project!"
msgstr "Bana Tor Projesi hakkında e-posta güncellemeleri gönderilsin!"
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:208
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:105
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:87
msgid "Wallet Addresses"
msgstr "Cüzdan Adresleri"
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:212
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:311
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:310
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:42
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:24
msgid "Your Info"
msgstr "Bilgileriniz"
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:34
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:34
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:53
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:53
-msgid "Tor Thanks You"
-msgstr "Tor Size Teşekkür Ediyor"
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:53
+msgid "Tor Privacy Policy"
+msgstr "Tor Gizlilik İlkesi"
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:44
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:44
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:64
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:64
-msgid "Thank you!"
-msgstr "Teşekkürler!"
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:64
+msgid "Donor privacy policy"
+msgstr "Bağışçı gizlilik ilkesi"
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:51
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:51
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:71
-msgid "Thank you for supporting Tor's Strength in Numbers campaign."
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:79
+msgid ""
+"The Tor Project respects donor privacy and welcomes anonymous donations."
msgstr ""
-"Tor Strength in Numbers (Birlikten Kuvvet Doğar) kampanyasına destek "
-"olduğunuz için teşekkür ederiz."
+"Tor Projesi bağışçılarının gizliliğine saygı gösterir ve anonim bağışları da"
+" kabul eder."
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:53
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:53
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:63
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:73
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:70
-msgid "You should receive an email receipt shortly."
-msgstr "Faturanız kısa süre içinde e-posta adresinize gönderilecek."
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:81
+msgid ""
+"If being anonymous is important to you, the best way to preserve your "
+"anonymity is by donating using a method that doesn't disclose your personal "
+"information."
+msgstr ""
+"Sizin için anonim kalmak önemli ise kullanabileceğiniz en iyi yol kişisel "
+"bilgilerinizi içermeyen bir yöntem ile bağış yapmaktır."
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:55
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:55
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:75
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:86
msgid ""
-"With your support and the generous matching funds from Mozilla, we'll be "
-"able to tackle ambitious projects, such as developing a more secure, "
-"privacy-enhancing browser for mobile devices and making it easier for third-"
-"party developers to integrate Tor into their applications."
+"If you provide personal information as part of the donation process, it may "
+"be collected and retained by third-party service providers and/or the Tor "
+"Project, as described below."
msgstr ""
-"Desteğiniz ve cömert Mozilla bağış katlama fonları sayesinde, mobil aygıtlar"
-" için daha güvenli ve gizliliği arttıracak bir tarayıcı geliştirmenin "
-"yanında üçüncü taraf geliştiricilerin uygulamalarını Tor ile "
-"bütünleştirmesini kolaylaştırmak gibi iddialı projelere girişebileceğiz. ."
+"Bağış işlemi sırasında kişisel bir bilgi verirseniz, bu bilgiler aşağıda "
+"açıklandığı şekilde üçüncü taraf hizmet sağlayıcıları ve/veya Tor Projesi "
+"tarafından toplanıp saklanabilir."
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:61
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:81
-msgid "Thank you for standing up for privacy and freedom online."
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:88
+msgid ""
+"The Tor Project has very little influence over how third-party service "
+"providers, such as PayPal, may collect and use your information."
msgstr ""
-"Çevrimiçi özgürlük ve kişisel gizlilik için verdiğiniz desteğe teşekkür "
-"ederiz."
+"Tor Projesi, PayPal gibi üçüncü taraf hizmet sağlayıcılarının bilgilerinizi "
+"nasıl toplayabileceği ve kullanabileceği üzerinde çok az etkisi vardır. Bu "
+"hizmet sağlayıcılar bilgilerinizi toplayabilir ve kullanabilir."
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:63
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:83
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:90
msgid ""
-"With your gift of cryptocurrency, you're helping the Tor Project give "
-"millions of people private access to the open web."
+"We recommend you familiarize yourself with their <a class=\"hyperlinks "
+"links\" target=\"_blank\" href=\"https://www.paypal.com/webapps/mpp/ua"
+"/privacy-full\">policies</a>, especially if you have privacy concerns."
msgstr ""
-"Yaptığınız kripto para birimi bağışı ile Tor Projesinin milyonlarca insana "
-"kişisel gizliliklerini koruyarak açık web erişimi sağlamasına yardımcı "
-"oldunuz."
+"Özellikle gizliliğiniz konusunda endişeleriniz varsa, bu hizmet "
+"sağlayıcıların <a class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://www.paypal.com/webapps/mpp/ua/privacy-full\">politikaları</a>"
+" hakkında bilgi edinmenizi öneririz."
+
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:95
+msgid ""
+"When you donate to the Tor Project, depending what mechanism you use, we may"
+" learn your name, the amount you donated, your email address, phone number "
+"and/or mailing address, as well as any other information you provide."
+msgstr ""
+"Tor Projesine bağış yaptığınızda, kullandığınız yönteme bağlı olarak, "
+"adınızı, bağışladığınız tutarı, e-posta adresinizi, telefon numaranızı "
+"ve/veya posta adresinizi ve vereceğiniz diğer bilgileri öğrenebiliriz."
+
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:97
+msgid ""
+"We may also learn incidental data such as the date and time of your "
+"donation."
+msgstr ""
+"Ayrıca bağışınızın tarih ve saati gibi anlık bilgileri de öğrenebiliriz."
+
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:99
+msgid ""
+"The Tor Project will never have access to your financial data, such as your "
+"credit card information.We aim to be careful with your information."
+msgstr ""
+"Tor Projesi asla kredi kartınız gibi mali bilgilerinizi almaz. Kişisel "
+"bilgilerinizi korumaya özen gösteririz."
+
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:104
+msgid ""
+"If you have provided your email address, we will email you once to thank you"
+" and give you a receipt."
+msgstr ""
+"E-posta adresinizi verdiyseniz, size teşekkür etmek ve alındınızı göndermek "
+"bir kez e-posta göndereceğiz."
+
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:106
+msgid ""
+"If you opt in during the donation process, we may email you again in future."
+msgstr ""
+"Bağış işlemi sırasında abone olursanız, ileride size başka e-postalar da "
+"gönderebiliriz."
+
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:108
+msgid ""
+"If you donate more than $5,000 and we know your name and address, we are "
+"required to disclose it to the IRS in <a class=\"hyperlinks links\" "
+"target=\"_blank\" href=\"https://www.irs.gov/pub/irs-"
+"pdf/f990ezb.pdf\">Schedule B of the Form 990</a>."
+msgstr ""
+"$5.000 tutarından büyük bir bağış yapıyorsanız ve adınız ile adresinizi "
+"biliyorsak, <a class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://www.irs.gov/pub/irs-pdf/f990ezb.pdf\">990 Numaralı Formun B "
+"maddesinde</a> vergi dairesine bildirmemiz gerekiyor."
+
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:110
+msgid ""
+"But, that information is redacted from the publicly-available version of our"
+" Form 990."
+msgstr ""
+"Ancak bu bilgileri herkese açık olarak sunduğumuz 990 numaralı formda "
+"gizleyeceğiz."
+
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:112
+msgid ""
+"We will never publicly identify you as a donor without your permission."
+msgstr "İzniniz olmadan asla sizi bağışçımız olarak ilan etmeyeceğiz."
+
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:117
+msgid "We do not publish, sell, trade, or rent any information about you."
+msgstr ""
+"Sizinle ilgili herhangi bir bilgiyi yayınlamayacağız, satmayacağız, takas "
+"etmeyeceğiz ya da kiralamayacağız."
+
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:119
+msgid ""
+"For our records, we retain your name, the amount of your donation, the date "
+"of the donation, and your contact information."
+msgstr ""
+"Kayıtlarımız için adınızı, bağış tutarınızı, bağış tarihinizi ve iletişim "
+"bilgilerinizi tutacağız."
+
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:121
+msgid ""
+"Access to that information is restricted inside the Tor Project to people "
+"who need it to do their work, for example by thanking you or mailing you a "
+"t-shirt."
+msgstr ""
+"Bu bilgileri Tor Projesi içinde teşekkür e-postası ya da tişört göndermek "
+"gibi işleri gereği erişmesi gereken kişiler dışında kimse bakmayacak. "
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:65
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:85
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:126
msgid ""
-"Your contribution helps make Tor an even stronger tool against authoritarian"
-" governments and privacy-invading corporations."
+"<span class=\"bold\">The Tor Project very much appreciates all its donors. "
+"Thank you for supporting Tor</span>."
msgstr ""
-"Bağışınız sayesinde Tor otoriter rejimlere ve kişisel gizliliğe saldıran "
-"kuruluşlara karşı daha güçlü olacak."
+"<span class=\"bold\">Tor Projesi tüm bağışçılarına minnettardır. Tor "
+"uygulamasını desteklediğiniz için teşekkürler</span>."
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:71
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:91
-msgid "For your convenience, our wallet addresses are listed below."
-msgstr "Cüzdan adreslerimizi aşağıda bulabilirsiniz."
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:134
+#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:851
+#: tmp/cache_locale/17/179dc1a0f488d5bbb8c128dc5c0fb35d6240d83414df10335a1cf4031139609a.php:183
+msgid "Back to Donate Page"
+msgstr "Bağış Sayfasına Geri Dön"
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:73
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:93
-msgid ""
-"Please make sure to copy the wallet addresses exactly when making your "
-"donation, as we are unable to recover funds sent to the wrong wallet."
+#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:40
+msgid "See if your employer offers employee gift matching"
msgstr ""
-"Lütfen bağışınızı yaparken cüzdan adreslerini tam olarak doğru "
-"kopyaladığınızdan emin olun. Yanlış cüzdana gönderilen bağışları geri "
-"alamayız."
-
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:77
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:77
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:97
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:82
-msgid "SHARE THE TOR PROJECT"
-msgstr "TOR PROJESİNİ PAYLAŞIN"
+"Kuruluşunuzun çalışanlarına bağış katlama kampanyası yapıp yapmadığını "
+"öğrenin"
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:145
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:115
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:166
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:109
-msgid "Got Skills?"
-msgstr "Destek olabilecek yetenekleriniz mi var?"
+#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:70
+msgid "Company"
+msgstr "Kuruluş"
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:151
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:121
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:172
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:115
-msgid "The Tor network depends on volunteers."
-msgstr "Tor ağı gönüllülerin desteğiyle çalışır."
+#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:78
+msgid "Matching Conditions"
+msgstr "Bağış Katlama Kampanyası Koşulları"
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:157
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:127
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:178
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:121
-msgid ""
-"We need people to run relays, write code, organize the community and spread "
-"the word about our good work."
-msgstr ""
-"Tor aktarıcıları işletecek, kod yazacak, topluluk oluşturacak ve iyi "
-"çalışmalarımızın yayılmasını sağlayacak kişilere ihtiyacımız var."
+#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:86
+msgid "Contact Information"
+msgstr "İletişim Bilgileri"
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:159
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:129
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:180
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:123
-msgid "Learn how you can help."
-msgstr "Nasıl yardım edebileceğinizi öğrenin."
+#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:94
+msgid "Additional Notes"
+msgstr "Ek Notlar"
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:167
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:137
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:188
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:131
-msgid "I Want To Volunteer"
-msgstr "Gönüllü Katkıda Bulunmak İstiyorum"
+#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:102
+msgid "Procedure"
+msgstr "Süreç"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:62
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:84
#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:116
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:134
#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:122
msgid ""
"This page requires Javascript to do PayPal or credit card\n"
@@ -607,10 +434,8 @@ msgstr ""
"Bu sayfada PayPal ya da kredi kartı ile ödeme için\n"
"JavaScript kullanılır. Ancak JavaScript devre dışı gibi görünüyor."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:66
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:88
#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:120
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:138
#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:126
msgid ""
"If you wish to donate without enabling Javascript, please take a look at our"
@@ -621,85 +446,68 @@ msgstr ""
"href=\"https://www.torproject.org/donate/donate-options.html.en\">diğer "
"bağış yöntemleri</a> bölümüne bakabilirsiniz."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:87
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:109
msgid "Number of Donations"
msgstr "Bağış Sayısı"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:103
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:125
msgid "Total Donated"
msgstr "Toplam Bağış Tutarı"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:119
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:141
msgid "Total Raised with Mozilla's Match"
msgstr "Mozilla Bağış Katlama Kampanyası ile Toplam Tutar"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:130
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:136
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:152
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:158
msgid "donate"
msgstr "bağış yapın"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:132
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:154
msgid "once"
msgstr "bir kez"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:138
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:160
msgid "monthly"
msgstr "aylık"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:145
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:167
msgid "Want to donate cryptocurrency?"
msgstr "Kripto para birimi ile bağış yapmak ister misiniz?"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:150
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:172
msgid "Want to donate stock or via postal mail?"
msgstr "Hisse senedi ya da normal posta ile bağış yapmak ister misiniz?"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:166
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:187
msgid "invalid amount"
msgstr "tutar geçersiz"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:170
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:191
msgid "$2 minimum donation"
msgstr "En az bağış tutarı $2"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:174
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:195
msgid "$ other"
msgstr "$ diğer"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:181
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:202
msgid "Choose your gift as a token of our thanks."
msgstr "Minnettarlığımızın ifadesi olarak hediyenizi seçin."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:188
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:209
msgid "No thanks, I don't want a gift."
msgstr "Teşekkürler, bir hediye istemiyorum."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:190
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:211
#, php-format
msgid "I would prefer 100% of my donation to go to the Tor Project's work."
msgstr "Bağışımın tamamının Tor Projesi çalışmasına aktarılmasını yeğlerim."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:201
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:222
msgid "sticker Pack"
msgstr "etiket paketi"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:208
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:229
msgid ""
"A collection of our favorite logo stickers for decorating your stuff and "
@@ -708,385 +516,209 @@ msgstr ""
"Eşyalarınıza yapıştırabileceğiniz ve kameralarınızı kapatabileceğiniz "
"beğenilen logo etiketleri paketi."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:218
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:239
msgid "t-shirt"
msgstr "tişört"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:226
-msgid "Get our limited edition Tor: Strength in Numbers shirt."
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:247
+msgid "Get our limited edition Take Back the Internet With Tor shirt."
msgstr ""
-"Sınırlı sayıda üretilmiş 'Tor: Strength in Numbers' (Birlikten Kuvvet Doğar)"
-" yazılı tişört."
+"Sınırlı sayıda üretilmiş Take Back the Internet with Tor (Tor kullanın "
+"İnterneti geri alın) yazılı tişört."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:237
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:258
msgid "t-shirt pack"
msgstr "tişört paketi"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:247
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:266
msgid ""
-"Our Tor: Strength in Numbers t-shirt, plus one of either our Tor: Powering "
-"the Digital Resistance, Open Observatory of Network Interference (OONI), or "
-"Tor at the Heart of Internet Freedom t-shirts."
-msgstr ""
-"'Tor: Strength in Numbers' (Birlikten Kuvvet Doğar) yazılı tişört yanında "
-"'Tor: Powering the Digital Resistance' (Sayısal Direnişe Katıl), 'Open "
-"Observatory of Network Interference (OONI)' (Açık Ağ İzleme Gözlemevi) ya da"
-" 'Tor at the Heart of Internet Freedom' (Tor İnternet Özgürlüğünün Kalbinde)"
-" tişörtü seçeneklerinden birisi ile."
-
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:253
-msgid "Tor at the Heart of Internet Freedom"
+"Get this year's Take Back the Internet With Tor t-shirt and the Tor: "
+"Strength in Numbers t-shirt."
msgstr ""
-"Tor at the Heart of Internet Freedom (Tor İnternet Özgürlüğünün Kalbinde)"
-
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:257
-msgid "Powering the Digital Resistance"
-msgstr "Powering the Digital Resistance (Sayısal Direnişe Katıl)"
-
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:261
-msgid "Open Observatory of Network Interference"
-msgstr "Open Observatory of Network Interference (Açık Ağ İzleme Gözlemevi)"
+"Bu yılın Take Back the Internet With Tor (Tor kullanın İnterneti geri alın) "
+"ve Tor: Strength in Numbers (Birlikten Kuvvet Doğar) tişörtlerinden alın."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:272
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:277
msgid "sweatshirt"
msgstr "svetşört"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:279
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:284
msgid "Your generous support of Tor gets you this high-quality zip hoodie."
msgstr ""
"Cömert bağışınıza karşılık Tor tarafından kaliteli fermuarlı bir kapüşonlu "
"svetşört hediyesi alabilirsiniz."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:289
-msgid "how do you want to <span class=\"green\">DONATE</span>?"
-msgstr "nasıl <span class=\"green\">BAĞIŞ YAPMAK</span> istersiniz?"
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:294
+msgid "how do you want to <span class=\"lime\">DONATE</span>?"
+msgstr "nasıl <span class=\"lime\">BAĞIŞ YAPMAK</span> istersiniz?"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:295
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:300
msgid "Credit Card"
msgstr "Kredi Kartı"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:304
-msgid "Want to donate Bitcoin, Stock, or via snail mail?"
-msgstr ""
-"Bitcoin, hisse senedi ya da normal posta ile bağış yapmak ister misiniz?"
-
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:315
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:314
msgid "* required fields"
msgstr " * ile işaretli alanların doldurulması zorunludur"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:330
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:329
msgid "Street Address"
msgstr "Adres"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:334
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:333
msgid "Apt."
msgstr "Ap."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:344
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:343
msgid "City"
msgstr "İlçe"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:348
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:347
msgid "State"
msgstr "İl"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:353
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:352
msgid "Zip"
msgstr "Posta Kodu"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:359
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:358
msgid "Enter email"
msgstr "E-posta adresinizi yazın"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:363
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:362
msgid "We‘ll email you your receipt"
msgstr "Alındınızı e-posta ile göndereceğiz"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:377
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:376
msgid "Card Number"
msgstr "Kart Numarası"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:384
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:383
msgid "MM"
msgstr "AA"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:388
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:387
msgid "YY"
msgstr "YY"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:392
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:391
msgid "CVC"
msgstr "CVC"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:400
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:465
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:399
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:472
msgid "Choose your size and fit."
msgstr "Beden ve kesimi seçin."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:405
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:413
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:404
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:412
msgid "T-shirt:"
msgstr "Tişört:"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:423
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:427
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:429
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:422
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:426
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:428
msgid "Comments"
msgstr "Yorumlar"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:435
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:434
msgid "Donating:"
msgstr "Yapılan Bağış:"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:443
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:446
msgid "Donate"
msgstr "Bağış Yapın"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:453
-msgid "Gift Selected"
-msgstr "Seçilmiş Hediye"
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:456
+msgid "State/Province/Region"
+msgstr "İlçe/İl/Bölge"
+
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:460
+msgid "Gift Selected:"
+msgstr "Seçilmiş Hediye:"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:457
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:464
msgid "No Gift Selected"
msgstr "Hediye Seçilmemiş"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:461
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:468
msgid "Sticker Pack"
msgstr "Çıkartma Paketi"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:469
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:476
msgid "T-Shirt"
msgstr "Tişört"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:473
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:480
msgid "Choose your size and fit for each shirt."
msgstr "Her bir tişörtün beden ve kesimini seçin."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:477
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:484
msgid "T-Shirt Pack"
msgstr "Tişört Paketi"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:481
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:607
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:488
-#: tmp/cache_locale/9f/9f870858aaf6c5a7c94ea6a959618fbe485cbfd16174993d34a8e370a4567526.php:75
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:48
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:71
-#: tmp/cache_locale/2c/2c32942b896dd845bd6204d3104922983a843d726e231446ff21ddb2a33f6cda.php:25
-#: tmp/cache_locale/2c/2c32942b896dd845bd6204d3104922983a843d726e231446ff21ddb2a33f6cda.php:48
msgid "Tor: Strength in Numbers"
msgstr "Tor: Birlikten Kuvvet Doğar"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:485
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:492
+msgid "Take back the Internet with Tor"
+msgstr "Tor kullanın İnterneti geri alın."
+
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:516
msgid "Choose your size."
msgstr "Bedeni seçin."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:489
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:520
msgid "Sweatshirt"
msgstr "Svetşört"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:493
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:524
msgid "A required field is missing from the form."
msgstr "Doldurulması zorunlu bir form alanı boş bırakılmış."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:495
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:526
msgid "Please reload the page and try again."
msgstr "Lütfen sayfayı yenileyip yeniden deneyin."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:499
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:530
msgid "There was a problem submitting your request to the server:<br>"
msgstr "İsteğiniz sunucuya iletilirken bir sorun çıktı:<br>"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:503
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:534
msgid "validation failed"
msgstr "doğrulanamadı"
#. notes: __field_name__ will be replaced with the field name in the
#. javascript.
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:509
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:540
msgid "__field_name__ must be filled out."
msgstr "__field_name__ alanı boş bırakılamaz."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:514
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:545
msgid "This field is required"
msgstr "Bu alanın doldurulması zorunludur"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:518
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:549
msgid "Invalid email address."
msgstr "E-posta adresi geçersiz"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:522
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:553
msgid "per month"
msgstr "aylık"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:614
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:622
-#: tmp/cache_locale/9f/9f870858aaf6c5a7c94ea6a959618fbe485cbfd16174993d34a8e370a4567526.php:82
-#: tmp/cache_locale/9f/9f870858aaf6c5a7c94ea6a959618fbe485cbfd16174993d34a8e370a4567526.php:90
-msgid ""
-"Stand up for the universal human rights to privacy and freedom and help keep"
-" Tor robust and secure."
-msgstr ""
-"Evrensel insan hakları olan kişisel gizlilik ve özgürlük için destek vererek"
-" Tor ağının sağlam ve güvende kalmasına yardımcı olun."
-
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:616
-#: tmp/cache_locale/9f/9f870858aaf6c5a7c94ea6a959618fbe485cbfd16174993d34a8e370a4567526.php:84
-msgid "Mozilla will match your gift and double your impact."
-msgstr "Mozilla eşit miktarda bir bağış yapacak ve bağışınız katlanacak."
-
-#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:40
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:22
-msgid "See if your employer offers employee gift matching"
-msgstr ""
-"Kuruluşunuzun çalışanlarına bağış katlama kampanyası yapıp yapmadığını "
-"öğrenin"
-
-#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:70
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:52
-msgid "Company"
-msgstr "Kuruluş"
-
-#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:78
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:60
-msgid "Matching Conditions"
-msgstr "Bağış Katlama Kampanyası Koşulları"
-
-#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:86
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:68
-msgid "Contact Information"
-msgstr "İletişim Bilgileri"
-
-#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:94
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:76
-msgid "Additional Notes"
-msgstr "Ek Notlar"
-
-#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:102
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:84
-msgid "Procedure"
-msgstr "Süreç"
-
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:247
-msgid "Get our limited edition Take Back the Internet With Tor shirt."
-msgstr ""
-"Sınırlı sayıda üretilmiş Take Back the Internet with Tor (Tor kullanın "
-"İnterneti geri alın) yazılı tişört."
-
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:266
-msgid ""
-"Get this year's Take Back the Internet With Tor t-shirt and the Tor: "
-"Strength in Numbers t-shirt."
-msgstr ""
-"Bu yılın Take Back the Internet With Tor (Tor kullanın İnterneti geri alın) "
-"ve Tor: Strength in Numbers (Birlikten Kuvvet Doğar) tişörtlerinden alın."
-
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:294
-msgid "how do you want to <span class=\"lime\">DONATE</span>?"
-msgstr "nasıl <span class=\"lime\">BAĞIŞ YAPMAK</span> istersiniz?"
-
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:456
-msgid "State/Province/Region"
-msgstr "İlçe/İl/Bölge"
-
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:460
-msgid "Gift Selected:"
-msgstr "Seçilmiş Hediye:"
-
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:492
-msgid "Take back the Internet with Tor"
-msgstr "Tor kullanın İnterneti geri alın."
-
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:557
msgid "Gift selected"
msgstr "Hediye seçilmiş"
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:61
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:68
-msgid "Thank you for your support of the Tor Project."
-msgstr "Tor Projesini desteklediğiniz için teşekkürler."
-
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:65
-msgid ""
-"With your support, we'll be able to tackle ambitious projects, such as "
-"developing a more secure, privacy-enhancing browser for mobile devices and "
-"making it easier for third-party developers to integrate Tor into their "
-"applications."
-msgstr ""
-"Desteğiniz sayesinde, mobil aygıtlar için daha güvenli ve gizliliği "
-"arttıracak bir tarayıcı geliştirmenin yanında, üçüncü taraf geliştiricilerin"
-" uygulamalarını Tor ile bütünleştirmesini kolaylaştırmak gibi iddialı "
-"projelere girişebileceğiz. ."
-
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:71
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:76
-msgid ""
-"It's an incredible time to stand up for world-leading security and privacy "
-"software."
-msgstr ""
-"Dünya lideri güvenlik ve gizlilik yazılımı için ayağa kalkmanın tam zamanı."
-
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:73
-msgid ""
-"Tell family, friends, and colleagues that you're supporting privacy and "
-"security with Tor!"
-msgstr ""
-"Tor kullarak kişisel gizliliğinizi koruduğunuzu ve güvende kaldığınızı "
-"arkadaşlarınıza ve ailenize duyurun!"
-
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:59
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:41
msgid "Estimated Donation Date:"
msgstr "Öngörülen Bağış Tarihi:"
#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:83
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:101
msgid "Become a Defender of Privacy!"
msgstr "Bir Kişisel Gizlilik Savunucusu Olun!"
#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:87
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:105
msgid ""
"Join the Tor Project - Defenders of Privacy program - a monthly giving "
"circle designed to honor donors that make privacy a priority."
@@ -1117,18 +749,15 @@ msgstr ""
"desteğine güveniyor."
#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:97
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:115
msgid "With your help, we will make the Tor network accessible to everyone!"
msgstr ""
"Sizin de yardımınızla, Tor ağını herkesin erişebileceği hale getireceğiz!"
#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:101
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:119
msgid "Together, we will stand up for the universal right to privacy."
msgstr "Birlikte, evrensel kişisel gizlilik hakkını savunacağız."
#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:103
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:121
msgid ""
"Please make your monthly donation now and stand with the Tor Project at this"
" critical time."
@@ -1137,22 +766,10 @@ msgstr ""
"olun."
#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:109
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:127
msgid "Want to make a one time donation instead?"
msgstr "Aylık bağış yerine bir kerelik bir bağış yapmak ister misiniz?"
-#: tmp/cache_locale/92/9248b30ecfc0bb3509fc7e1db98f98ec86e72399ad551da3d5abe54c7cd987af.php:34
-#: tmp/cache_locale/05/05c65ace52301a00198c48e1d823da2c14fbd489e7fb45efbca4e79e5709cbdb.php:53
-msgid "Processing Donation - Tor"
-msgstr "Bağışınız İşleniyor - Tor"
-
-#: tmp/cache_locale/92/9248b30ecfc0bb3509fc7e1db98f98ec86e72399ad551da3d5abe54c7cd987af.php:44
-#: tmp/cache_locale/05/05c65ace52301a00198c48e1d823da2c14fbd489e7fb45efbca4e79e5709cbdb.php:64
-msgid "Processing Donation. Please Wait..."
-msgstr "Bağışınız işleniyor. Lütfen bekleyin..."
-
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:43
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:25
msgid ""
"The Tor Project is a US 501(c)(3) non-profit organization advancing human "
"rights and freedoms by creating and deploying free and open source anonymity"
@@ -1166,32 +783,26 @@ msgstr ""
"sağlamak amacıyla kar amacı gütmeden çalışan bir kuruluştur."
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:49
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:31
msgid "Subscribe to Our Newsletter"
msgstr "Bültenimize Abone Olun"
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:53
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:35
msgid "Get monthly updates and opportunities from the Tor Project."
msgstr "Tor Projesi hakkında aylık güncelleme ve fırsatları alın."
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:57
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:39
msgid "Sign Up"
msgstr "Kayıt Olun"
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:65
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:47
msgid "Donate FAQs"
msgstr "Bağış Hakkında Sorular"
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:69
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:51
msgid "Privacy Policy"
msgstr "Gizlilik İlkesi"
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:85
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:67
msgid ""
"Designed and built by <span class=\"stamp-bold\"><a "
"href=\"https://www.giantrabbit.com/\" class=\"stamp-bold\" "
@@ -1202,17 +813,14 @@ msgstr ""
"tasarlanıp geliştirilmiştir."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:53
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:34
msgid "Tor Donor FAQ"
msgstr "Tor Bağışçısı Soruları"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:64
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:44
msgid "Questions?"
msgstr "Sorularınız mı var?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:80
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:59
msgid ""
"If your question isn’t answered below, email <span "
"class=\"email\">frontdesk(at)rt.torproject.org</span> with general Tor "
@@ -1292,7 +900,6 @@ msgstr ""
"class=\"email\">giving(a)torproject.org</span> adresine yazın."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:149
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:66
msgid "What is the Tor Project and what does it do?"
msgstr "Tor Projesi nedir ve ne yapar?"
@@ -1326,17 +933,14 @@ msgstr ""
"çalışan bir kuruluştur."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:159
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:76
msgid "It was founded in 2006."
msgstr "2006 yılında kurulmuştur."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:165
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:82
msgid "Who works for the Tor Project, and what do they do?"
msgstr "Tor Projesinin çalışanları kimlerdir ve ne yaparlar?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:169
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:86
msgid ""
"Thousands of people around the world actively support the work of the Tor "
"Project, including developers, designers, relay operators, researchers, "
@@ -1350,14 +954,12 @@ msgstr ""
"yapılmıyor."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:171
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:88
msgid ""
"The paid staff of the Tor Project is very small: about 47 people in total."
msgstr ""
"Tor Projesinin ücretli çalışan sayısı çok azdır: toplam 47 kişi civarında."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:173
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:90
msgid ""
"You can read about the core contributors to the Tor Project on our <a "
"class=\"hyperlinks\" target=\"_blank\" "
@@ -1370,12 +972,10 @@ msgstr ""
"class=\"links\">Çekirdek Tor Ekibi</span></a> bölümüne bakabilirsiniz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:178
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:95
msgid "Who uses Tor?"
msgstr "Kimler Tor kullanır?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:182
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:99
msgid ""
"The vast majority of Tor users are ordinary people who want control of their"
" privacy online or people whose internet use is censored."
@@ -1384,7 +984,6 @@ msgstr ""
"isteyen ya da İnternet kullanımına engeller konulmuş sıradan insanlardır."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:184
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:101
msgid ""
"Other Tor users are journalists, human rights defenders, domestic violence "
"survivors, policymakers, diplomats, and academic and research institutions."
@@ -1394,12 +993,10 @@ msgstr ""
"ile araştırma kuruluşlarıdır."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:190
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:107
msgid "Can anyone use Tor?"
msgstr "Herkes Tor kullanabilir mi?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:194
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:111
msgid "Yes! Tor is free, and anyone can use it."
msgstr "Kesinlikle! Tor ücretsizdir ve isteyen herkes kullanabilir."
@@ -1437,12 +1034,10 @@ msgstr ""
"indirme işleminin nasıl yapılacağını anlattık."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:204
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:121
msgid "What kinds of people support Tor?"
msgstr "Tor kimler tarafından desteklenir?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:208
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:125
msgid "All kinds of people."
msgstr "Her çeşit insan tarafından."
@@ -1480,7 +1075,6 @@ msgstr ""
"target=\"_blank\">Tor aktarıcısı işletebilirler</a>."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:214
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:131
msgid ""
"In addition, everybody who uses Tor is helping to keep other users safe and "
"anonymous, because the more people using Tor, the harder it is to identify "
@@ -1491,12 +1085,10 @@ msgstr ""
"kişiyi tanımlamak da o kadar zor olur."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:220
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:137
msgid "How does the Tor software work to protect people's anonymity?"
msgstr "Tor kişilerin anonim kalmasını nasıl sağlar?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:224
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:141
msgid ""
"Tor protects you by bouncing your communications around the Tor network, "
"which is a distributed network of relays run by volunteers all around the "
@@ -1506,7 +1098,6 @@ msgstr ""
"dağılmış gönüllüler tarafından işletilen Tor ağında dolaştırır."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:226
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:143
msgid ""
"If someone is watching your internet connection, Tor prevents them from "
"finding out what sites you are visiting."
@@ -1515,7 +1106,6 @@ msgstr ""
"sitelerinin görülmesini önler."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:228
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:145
msgid ""
"It also prevents sites you visit from finding out where you're located."
msgstr ""
@@ -1532,7 +1122,6 @@ msgstr ""
" izleyebilirsiniz</a>."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:237
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:154
msgid ""
"I would like to know more about how Tor works, what onion services are, or "
"how to run a relay."
@@ -1551,12 +1140,10 @@ msgstr ""
"tüm bu soruların ve fazlasının yanıtlarını bulabilirsiniz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:247
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:164
msgid "Does the Tor software work?"
msgstr "Tor gerçekten işe yarıyor mu?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:251
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:168
msgid ""
"We believe Tor is the best solution available today, and we know that it "
"does a better job of keeping you safely anonymous than other options such as"
@@ -1567,7 +1154,6 @@ msgstr ""
"tarayıcı\" kipi gibi diğer seçeneklerden daha başarılı olduğunu biliyoruz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:253
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:170
msgid ""
"We know that both the Russian government and the NSA have tried in the past "
"to crack Tor, and failed."
@@ -1592,12 +1178,10 @@ msgstr ""
"anonimliğinizi korumak için en iyi aracın Tor olduğunu\" yazdı."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:261
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:178
msgid "Is what Tor does legal? Can I get in trouble for using it?"
msgstr "Tor yasal mı? Kullandığım için başım derde girer mi?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:265
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:182
msgid ""
"Downloading Tor Browser or using the Tor network is legal in nearly every "
"country."
@@ -1606,7 +1190,6 @@ msgstr ""
"yasaldır."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:267
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:184
msgid ""
"A few web sites occasionally block Tor, but that doesn't mean you're doing "
"anything wrong."
@@ -1615,7 +1198,6 @@ msgstr ""
"yaptığınız anlamına gelmez."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:269
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:186
msgid ""
"Usually it means that site has had difficulties with visitors who've been "
"using Tor in the past, or that they misunderstand what Tor is and how it "
@@ -1627,7 +1209,6 @@ msgstr ""
"değiştirmeye çalışıyoruz) kaynaklanır."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:271
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:188
msgid ""
"But it is not illegal to use Tor, and you shouldn't get in trouble for doing"
" it."
@@ -1636,7 +1217,6 @@ msgstr ""
"yaşamamalısınız."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:273
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:190
msgid ""
"You can find more information about Tor's legal status on the <a "
"class=\"hyperlinks links\" target=\"_blank\" "
@@ -1648,7 +1228,6 @@ msgstr ""
"bakabilirsiniz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:279
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:196
msgid ""
"Where can I find out more about the Tor Project, especially financial "
"information?"
@@ -1667,12 +1246,10 @@ msgstr ""
"ile Form 990</a> bilgilerini burada bulabilirsiniz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:289
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:206
msgid "Where does the Tor Project's money come from?"
msgstr "Tor Projesi gelirini nereden sağlıyor?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:293
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:210
msgid ""
"Tor is supported by United States government funding agencies, NGOs, private"
" foundations, research institutions, private companies, and over 20,000 "
@@ -1694,7 +1271,6 @@ msgstr ""
"bakabilirsiniz)."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:297
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:214
msgid ""
"While we are grateful for this funding, we don't want the Tor Project to "
"become too dependent on any single source."
@@ -1703,7 +1279,6 @@ msgstr ""
"bağlı kalmasını istemeyiz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:299
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:216
msgid ""
"Crowdfunding allows us to diversify our donor base and is unrestricted -- it"
" allows us to spend the money on the projects we think are most important "
@@ -1715,7 +1290,6 @@ msgstr ""
"sağlıyor."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:301
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:218
msgid ""
"And so, we are asking you to help financially support us, to increase the "
"Tor Project's independence and ensure the sustainability of the products and"
@@ -1726,7 +1300,6 @@ msgstr ""
" desteklemenizi istiyoruz. "
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:307
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:224
msgid ""
"How much money does the Tor Project spend annually, and what is it used for?"
msgstr ""
@@ -1737,7 +1310,6 @@ msgid "The Tor Project spends about $5 million annually."
msgstr "Tor Projesi yıllık 5 milyon USD civarında harcama yapar."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:313
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:230
#, php-format
msgid ""
"About 80% of the Tor Project's spending goes to staffing, mostly software "
@@ -1747,7 +1319,6 @@ msgstr ""
"mühendislerine gidiyor."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:315
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:232
msgid ""
"About 10% goes towards administrative costs such as accounting and legal "
"costs and bank fees."
@@ -1756,7 +1327,6 @@ msgstr ""
"harcanıyor."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:317
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:234
msgid ""
"The remaining 10% is spent on travel, meetings and conferences, which are "
"important for Tor because the Tor community is global."
@@ -1765,12 +1335,10 @@ msgstr ""
"Tor için önemli çünkü Tor dünya çapında bir topluluğa sahip."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:323
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:240
msgid "Is my donation tax-deductible?"
msgstr "Bağışımı vergiden düşebilir miyim?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:327
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:244
msgid ""
"If you pay taxes in the United States, your donation to Tor is tax "
"deductible to the full extent required by law."
@@ -1780,13 +1348,11 @@ msgstr ""
"vergiden düşebilirsiniz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:329
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:246
msgid "Following is information you may need for reporting purposes:"
msgstr ""
"Raporlama için gerek duyabileceğiniz bilgileri aşağıda bulabilirsiniz:"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:334
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:251
msgid ""
"<b>Tor Project Tax ID Number (EIN #):</b> 20-8096820<br>\n"
" <b>Address:</b><br>\n"
@@ -1843,17 +1409,14 @@ msgstr ""
" 85049 Ingolstadt"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:365
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:264
msgid "If I am not in the United States, can I still donate?"
msgstr "Birleşik Devletler'de olmasam da bağış yapabilir miyim?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:369
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:268
msgid "Yes, definitely."
msgstr "Evet, kesinlikle."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:371
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:270
msgid ""
"Your donation probably isn't tax-deductible (unless you pay taxes on U.S. "
"income) but we would very much appreciate your support."
@@ -1862,7 +1425,6 @@ msgstr ""
"kazancınızdan ödemiyorsanız) ancak desteğinize minnettar oluruz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:377
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:423
msgid ""
"It's important to me that my donation be tax-deductible, but I don't pay "
"taxes in the United States."
@@ -1871,7 +1433,6 @@ msgstr ""
"Devletler'de ödemiyorum. "
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:381
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:427
msgid ""
"Right now, we can only offer tax-deductibility to donors who pay taxes in "
"the United States."
@@ -1963,7 +1524,6 @@ msgstr ""
"Tor topluluğunun bir parçası olan iyi insanlar tarafından yöneitliyorlar."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:415
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:276
msgid ""
"Can I donate to a specific project, or restrict my donation to a particular "
"purpose?"
@@ -1973,13 +1533,10 @@ msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:419
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:749
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:280
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:560
msgid "No, sorry."
msgstr "Hayır, maalesef."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:421
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:282
msgid ""
"If we accept a donation from someone who has specified how they want it "
"used, we're required by the IRS to track and report separately on that "
@@ -1989,7 +1546,6 @@ msgstr ""
" dairesi bu parayı ayrıca takip etmemizi ve raporlamamızı ister."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:423
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:284
msgid ""
"That would be a big administrative burden for a small organization, and we "
"don't think it's a good idea for us."
@@ -1998,7 +1554,6 @@ msgstr ""
"bizim için uygun bir seçenek olmadığını düşünüyoruz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:425
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:286
msgid ""
"However, we would be very happy to hear your ideas and feedback about our "
"work."
@@ -2007,7 +1562,6 @@ msgstr ""
"isteriz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:427
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:288
msgid ""
"If you're donating using a mechanism that allows for comments, feel free to "
"send your thoughts that way."
@@ -2016,19 +1570,16 @@ msgstr ""
"iletmekten çekinmeyin. "
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:433
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:294
msgid "Can I donate while using Tor Browser?"
msgstr "Tor Browser kullanırken bağış yapabilir miyim?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:437
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:298
msgid "Yes! In our testing, donation works via Tor Browser."
msgstr ""
"Evet! Yaptığımız denemelerde, Tor Browser üzerinden bağış yapılabildiğini "
"gördük."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:439
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:300
msgid ""
"If you run into problems, please contact <span "
"class=\"email\">giving(at)torproject.org</span>."
@@ -2037,7 +1588,6 @@ msgstr ""
"adresine e-posta ile bildirin."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:443
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:304
msgid ""
"For users logging in to Paypal: some people had no problem donating via "
"PayPal while using Tor Browser."
@@ -2071,7 +1621,6 @@ msgstr ""
"kullanmanız gerekiyor."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:457
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:314
msgid "How can I donate via debit or credit card?"
msgstr "Banka ya da kredi kartı ile bağış yapabilir miyim?"
@@ -2087,12 +1636,10 @@ msgstr ""
"bakabilirsiniz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:467
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:324
msgid "Why do you ask for my address and similar information?"
msgstr "Neden adresimi ve benzer bilgileri istiyorsunuz?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:471
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:328
msgid ""
"If you donate by credit card, you will be asked for some information that's "
"required to process your credit card payment, including your billing "
@@ -2102,7 +1649,6 @@ msgstr ""
"sizden ekstre adresiniz gibi bazı bilgiler istenir."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:473
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:330
msgid ""
"This allows our payment processor to verify your identity, process your "
"payment, and prevent fraudulent charges to your credit card."
@@ -2112,7 +1658,6 @@ msgstr ""
"gereklidir."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:475
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:332
msgid ""
"We don't ask for information beyond what's required by the payment "
"processor."
@@ -2120,12 +1665,10 @@ msgstr ""
"Sizden ödeme aracısının gerek duyduğundan başka bir bilgi istemiyoruz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:481
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:338
msgid "Why is there a minimum donation?"
msgstr "Neden bir alt bağış sınırı var?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:485
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:342
msgid ""
"People who have stolen credit card information often donate to nonprofits as"
" a way of testing whether the card works."
@@ -2143,7 +1686,6 @@ msgstr ""
" 2 USD tutarında bir bağışın bu kişileri caydırmaya yeteceğini düşündük. "
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:493
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:350
msgid "Is there a maximum donation?"
msgstr "Bağış için bir üst sınır var mı?"
@@ -2163,7 +1705,6 @@ msgstr ""
"yapabileceğimiz anlamına geliyor."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:505
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:370
msgid ""
"If I want my donation to be anonymous, what is the best way for me to "
"donate?"
@@ -2183,7 +1724,6 @@ msgstr ""
"de bağış yapabilirsiniz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:513
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:378
msgid "You can buy cash gift cards and mail them to us."
msgstr "Hediye kartları satın alıp bize gönderebilirsiniz."
@@ -2196,15 +1736,12 @@ msgstr ""
"başka yollar varsa, onları kullanarak da bağış yapabilirsiniz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:521
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:474
msgid "Can I donate by mail?"
msgstr "Posta yoluyla bağış yapabilir miyim?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:525
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:537
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:771
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:478
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:584
msgid "Yes."
msgstr "Evet."
@@ -2217,7 +1754,6 @@ msgstr ""
"#4903, Seattle WA 98194, USA</b>."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:533
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:486
msgid "Do you accept cash donations?"
msgstr "Nakit bağış kabul ediyor musunuz?"
@@ -2324,7 +1860,6 @@ msgid "Tax ID #: 20-8096820"
msgstr "Vergi Numarası: 20-8096820"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:617
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:387
msgid ""
"Is the Tor Project required to identify me as a donor to the United States "
"government, or to any other authority?"
@@ -2344,7 +1879,6 @@ msgstr ""
"bildirmemiz gerekir."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:623
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:393
msgid ""
"However, it's normal for nonprofits to redact individual donor information "
"from the copy of the 990 that's made publicly-available, and that's what we "
@@ -2355,7 +1889,6 @@ msgstr ""
"ve biz de öyle yaparız."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:625
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:395
msgid ""
"We are not required to identify donors to any other organization or "
"authority, and we do not."
@@ -2364,7 +1897,6 @@ msgstr ""
"ve biz de bildirmiyoruz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:631
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:403
msgid ""
"In your privacy policy, you say you will never publicly identify me as a "
"donor without my permission."
@@ -2373,17 +1905,14 @@ msgstr ""
"herkese açık olarak duyurmayacağınızı belirtmişsiniz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:633
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:405
msgid "What does that mean?"
msgstr "Bu ne anlama geliyor?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:637
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:409
msgid "Yes, that's right."
msgstr "Evet, bu doğru."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:639
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:411
msgid ""
"If you donate to the Tor Project, there will be some people at the Tor "
"Project who know about your donation."
@@ -2392,7 +1921,6 @@ msgstr ""
" bağış ile ilgili bilgisi olur."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:641
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:413
msgid ""
"However, we will never publicly identify you as a donor, unless you have "
"given us permission to do so."
@@ -2401,7 +1929,6 @@ msgstr ""
" açık şekilde duyurmayız."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:643
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:415
msgid ""
"That means we won't post your name on our website, thank you on Twitter, or "
"do anything else that would publicly identify you as someone who has "
@@ -2411,7 +1938,6 @@ msgstr ""
"ya da sizi herhangi bir şekilde bağışçımız olarak duyurmayız."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:645
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:417
msgid ""
"If we decide we would like to publicly name you as a donor, we will ask you "
"first, and will not do it until and unless you say it's okay."
@@ -2430,12 +1956,10 @@ msgstr ""
"bir sorun olmadığını düşünürüz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:653
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:448
msgid "What is your donor privacy policy?"
msgstr "Bağışçıların kişisel verilerini gizleme ilkeniz nedir?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:657
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:452
msgid ""
"Here is the Tor Project <a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"/%langcode%/privacy-policy\">donor privacy policy</a>."
@@ -2445,12 +1969,10 @@ msgstr ""
"ilkesine</a> bakabilirsiniz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:663
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:458
msgid "What is your refund policy?"
msgstr "Geri ödeme ilkeniz nedir?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:667
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:462
msgid ""
"If you want your donation refunded, please tell us by emailing <span "
"class=\"email\">giving(at)torproject.org</span>."
@@ -2460,7 +1982,6 @@ msgstr ""
"iletin."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:669
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:464
msgid ""
"To process your refund we'll need to know the date of your donation, the "
"amount you donated, your full name, the payment method you used and your "
@@ -2471,13 +1992,11 @@ msgstr ""
"gerekiyor."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:671
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:466
msgid "Please also tell us why you're asking for a refund."
msgstr ""
"Ayrıca lütfen bize neden bağışınızın geri ödenmesini istediğinizi de iletin."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:673
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:468
msgid ""
"Please note that some payment methods won't support refunds, or require them"
" to be made in a specific way, so we may need additional information from "
@@ -2488,12 +2007,10 @@ msgstr ""
"nedenle geri ödeme yapabilmek için bazı ek bilgilere gerek duyabiliriz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:679
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:496
msgid "Does Tor Project accept matching donations?"
msgstr "Tor Projesi bağış katlama kampanyası yapıyor mu? "
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:683
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:500
msgid ""
"Yes! Many companies --such as Google, Microsoft, eBay, PayPal, Apple, "
"Verizon, Red Hat, many universities, and others-- will match donations made "
@@ -2512,7 +2029,6 @@ msgstr ""
"genellikle İK bölümü ile görüşmektir."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:687
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:506
msgid ""
"If you want help figuring out the process, write us at <span "
"class=\"email\">giving(at)torproject.org</a>."
@@ -2521,12 +2037,10 @@ msgstr ""
"class=\"email\">giving(at)torproject.org</a> adresinden ulaşabilirsiniz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:693
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:512
msgid "Can I become a Tor Project member?"
msgstr "Tor Projesine katılabilir miyim?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:697
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:516
msgid ""
"Right now, we don't have a membership program, but we may set one up in the "
"future."
@@ -2566,7 +2080,6 @@ msgstr ""
"Kişisel Gizlilik Savunucuları aylık bağış yaparlar ve ayrıcalık kazanırlar."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:711
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:524
msgid "How can I get a Tor t-shirt or stickers?"
msgstr "Tor tişörtü veya çıkartmalarını nereden alabilirim?"
@@ -2581,7 +2094,6 @@ msgstr ""
"hediyelerimiz var."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:721
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:534
msgid ""
"If I want to stay in touch with the Tor Project, what's the best way for me "
"to do that?"
@@ -2590,7 +2102,6 @@ msgstr ""
" ne yapmalıyım?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:725
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:538
msgid ""
"You can sign up to receive <a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"https://newsletter.torproject.org/\">Tor News</a>, read the <a "
@@ -2608,7 +2119,6 @@ msgstr ""
"edebilirsiniz</a>."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:731
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:544
msgid ""
"Does the Tor Project participate in the Combined Federal Campaign program?"
msgstr ""
@@ -2633,7 +2143,6 @@ msgstr ""
"programına katılmıyor."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:739
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:550
msgid ""
"If you'd like to get Tor added to the CFC program in your location, that "
"would be great: please let us know if you need any help."
@@ -2642,14 +2151,12 @@ msgstr ""
" harika olur: Yardıma gerek duyarsanız lütfen bize haber verin."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:745
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:556
msgid "Can I donate my airline miles, flight vouchers, or hotel points?"
msgstr ""
"Uçuş millerimi, bedava uçuşlarımı ya da otel puanlarımı bağışlayabilir "
"miyim? "
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:751
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:562
msgid ""
"We would like to accept your miles, vouchers and hotel points, and in the "
"future we may be able to."
@@ -2658,7 +2165,6 @@ msgstr ""
"Bunu belki gelecekte yapabiliriz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:757
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:568
msgid "Can I donate hardware?"
msgstr "Donanım bağışlayabilir miyim?"
@@ -2674,7 +2180,6 @@ msgstr ""
"gönderebilirsiniz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:767
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:580
msgid "Can I donate my time?"
msgstr "Zamanımı bağışlayabilir miyim? "
@@ -2689,17 +2194,14 @@ msgstr ""
"olabileceğiniz bazı konulara</a> bakabilirsiniz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:779
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:592
msgid "I would like my company to support Tor."
msgstr "Kuruluşumun Tor Projesini desteklemesini istiyorum."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:781
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:594
msgid "What can we do to help?"
msgstr "Yardım etmek için ne yapabiliriz?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:785
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:598
msgid ""
"Your company could match donations made by its employees to the Tor Project"
"--that would be wonderful."
@@ -2708,7 +2210,6 @@ msgstr ""
"harika olur."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:787
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:600
msgid ""
"Your company may operate a corporate foundation that gives out grants, and "
"if so, you should encourage it to fund us."
@@ -2727,7 +2228,6 @@ msgstr ""
" isteyebilir."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:791
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:604
msgid ""
"If your company sells cloud services, perhaps it could donate these to Tor: "
"We use them in some anti-censorship projects."
@@ -2737,29 +2237,24 @@ msgstr ""
"yararlanıyoruz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:797
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:610
msgid "You don't support my preferred way to donate."
msgstr "Size bağış yapabileceğim yolların hiç biri bana uygun değil."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:799
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:612
msgid "Can I recommend a new donation method to you?"
msgstr "Size başka bağış yöntemleri önerebilir miyim?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:803
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:616
msgid "Sure."
msgstr "Elbette."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:805
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:618
msgid "Just mail us at <span class=\"email\">giving(at)torproject.org</span></a>."
msgstr ""
"<span class=\"email\">giving(at)torproject.org</span></a> adresine bir "
"e-posta atmanız yeterli."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:811
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:624
msgid ""
"Will the Tor Project accept donations from anybody, or do you reserve the "
"right to reject support from specific organizations or individuals?"
@@ -2768,34 +2263,28 @@ msgstr ""
"kuruluşlardan gelen bağışları reddediyor musunuz?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:815
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:628
msgid "We do reserve the right to reject a donation."
msgstr "Bağışları kabul etmeme hakkımızı saklı tutuyoruz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:817
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:630
msgid "To date though, we haven't exercised that right."
msgstr "Ancak bugüne kadar bu hakkımızı kullanmamız gerekmedi."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:819
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:632
msgid "We are happy that a broad range of people use and support Tor."
msgstr ""
"Tor uygulamasının geniş bir topluluk tarafından kullanılması ve "
"desteklenmesi bizi mutlu ediyor."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:825
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:638
msgid "I have more questions."
msgstr "Başka sorularım var."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:827
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:640
msgid "How can I get answers?"
msgstr "Yanıtlarını nasıl öğrenebilirim?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:831
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:644
msgid ""
"Feel free to send questions to <span "
"class=\"email\">frontdesk(at)rt.torproject.org</span>."
@@ -2805,7 +2294,6 @@ msgstr ""
"gönderebilirsiniz."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:833
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:646
msgid ""
"We will try to answer you, and we'll also post your question (and the "
"answer) here."
@@ -2818,24 +2306,20 @@ msgid "State Registration Disclosures"
msgstr "Eyalet Patent Tescil Bildirimleri"
#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:53
-#: tmp/cache_locale/0d/0de73852fd4b6afe8a4f069f907a5e1e93a3159f5ffaddbf485db43dd4ce3a8a.php:34
msgid "Subscribed | Tor"
msgstr "Abone Olundu | Tor"
#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:64
-#: tmp/cache_locale/0d/0de73852fd4b6afe8a4f069f907a5e1e93a3159f5ffaddbf485db43dd4ce3a8a.php:44
msgid "Subscription Confirmed!"
msgstr "Abonelik Onaylandı!"
#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:78
-#: tmp/cache_locale/0d/0de73852fd4b6afe8a4f069f907a5e1e93a3159f5ffaddbf485db43dd4ce3a8a.php:57
msgid "Thanks for joining our email list - you'll hear from us soon!"
msgstr ""
"E-posta listemize katıldığınız için teşekkür ederiz. Yakında bizden haber "
"alacaksınız!"
#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:80
-#: tmp/cache_locale/0d/0de73852fd4b6afe8a4f069f907a5e1e93a3159f5ffaddbf485db43dd4ce3a8a.php:59
msgid ""
"In the meantime, follow <a target=\"_blank\" "
"href=\"https://twitter.com/torproject\">@TorProject</a> on Twitter to keep "
@@ -2846,7 +2330,6 @@ msgstr ""
"takibe alabilirsiniz."
#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:84
-#: tmp/cache_locale/0d/0de73852fd4b6afe8a4f069f907a5e1e93a3159f5ffaddbf485db43dd4ce3a8a.php:63
msgid ""
"As a non-profit organization, we rely on contributions from people like you "
"to help us create and maintain technology used by millions of users daily to"
@@ -2858,54 +2341,119 @@ msgstr ""
"vereceğiniz desteğe güveniyoruz."
#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:86
-#: tmp/cache_locale/0d/0de73852fd4b6afe8a4f069f907a5e1e93a3159f5ffaddbf485db43dd4ce3a8a.php:65
msgid "Every little bit helps"
msgstr "Her küçük desteğin yardımı olur"
-#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:88
-#: tmp/cache_locale/0d/0de73852fd4b6afe8a4f069f907a5e1e93a3159f5ffaddbf485db43dd4ce3a8a.php:67
-msgid "please donate today"
-msgstr "lütfen bugün bağış yapın"
+#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:88
+msgid "please donate today"
+msgstr "lütfen bugün bağış yapın"
+
+#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:92
+msgid "Donate Now"
+msgstr "Bağış Yapın"
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:53
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:53
+msgid "Tor Thanks You"
+msgstr "Tor Size Teşekkür Ediyor"
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:64
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:64
+msgid "Thank you!"
+msgstr "Teşekkürler!"
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:71
+msgid "Thank you for supporting Tor's Strength in Numbers campaign."
+msgstr ""
+"Tor Strength in Numbers (Birlikten Kuvvet Doğar) kampanyasına destek "
+"olduğunuz için teşekkür ederiz."
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:73
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:70
+msgid "You should receive an email receipt shortly."
+msgstr "Faturanız kısa süre içinde e-posta adresinize gönderilecek."
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:75
+msgid ""
+"With your support and the generous matching funds from Mozilla, we'll be "
+"able to tackle ambitious projects, such as developing a more secure, "
+"privacy-enhancing browser for mobile devices and making it easier for third-"
+"party developers to integrate Tor into their applications."
+msgstr ""
+"Desteğiniz ve cömert Mozilla bağış katlama fonları sayesinde, mobil aygıtlar"
+" için daha güvenli ve gizliliği arttıracak bir tarayıcı geliştirmenin "
+"yanında üçüncü taraf geliştiricilerin uygulamalarını Tor ile "
+"bütünleştirmesini kolaylaştırmak gibi iddialı projelere girişebileceğiz. ."
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:81
+msgid "Thank you for standing up for privacy and freedom online."
+msgstr ""
+"Çevrimiçi özgürlük ve kişisel gizlilik için verdiğiniz desteğe teşekkür "
+"ederiz."
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:83
+msgid ""
+"With your gift of cryptocurrency, you're helping the Tor Project give "
+"millions of people private access to the open web."
+msgstr ""
+"Yaptığınız kripto para birimi bağışı ile Tor Projesinin milyonlarca insana "
+"kişisel gizliliklerini koruyarak açık web erişimi sağlamasına yardımcı "
+"oldunuz."
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:85
+msgid ""
+"Your contribution helps make Tor an even stronger tool against authoritarian"
+" governments and privacy-invading corporations."
+msgstr ""
+"Bağışınız sayesinde Tor otoriter rejimlere ve kişisel gizliliğe saldıran "
+"kuruluşlara karşı daha güçlü olacak."
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:91
+msgid "For your convenience, our wallet addresses are listed below."
+msgstr "Cüzdan adreslerimizi aşağıda bulabilirsiniz."
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:93
+msgid ""
+"Please make sure to copy the wallet addresses exactly when making your "
+"donation, as we are unable to recover funds sent to the wrong wallet."
+msgstr ""
+"Lütfen bağışınızı yaparken cüzdan adreslerini tam olarak doğru "
+"kopyaladığınızdan emin olun. Yanlış cüzdana gönderilen bağışları geri "
+"alamayız."
-#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:92
-#: tmp/cache_locale/0d/0de73852fd4b6afe8a4f069f907a5e1e93a3159f5ffaddbf485db43dd4ce3a8a.php:71
-msgid "Donate Now"
-msgstr "Bağış Yapın"
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:97
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:82
+msgid "SHARE THE TOR PROJECT"
+msgstr "TOR PROJESİNİ PAYLAŞIN"
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:52
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:75
-#: tmp/cache_locale/2c/2c32942b896dd845bd6204d3104922983a843d726e231446ff21ddb2a33f6cda.php:29
-#: tmp/cache_locale/2c/2c32942b896dd845bd6204d3104922983a843d726e231446ff21ddb2a33f6cda.php:52
-msgid "Donate to the Tor Project and protect the privacy of millions."
-msgstr "Tor Projesine bağış yaparak milyonlarca kişinin gizliliğini koruyun."
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:166
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:109
+msgid "Got Skills?"
+msgstr "Destek olabilecek yetenekleriniz mi var?"
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:54
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:77
-#: tmp/cache_locale/2c/2c32942b896dd845bd6204d3104922983a843d726e231446ff21ddb2a33f6cda.php:31
-#: tmp/cache_locale/2c/2c32942b896dd845bd6204d3104922983a843d726e231446ff21ddb2a33f6cda.php:54
-msgid "Anonymity loves company."
-msgstr "Anonimlik kalabalığı sever."
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:172
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:115
+msgid "The Tor network depends on volunteers."
+msgstr "Tor ağı gönüllülerin desteğiyle çalışır."
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:109
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:178
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:121
msgid ""
-"Defenders of Privacy pledge a modest amount each month - creating a steady, "
-"reliable source of funds to help us be agile in an ever-changing privacy "
-"landscape and we send exclusive gifts to show our appreciation!"
+"We need people to run relays, write code, organize the community and spread "
+"the word about our good work."
msgstr ""
-"Kişisel Gizlilik Savunucuları her ay küçük bir tutar bağışlayarak, kararlı "
-"ve güvenilir bir bağış kaynağı sağlar. Böylece sürekli değişen kişisel "
-"gizlilik ortamına uygun değişiklikleri hızlıca yapabiliriz. "
-"Minnettarlığımızın ifadesi olarak özel hediyelerimizden göndereceğiz!"
+"Tor aktarıcıları işletecek, kod yazacak, topluluk oluşturacak ve iyi "
+"çalışmalarımızın yayılmasını sağlayacak kişilere ihtiyacımız var."
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:113
-msgid ""
-"The Tor Project counts on the support of our Defenders of Privacy to "
-"continue our mission to provide tools that protect peoples privacy and "
-"identity online."
-msgstr ""
-"Tor Projesi, çevrimiçi ortamda kişilerin kimliğini ve gizliliğini koruyan "
-"araçlar sağlama misyonumuzu sürdürmek için Gizlilik Savunucularımızın "
-"desteğine güveniyor."
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:180
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:123
+msgid "Learn how you can help."
+msgstr "Nasıl yardım edebileceğinizi öğrenin."
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:188
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:131
+msgid "I Want To Volunteer"
+msgstr "Gönüllü Katkıda Bulunmak İstiyorum"
#: tmp/cache_locale/17/179dc1a0f488d5bbb8c128dc5c0fb35d6240d83414df10335a1cf4031139609a.php:53
msgid "Tor State Nonprofit Disclosures"
@@ -3145,6 +2693,10 @@ msgstr ""
msgid "Back to Donate FAQ"
msgstr "Bağış SSS bölümüne geri dön"
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:68
+msgid "Thank you for your support of the Tor Project."
+msgstr "Tor Projesini desteklediğiniz için teşekkürler."
+
#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:72
msgid ""
"With your support, we'll be able to tackle ambitious projects, like "
@@ -3157,6 +2709,13 @@ msgstr ""
"Android için Tor Browser uygulama geliştirme çalışmalarımızı iyileştirmek "
"gibi iddialı projelerle başa çıkabileceğiz."
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:76
+msgid ""
+"It's an incredible time to stand up for world-leading security and privacy "
+"software."
+msgstr ""
+"Dünya lideri güvenlik ve gizlilik yazılımı için ayağa kalkmanın tam zamanı."
+
#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:78
msgid ""
"Tell family, friends, and colleagues that you're supporting privacy and "
@@ -3166,389 +2725,13 @@ msgstr ""
"güvenliği desteklediğinizi ve Tor kullanarak İnterneti geri aldığınızı "
"söyleyin!"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:70
-msgid ""
-"The Tor Project’s mission is to advance human rights and freedoms by "
-"creating and deploying free and open anonymity and privacy technologies, "
-"supporting their unrestricted availability and use, and furthering their "
-"scientific and popular understanding."
-msgstr ""
-"Tor Projesinin misyonu, özgür ve açık kaynaklı anonimlik ve kişisel gizlilik"
-" teknolojileri sağlayarak insan hakları ve özgürlüklerinin geliştirilmesini,"
-" bu teknolojilerin bilimsel ve kültürel olarak bilinirliğinin arttırılmasını"
-" ve herkes tarafından erişebilmesini sağlamaktır."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:72
-msgid ""
-"The main product of the Tor Project is <a "
-"href=\"https://www.torproject.org/download/download-easy.html.en\">Tor "
-"Browser</a>, which enables people to browse the internet anonymously."
-msgstr ""
-"Tor Projesinin ana ürünü olan <a href=\"https://www.torproject.org/download"
-"/download-easy.html.en\">Tor Browser</a> insanların İnternet üzerinde anonim"
-" kalarak dolaşabilmesini sağlar."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:74
-msgid ""
-"The Tor Project is a 501(c)3 tax-exempt non-profit organization based in "
-"Boston, Massachusetts."
-msgstr ""
-"Tor Projesi 501(c)(3) vergi muafiyeti maddesinden yararlanan ve kar amacı "
-"gütmeyen Boston, Massachusetts merkezli bir kuruluştur."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:113
-msgid ""
-"To get started, you will need to <a class=\"hyperlinks\" target=\"_blank\" "
-"href=\"https://www.torproject.org/projects/torbrowser.html.en\"><span "
-"class=\"links\">download Tor Browser</span></a>."
-msgstr ""
-"Başlamak için <a class=\"hyperlinks\" target=\"_blank\" "
-"href=\"https://www.torproject.org/projects/torbrowser.html.en\"><span "
-"class=\"links\">Tor Browser uygulamasını indirmeniz </span></a> gerekir."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:115
-msgid ""
-"We offer instructions on how to download for <a class=\"hyperlinks links\" "
-"target=\"_blank\" "
-"href=\"https://www.torproject.org/projects/torbrowser.html.en#windows\">Windows</a>,"
-" <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/projects/torbrowser.html.en#macosx\">Mac "
-"OS X</a> and <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/projects/torbrowser.html.en#linux\">Linux</a>."
-msgstr ""
-"<a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/projects/torbrowser.html.en#windows\">Windows</a>,"
-" <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/projects/torbrowser.html.en#macosx\">Mac "
-"OS X</a> ve <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/projects/torbrowser.html.en#linux\">Linux</a>"
-" için indirme işleminin nasıl yapılacağını anlattık."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:127
-msgid ""
-"Thousands of individuals have donated to support the Tor Project, and we "
-"have also received funding from a wide range of organizations including "
-"Google, the Ford Foundation, the Knight Foundation, Reddit, the U.S. "
-"National Science Foundation, the Electronic Frontier Foundation, Human "
-"Rights Watch, the Swedish International Development Cooperation Agency, the "
-"Federal Foreign Office of Germany, the U.S. Naval Research Laboratory, "
-"Omidyar Network, SRI International, and Radio Free Asia."
-msgstr ""
-"Tor Projesini desteklemek için binlerce kişi bağış yaptı. Ayrıca Google, "
-"Ford Vakfı, Knight Vakfı, Reddit, ABD Ulusal Bilim Vakfı, Electronic "
-"Frontier Vakfı, İnsan Hakları İzleme Örgütü, İsveç Uluslararası Kalkınma "
-"İşbirliği Ajansı, Almanya Federal Dış İşleri Ofisi, ABD Deniz Araştırma "
-"Laboratuvarı, Omidyar Network, SRI International ve Radio Free Asia gibi "
-"çeşitli kuruluşlardan da destek aldık."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:129
-msgid ""
-"People also support Tor in non-financial ways, for example by running Tor "
-"relays to help carry traffic for other users."
-msgstr ""
-"İnsanlar ayrıca Tor Projesine finansal olmayan şekilde de destek olur. "
-"Örneğin diğer kullanıcıların trafiğini aktarmak için bir Tor aktarıcısı "
-"işletebilirler."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:147
-msgid ""
-"You can read more about how Tor works on our <a class=\"hyperlinks links\" "
-"target=\"_blank\" "
-"href=\"https://www.torproject.org/about/overview.html.en\">overview page."
-msgstr ""
-"Tor ağının nasıl çalıştığı hakkında ayrıntılı bilgi almak için <a "
-"class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/about/overview.html.en\">özet bölümüne "
-"bakabilirsiniz."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:158
-msgid ""
-"<a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/docs/faq.html.en\">This Tor Project "
-"FAQ</a> has answers to all those questions, and more."
-msgstr ""
-"<a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/docs/faq.html.en\">Tor Projesi SSS</a> "
-"bölümünde tüm bu ve diğer soruların yanıtlarını bulabilirsiniz."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:172
-msgid ""
-"The Electronic Frontier Foundation says that Tor offers <a "
-"class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.eff.org/deeplinks/2014/07/7-things-you-should-know-about-"
-"tor\">some of the strongest anonymity software that exists</a>, and in his "
-"book Data and Goliath, security expert Bruce Schneier wrote \"The current "
-"best tool to protect your anonymity when browsing the web is Tor.\""
-msgstr ""
-"Electronic Frontier Foundation, <a class=\"hyperlinks links\" "
-"target=\"_blank\" href=\"https://www.eff.org/deeplinks/2014/07/7-things-you-"
-"should-know-about-tor\">var olan en güçlü anonimlik yazılımlarından "
-"bazılarının</a> Tor tarafından sunulduğunu söyledi ve Data and Goliath adlı "
-"kitabında güvenlik uzmanı Bruce Schneier \"İnternette gezinirken "
-"anonimliğinizi korumak için en iyi aracın Tor olduğunu\" yazdı."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:200
-msgid ""
-"Here are the Tor Project's <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/about/financials.html.en\">financial "
-"statements, and its Form 990</a>."
-msgstr ""
-"Tor Projesi <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/about/financials.html.en\">mali raporları "
-"ve Form 990</a> bilgilerine bakabilirsiniz."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:212
-msgid ""
-"(See <a class=\"hyperlinks links single-link\" target=\"_blank\" "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">https://www.torproject.org/about/sponsors</a>"
-" for more.)"
-msgstr ""
-"Ayrıntılı bilgi almak için <a class=\"hyperlinks links single-link\" "
-"target=\"_blank\" "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">https://www.torproject.org/about/sponsors</a>"
-" bölümüne bakabilirsiniz."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:228
-msgid "The Tor Project spends about $4 million annually."
-msgstr "Tor Projesi yıllık 4 milyon $ civarında para harcıyor. "
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:306
-msgid ""
-"In past years, some people couldn't complete the donation process, and one "
-"person had their PayPal account temporarily frozen."
-msgstr ""
-"Geçmiş yıllarda, bağış sürecini tamamlayamayan kişiler oldu ve bir kişinin "
-"PayPal hesabı geçici olarak donduruldu."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:308
-msgid "If you run into any problems donating via PayPal, please let us know."
-msgstr "PayPal üzerinden bağış yapmakta sorun yaşarsanız, lütfen bize iletin."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:318
-msgid ""
-"To donate using a major credit card or debit card (VISA, MasterCard, "
-"Discover or American Express) or via PayPal, please visit our <a "
-"href=\"https://donate.torproject.org\">donate page</a>."
-msgstr ""
-"Bağış için bilinen bir kredi ya da banka kartı (VISA, MasterCard, Discover "
-"ya da American Express) ya da PayPal kullanabilirsiniz. Lütfen <a "
-"href=\"https://donate.torproject.org\">bağış sayfamıza</a> bakın."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:344
-msgid ""
-"These people typically use a very small amount for their testing, and we've "
-"found that setting a $1 minimum donation seems to deter them."
-msgstr ""
-"Bu kişiler genellikle çok küçük bir tutar ile deneme yapar. Bu nedenle en az"
-" 1 dolarlık bir bağış tutarının bu kişileri caydırmaya yeteceğini düşündük. "
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:354
-msgid ""
-"No, no, no! More funding from you means we can do more things we are excited"
-" to do, like hire a person to monitor the Tor network full time, or "
-"research, test, and implement ideas we have for making the Tor network even "
-"stronger."
-msgstr ""
-"Hayır, hayır, hayır! Sizden gelecek daha fazla bağış, Tor ağını tam zamanlı "
-"olarak izleyecek bir çalışan almak ya da Tor ağını her zamankinden daha "
-"güçlü kılmak için araştırma, deneme ve fikirlerin hayata geçirilmesi gibi "
-"yapmak istediğimiz şeyleri yapabilmemiz demektir."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:360
-msgid "Can I donate via bitcoin?"
-msgstr "Bitcoin ile bağış yapabilir miyim?"
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:364
-msgid ""
-"Yes! We accept <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/donate/donate-options.html.en\">bitcoin "
-"via BitPay</a>."
-msgstr ""
-"Evet! <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/donate/donate-options.html.en\">BitPay "
-"üzerinden bitcoin</a> kabul ediyoruz."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:374
-msgid ""
-"You can donate by <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/donate/donate-"
-"options.html.en#cash\">sending us a postal money order</a>."
-msgstr ""
-"<a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/donate/donate-options.html.en#cash\">Posta"
-" havalesi ile bağış yapabilirsiniz.</a>"
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:376
-msgid ""
-"You can donate via bitcoin if you have bitcoin set up in a way that "
-"preserves your anonymity."
-msgstr ""
-"Anonimliğinizi koruyan bir bitcoin kullanıyorsanız, bitcoin ile de bağış "
-"yapabilirsiniz."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:380
-msgid ""
-"There are probably other ways to donate anonymously that we haven't thought "
-"of-- maybe you will :)"
-msgstr ""
-"Bizim bilmediğimiz ancak sizin biliyor olabileceğiniz başka yollarla da "
-"anonim kalarak bağış yapabilirsiniz :)"
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:391
-msgid ""
-"If you donate $5,000 or more to the Tor Project in a single year, we are "
-"required to report the donation amount and your name and address (if we have"
-" it) to the IRS, on Schedule B of the Form 990, which is filed annually."
-msgstr ""
-"Bir yıl içinde Tor Projesine $5.000 ya da üzerinde bağış yaparsanız, bu "
-"bağış tutarını, adınızı ve adresinizi (eğer biliyorsak) yıllık olarak "
-"doldurulan 990 numaralı Formun B Tablosuna yazarak vergi dairesine "
-"bildirmemiz gerekiyor."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:397
-msgid ""
-"(Also, if you wanted, you could give us $4,999 in late 2018 and $4,999 in "
-"early 2019.)"
-msgstr ""
-"(Ayrıca isterseniz bize 2018 sonunda ve 2019 başında 4,999$ "
-"bağışlayabilirsiniz.)"
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:429
-msgid ""
-"If it's important to you that your donations be tax-deductible in a "
-"different country, let us know and we will try to offer tax-deductibility in"
-" your country in future."
-msgstr ""
-"Bağışlarınızı başka bir ülkede vergiden düşmeniz önemliyse, bizi "
-"bilgilendirin. Belirttiğiniz ülkede bağışlarınızı vergiden düşme olanağını "
-"sunmayı deneyelim."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:431
-msgid ""
-"Or, if you are in Germany, France or Sweden, <a class=\"hyperlinks links\" "
-"target=\"_blank\" "
-"href=\"https://www.torproject.org/docs/faq.html.en#RelayDonations\">these "
-"organizations support the Tor network</a> and may be able to offer you tax-"
-"deductibility for your donation."
-msgstr ""
-"Almanya, Fransa ya da İsveç'te bulunuyorsanız, <a class=\"hyperlinks links\""
-" target=\"_blank\" "
-"href=\"https://www.torproject.org/docs/faq.html.en#RelayDonations\">Tor "
-"ağını destekleyen kuruluşlar</a>bağışlarınızın vergiden düşülmesini "
-"sağlayabilir."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:437
-msgid ""
-"What if I don't want to use credit card or PayPal? Is there another way I "
-"can donate?"
-msgstr ""
-"Kredi kartı ya da PayPal kullanmak istemiyorsam ne olur? Bağış yapmanın "
-"başka bir yolu var mı?"
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:441
-msgid ""
-"Yes! Here is a list of <a href=\"https://www.torproject.org/donate/donate-"
-"options.html.en\" class=\"hyperlinks links\" target=\"_blank\">other ways "
-"you can donate.</a>"
-msgstr ""
-"Evet! <a href=\"https://www.torproject.org/donate/donate-options.html.en\" "
-"class=\"hyperlinks links\" target=\"_blank\">Diğer bağış yapma yollarını "
-"burada görebilirsiniz</a>."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:480
-msgid ""
-"Our mailing address is The Tor Project, 217 First Avenue South #4903, "
-"Seattle WA 98194, USA"
-msgstr ""
-"Posta adresimiz şu şekildedir: Tor Project, 217 First Avenue South "
-"#4903,Seattle WA 98194, USA "
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:490
-msgid "Yes"
-msgstr "Evet"
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:502
-msgid ""
-"The fastest way to find out if your company matches donations is usually by "
-"checking with your HR department, or you can search for your company name at"
-" <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.matchinggifts.com/rit/\">https://www.matchinggifts.com/rit/</a>."
-msgstr ""
-"Kuruluşunuzun bir bağış katlama kampanyası yapıp yapmadığını genellikle İK "
-"bölümünden öğrenebilirsiniz. Ayrıca kuruluşunuzun adının <a "
-"class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.matchinggifts.com/rit/\"> "
-"https://www.matchinggifts.com/rit/</a>sayfasında yer alıp almadığına da "
-"bakabilirsiniz. "
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:504
-msgid ""
-"If your company isn't currently set up to match donations to the Tor "
-"Project, we would be happy to help with the paperwork."
-msgstr ""
-"Kuruluşunuz şu anda Tor Projesi için bir bağış katlama kampanyası "
-"yapmıyorsa, gerekli kağıt işlerine yardımcı olmaktan mutluluk duyarız."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:518
-msgid ""
-"If you want to get involved with the Tor Project, <a class=\"hyperlinks "
-"links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">this is a "
-"good place to start</a>."
-msgstr ""
-"Tor Projesine katkıda bulunmak istiyorsanız, <a class=\"hyperlinks links\" "
-"target=\"_blank\" "
-"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">buradan "
-"başlayabilirsiniz</a>."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:528
-msgid ""
-"A variety of thank-you gifts for donors, including t-shirts, hoodies and "
-"stickers, are presented on our main <a "
-"href=\"https://donate.torproject.org\">donation page</a>."
-msgstr ""
-"<a href=\"https://donate.torproject.org\">Bağış sayfamızda</a> "
-"bağışçılarımız için, tişört, hudi ve çıkartmalar gibi teşekkür hediyelerimiz"
-" bulunuyor."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:548
-msgid "No, Tor doesn't currently participate in the CFC program."
-msgstr "Hayır, Tor şu anda CFC programına katılmıyor."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:572
-msgid "Typically no, we don't encourage people to donate hardware."
-msgstr "Genellikle donanım bağışı kabul etmiyoruz."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:574
-msgid ""
-"But if you want to make a hardware donation that you think might be "
-"especially useful for us, please mail <span "
-"class=\"email\">giving(at)torproject.org</span>."
-msgstr ""
-"Fakat özellikle bize yardımcı olacağını düşündüğünüz bir donanım bağışınız "
-"varsa <span class=\"email\">giving(at)torproject.org</span> adresine bir "
-"e-posta gönderebilirsiniz."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:586
-msgid ""
-"Here's a <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">list of "
-"areas where we would love your help</a>."
-msgstr ""
-"<a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">Zaman "
-"ayırarak bize yardımcı olabileceğiniz bazı konulara</a> bakabilirsiniz."
+#: tmp/cache_locale/05/05c65ace52301a00198c48e1d823da2c14fbd489e7fb45efbca4e79e5709cbdb.php:53
+msgid "Processing Donation - Tor"
+msgstr "Bağışınız İşleniyor - Tor"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:602
-msgid ""
-"Maybe your company would be willing to <a class=\"hyperlinks links\" "
-"target=\"_blank\" "
-"href=\"https://www.torproject.org/docs/faq.html.en#HowDoIDecide\">operate a "
-"Tor relay</a>."
-msgstr ""
-"Belki kuruluşunuz bir <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/docs/faq.html.en#HowDoIDecide\">Tor "
-"aktarıcısı işletmek</a> isteyebilir."
+#: tmp/cache_locale/05/05c65ace52301a00198c48e1d823da2c14fbd489e7fb45efbca4e79e5709cbdb.php:64
+msgid "Processing Donation. Please Wait..."
+msgstr "Bağışınız işleniyor. Lütfen bekleyin..."
#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:83
msgid ""
diff --git a/messages.pot b/messages.pot
index aad7bad5b6..38c26f5b48 100644
--- a/messages.pot
+++ b/messages.pot
@@ -16,256 +16,7 @@ msgstr "Take back the internet with Tor"
msgid "Give today, and Mozilla will match your donation."
msgstr "Give today, and Mozilla will match your donation."
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:34
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:53
-msgid "Tor Privacy Policy"
-msgstr "Tor Privacy Policy"
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:44
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:64
-msgid "Donor privacy policy"
-msgstr "Donor privacy policy"
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:58
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:79
-msgid ""
-"The Tor Project respects donor privacy and welcomes anonymous donations."
-msgstr ""
-"The Tor Project respects donor privacy and welcomes anonymous donations."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:60
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:81
-msgid ""
-"If being anonymous is important to you, the best way to preserve your "
-"anonymity is by donating using a method that doesn't disclose your personal "
-"information."
-msgstr ""
-"If being anonymous is important to you, the best way to preserve your "
-"anonymity is by donating using a method that doesn't disclose your personal "
-"information."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:65
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:86
-msgid ""
-"If you provide personal information as part of the donation process, it may "
-"be collected and retained by third-party service providers and/or the Tor "
-"Project, as described below."
-msgstr ""
-"If you provide personal information as part of the donation process, it may "
-"be collected and retained by third-party service providers and/or the Tor "
-"Project, as described below."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:67
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:88
-msgid ""
-"The Tor Project has very little influence over how third-party service "
-"providers, such as PayPal, may collect and use your information."
-msgstr ""
-"The Tor Project has very little influence over how third-party service "
-"providers, such as PayPal, may collect and use your information."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:69
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:90
-msgid ""
-"We recommend you familiarize yourself with their <a class=\"hyperlinks "
-"links\" target=\"_blank\" href=\"https://www.paypal.com/webapps/mpp/ua"
-"/privacy-full\">policies</a>, especially if you have privacy concerns."
-msgstr ""
-"We recommend you familiarize yourself with their <a class=\"hyperlinks "
-"links\" target=\"_blank\" href=\"https://www.paypal.com/webapps/mpp/ua"
-"/privacy-full\">policies</a>, especially if you have privacy concerns."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:74
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:95
-msgid ""
-"When you donate to the Tor Project, depending what mechanism you use, we may"
-" learn your name, the amount you donated, your email address, phone number "
-"and/or mailing address, as well as any other information you provide."
-msgstr ""
-"When you donate to the Tor Project, depending what mechanism you use, we may"
-" learn your name, the amount you donated, your email address, phone number "
-"and/or mailing address, as well as any other information you provide."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:76
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:97
-msgid ""
-"We may also learn incidental data such as the date and time of your "
-"donation."
-msgstr ""
-"We may also learn incidental data such as the date and time of your "
-"donation."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:78
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:99
-msgid ""
-"The Tor Project will never have access to your financial data, such as your "
-"credit card information.We aim to be careful with your information."
-msgstr ""
-"The Tor Project will never have access to your financial data, such as your "
-"credit card information.We aim to be careful with your information."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:83
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:104
-msgid ""
-"If you have provided your email address, we will email you once to thank you"
-" and give you a receipt."
-msgstr ""
-"If you have provided your email address, we will email you once to thank you"
-" and give you a receipt."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:85
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:106
-msgid ""
-"If you opt in during the donation process, we may email you again in future."
-msgstr ""
-"If you opt in during the donation process, we may email you again in future."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:87
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:108
-msgid ""
-"If you donate more than $5,000 and we know your name and address, we are "
-"required to disclose it to the IRS in <a class=\"hyperlinks links\" "
-"target=\"_blank\" href=\"https://www.irs.gov/pub/irs-"
-"pdf/f990ezb.pdf\">Schedule B of the Form 990</a>."
-msgstr ""
-"If you donate more than $5,000 and we know your name and address, we are "
-"required to disclose it to the IRS in <a class=\"hyperlinks links\" "
-"target=\"_blank\" href=\"https://www.irs.gov/pub/irs-"
-"pdf/f990ezb.pdf\">Schedule B of the Form 990</a>."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:89
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:110
-msgid ""
-"But, that information is redacted from the publicly-available version of our"
-" Form 990."
-msgstr ""
-"But, that information is redacted from the publicly-available version of our"
-" Form 990."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:91
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:112
-msgid ""
-"We will never publicly identify you as a donor without your permission."
-msgstr ""
-"We will never publicly identify you as a donor without your permission."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:96
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:117
-msgid "We do not publish, sell, trade, or rent any information about you."
-msgstr "We do not publish, sell, trade, or rent any information about you."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:98
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:119
-msgid ""
-"For our records, we retain your name, the amount of your donation, the date "
-"of the donation, and your contact information."
-msgstr ""
-"For our records, we retain your name, the amount of your donation, the date "
-"of the donation, and your contact information."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:100
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:121
-msgid ""
-"Access to that information is restricted inside the Tor Project to people "
-"who need it to do their work, for example by thanking you or mailing you a "
-"t-shirt."
-msgstr ""
-"Access to that information is restricted inside the Tor Project to people "
-"who need it to do their work, for example by thanking you or mailing you a "
-"t-shirt."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:105
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:126
-msgid ""
-"<span class=\"bold\">The Tor Project very much appreciates all its donors. "
-"Thank you for supporting Tor</span>."
-msgstr ""
-"<span class=\"bold\">The Tor Project very much appreciates all its donors. "
-"Thank you for supporting Tor</span>."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:113
-#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:134
-#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:851
-#: tmp/cache_locale/17/179dc1a0f488d5bbb8c128dc5c0fb35d6240d83414df10335a1cf4031139609a.php:183
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:656
-msgid "Back to Donate Page"
-msgstr "Back to Donate Page"
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:35
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:54
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:35
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:54
-#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:54
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:35
-#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:54
-msgid "Support the Tor Project Today!"
-msgstr "Support the Tor Project Today!"
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:61
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:83
-msgid "Want to donate by credit card or PayPal?"
-msgstr "Want to donate by credit card or PayPal?"
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:70
-msgid ""
-"Thanks for your interest in donating cryptocurrency to the Tor Project."
-msgstr ""
-"Thanks for your interest in donating cryptocurrency to the Tor Project."
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:77
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:133
-msgid ""
-"Please fill out this form and then send your coins to the appropriate "
-"wallet."
-msgstr ""
-"Please fill out this form and then send your coins to the appropriate "
-"wallet."
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:79
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:135
-msgid ""
-"Filling out the form is not necessary, but doing so will notify us about "
-"your donation quickly, allow us to send you an acknowledgement, and let us "
-"know your communication preferences."
-msgstr ""
-"Filling out the form is not necessary, but doing so will notify us about "
-"your donation quickly, allow us to send you an acknowledgement, and let us "
-"know your communication preferences."
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:85
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:141
-msgid ""
-"Below you will find the cryptocurrencies we accept and our wallet addresses."
-msgstr ""
-"Below you will find the cryptocurrencies we accept and our wallet addresses."
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:87
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:143
-msgid ""
-"The wallet addresses will be displayed again after you complete the form."
-msgstr ""
-"The wallet addresses will be displayed again after you complete the form."
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:89
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:145
-msgid ""
-"Please make sure to copy the wallet addresses exactly when making your "
-"donation, as we cannot recover funds sent to the wrong wallet."
-msgstr ""
-"Please make sure to copy the wallet addresses exactly when making your "
-"donation, as we cannot recover funds sent to the wrong wallet."
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:95
-#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:151
-msgid ""
-"If you have any questions, or would like to donate a cryptocurrency not "
-"listed below, please email us at giving(a)torproject.org."
-msgstr ""
-"If you have any questions, or would like to donate a cryptocurrency not "
-"listed below, please email us at giving(a)torproject.org."
-
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:47
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:29
msgid ""
"The European shirt fits run a little small so you might want to consider "
"sizing up."
@@ -274,67 +25,55 @@ msgstr ""
"sizing up."
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:54
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:36
msgid "Fit"
msgstr "Fit"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:58
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:40
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:508
msgid "Select Fit"
msgstr "Select Fit"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:62
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:44
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:500
msgid "Slim"
msgstr "Slim"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:66
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:48
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:496
msgid "Classic"
msgstr "Classic"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:74
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:56
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:504
msgid "European"
msgstr "European"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:84
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:66
msgid "Size"
msgstr "Size"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:88
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:70
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:512
msgid "Select Size"
msgstr "Select Size"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:92
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:74
msgid "S"
msgstr "S"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:96
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:78
msgid "M"
msgstr "M"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:100
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:82
msgid "L"
msgstr "L"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:104
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:86
msgid "XL"
msgstr "XL"
#: tmp/cache_locale/eb/eb66db0fc2349cdc00200df1ba86814695c5deb02dc0f5941de0ada2f44eb52b.php:108
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:90
msgid "XXL"
msgstr "XXL"
@@ -349,17 +88,24 @@ msgid "Donate to the Tor Project."
msgstr "Donate to the Tor Project."
#: tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:58
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:63
-#: tmp/cache_locale/2c/2c32942b896dd845bd6204d3104922983a843d726e231446ff21ddb2a33f6cda.php:40
msgid "summary_large_image"
msgstr "summary_large_image"
#: tmp/cache_locale/dd/ddde851dcf0f4bcfdf69b2fb2bdd731c4f85ce373ca3ec850a7ca8bbc00dfb85.php:62
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:67
-#: tmp/cache_locale/2c/2c32942b896dd845bd6204d3104922983a843d726e231446ff21ddb2a33f6cda.php:44
msgid "@torproject"
msgstr "@torproject"
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:54
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:54
+#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:54
+#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:54
+msgid "Support the Tor Project Today!"
+msgstr "Support the Tor Project Today!"
+
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:83
+msgid "Want to donate by credit card or PayPal?"
+msgstr "Want to donate by credit card or PayPal?"
+
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:92
msgid "Donate using BTCPayServer"
msgstr "Donate using BTCPayServer"
@@ -368,6 +114,52 @@ msgstr "Donate using BTCPayServer"
msgid "Donate using wallet addresses"
msgstr "Donate using wallet addresses"
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:133
+msgid ""
+"Please fill out this form and then send your coins to the appropriate "
+"wallet."
+msgstr ""
+"Please fill out this form and then send your coins to the appropriate "
+"wallet."
+
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:135
+msgid ""
+"Filling out the form is not necessary, but doing so will notify us about "
+"your donation quickly, allow us to send you an acknowledgement, and let us "
+"know your communication preferences."
+msgstr ""
+"Filling out the form is not necessary, but doing so will notify us about "
+"your donation quickly, allow us to send you an acknowledgement, and let us "
+"know your communication preferences."
+
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:141
+msgid ""
+"Below you will find the cryptocurrencies we accept and our wallet addresses."
+msgstr ""
+"Below you will find the cryptocurrencies we accept and our wallet addresses."
+
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:143
+msgid ""
+"The wallet addresses will be displayed again after you complete the form."
+msgstr ""
+"The wallet addresses will be displayed again after you complete the form."
+
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:145
+msgid ""
+"Please make sure to copy the wallet addresses exactly when making your "
+"donation, as we cannot recover funds sent to the wrong wallet."
+msgstr ""
+"Please make sure to copy the wallet addresses exactly when making your "
+"donation, as we cannot recover funds sent to the wrong wallet."
+
+#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:151
+msgid ""
+"If you have any questions, or would like to donate a cryptocurrency not "
+"listed below, please email us at giving(a)torproject.org."
+msgstr ""
+"If you have any questions, or would like to donate a cryptocurrency not "
+"listed below, please email us at giving(a)torproject.org."
+
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:166
msgid "Copied"
msgstr "Copied"
@@ -378,13 +170,11 @@ msgstr "Currency Amount must be a number."
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:174
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:69
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:51
msgid "Choose a Currency"
msgstr "Choose a Currency"
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:178
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:91
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:73
msgid "Currency Amount"
msgstr "Currency Amount"
@@ -398,181 +188,222 @@ msgstr "I'd like to make my donation anonymous."
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:188
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:64
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:46
msgid "Email"
msgstr "Email"
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:192
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:320
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:319
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:47
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:29
msgid "First Name"
msgstr "First Name"
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:196
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:324
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:323
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:51
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:33
msgid "Last Name"
msgstr "Last Name"
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:200
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:98
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:80
msgid "Report Donation"
msgstr "Report Donation"
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:204
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:370
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:369
msgid "Start sending me email updates about the Tor Project!"
msgstr "Start sending me email updates about the Tor Project!"
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:208
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:105
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:87
msgid "Wallet Addresses"
msgstr "Wallet Addresses"
#: tmp/cache_locale/cc/cc2e1dd4edb96c59a6514d676ca3f562a2a9a2cd34e2c211c03fb08b3e664469.php:212
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:311
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:310
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:42
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:24
msgid "Your Info"
msgstr "Your Info"
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:34
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:34
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:53
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:53
-msgid "Tor Thanks You"
-msgstr "Tor Thanks You"
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:53
+msgid "Tor Privacy Policy"
+msgstr "Tor Privacy Policy"
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:44
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:44
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:64
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:64
-msgid "Thank you!"
-msgstr "Thank you!"
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:64
+msgid "Donor privacy policy"
+msgstr "Donor privacy policy"
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:51
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:51
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:71
-msgid "Thank you for supporting Tor's Strength in Numbers campaign."
-msgstr "Thank you for supporting Tor's Strength in Numbers campaign."
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:79
+msgid ""
+"The Tor Project respects donor privacy and welcomes anonymous donations."
+msgstr ""
+"The Tor Project respects donor privacy and welcomes anonymous donations."
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:53
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:53
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:63
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:73
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:70
-msgid "You should receive an email receipt shortly."
-msgstr "You should receive an email receipt shortly."
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:81
+msgid ""
+"If being anonymous is important to you, the best way to preserve your "
+"anonymity is by donating using a method that doesn't disclose your personal "
+"information."
+msgstr ""
+"If being anonymous is important to you, the best way to preserve your "
+"anonymity is by donating using a method that doesn't disclose your personal "
+"information."
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:55
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:55
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:75
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:86
msgid ""
-"With your support and the generous matching funds from Mozilla, we'll be "
-"able to tackle ambitious projects, such as developing a more secure, "
-"privacy-enhancing browser for mobile devices and making it easier for third-"
-"party developers to integrate Tor into their applications."
+"If you provide personal information as part of the donation process, it may "
+"be collected and retained by third-party service providers and/or the Tor "
+"Project, as described below."
msgstr ""
-"With your support and the generous matching funds from Mozilla, we'll be "
-"able to tackle ambitious projects, such as developing a more secure, "
-"privacy-enhancing browser for mobile devices and making it easier for third-"
-"party developers to integrate Tor into their applications."
+"If you provide personal information as part of the donation process, it may "
+"be collected and retained by third-party service providers and/or the Tor "
+"Project, as described below."
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:61
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:81
-msgid "Thank you for standing up for privacy and freedom online."
-msgstr "Thank you for standing up for privacy and freedom online."
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:88
+msgid ""
+"The Tor Project has very little influence over how third-party service "
+"providers, such as PayPal, may collect and use your information."
+msgstr ""
+"The Tor Project has very little influence over how third-party service "
+"providers, such as PayPal, may collect and use your information."
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:63
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:83
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:90
msgid ""
-"With your gift of cryptocurrency, you're helping the Tor Project give "
-"millions of people private access to the open web."
+"We recommend you familiarize yourself with their <a class=\"hyperlinks "
+"links\" target=\"_blank\" href=\"https://www.paypal.com/webapps/mpp/ua"
+"/privacy-full\">policies</a>, especially if you have privacy concerns."
+msgstr ""
+"We recommend you familiarize yourself with their <a class=\"hyperlinks "
+"links\" target=\"_blank\" href=\"https://www.paypal.com/webapps/mpp/ua"
+"/privacy-full\">policies</a>, especially if you have privacy concerns."
+
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:95
+msgid ""
+"When you donate to the Tor Project, depending what mechanism you use, we may"
+" learn your name, the amount you donated, your email address, phone number "
+"and/or mailing address, as well as any other information you provide."
+msgstr ""
+"When you donate to the Tor Project, depending what mechanism you use, we may"
+" learn your name, the amount you donated, your email address, phone number "
+"and/or mailing address, as well as any other information you provide."
+
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:97
+msgid ""
+"We may also learn incidental data such as the date and time of your "
+"donation."
+msgstr ""
+"We may also learn incidental data such as the date and time of your "
+"donation."
+
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:99
+msgid ""
+"The Tor Project will never have access to your financial data, such as your "
+"credit card information.We aim to be careful with your information."
+msgstr ""
+"The Tor Project will never have access to your financial data, such as your "
+"credit card information.We aim to be careful with your information."
+
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:104
+msgid ""
+"If you have provided your email address, we will email you once to thank you"
+" and give you a receipt."
+msgstr ""
+"If you have provided your email address, we will email you once to thank you"
+" and give you a receipt."
+
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:106
+msgid ""
+"If you opt in during the donation process, we may email you again in future."
+msgstr ""
+"If you opt in during the donation process, we may email you again in future."
+
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:108
+msgid ""
+"If you donate more than $5,000 and we know your name and address, we are "
+"required to disclose it to the IRS in <a class=\"hyperlinks links\" "
+"target=\"_blank\" href=\"https://www.irs.gov/pub/irs-"
+"pdf/f990ezb.pdf\">Schedule B of the Form 990</a>."
+msgstr ""
+"If you donate more than $5,000 and we know your name and address, we are "
+"required to disclose it to the IRS in <a class=\"hyperlinks links\" "
+"target=\"_blank\" href=\"https://www.irs.gov/pub/irs-"
+"pdf/f990ezb.pdf\">Schedule B of the Form 990</a>."
+
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:110
+msgid ""
+"But, that information is redacted from the publicly-available version of our"
+" Form 990."
+msgstr ""
+"But, that information is redacted from the publicly-available version of our"
+" Form 990."
+
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:112
+msgid ""
+"We will never publicly identify you as a donor without your permission."
+msgstr ""
+"We will never publicly identify you as a donor without your permission."
+
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:117
+msgid "We do not publish, sell, trade, or rent any information about you."
+msgstr "We do not publish, sell, trade, or rent any information about you."
+
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:119
+msgid ""
+"For our records, we retain your name, the amount of your donation, the date "
+"of the donation, and your contact information."
msgstr ""
-"With your gift of cryptocurrency, you're helping the Tor Project give "
-"millions of people private access to the open web."
+"For our records, we retain your name, the amount of your donation, the date "
+"of the donation, and your contact information."
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:65
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:85
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:121
msgid ""
-"Your contribution helps make Tor an even stronger tool against authoritarian"
-" governments and privacy-invading corporations."
+"Access to that information is restricted inside the Tor Project to people "
+"who need it to do their work, for example by thanking you or mailing you a "
+"t-shirt."
msgstr ""
-"Your contribution helps make Tor an even stronger tool against authoritarian"
-" governments and privacy-invading corporations."
-
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:71
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:91
-msgid "For your convenience, our wallet addresses are listed below."
-msgstr "For your convenience, our wallet addresses are listed below."
+"Access to that information is restricted inside the Tor Project to people "
+"who need it to do their work, for example by thanking you or mailing you a "
+"t-shirt."
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:73
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:93
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:126
msgid ""
-"Please make sure to copy the wallet addresses exactly when making your "
-"donation, as we are unable to recover funds sent to the wrong wallet."
+"<span class=\"bold\">The Tor Project very much appreciates all its donors. "
+"Thank you for supporting Tor</span>."
msgstr ""
-"Please make sure to copy the wallet addresses exactly when making your "
-"donation, as we are unable to recover funds sent to the wrong wallet."
+"<span class=\"bold\">The Tor Project very much appreciates all its donors. "
+"Thank you for supporting Tor</span>."
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:77
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:77
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:97
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:82
-msgid "SHARE THE TOR PROJECT"
-msgstr "SHARE THE TOR PROJECT"
+#: tmp/cache_locale/c8/c806c3e41d2762077fdd1ce236b4b0b7dc838a7c1a428d6d6daeede2a01d35aa.php:134
+#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:851
+#: tmp/cache_locale/17/179dc1a0f488d5bbb8c128dc5c0fb35d6240d83414df10335a1cf4031139609a.php:183
+msgid "Back to Donate Page"
+msgstr "Back to Donate Page"
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:145
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:115
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:166
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:109
-msgid "Got Skills?"
-msgstr "Got Skills?"
+#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:40
+msgid "See if your employer offers employee gift matching"
+msgstr "See if your employer offers employee gift matching"
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:151
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:121
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:172
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:115
-msgid "The Tor network depends on volunteers."
-msgstr "The Tor network depends on volunteers."
+#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:70
+msgid "Company"
+msgstr "Company"
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:157
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:127
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:178
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:121
-msgid ""
-"We need people to run relays, write code, organize the community and spread "
-"the word about our good work."
-msgstr ""
-"We need people to run relays, write code, organize the community and spread "
-"the word about our good work."
+#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:78
+msgid "Matching Conditions"
+msgstr "Matching Conditions"
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:159
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:129
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:180
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:123
-msgid "Learn how you can help."
-msgstr "Learn how you can help."
+#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:86
+msgid "Contact Information"
+msgstr "Contact Information"
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:167
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:137
-#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:188
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:131
-msgid "I Want To Volunteer"
-msgstr "I Want To Volunteer"
+#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:94
+msgid "Additional Notes"
+msgstr "Additional Notes"
+
+#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:102
+msgid "Procedure"
+msgstr "Procedure"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:62
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:84
#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:116
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:134
#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:122
msgid ""
"This page requires Javascript to do PayPal or credit card\n"
@@ -581,10 +412,8 @@ msgstr ""
"This page requires Javascript to do PayPal or credit card\n"
" donations, but it appears you have Javascript disabled."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:66
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:88
#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:120
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:138
#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:126
msgid ""
"If you wish to donate without enabling Javascript, please take a look at our"
@@ -595,85 +424,68 @@ msgstr ""
" <a href=\"https://www.torproject.org/donate/donate-options.html.en\">other "
"donations options page</a>."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:87
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:109
msgid "Number of Donations"
msgstr "Number of Donations"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:103
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:125
msgid "Total Donated"
msgstr "Total Donated"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:119
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:141
msgid "Total Raised with Mozilla's Match"
msgstr "Total Raised with Mozilla's Match"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:130
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:136
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:152
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:158
msgid "donate"
msgstr "donate"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:132
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:154
msgid "once"
msgstr "once"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:138
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:160
msgid "monthly"
msgstr "monthly"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:145
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:167
msgid "Want to donate cryptocurrency?"
msgstr "Want to donate cryptocurrency?"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:150
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:172
msgid "Want to donate stock or via postal mail?"
msgstr "Want to donate stock or via postal mail?"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:166
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:187
msgid "invalid amount"
msgstr "invalid amount"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:170
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:191
msgid "$2 minimum donation"
msgstr "$2 minimum donation"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:174
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:195
msgid "$ other"
msgstr "$ other"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:181
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:202
msgid "Choose your gift as a token of our thanks."
msgstr "Choose your gift as a token of our thanks."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:188
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:209
msgid "No thanks, I don't want a gift."
msgstr "No thanks, I don't want a gift."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:190
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:211
#, php-format
msgid "I would prefer 100% of my donation to go to the Tor Project's work."
msgstr "I would prefer 100% of my donation to go to the Tor Project's work."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:201
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:222
msgid "sticker Pack"
msgstr "sticker Pack"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:208
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:229
msgid ""
"A collection of our favorite logo stickers for decorating your stuff and "
@@ -682,374 +494,205 @@ msgstr ""
"A collection of our favorite logo stickers for decorating your stuff and "
"covering your cams."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:218
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:239
msgid "t-shirt"
msgstr "t-shirt"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:226
-msgid "Get our limited edition Tor: Strength in Numbers shirt."
-msgstr "Get our limited edition Tor: Strength in Numbers shirt."
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:247
+msgid "Get our limited edition Take Back the Internet With Tor shirt."
+msgstr "Get our limited edition Take Back the Internet With Tor shirt."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:237
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:258
msgid "t-shirt pack"
msgstr "t-shirt pack"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:247
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:266
msgid ""
-"Our Tor: Strength in Numbers t-shirt, plus one of either our Tor: Powering "
-"the Digital Resistance, Open Observatory of Network Interference (OONI), or "
-"Tor at the Heart of Internet Freedom t-shirts."
+"Get this year's Take Back the Internet With Tor t-shirt and the Tor: "
+"Strength in Numbers t-shirt."
msgstr ""
-"Our Tor: Strength in Numbers t-shirt, plus one of either our Tor: Powering "
-"the Digital Resistance, Open Observatory of Network Interference (OONI), or "
-"Tor at the Heart of Internet Freedom t-shirts."
-
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:253
-msgid "Tor at the Heart of Internet Freedom"
-msgstr "Tor at the Heart of Internet Freedom"
-
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:257
-msgid "Powering the Digital Resistance"
-msgstr "Powering the Digital Resistance"
-
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:261
-msgid "Open Observatory of Network Interference"
-msgstr "Open Observatory of Network Interference"
+"Get this year's Take Back the Internet With Tor t-shirt and the Tor: "
+"Strength in Numbers t-shirt."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:272
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:277
msgid "sweatshirt"
msgstr "sweatshirt"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:279
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:284
msgid "Your generous support of Tor gets you this high-quality zip hoodie."
msgstr "Your generous support of Tor gets you this high-quality zip hoodie."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:289
-msgid "how do you want to <span class=\"green\">DONATE</span>?"
-msgstr "how do you want to <span class=\"green\">DONATE</span>?"
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:294
+msgid "how do you want to <span class=\"lime\">DONATE</span>?"
+msgstr "how do you want to <span class=\"lime\">DONATE</span>?"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:295
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:300
msgid "Credit Card"
msgstr "Credit Card"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:304
-msgid "Want to donate Bitcoin, Stock, or via snail mail?"
-msgstr "Want to donate Bitcoin, Stock, or via snail mail?"
-
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:315
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:314
msgid "* required fields"
msgstr "* required fields"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:330
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:329
msgid "Street Address"
msgstr "Street Address"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:334
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:333
msgid "Apt."
msgstr "Apt."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:344
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:343
msgid "City"
msgstr "City"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:348
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:347
msgid "State"
msgstr "State"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:353
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:352
msgid "Zip"
msgstr "Zip"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:359
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:358
msgid "Enter email"
msgstr "Enter email"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:363
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:362
msgid "We‘ll email you your receipt"
msgstr "We‘ll email you your receipt"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:377
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:376
msgid "Card Number"
msgstr "Card Number"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:384
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:383
msgid "MM"
msgstr "MM"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:388
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:387
msgid "YY"
msgstr "YY"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:392
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:391
msgid "CVC"
msgstr "CVC"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:400
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:465
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:399
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:472
msgid "Choose your size and fit."
msgstr "Choose your size and fit."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:405
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:413
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:404
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:412
msgid "T-shirt:"
msgstr "T-shirt:"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:423
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:427
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:429
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:422
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:426
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:428
msgid "Comments"
msgstr "Comments"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:435
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:434
msgid "Donating:"
msgstr "Donating:"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:443
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:446
msgid "Donate"
msgstr "Donate"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:453
-msgid "Gift Selected"
-msgstr "Gift Selected"
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:456
+msgid "State/Province/Region"
+msgstr "State/Province/Region"
+
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:460
+msgid "Gift Selected:"
+msgstr "Gift Selected:"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:457
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:464
msgid "No Gift Selected"
msgstr "No Gift Selected"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:461
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:468
msgid "Sticker Pack"
msgstr "Sticker Pack"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:469
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:476
msgid "T-Shirt"
msgstr "T-Shirt"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:473
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:480
msgid "Choose your size and fit for each shirt."
msgstr "Choose your size and fit for each shirt."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:477
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:484
msgid "T-Shirt Pack"
msgstr "T-Shirt Pack"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:481
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:607
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:488
-#: tmp/cache_locale/9f/9f870858aaf6c5a7c94ea6a959618fbe485cbfd16174993d34a8e370a4567526.php:75
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:48
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:71
-#: tmp/cache_locale/2c/2c32942b896dd845bd6204d3104922983a843d726e231446ff21ddb2a33f6cda.php:25
-#: tmp/cache_locale/2c/2c32942b896dd845bd6204d3104922983a843d726e231446ff21ddb2a33f6cda.php:48
msgid "Tor: Strength in Numbers"
msgstr "Tor: Strength in Numbers"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:485
+#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:492
+msgid "Take back the Internet with Tor"
+msgstr "Take back the Internet with Tor"
+
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:516
msgid "Choose your size."
msgstr "Choose your size."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:489
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:520
msgid "Sweatshirt"
msgstr "Sweatshirt"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:493
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:524
msgid "A required field is missing from the form."
msgstr "A required field is missing from the form."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:495
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:526
msgid "Please reload the page and try again."
msgstr "Please reload the page and try again."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:499
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:530
msgid "There was a problem submitting your request to the server:<br>"
msgstr "There was a problem submitting your request to the server:<br>"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:503
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:534
msgid "validation failed"
msgstr "validation failed"
#. notes: __field_name__ will be replaced with the field name in the
#. javascript.
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:509
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:540
msgid "__field_name__ must be filled out."
msgstr "__field_name__ must be filled out."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:514
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:545
msgid "This field is required"
msgstr "This field is required"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:518
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:549
msgid "Invalid email address."
msgstr "Invalid email address."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:522
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:553
msgid "per month"
msgstr "per month"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:614
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:622
-#: tmp/cache_locale/9f/9f870858aaf6c5a7c94ea6a959618fbe485cbfd16174993d34a8e370a4567526.php:82
-#: tmp/cache_locale/9f/9f870858aaf6c5a7c94ea6a959618fbe485cbfd16174993d34a8e370a4567526.php:90
-msgid ""
-"Stand up for the universal human rights to privacy and freedom and help keep"
-" Tor robust and secure."
-msgstr ""
-"Stand up for the universal human rights to privacy and freedom and help keep"
-" Tor robust and secure."
-
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:616
-#: tmp/cache_locale/9f/9f870858aaf6c5a7c94ea6a959618fbe485cbfd16174993d34a8e370a4567526.php:84
-msgid "Mozilla will match your gift and double your impact."
-msgstr "Mozilla will match your gift and double your impact."
-
-#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:40
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:22
-msgid "See if your employer offers employee gift matching"
-msgstr "See if your employer offers employee gift matching"
-
-#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:70
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:52
-msgid "Company"
-msgstr "Company"
-
-#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:78
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:60
-msgid "Matching Conditions"
-msgstr "Matching Conditions"
-
-#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:86
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:68
-msgid "Contact Information"
-msgstr "Contact Information"
-
-#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:94
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:76
-msgid "Additional Notes"
-msgstr "Additional Notes"
-
-#: tmp/cache_locale/b5/b5f4f095d469d66a47aef1a351e119240dbf0291056fdb85b216534a25e91fef.php:102
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:84
-msgid "Procedure"
-msgstr "Procedure"
-
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:247
-msgid "Get our limited edition Take Back the Internet With Tor shirt."
-msgstr "Get our limited edition Take Back the Internet With Tor shirt."
-
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:266
-msgid ""
-"Get this year's Take Back the Internet With Tor t-shirt and the Tor: "
-"Strength in Numbers t-shirt."
-msgstr ""
-"Get this year's Take Back the Internet With Tor t-shirt and the Tor: "
-"Strength in Numbers t-shirt."
-
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:294
-msgid "how do you want to <span class=\"lime\">DONATE</span>?"
-msgstr "how do you want to <span class=\"lime\">DONATE</span>?"
-
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:456
-msgid "State/Province/Region"
-msgstr "State/Province/Region"
-
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:460
-msgid "Gift Selected:"
-msgstr "Gift Selected:"
-
-#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:492
-msgid "Take back the Internet with Tor"
-msgstr "Take back the Internet with Tor"
-
#: tmp/cache_locale/af/af919ed4d7946ee7ed7d71a5580f4c75c5fb2b9374dd8d99d3a0671f71654f60.php:557
msgid "Gift selected"
msgstr "Gift selected"
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:61
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:68
-msgid "Thank you for your support of the Tor Project."
-msgstr "Thank you for your support of the Tor Project."
-
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:65
-msgid ""
-"With your support, we'll be able to tackle ambitious projects, such as "
-"developing a more secure, privacy-enhancing browser for mobile devices and "
-"making it easier for third-party developers to integrate Tor into their "
-"applications."
-msgstr ""
-"With your support, we'll be able to tackle ambitious projects, such as "
-"developing a more secure, privacy-enhancing browser for mobile devices and "
-"making it easier for third-party developers to integrate Tor into their "
-"applications."
-
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:71
-#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:76
-msgid ""
-"It's an incredible time to stand up for world-leading security and privacy "
-"software."
-msgstr ""
-"It's an incredible time to stand up for world-leading security and privacy "
-"software."
-
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:73
-msgid ""
-"Tell family, friends, and colleagues that you're supporting privacy and "
-"security with Tor!"
-msgstr ""
-"Tell family, friends, and colleagues that you're supporting privacy and "
-"security with Tor!"
-
#: tmp/cache_locale/a1/a1384b9a21e3d43e946972b01389567dff845ee982dcf05228aa3e5096a74210.php:59
-#: tmp/cache_locale/84/843b15891cb1c4a052da0edfef1988434048191530bcfe390199ff0e33e802d4.php:41
msgid "Estimated Donation Date:"
msgstr "Estimated Donation Date:"
#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:83
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:101
msgid "Become a Defender of Privacy!"
msgstr "Become a Defender of Privacy!"
#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:87
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:105
msgid ""
"Join the Tor Project - Defenders of Privacy program - a monthly giving "
"circle designed to honor donors that make privacy a priority."
@@ -1078,17 +721,14 @@ msgstr ""
"identity online."
#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:97
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:115
msgid "With your help, we will make the Tor network accessible to everyone!"
msgstr "With your help, we will make the Tor network accessible to everyone!"
#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:101
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:119
msgid "Together, we will stand up for the universal right to privacy."
msgstr "Together, we will stand up for the universal right to privacy."
#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:103
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:121
msgid ""
"Please make your monthly donation now and stand with the Tor Project at this"
" critical time."
@@ -1097,22 +737,10 @@ msgstr ""
" critical time."
#: tmp/cache_locale/94/94c6c1969d2fadbd23c135ac864b97902daca8f5c816b03864ea5c4970a167cf.php:109
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:127
msgid "Want to make a one time donation instead?"
msgstr "Want to make a one time donation instead?"
-#: tmp/cache_locale/92/9248b30ecfc0bb3509fc7e1db98f98ec86e72399ad551da3d5abe54c7cd987af.php:34
-#: tmp/cache_locale/05/05c65ace52301a00198c48e1d823da2c14fbd489e7fb45efbca4e79e5709cbdb.php:53
-msgid "Processing Donation - Tor"
-msgstr "Processing Donation - Tor"
-
-#: tmp/cache_locale/92/9248b30ecfc0bb3509fc7e1db98f98ec86e72399ad551da3d5abe54c7cd987af.php:44
-#: tmp/cache_locale/05/05c65ace52301a00198c48e1d823da2c14fbd489e7fb45efbca4e79e5709cbdb.php:64
-msgid "Processing Donation. Please Wait..."
-msgstr "Processing Donation. Please Wait..."
-
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:43
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:25
msgid ""
"The Tor Project is a US 501(c)(3) non-profit organization advancing human "
"rights and freedoms by creating and deploying free and open source anonymity"
@@ -1125,32 +753,26 @@ msgstr ""
"use, and furthering their scientific and popular understanding."
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:49
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:31
msgid "Subscribe to Our Newsletter"
msgstr "Subscribe to Our Newsletter"
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:53
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:35
msgid "Get monthly updates and opportunities from the Tor Project."
msgstr "Get monthly updates and opportunities from the Tor Project."
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:57
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:39
msgid "Sign Up"
msgstr "Sign Up"
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:65
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:47
msgid "Donate FAQs"
msgstr "Donate FAQs"
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:69
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:51
msgid "Privacy Policy"
msgstr "Privacy Policy"
#: tmp/cache_locale/92/92eb639bc328f3dd569fa22b60c4360b6fe38f1a4cd80a14fce862d91bd765cb.php:85
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:67
msgid ""
"Designed and built by <span class=\"stamp-bold\"><a "
"href=\"https://www.giantrabbit.com/\" class=\"stamp-bold\" "
@@ -1161,17 +783,14 @@ msgstr ""
"target=\"_blank\">Giant Rabbit</a></span>"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:53
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:34
msgid "Tor Donor FAQ"
msgstr "Tor Donor FAQ"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:64
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:44
msgid "Questions?"
msgstr "Questions?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:80
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:59
msgid ""
"If your question isn’t answered below, email <span "
"class=\"email\">frontdesk(at)rt.torproject.org</span> with general Tor "
@@ -1250,7 +869,6 @@ msgstr ""
"class=\"email\">giving(at)torproject.org</span>."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:149
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:66
msgid "What is the Tor Project and what does it do?"
msgstr "What is the Tor Project and what does it do?"
@@ -1283,17 +901,14 @@ msgid "The Tor Project is a 501(c)3 tax-exempt non-profit organization."
msgstr "The Tor Project is a 501(c)3 tax-exempt non-profit organization."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:159
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:76
msgid "It was founded in 2006."
msgstr "It was founded in 2006."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:165
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:82
msgid "Who works for the Tor Project, and what do they do?"
msgstr "Who works for the Tor Project, and what do they do?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:169
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:86
msgid ""
"Thousands of people around the world actively support the work of the Tor "
"Project, including developers, designers, relay operators, researchers, "
@@ -1306,14 +921,12 @@ msgstr ""
" paid by the Tor Project."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:171
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:88
msgid ""
"The paid staff of the Tor Project is very small: about 47 people in total."
msgstr ""
"The paid staff of the Tor Project is very small: about 47 people in total."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:173
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:90
msgid ""
"You can read about the core contributors to the Tor Project on our <a "
"class=\"hyperlinks\" target=\"_blank\" "
@@ -1326,12 +939,10 @@ msgstr ""
"class=\"links\">Core People page</span></a>."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:178
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:95
msgid "Who uses Tor?"
msgstr "Who uses Tor?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:182
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:99
msgid ""
"The vast majority of Tor users are ordinary people who want control of their"
" privacy online or people whose internet use is censored."
@@ -1340,7 +951,6 @@ msgstr ""
" privacy online or people whose internet use is censored."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:184
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:101
msgid ""
"Other Tor users are journalists, human rights defenders, domestic violence "
"survivors, policymakers, diplomats, and academic and research institutions."
@@ -1349,12 +959,10 @@ msgstr ""
"survivors, policymakers, diplomats, and academic and research institutions."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:190
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:107
msgid "Can anyone use Tor?"
msgstr "Can anyone use Tor?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:194
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:111
msgid "Yes! Tor is free, and anyone can use it."
msgstr "Yes! Tor is free, and anyone can use it."
@@ -1393,12 +1001,10 @@ msgstr ""
"href=\"https://www.torproject.org/download/#android\">Android</a>."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:204
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:121
msgid "What kinds of people support Tor?"
msgstr "What kinds of people support Tor?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:208
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:125
msgid "All kinds of people."
msgstr "All kinds of people."
@@ -1437,7 +1043,6 @@ msgstr ""
"users."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:214
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:131
msgid ""
"In addition, everybody who uses Tor is helping to keep other users safe and "
"anonymous, because the more people using Tor, the harder it is to identify "
@@ -1448,12 +1053,10 @@ msgstr ""
"any single individual."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:220
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:137
msgid "How does the Tor software work to protect people's anonymity?"
msgstr "How does the Tor software work to protect people's anonymity?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:224
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:141
msgid ""
"Tor protects you by bouncing your communications around the Tor network, "
"which is a distributed network of relays run by volunteers all around the "
@@ -1464,7 +1067,6 @@ msgstr ""
"world."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:226
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:143
msgid ""
"If someone is watching your internet connection, Tor prevents them from "
"finding out what sites you are visiting."
@@ -1473,7 +1075,6 @@ msgstr ""
"finding out what sites you are visiting."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:228
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:145
msgid ""
"It also prevents sites you visit from finding out where you're located."
msgstr ""
@@ -1488,7 +1089,6 @@ msgstr ""
"target=\"_blank\">Watch this video</a> to learn more about how Tor works."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:237
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:154
msgid ""
"I would like to know more about how Tor works, what onion services are, or "
"how to run a relay."
@@ -1507,12 +1107,10 @@ msgstr ""
"answers to all those questions, and more."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:247
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:164
msgid "Does the Tor software work?"
msgstr "Does the Tor software work?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:251
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:168
msgid ""
"We believe Tor is the best solution available today, and we know that it "
"does a better job of keeping you safely anonymous than other options such as"
@@ -1523,7 +1121,6 @@ msgstr ""
" VPNs, proxychains, or browser \"private browsing\" modes."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:253
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:170
msgid ""
"We know that both the Russian government and the NSA have tried in the past "
"to crack Tor, and failed."
@@ -1548,12 +1145,10 @@ msgstr ""
"best tool to protect your anonymity when browsing the web is Tor.\""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:261
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:178
msgid "Is what Tor does legal? Can I get in trouble for using it?"
msgstr "Is what Tor does legal? Can I get in trouble for using it?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:265
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:182
msgid ""
"Downloading Tor Browser or using the Tor network is legal in nearly every "
"country."
@@ -1562,7 +1157,6 @@ msgstr ""
"country."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:267
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:184
msgid ""
"A few web sites occasionally block Tor, but that doesn't mean you're doing "
"anything wrong."
@@ -1571,7 +1165,6 @@ msgstr ""
"anything wrong."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:269
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:186
msgid ""
"Usually it means that site has had difficulties with visitors who've been "
"using Tor in the past, or that they misunderstand what Tor is and how it "
@@ -1582,7 +1175,6 @@ msgstr ""
"works (we’re working to change this)."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:271
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:188
msgid ""
"But it is not illegal to use Tor, and you shouldn't get in trouble for doing"
" it."
@@ -1591,7 +1183,6 @@ msgstr ""
" it."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:273
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:190
msgid ""
"You can find more information about Tor's legal status on the <a "
"class=\"hyperlinks links\" target=\"_blank\" "
@@ -1602,7 +1193,6 @@ msgstr ""
"href=\"https://www.eff.org/torchallenge/faq.html\">EFF site</a>."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:279
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:196
msgid ""
"Where can I find out more about the Tor Project, especially financial "
"information?"
@@ -1621,12 +1211,10 @@ msgstr ""
"statements and its Form 990</a>."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:289
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:206
msgid "Where does the Tor Project's money come from?"
msgstr "Where does the Tor Project's money come from?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:293
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:210
msgid ""
"Tor is supported by United States government funding agencies, NGOs, private"
" foundations, research institutions, private companies, and over 20,000 "
@@ -1647,7 +1235,6 @@ msgstr ""
"more.)"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:297
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:214
msgid ""
"While we are grateful for this funding, we don't want the Tor Project to "
"become too dependent on any single source."
@@ -1656,7 +1243,6 @@ msgstr ""
"become too dependent on any single source."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:299
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:216
msgid ""
"Crowdfunding allows us to diversify our donor base and is unrestricted -- it"
" allows us to spend the money on the projects we think are most important "
@@ -1667,7 +1253,6 @@ msgstr ""
"and respond quickly to changing events."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:301
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:218
msgid ""
"And so, we are asking you to help financially support us, to increase the "
"Tor Project's independence and ensure the sustainability of the products and"
@@ -1678,7 +1263,6 @@ msgstr ""
" services we provide."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:307
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:224
msgid ""
"How much money does the Tor Project spend annually, and what is it used for?"
msgstr ""
@@ -1689,7 +1273,6 @@ msgid "The Tor Project spends about $5 million annually."
msgstr "The Tor Project spends about $5 million annually."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:313
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:230
#, php-format
msgid ""
"About 80% of the Tor Project's spending goes to staffing, mostly software "
@@ -1699,7 +1282,6 @@ msgstr ""
"engineers."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:315
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:232
msgid ""
"About 10% goes towards administrative costs such as accounting and legal "
"costs and bank fees."
@@ -1708,7 +1290,6 @@ msgstr ""
"costs and bank fees."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:317
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:234
msgid ""
"The remaining 10% is spent on travel, meetings and conferences, which are "
"important for Tor because the Tor community is global."
@@ -1717,12 +1298,10 @@ msgstr ""
"important for Tor because the Tor community is global."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:323
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:240
msgid "Is my donation tax-deductible?"
msgstr "Is my donation tax-deductible?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:327
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:244
msgid ""
"If you pay taxes in the United States, your donation to Tor is tax "
"deductible to the full extent required by law."
@@ -1731,12 +1310,10 @@ msgstr ""
"deductible to the full extent required by law."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:329
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:246
msgid "Following is information you may need for reporting purposes:"
msgstr "Following is information you may need for reporting purposes:"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:334
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:251
msgid ""
"<b>Tor Project Tax ID Number (EIN #):</b> 20-8096820<br>\n"
" <b>Address:</b><br>\n"
@@ -1793,17 +1370,14 @@ msgstr ""
" 85049 Ingolstadt"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:365
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:264
msgid "If I am not in the United States, can I still donate?"
msgstr "If I am not in the United States, can I still donate?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:369
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:268
msgid "Yes, definitely."
msgstr "Yes, definitely."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:371
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:270
msgid ""
"Your donation probably isn't tax-deductible (unless you pay taxes on U.S. "
"income) but we would very much appreciate your support."
@@ -1812,7 +1386,6 @@ msgstr ""
"income) but we would very much appreciate your support."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:377
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:423
msgid ""
"It's important to me that my donation be tax-deductible, but I don't pay "
"taxes in the United States."
@@ -1821,7 +1394,6 @@ msgstr ""
"taxes in the United States."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:381
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:427
msgid ""
"Right now, we can only offer tax-deductibility to donors who pay taxes in "
"the United States."
@@ -1910,7 +1482,6 @@ msgid "They're run by nice people who are part of the Tor community."
msgstr "They're run by nice people who are part of the Tor community."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:415
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:276
msgid ""
"Can I donate to a specific project, or restrict my donation to a particular "
"purpose?"
@@ -1920,13 +1491,10 @@ msgstr ""
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:419
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:749
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:280
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:560
msgid "No, sorry."
msgstr "No, sorry."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:421
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:282
msgid ""
"If we accept a donation from someone who has specified how they want it "
"used, we're required by the IRS to track and report separately on that "
@@ -1937,7 +1505,6 @@ msgstr ""
"money."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:423
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:284
msgid ""
"That would be a big administrative burden for a small organization, and we "
"don't think it's a good idea for us."
@@ -1946,7 +1513,6 @@ msgstr ""
"don't think it's a good idea for us."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:425
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:286
msgid ""
"However, we would be very happy to hear your ideas and feedback about our "
"work."
@@ -1955,7 +1521,6 @@ msgstr ""
"work."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:427
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:288
msgid ""
"If you're donating using a mechanism that allows for comments, feel free to "
"send your thoughts that way."
@@ -1964,17 +1529,14 @@ msgstr ""
"send your thoughts that way."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:433
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:294
msgid "Can I donate while using Tor Browser?"
msgstr "Can I donate while using Tor Browser?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:437
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:298
msgid "Yes! In our testing, donation works via Tor Browser."
msgstr "Yes! In our testing, donation works via Tor Browser."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:439
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:300
msgid ""
"If you run into problems, please contact <span "
"class=\"email\">giving(at)torproject.org</span>."
@@ -1983,7 +1545,6 @@ msgstr ""
"class=\"email\">giving(at)torproject.org</span>."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:443
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:304
msgid ""
"For users logging in to Paypal: some people had no problem donating via "
"PayPal while using Tor Browser."
@@ -2016,7 +1577,6 @@ msgstr ""
"need to use a different browser."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:457
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:314
msgid "How can I donate via debit or credit card?"
msgstr "How can I donate via debit or credit card?"
@@ -2031,12 +1591,10 @@ msgstr ""
"class=\"hyperlinks links\" href=\"/%langcode%\">donate page</a>."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:467
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:324
msgid "Why do you ask for my address and similar information?"
msgstr "Why do you ask for my address and similar information?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:471
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:328
msgid ""
"If you donate by credit card, you will be asked for some information that's "
"required to process your credit card payment, including your billing "
@@ -2047,7 +1605,6 @@ msgstr ""
"address."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:473
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:330
msgid ""
"This allows our payment processor to verify your identity, process your "
"payment, and prevent fraudulent charges to your credit card."
@@ -2056,7 +1613,6 @@ msgstr ""
"payment, and prevent fraudulent charges to your credit card."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:475
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:332
msgid ""
"We don't ask for information beyond what's required by the payment "
"processor."
@@ -2065,12 +1621,10 @@ msgstr ""
"processor."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:481
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:338
msgid "Why is there a minimum donation?"
msgstr "Why is there a minimum donation?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:485
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:342
msgid ""
"People who have stolen credit card information often donate to nonprofits as"
" a way of testing whether the card works."
@@ -2087,7 +1641,6 @@ msgstr ""
"found that setting a $2 minimum donation seems to deter them."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:493
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:350
msgid "Is there a maximum donation?"
msgstr "Is there a maximum donation?"
@@ -2106,7 +1659,6 @@ msgstr ""
"implement ideas we have for making the Tor network even stronger."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:505
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:370
msgid ""
"If I want my donation to be anonymous, what is the best way for me to "
"donate?"
@@ -2127,7 +1679,6 @@ msgstr ""
"in a way that preserves your anonymity."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:513
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:378
msgid "You can buy cash gift cards and mail them to us."
msgstr "You can buy cash gift cards and mail them to us."
@@ -2140,15 +1691,12 @@ msgstr ""
"of -- maybe you will."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:521
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:474
msgid "Can I donate by mail?"
msgstr "Can I donate by mail?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:525
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:537
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:771
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:478
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:584
msgid "Yes."
msgstr "Yes."
@@ -2161,7 +1709,6 @@ msgstr ""
"Seattle WA 98194, USA</b>."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:533
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:486
msgid "Do you accept cash donations?"
msgstr "Do you accept cash donations?"
@@ -2267,7 +1814,6 @@ msgid "Tax ID #: 20-8096820"
msgstr "Tax ID #: 20-8096820"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:617
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:387
msgid ""
"Is the Tor Project required to identify me as a donor to the United States "
"government, or to any other authority?"
@@ -2286,7 +1832,6 @@ msgstr ""
" it) to the IRS, on Schedule B of the Form 990, which is filed annually."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:623
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:393
msgid ""
"However, it's normal for nonprofits to redact individual donor information "
"from the copy of the 990 that's made publicly-available, and that's what we "
@@ -2297,7 +1842,6 @@ msgstr ""
"do."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:625
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:395
msgid ""
"We are not required to identify donors to any other organization or "
"authority, and we do not."
@@ -2306,7 +1850,6 @@ msgstr ""
"authority, and we do not."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:631
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:403
msgid ""
"In your privacy policy, you say you will never publicly identify me as a "
"donor without my permission."
@@ -2315,17 +1858,14 @@ msgstr ""
"donor without my permission."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:633
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:405
msgid "What does that mean?"
msgstr "What does that mean?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:637
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:409
msgid "Yes, that's right."
msgstr "Yes, that's right."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:639
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:411
msgid ""
"If you donate to the Tor Project, there will be some people at the Tor "
"Project who know about your donation."
@@ -2334,7 +1874,6 @@ msgstr ""
"Project who know about your donation."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:641
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:413
msgid ""
"However, we will never publicly identify you as a donor, unless you have "
"given us permission to do so."
@@ -2343,7 +1882,6 @@ msgstr ""
"given us permission to do so."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:643
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:415
msgid ""
"That means we won't post your name on our website, thank you on Twitter, or "
"do anything else that would publicly identify you as someone who has "
@@ -2354,7 +1892,6 @@ msgstr ""
"donated."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:645
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:417
msgid ""
"If we decide we would like to publicly name you as a donor, we will ask you "
"first, and will not do it until and unless you say it's okay."
@@ -2373,12 +1910,10 @@ msgstr ""
"your post."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:653
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:448
msgid "What is your donor privacy policy?"
msgstr "What is your donor privacy policy?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:657
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:452
msgid ""
"Here is the Tor Project <a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"/%langcode%/privacy-policy\">donor privacy policy</a>."
@@ -2387,12 +1922,10 @@ msgstr ""
"href=\"/%langcode%/privacy-policy\">donor privacy policy</a>."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:663
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:458
msgid "What is your refund policy?"
msgstr "What is your refund policy?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:667
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:462
msgid ""
"If you want your donation refunded, please tell us by emailing <span "
"class=\"email\">giving(at)torproject.org</span>."
@@ -2401,7 +1934,6 @@ msgstr ""
"class=\"email\">giving(at)torproject.org</span>."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:669
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:464
msgid ""
"To process your refund we'll need to know the date of your donation, the "
"amount you donated, your full name, the payment method you used and your "
@@ -2412,12 +1944,10 @@ msgstr ""
"country of origin."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:671
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:466
msgid "Please also tell us why you're asking for a refund."
msgstr "Please also tell us why you're asking for a refund."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:673
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:468
msgid ""
"Please note that some payment methods won't support refunds, or require them"
" to be made in a specific way, so we may need additional information from "
@@ -2428,12 +1958,10 @@ msgstr ""
"you in order to process yours."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:679
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:496
msgid "Does Tor Project accept matching donations?"
msgstr "Does Tor Project accept matching donations?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:683
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:500
msgid ""
"Yes! Many companies --such as Google, Microsoft, eBay, PayPal, Apple, "
"Verizon, Red Hat, many universities, and others-- will match donations made "
@@ -2452,7 +1980,6 @@ msgstr ""
"checking with your HR department."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:687
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:506
msgid ""
"If you want help figuring out the process, write us at <span "
"class=\"email\">giving(at)torproject.org</a>."
@@ -2461,12 +1988,10 @@ msgstr ""
"class=\"email\">giving(at)torproject.org</a>."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:693
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:512
msgid "Can I become a Tor Project member?"
msgstr "Can I become a Tor Project member?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:697
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:516
msgid ""
"Right now, we don't have a membership program, but we may set one up in the "
"future."
@@ -2509,7 +2034,6 @@ msgstr ""
"patch."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:711
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:524
msgid "How can I get a Tor t-shirt or stickers?"
msgstr "How can I get a Tor t-shirt or stickers?"
@@ -2524,7 +2048,6 @@ msgstr ""
"href=\"/%langcode%\">donation page</a>."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:721
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:534
msgid ""
"If I want to stay in touch with the Tor Project, what's the best way for me "
"to do that?"
@@ -2533,7 +2056,6 @@ msgstr ""
"to do that?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:725
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:538
msgid ""
"You can sign up to receive <a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"https://newsletter.torproject.org/\">Tor News</a>, read the <a "
@@ -2550,7 +2072,6 @@ msgstr ""
" on Twitter</a>."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:731
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:544
msgid ""
"Does the Tor Project participate in the Combined Federal Campaign program?"
msgstr ""
@@ -2573,7 +2094,6 @@ msgid "Tor doesn't currently participate in the Federal CFC program."
msgstr "Tor doesn't currently participate in the Federal CFC program."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:739
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:550
msgid ""
"If you'd like to get Tor added to the CFC program in your location, that "
"would be great: please let us know if you need any help."
@@ -2582,12 +2102,10 @@ msgstr ""
"would be great: please let us know if you need any help."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:745
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:556
msgid "Can I donate my airline miles, flight vouchers, or hotel points?"
msgstr "Can I donate my airline miles, flight vouchers, or hotel points?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:751
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:562
msgid ""
"We would like to accept your miles, vouchers and hotel points, and in the "
"future we may be able to."
@@ -2596,7 +2114,6 @@ msgstr ""
"future we may be able to."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:757
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:568
msgid "Can I donate hardware?"
msgstr "Can I donate hardware?"
@@ -2611,7 +2128,6 @@ msgstr ""
"us, please mail <span class=\"email\">giving(at)torproject.org</span>."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:767
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:580
msgid "Can I donate my time?"
msgstr "Can I donate my time?"
@@ -2626,17 +2142,14 @@ msgstr ""
"your help</a>."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:779
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:592
msgid "I would like my company to support Tor."
msgstr "I would like my company to support Tor."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:781
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:594
msgid "What can we do to help?"
msgstr "What can we do to help?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:785
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:598
msgid ""
"Your company could match donations made by its employees to the Tor Project"
"--that would be wonderful."
@@ -2645,7 +2158,6 @@ msgstr ""
"--that would be wonderful."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:787
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:600
msgid ""
"Your company may operate a corporate foundation that gives out grants, and "
"if so, you should encourage it to fund us."
@@ -2664,7 +2176,6 @@ msgstr ""
" Tor relay</a>."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:791
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:604
msgid ""
"If your company sells cloud services, perhaps it could donate these to Tor: "
"We use them in some anti-censorship projects."
@@ -2673,28 +2184,23 @@ msgstr ""
"We use them in some anti-censorship projects."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:797
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:610
msgid "You don't support my preferred way to donate."
msgstr "You don't support my preferred way to donate."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:799
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:612
msgid "Can I recommend a new donation method to you?"
msgstr "Can I recommend a new donation method to you?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:803
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:616
msgid "Sure."
msgstr "Sure."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:805
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:618
msgid "Just mail us at <span class=\"email\">giving(at)torproject.org</span></a>."
msgstr ""
"Just mail us at <span class=\"email\">giving(at)torproject.org</span></a>."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:811
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:624
msgid ""
"Will the Tor Project accept donations from anybody, or do you reserve the "
"right to reject support from specific organizations or individuals?"
@@ -2703,32 +2209,26 @@ msgstr ""
"right to reject support from specific organizations or individuals?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:815
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:628
msgid "We do reserve the right to reject a donation."
msgstr "We do reserve the right to reject a donation."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:817
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:630
msgid "To date though, we haven't exercised that right."
msgstr "To date though, we haven't exercised that right."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:819
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:632
msgid "We are happy that a broad range of people use and support Tor."
msgstr "We are happy that a broad range of people use and support Tor."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:825
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:638
msgid "I have more questions."
msgstr "I have more questions."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:827
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:640
msgid "How can I get answers?"
msgstr "How can I get answers?"
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:831
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:644
msgid ""
"Feel free to send questions to <span "
"class=\"email\">frontdesk(at)rt.torproject.org</span>."
@@ -2737,7 +2237,6 @@ msgstr ""
"class=\"email\">frontdesk(at)rt.torproject.org</span>."
#: tmp/cache_locale/7d/7d56367a61f987367eeb2a89d0c6db83fd0801cce86278bf7e99ed39b5b46254.php:833
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:646
msgid ""
"We will try to answer you, and we'll also post your question (and the "
"answer) here."
@@ -2750,22 +2249,18 @@ msgid "State Registration Disclosures"
msgstr "State Registration Disclosures"
#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:53
-#: tmp/cache_locale/0d/0de73852fd4b6afe8a4f069f907a5e1e93a3159f5ffaddbf485db43dd4ce3a8a.php:34
msgid "Subscribed | Tor"
msgstr "Subscribed | Tor"
#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:64
-#: tmp/cache_locale/0d/0de73852fd4b6afe8a4f069f907a5e1e93a3159f5ffaddbf485db43dd4ce3a8a.php:44
msgid "Subscription Confirmed!"
msgstr "Subscription Confirmed!"
#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:78
-#: tmp/cache_locale/0d/0de73852fd4b6afe8a4f069f907a5e1e93a3159f5ffaddbf485db43dd4ce3a8a.php:57
msgid "Thanks for joining our email list - you'll hear from us soon!"
msgstr "Thanks for joining our email list - you'll hear from us soon!"
#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:80
-#: tmp/cache_locale/0d/0de73852fd4b6afe8a4f069f907a5e1e93a3159f5ffaddbf485db43dd4ce3a8a.php:59
msgid ""
"In the meantime, follow <a target=\"_blank\" "
"href=\"https://twitter.com/torproject\">@TorProject</a> on Twitter to keep "
@@ -2776,7 +2271,6 @@ msgstr ""
"in touch."
#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:84
-#: tmp/cache_locale/0d/0de73852fd4b6afe8a4f069f907a5e1e93a3159f5ffaddbf485db43dd4ce3a8a.php:63
msgid ""
"As a non-profit organization, we rely on contributions from people like you "
"to help us create and maintain technology used by millions of users daily to"
@@ -2786,54 +2280,114 @@ msgstr ""
"to help us create and maintain technology used by millions of users daily to"
" browse, communicate, and express themselves online privately."
-#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:86
-#: tmp/cache_locale/0d/0de73852fd4b6afe8a4f069f907a5e1e93a3159f5ffaddbf485db43dd4ce3a8a.php:65
-msgid "Every little bit helps"
-msgstr "Every little bit helps"
+#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:86
+msgid "Every little bit helps"
+msgstr "Every little bit helps"
+
+#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:88
+msgid "please donate today"
+msgstr "please donate today"
+
+#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:92
+msgid "Donate Now"
+msgstr "Donate Now"
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:53
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:53
+msgid "Tor Thanks You"
+msgstr "Tor Thanks You"
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:64
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:64
+msgid "Thank you!"
+msgstr "Thank you!"
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:71
+msgid "Thank you for supporting Tor's Strength in Numbers campaign."
+msgstr "Thank you for supporting Tor's Strength in Numbers campaign."
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:73
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:70
+msgid "You should receive an email receipt shortly."
+msgstr "You should receive an email receipt shortly."
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:75
+msgid ""
+"With your support and the generous matching funds from Mozilla, we'll be "
+"able to tackle ambitious projects, such as developing a more secure, "
+"privacy-enhancing browser for mobile devices and making it easier for third-"
+"party developers to integrate Tor into their applications."
+msgstr ""
+"With your support and the generous matching funds from Mozilla, we'll be "
+"able to tackle ambitious projects, such as developing a more secure, "
+"privacy-enhancing browser for mobile devices and making it easier for third-"
+"party developers to integrate Tor into their applications."
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:81
+msgid "Thank you for standing up for privacy and freedom online."
+msgstr "Thank you for standing up for privacy and freedom online."
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:83
+msgid ""
+"With your gift of cryptocurrency, you're helping the Tor Project give "
+"millions of people private access to the open web."
+msgstr ""
+"With your gift of cryptocurrency, you're helping the Tor Project give "
+"millions of people private access to the open web."
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:85
+msgid ""
+"Your contribution helps make Tor an even stronger tool against authoritarian"
+" governments and privacy-invading corporations."
+msgstr ""
+"Your contribution helps make Tor an even stronger tool against authoritarian"
+" governments and privacy-invading corporations."
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:91
+msgid "For your convenience, our wallet addresses are listed below."
+msgstr "For your convenience, our wallet addresses are listed below."
-#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:88
-#: tmp/cache_locale/0d/0de73852fd4b6afe8a4f069f907a5e1e93a3159f5ffaddbf485db43dd4ce3a8a.php:67
-msgid "please donate today"
-msgstr "please donate today"
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:93
+msgid ""
+"Please make sure to copy the wallet addresses exactly when making your "
+"donation, as we are unable to recover funds sent to the wrong wallet."
+msgstr ""
+"Please make sure to copy the wallet addresses exactly when making your "
+"donation, as we are unable to recover funds sent to the wrong wallet."
-#: tmp/cache_locale/6c/6cd01cfbd4684dcca4eada963c78b5d694a2f40cd309be9366b080c410b3c5a0.php:92
-#: tmp/cache_locale/0d/0de73852fd4b6afe8a4f069f907a5e1e93a3159f5ffaddbf485db43dd4ce3a8a.php:71
-msgid "Donate Now"
-msgstr "Donate Now"
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:97
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:82
+msgid "SHARE THE TOR PROJECT"
+msgstr "SHARE THE TOR PROJECT"
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:52
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:75
-#: tmp/cache_locale/2c/2c32942b896dd845bd6204d3104922983a843d726e231446ff21ddb2a33f6cda.php:29
-#: tmp/cache_locale/2c/2c32942b896dd845bd6204d3104922983a843d726e231446ff21ddb2a33f6cda.php:52
-msgid "Donate to the Tor Project and protect the privacy of millions."
-msgstr "Donate to the Tor Project and protect the privacy of millions."
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:166
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:109
+msgid "Got Skills?"
+msgstr "Got Skills?"
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:54
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:77
-#: tmp/cache_locale/2c/2c32942b896dd845bd6204d3104922983a843d726e231446ff21ddb2a33f6cda.php:31
-#: tmp/cache_locale/2c/2c32942b896dd845bd6204d3104922983a843d726e231446ff21ddb2a33f6cda.php:54
-msgid "Anonymity loves company."
-msgstr "Anonymity loves company."
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:172
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:115
+msgid "The Tor network depends on volunteers."
+msgstr "The Tor network depends on volunteers."
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:109
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:178
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:121
msgid ""
-"Defenders of Privacy pledge a modest amount each month - creating a steady, "
-"reliable source of funds to help us be agile in an ever-changing privacy "
-"landscape and we send exclusive gifts to show our appreciation!"
+"We need people to run relays, write code, organize the community and spread "
+"the word about our good work."
msgstr ""
-"Defenders of Privacy pledge a modest amount each month - creating a steady, "
-"reliable source of funds to help us be agile in an ever-changing privacy "
-"landscape and we send exclusive gifts to show our appreciation!"
+"We need people to run relays, write code, organize the community and spread "
+"the word about our good work."
-#: tmp/cache_locale/66/666e9197f427d70c0743bcdae2c3e34f41f9d7acf2b2dddb2c21c21723e73d10.php:113
-msgid ""
-"The Tor Project counts on the support of our Defenders of Privacy to "
-"continue our mission to provide tools that protect peoples privacy and "
-"identity online."
-msgstr ""
-"The Tor Project counts on the support of our Defenders of Privacy to "
-"continue our mission to provide tools that protect peoples privacy and "
-"identity online."
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:180
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:123
+msgid "Learn how you can help."
+msgstr "Learn how you can help."
+
+#: tmp/cache_locale/60/60fb10a60dd92fe380a6d105fd68d9375e135c65251f204fa37158d9c2e655d9.php:188
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:131
+msgid "I Want To Volunteer"
+msgstr "I Want To Volunteer"
#: tmp/cache_locale/17/179dc1a0f488d5bbb8c128dc5c0fb35d6240d83414df10335a1cf4031139609a.php:53
msgid "Tor State Nonprofit Disclosures"
@@ -3073,6 +2627,10 @@ msgstr ""
msgid "Back to Donate FAQ"
msgstr "Back to Donate FAQ"
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:68
+msgid "Thank you for your support of the Tor Project."
+msgstr "Thank you for your support of the Tor Project."
+
#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:72
msgid ""
"With your support, we'll be able to tackle ambitious projects, like "
@@ -3085,6 +2643,14 @@ msgstr ""
"censorship protections to the next level, and optimizing our development of "
"Tor Browser for Android."
+#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:76
+msgid ""
+"It's an incredible time to stand up for world-leading security and privacy "
+"software."
+msgstr ""
+"It's an incredible time to stand up for world-leading security and privacy "
+"software."
+
#: tmp/cache_locale/12/12677df2d2a5991edb775c6909b7be7ca718fd00abd6950a809cda5ab878d2ce.php:78
msgid ""
"Tell family, friends, and colleagues that you're supporting privacy and "
@@ -3093,385 +2659,13 @@ msgstr ""
"Tell family, friends, and colleagues that you're supporting privacy and "
"security and taking back the internet with Tor!"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:70
-msgid ""
-"The Tor Project’s mission is to advance human rights and freedoms by "
-"creating and deploying free and open anonymity and privacy technologies, "
-"supporting their unrestricted availability and use, and furthering their "
-"scientific and popular understanding."
-msgstr ""
-"The Tor Project’s mission is to advance human rights and freedoms by "
-"creating and deploying free and open anonymity and privacy technologies, "
-"supporting their unrestricted availability and use, and furthering their "
-"scientific and popular understanding."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:72
-msgid ""
-"The main product of the Tor Project is <a "
-"href=\"https://www.torproject.org/download/download-easy.html.en\">Tor "
-"Browser</a>, which enables people to browse the internet anonymously."
-msgstr ""
-"The main product of the Tor Project is <a "
-"href=\"https://www.torproject.org/download/download-easy.html.en\">Tor "
-"Browser</a>, which enables people to browse the internet anonymously."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:74
-msgid ""
-"The Tor Project is a 501(c)3 tax-exempt non-profit organization based in "
-"Boston, Massachusetts."
-msgstr ""
-"The Tor Project is a 501(c)3 tax-exempt non-profit organization based in "
-"Boston, Massachusetts."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:113
-msgid ""
-"To get started, you will need to <a class=\"hyperlinks\" target=\"_blank\" "
-"href=\"https://www.torproject.org/projects/torbrowser.html.en\"><span "
-"class=\"links\">download Tor Browser</span></a>."
-msgstr ""
-"To get started, you will need to <a class=\"hyperlinks\" target=\"_blank\" "
-"href=\"https://www.torproject.org/projects/torbrowser.html.en\"><span "
-"class=\"links\">download Tor Browser</span></a>."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:115
-msgid ""
-"We offer instructions on how to download for <a class=\"hyperlinks links\" "
-"target=\"_blank\" "
-"href=\"https://www.torproject.org/projects/torbrowser.html.en#windows\">Windows</a>,"
-" <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/projects/torbrowser.html.en#macosx\">Mac "
-"OS X</a> and <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/projects/torbrowser.html.en#linux\">Linux</a>."
-msgstr ""
-"We offer instructions on how to download for <a class=\"hyperlinks links\" "
-"target=\"_blank\" "
-"href=\"https://www.torproject.org/projects/torbrowser.html.en#windows\">Windows</a>,"
-" <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/projects/torbrowser.html.en#macosx\">Mac "
-"OS X</a> and <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/projects/torbrowser.html.en#linux\">Linux</a>."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:127
-msgid ""
-"Thousands of individuals have donated to support the Tor Project, and we "
-"have also received funding from a wide range of organizations including "
-"Google, the Ford Foundation, the Knight Foundation, Reddit, the U.S. "
-"National Science Foundation, the Electronic Frontier Foundation, Human "
-"Rights Watch, the Swedish International Development Cooperation Agency, the "
-"Federal Foreign Office of Germany, the U.S. Naval Research Laboratory, "
-"Omidyar Network, SRI International, and Radio Free Asia."
-msgstr ""
-"Thousands of individuals have donated to support the Tor Project, and we "
-"have also received funding from a wide range of organizations including "
-"Google, the Ford Foundation, the Knight Foundation, Reddit, the U.S. "
-"National Science Foundation, the Electronic Frontier Foundation, Human "
-"Rights Watch, the Swedish International Development Cooperation Agency, the "
-"Federal Foreign Office of Germany, the U.S. Naval Research Laboratory, "
-"Omidyar Network, SRI International, and Radio Free Asia."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:129
-msgid ""
-"People also support Tor in non-financial ways, for example by running Tor "
-"relays to help carry traffic for other users."
-msgstr ""
-"People also support Tor in non-financial ways, for example by running Tor "
-"relays to help carry traffic for other users."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:147
-msgid ""
-"You can read more about how Tor works on our <a class=\"hyperlinks links\" "
-"target=\"_blank\" "
-"href=\"https://www.torproject.org/about/overview.html.en\">overview page."
-msgstr ""
-"You can read more about how Tor works on our <a class=\"hyperlinks links\" "
-"target=\"_blank\" "
-"href=\"https://www.torproject.org/about/overview.html.en\">overview page."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:158
-msgid ""
-"<a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/docs/faq.html.en\">This Tor Project "
-"FAQ</a> has answers to all those questions, and more."
-msgstr ""
-"<a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/docs/faq.html.en\">This Tor Project "
-"FAQ</a> has answers to all those questions, and more."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:172
-msgid ""
-"The Electronic Frontier Foundation says that Tor offers <a "
-"class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.eff.org/deeplinks/2014/07/7-things-you-should-know-about-"
-"tor\">some of the strongest anonymity software that exists</a>, and in his "
-"book Data and Goliath, security expert Bruce Schneier wrote \"The current "
-"best tool to protect your anonymity when browsing the web is Tor.\""
-msgstr ""
-"The Electronic Frontier Foundation says that Tor offers <a "
-"class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.eff.org/deeplinks/2014/07/7-things-you-should-know-about-"
-"tor\">some of the strongest anonymity software that exists</a>, and in his "
-"book Data and Goliath, security expert Bruce Schneier wrote \"The current "
-"best tool to protect your anonymity when browsing the web is Tor.\""
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:200
-msgid ""
-"Here are the Tor Project's <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/about/financials.html.en\">financial "
-"statements, and its Form 990</a>."
-msgstr ""
-"Here are the Tor Project's <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/about/financials.html.en\">financial "
-"statements, and its Form 990</a>."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:212
-msgid ""
-"(See <a class=\"hyperlinks links single-link\" target=\"_blank\" "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">https://www.torproject.org/about/sponsors</a>"
-" for more.)"
-msgstr ""
-"(See <a class=\"hyperlinks links single-link\" target=\"_blank\" "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">https://www.torproject.org/about/sponsors</a>"
-" for more.)"
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:228
-msgid "The Tor Project spends about $4 million annually."
-msgstr "The Tor Project spends about $4 million annually."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:306
-msgid ""
-"In past years, some people couldn't complete the donation process, and one "
-"person had their PayPal account temporarily frozen."
-msgstr ""
-"In past years, some people couldn't complete the donation process, and one "
-"person had their PayPal account temporarily frozen."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:308
-msgid "If you run into any problems donating via PayPal, please let us know."
-msgstr "If you run into any problems donating via PayPal, please let us know."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:318
-msgid ""
-"To donate using a major credit card or debit card (VISA, MasterCard, "
-"Discover or American Express) or via PayPal, please visit our <a "
-"href=\"https://donate.torproject.org\">donate page</a>."
-msgstr ""
-"To donate using a major credit card or debit card (VISA, MasterCard, "
-"Discover or American Express) or via PayPal, please visit our <a "
-"href=\"https://donate.torproject.org\">donate page</a>."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:344
-msgid ""
-"These people typically use a very small amount for their testing, and we've "
-"found that setting a $1 minimum donation seems to deter them."
-msgstr ""
-"These people typically use a very small amount for their testing, and we've "
-"found that setting a $1 minimum donation seems to deter them."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:354
-msgid ""
-"No, no, no! More funding from you means we can do more things we are excited"
-" to do, like hire a person to monitor the Tor network full time, or "
-"research, test, and implement ideas we have for making the Tor network even "
-"stronger."
-msgstr ""
-"No, no, no! More funding from you means we can do more things we are excited"
-" to do, like hire a person to monitor the Tor network full time, or "
-"research, test, and implement ideas we have for making the Tor network even "
-"stronger."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:360
-msgid "Can I donate via bitcoin?"
-msgstr "Can I donate via bitcoin?"
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:364
-msgid ""
-"Yes! We accept <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/donate/donate-options.html.en\">bitcoin "
-"via BitPay</a>."
-msgstr ""
-"Yes! We accept <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/donate/donate-options.html.en\">bitcoin "
-"via BitPay</a>."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:374
-msgid ""
-"You can donate by <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/donate/donate-"
-"options.html.en#cash\">sending us a postal money order</a>."
-msgstr ""
-"You can donate by <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/donate/donate-"
-"options.html.en#cash\">sending us a postal money order</a>."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:376
-msgid ""
-"You can donate via bitcoin if you have bitcoin set up in a way that "
-"preserves your anonymity."
-msgstr ""
-"You can donate via bitcoin if you have bitcoin set up in a way that "
-"preserves your anonymity."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:380
-msgid ""
-"There are probably other ways to donate anonymously that we haven't thought "
-"of-- maybe you will :)"
-msgstr ""
-"There are probably other ways to donate anonymously that we haven't thought "
-"of-- maybe you will :)"
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:391
-msgid ""
-"If you donate $5,000 or more to the Tor Project in a single year, we are "
-"required to report the donation amount and your name and address (if we have"
-" it) to the IRS, on Schedule B of the Form 990, which is filed annually."
-msgstr ""
-"If you donate $5,000 or more to the Tor Project in a single year, we are "
-"required to report the donation amount and your name and address (if we have"
-" it) to the IRS, on Schedule B of the Form 990, which is filed annually."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:397
-msgid ""
-"(Also, if you wanted, you could give us $4,999 in late 2018 and $4,999 in "
-"early 2019.)"
-msgstr ""
-"(Also, if you wanted, you could give us $4,999 in late 2018 and $4,999 in "
-"early 2019.)"
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:429
-msgid ""
-"If it's important to you that your donations be tax-deductible in a "
-"different country, let us know and we will try to offer tax-deductibility in"
-" your country in future."
-msgstr ""
-"If it's important to you that your donations be tax-deductible in a "
-"different country, let us know and we will try to offer tax-deductibility in"
-" your country in future."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:431
-msgid ""
-"Or, if you are in Germany, France or Sweden, <a class=\"hyperlinks links\" "
-"target=\"_blank\" "
-"href=\"https://www.torproject.org/docs/faq.html.en#RelayDonations\">these "
-"organizations support the Tor network</a> and may be able to offer you tax-"
-"deductibility for your donation."
-msgstr ""
-"Or, if you are in Germany, France or Sweden, <a class=\"hyperlinks links\" "
-"target=\"_blank\" "
-"href=\"https://www.torproject.org/docs/faq.html.en#RelayDonations\">these "
-"organizations support the Tor network</a> and may be able to offer you tax-"
-"deductibility for your donation."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:437
-msgid ""
-"What if I don't want to use credit card or PayPal? Is there another way I "
-"can donate?"
-msgstr ""
-"What if I don't want to use credit card or PayPal? Is there another way I "
-"can donate?"
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:441
-msgid ""
-"Yes! Here is a list of <a href=\"https://www.torproject.org/donate/donate-"
-"options.html.en\" class=\"hyperlinks links\" target=\"_blank\">other ways "
-"you can donate.</a>"
-msgstr ""
-"Yes! Here is a list of <a href=\"https://www.torproject.org/donate/donate-"
-"options.html.en\" class=\"hyperlinks links\" target=\"_blank\">other ways "
-"you can donate.</a>"
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:480
-msgid ""
-"Our mailing address is The Tor Project, 217 First Avenue South #4903, "
-"Seattle WA 98194, USA"
-msgstr ""
-"Our mailing address is The Tor Project, 217 First Avenue South #4903, "
-"Seattle WA 98194, USA"
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:490
-msgid "Yes"
-msgstr "Yes"
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:502
-msgid ""
-"The fastest way to find out if your company matches donations is usually by "
-"checking with your HR department, or you can search for your company name at"
-" <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.matchinggifts.com/rit/\">https://www.matchinggifts.com/rit/</a>."
-msgstr ""
-"The fastest way to find out if your company matches donations is usually by "
-"checking with your HR department, or you can search for your company name at"
-" <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.matchinggifts.com/rit/\">https://www.matchinggifts.com/rit/</a>."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:504
-msgid ""
-"If your company isn't currently set up to match donations to the Tor "
-"Project, we would be happy to help with the paperwork."
-msgstr ""
-"If your company isn't currently set up to match donations to the Tor "
-"Project, we would be happy to help with the paperwork."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:518
-msgid ""
-"If you want to get involved with the Tor Project, <a class=\"hyperlinks "
-"links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">this is a "
-"good place to start</a>."
-msgstr ""
-"If you want to get involved with the Tor Project, <a class=\"hyperlinks "
-"links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">this is a "
-"good place to start</a>."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:528
-msgid ""
-"A variety of thank-you gifts for donors, including t-shirts, hoodies and "
-"stickers, are presented on our main <a "
-"href=\"https://donate.torproject.org\">donation page</a>."
-msgstr ""
-"A variety of thank-you gifts for donors, including t-shirts, hoodies and "
-"stickers, are presented on our main <a "
-"href=\"https://donate.torproject.org\">donation page</a>."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:548
-msgid "No, Tor doesn't currently participate in the CFC program."
-msgstr "No, Tor doesn't currently participate in the CFC program."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:572
-msgid "Typically no, we don't encourage people to donate hardware."
-msgstr "Typically no, we don't encourage people to donate hardware."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:574
-msgid ""
-"But if you want to make a hardware donation that you think might be "
-"especially useful for us, please mail <span "
-"class=\"email\">giving(at)torproject.org</span>."
-msgstr ""
-"But if you want to make a hardware donation that you think might be "
-"especially useful for us, please mail <span "
-"class=\"email\">giving(at)torproject.org</span>."
-
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:586
-msgid ""
-"Here's a <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">list of "
-"areas where we would love your help</a>."
-msgstr ""
-"Here's a <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">list of "
-"areas where we would love your help</a>."
+#: tmp/cache_locale/05/05c65ace52301a00198c48e1d823da2c14fbd489e7fb45efbca4e79e5709cbdb.php:53
+msgid "Processing Donation - Tor"
+msgstr "Processing Donation - Tor"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:602
-msgid ""
-"Maybe your company would be willing to <a class=\"hyperlinks links\" "
-"target=\"_blank\" "
-"href=\"https://www.torproject.org/docs/faq.html.en#HowDoIDecide\">operate a "
-"Tor relay</a>."
-msgstr ""
-"Maybe your company would be willing to <a class=\"hyperlinks links\" "
-"target=\"_blank\" "
-"href=\"https://www.torproject.org/docs/faq.html.en#HowDoIDecide\">operate a "
-"Tor relay</a>."
+#: tmp/cache_locale/05/05c65ace52301a00198c48e1d823da2c14fbd489e7fb45efbca4e79e5709cbdb.php:64
+msgid "Processing Donation. Please Wait..."
+msgstr "Processing Donation. Please Wait..."
#: tmp/cache_locale/02/023cc9edfe6c60b72788b97f6a123fde6020d003845e03b26b572d864d6eb3de.php:83
msgid ""
1
0

10 Jun '20
commit 60a1b33dfa3065e5a8c9d2f9df428860fb902408
Author: peterh <peterh(a)giantrabbit.com>
Date: Wed Jan 22 16:03:01 2020 -0800
Rate limit number of subscription requests
An attacker could use the /subscribe form to send tons of emails to
anyone's email address. We want to limit that so it doesn't cause
problem. This limits it to 10 emails per 6 hours. It's actually doing it
by rate, so once you hit the limit of 10, then you can send another one
about 36 minutes after that and keep sending one every 36 minutes.
Issue #44700
---
src/IpRateExceeded.php | 6 +++++
src/IpRateLimiter.php | 57 ++++++++++++++++++++++++++++++++++++++++++
src/SubscriptionController.php | 2 ++
src/dependencies.php | 4 +++
src/middleware.php | 1 +
src/settings.php | 4 +++
6 files changed, 74 insertions(+)
diff --git a/src/IpRateExceeded.php b/src/IpRateExceeded.php
new file mode 100644
index 00000000..8b778993
--- /dev/null
+++ b/src/IpRateExceeded.php
@@ -0,0 +1,6 @@
+<?php
+
+namespace Tor;
+
+class IpRateExceeded extends \Exception {
+}
diff --git a/src/IpRateLimiter.php b/src/IpRateLimiter.php
new file mode 100644
index 00000000..b14af3d3
--- /dev/null
+++ b/src/IpRateLimiter.php
@@ -0,0 +1,57 @@
+<?php
+
+namespace Tor;
+
+class IpRateLimiter {
+ public $redis;
+ public $environment_info;
+
+ public function __construct($container) {
+ $this->environment_info = $container->get('environment_info');
+ $this->logger = $container->get('logger');
+ $this->redis = \Resque::redis();
+ $this->settings = $container->get('settings')['ipRateLimiter'];
+ $this->maxRequestsPerTimeSpan = $this->settings['maxRequestsPerTimeSpan'];
+ $this->timeSpan = $this->settings['timeSpan'];
+ }
+
+ function check($request) {
+ $keyName = $this->keyName($request);
+ list($allowance, $lastCheck) = $this->getIpData($keyName);
+ $now = time();
+ $timePassed = $now - $lastCheck;
+ $allowanceAdjustment = $timePassed * $this->maxRequestsPerTimeSpan / $this->timeSpan;
+ $allowance += $allowanceAdjustment;
+ if ($allowance < 1) {
+ $this->setIpData($keyName, $allowance, $now);
+ $ipAddress = $request->getAttribute('ip_address');
+ throw new IpRateExceeded("There have been more than {$this->maxRequestsPerTimeSpan} requests from $ipAddress in the last {$this->timeSpan} seconds.");
+ }
+ $allowance -= 1;
+ $this->setIpData($keyName, $allowance, $now);
+ }
+
+ function getIpData($keyName) {
+ $data = $this->redis->get($keyName);
+ if (is_null($data)) {
+ return [$this->maxRequestsPerTimeSpan, time()];
+ }
+ $struct = unserialize($data, ['allowed_classes', FALSE]);
+ if ($struct === FALSE) {
+ $this->logger->debug("Bap\n!");
+ return [$this->maxRequestsPerTimeSpan, time()];
+ }
+ return unserialize($data);
+ }
+
+ function keyName($request) {
+ $ipAddress = $request->getAttribute('ip_address');
+ return $this->environment_info->name() . "_rate_limiter_$ipAddress";
+ }
+
+ function setIpData($keyName, $allowance, $lastCheck) {
+ $data = serialize([$allowance, $lastCheck]);
+ $this->redis->set($keyName, $data);
+ $this->redis->expire($keyName, $this->timeSpan);
+ }
+}
diff --git a/src/SubscriptionController.php b/src/SubscriptionController.php
index d403d77e..6aa60707 100644
--- a/src/SubscriptionController.php
+++ b/src/SubscriptionController.php
@@ -60,6 +60,8 @@ class SubscriptionController extends BaseController {
}
public function subscriptionRequest($request, $response, $args) {
+ $ipRateLimiter = $this->container->get('ipRateLimiter');
+ $ipRateLimiter->check($request);
$this->vars['bodyClasses'] = array('subscribe');
$parsedBody = $request->getParsedBody();
$fieldValidationRules = array(
diff --git a/src/dependencies.php b/src/dependencies.php
index 68cd24d0..65058873 100644
--- a/src/dependencies.php
+++ b/src/dependencies.php
@@ -67,6 +67,10 @@ $container['errorHandler'] = function($container) {
return $error_handler;
};
+$container['ipRateLimiter'] = function($container) {
+ return new \Tor\IpRateLimiter($container);
+};
+
$settings = $container->get('settings');
$settings['redis'] = [
'host' => 'localhost',
diff --git a/src/middleware.php b/src/middleware.php
index d0f7da59..a2c120df 100644
--- a/src/middleware.php
+++ b/src/middleware.php
@@ -3,3 +3,4 @@
// e.g: $app->add(new \Slim\Csrf\Guard);
$app->add(new \Tor\I18nMiddleware($app));
+$app->add(new RKA\Middleware\IpAddress());
diff --git a/src/settings.php b/src/settings.php
index 04934131..c615f9c1 100644
--- a/src/settings.php
+++ b/src/settings.php
@@ -6,6 +6,10 @@ $config = [
'settings' => [
'displayErrorDetails' => true,
'addContentLengthHeader' => false,
+ 'ipRateLimiter' => [
+ 'maxRequestsPerTimeSpan' => 10,
+ 'timeSpan' => 21600,
+ ],
'renderer' => [
'cache_path' => __DIR__ . '/../tmp/cache/templates',
'template_path' => __DIR__ . '/../templates/',
1
0