tor-commits
Threads by month
- ----- 2025 -----
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
February 2019
- 16 participants
- 1788 discussions
commit 00b92d3c5e8e2008a5ea1f0667d229e6bbeddc8d
Author: David Fifield <david(a)bamsoftware.com>
Date: Wed Feb 6 01:51:23 2019 -0700
Don't panic in test goroutines.
panic means the channel won't close, which means the parent goroutine
will hang. Also take the opportunity to log an error message.
---
meek-client/proxy_test.go | 22 ++++++++++++----------
1 file changed, 12 insertions(+), 10 deletions(-)
diff --git a/meek-client/proxy_test.go b/meek-client/proxy_test.go
index 0b37fb3..820f580 100644
--- a/meek-client/proxy_test.go
+++ b/meek-client/proxy_test.go
@@ -75,7 +75,7 @@ func TestAddrForDial(t *testing.T) {
// Dial the given address with the given proxy, and return the http.Request that
// the proxy server would have received.
-func requestResultingFromDial(ln net.Listener, makeProxy func(addr net.Addr) (*httpProxy, error), network, addr string) (*http.Request, error) {
+func requestResultingFromDial(t *testing.T, ln net.Listener, makeProxy func(addr net.Addr) (*httpProxy, error), network, addr string) (*http.Request, error) {
ch := make(chan *http.Request, 1)
go func() {
@@ -84,13 +84,15 @@ func requestResultingFromDial(ln net.Listener, makeProxy func(addr net.Addr) (*h
}()
conn, err := ln.Accept()
if err != nil {
- panic(err)
+ t.Error(err)
+ return
}
defer conn.Close()
br := bufio.NewReader(conn)
req, err := http.ReadRequest(br)
if err != nil {
- panic(err)
+ t.Error(err)
+ return
}
ch <- req
}()
@@ -105,18 +107,18 @@ func requestResultingFromDial(ln net.Listener, makeProxy func(addr net.Addr) (*h
return <-ch, nil
}
-func requestResultingFromDialHTTP(makeProxy func(addr net.Addr) (*httpProxy, error), network, addr string) (*http.Request, error) {
+func requestResultingFromDialHTTP(t *testing.T, makeProxy func(addr net.Addr) (*httpProxy, error), network, addr string) (*http.Request, error) {
ln, err := net.Listen("tcp", "127.0.0.1:0")
if err != nil {
return nil, err
}
defer ln.Close()
- return requestResultingFromDial(ln, makeProxy, network, addr)
+ return requestResultingFromDial(t, ln, makeProxy, network, addr)
}
// Test that the HTTP proxy client sends a correct request.
func TestProxyHTTPCONNECT(t *testing.T) {
- req, err := requestResultingFromDialHTTP(func(addr net.Addr) (*httpProxy, error) {
+ req, err := requestResultingFromDialHTTP(t, func(addr net.Addr) (*httpProxy, error) {
return ProxyHTTP("tcp", addr.String(), nil, proxy.Direct)
}, "tcp", testAddr)
if err != nil {
@@ -139,7 +141,7 @@ func TestProxyHTTPProxyAuthorization(t *testing.T) {
User: testUsername,
Password: testPassword,
}
- req, err := requestResultingFromDialHTTP(func(addr net.Addr) (*httpProxy, error) {
+ req, err := requestResultingFromDialHTTP(t, func(addr net.Addr) (*httpProxy, error) {
return ProxyHTTP("tcp", addr.String(), auth, proxy.Direct)
}, "tcp", testAddr)
if err != nil {
@@ -169,7 +171,7 @@ func TestProxyHTTPProxyAuthorization(t *testing.T) {
}
}
-func requestResultingFromDialHTTPS(makeProxy func(addr net.Addr) (*httpProxy, error), network, addr string) (*http.Request, error) {
+func requestResultingFromDialHTTPS(t *testing.T, makeProxy func(addr net.Addr) (*httpProxy, error), network, addr string) (*http.Request, error) {
// Create a TLS listener using a temporary self-signed certificate.
// https://golang.org/src/crypto/tls/generate_cert.go
priv, err := ecdsa.GenerateKey(elliptic.P256(), rand.Reader)
@@ -210,11 +212,11 @@ func requestResultingFromDialHTTPS(makeProxy func(addr net.Addr) (*httpProxy, er
return nil, err
}
defer ln.Close()
- return requestResultingFromDial(ln, makeProxy, network, addr)
+ return requestResultingFromDial(t, ln, makeProxy, network, addr)
}
func TestProxyHTTPSCONNECT(t *testing.T) {
- req, err := requestResultingFromDialHTTPS(func(addr net.Addr) (*httpProxy, error) {
+ req, err := requestResultingFromDialHTTPS(t, func(addr net.Addr) (*httpProxy, error) {
return ProxyHTTPS("tcp", addr.String(), nil, proxy.Direct, &utls.Config{InsecureSkipVerify: true}, &utls.HelloFirefox_Auto)
}, "tcp", testAddr)
if err != nil {
1
0
commit 9da4bcbabb46e32ae953003ee6ac63bd29a552f0
Author: David Fifield <david(a)bamsoftware.com>
Date: Wed Feb 6 18:24:40 2019 -0700
Additional utls tests.
---
meek-client/utls_test.go | 70 ++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 70 insertions(+)
diff --git a/meek-client/utls_test.go b/meek-client/utls_test.go
index 8607604..2eb72af 100644
--- a/meek-client/utls_test.go
+++ b/meek-client/utls_test.go
@@ -46,6 +46,29 @@ func TestCopyPublicFieldsHTTPTransport(t *testing.T) {
}
}
+// Test that the name lookup of NewUTLSRoundTripper is case-insensitive.
+func TestNewUTLSRoundTripperCase(t *testing.T) {
+ mixed, err := NewUTLSRoundTripper("HelloFirefox_Auto", nil, nil)
+ if err != nil {
+ t.Fatalf("error on %q: %v", "HelloFirefox_Auto", err)
+ }
+ upper, err := NewUTLSRoundTripper("HELLOFIREFOX_AUTO", nil, nil)
+ if err != nil {
+ t.Fatalf("error on %q: %v", "HELLOFIREFOX_AUTO", err)
+ }
+ lower, err := NewUTLSRoundTripper("hellofirefox_auto", nil, nil)
+ if err != nil {
+ t.Fatalf("error on %q: %v", "hellofirefox_auto", err)
+ }
+ if mixed.(*UTLSRoundTripper).clientHelloID != upper.(*UTLSRoundTripper).clientHelloID ||
+ upper.(*UTLSRoundTripper).clientHelloID != lower.(*UTLSRoundTripper).clientHelloID {
+ t.Fatalf("mismatch %p %p %p",
+ mixed.(*UTLSRoundTripper).clientHelloID,
+ upper.(*UTLSRoundTripper).clientHelloID,
+ lower.(*UTLSRoundTripper).clientHelloID)
+ }
+}
+
// Return a byte slice which is the ClientHello sent when rt does a RoundTrip.
// Opens a temporary listener on an ephemeral port on localhost. The host you
// provide can be an IP address like "127.0.0.1" or a name like "localhost", but
@@ -100,6 +123,53 @@ func clientHelloResultingFromRoundTrip(t *testing.T, host string, rt *UTLSRoundT
return <-ch, nil
}
+// Test that a uTLS RoundTripper actually does something to the TLS Client
+// Hello. We don't check all the ClientHelloIDs; this is just a guard against a
+// catastrophic incompatibility or something else that makes uTLS stop working.
+func TestUTLSClientHello(t *testing.T) {
+ // We use HelloIOS_11_1 because its lengthy ALPN means we will not
+ // confuse it with a native Go fingerprint, and lack of GREASE means we
+ // do not have to account for many variations.
+ rt, err := NewUTLSRoundTripper("HelloIOS_11_1", &utls.Config{InsecureSkipVerify: true, ServerName: "localhost"}, nil)
+ if err != nil {
+ panic(err)
+ }
+
+ buf, err := clientHelloResultingFromRoundTrip(t, "127.0.0.1", rt.(*UTLSRoundTripper))
+ // A poor man's regexp matching because the regexp package only works on
+ // UTF-8–encoded strings, not arbitrary byte slices. Every byte matches
+ // itself, except '.' which matches anything. NB '.' and '\x2e' are the
+ // same.
+ pattern := "" +
+ // Handshake, Client Hello, TLS 1.2, Client Random
+ "\x16\x03\x01\x01\x01\x01\x00\x00\xfd\x03\x03................................" +
+ // Session ID
+ "\x20................................" +
+ // Ciphersuites and compression methods
+ "\x00\x28\xc0\x2c\xc0\x2b\xc0\x24\xc0\x23\xc0\x0a\xc0\x09\xcc\xa9\xc0\x30\xc0\x2f\xc0\x28\xc0\x27\xc0\x14\xc0\x13\xcc\xa8\x00\x9d\x00\x9c\x00\x3d\x00\x3c\x00\x35\x00\x2f\x01\x00" +
+ // Extensions
+ "\x00\x8c\xff\x01\x00\x01\x00" +
+ "\x00\x00\x00\x0e\x00\x0c\x00\x00\x09localhost" +
+ "\x00\x17\x00\x00" +
+ "\x00\x0d\x00\x14\x00\x12\x04\x03\x08\x04\x04\x01\x05\x03\x08\x05\x05\x01\x08\x06\x06\x01\x02\x01" +
+ "\x00\x05\x00\x05\x01\x00\x00\x00\x00" +
+ "\x33\x74\x00\x00" +
+ "\x00\x12\x00\x00" +
+ "\x00\x10\x00\x30\x00\x2e\x02\x68\x32\x05\x68\x32\x2d\x31\x36\x05\x68\x32\x2d\x31\x35\x05\x68\x32\x2d\x31\x34\x08\x73\x70\x64\x79\x2f\x33\x2e\x31\x06\x73\x70\x64\x79\x2f\x33\x08\x68\x74\x74\x70\x2f\x31\x2e\x31" +
+ "\x00\x0b\x00\x02\x01\x00" +
+ "\x00\x0a\x00\x0a\x00\x08\x00\x1d\x00\x17\x00\x18\x00\x19"
+ if len(buf) != len(pattern) {
+ t.Errorf("fingerprint was not as expected: %+q", buf)
+ }
+ for i := 0; i < len(pattern); i++ {
+ a := buf[i]
+ b := pattern[i]
+ if b != '.' && a != b {
+ t.Fatalf("fingerprint mismatch a position %v: %+q", i, buf)
+ }
+ }
+}
+
func TestUTLSServerName(t *testing.T) {
const clientHelloIDName = "HelloFirefox_63"
1
0

07 Feb '19
commit 9338f2ab623fdf321efb96a55306dd2f8d08aba4
Author: David Fifield <david(a)bamsoftware.com>
Date: Wed Feb 6 18:43:50 2019 -0700
Reminder to update the man page with utls updates.
---
meek-client/utls.go | 1 +
1 file changed, 1 insertion(+)
diff --git a/meek-client/utls.go b/meek-client/utls.go
index 6f3d594..9a49317 100644
--- a/meek-client/utls.go
+++ b/meek-client/utls.go
@@ -265,6 +265,7 @@ func makeRoundTripper(url *url.URL, clientHelloID *utls.ClientHelloID, cfg *utls
}
}
+// When you update this map, also update the man page in doc/meek-client.1.txt.
var clientHelloIDMap = map[string]*utls.ClientHelloID{
// No HelloCustom: not useful for external configuration.
// No HelloRandomized: doesn't negotiate consistent ALPN.
1
0
commit e8d8723f9325a3be24dec3057a14411715ac435c
Author: Damian Johnson <atagar(a)torproject.org>
Date: Wed Feb 6 17:22:17 2019 -0800
Update GSoC date to 2019
Pili has a change that does this as well, but since today's Google's
application deadline pushing my own fix to ensure the dates get updated
before they look at it.
---
about/en/gsoc.wml | 15 ++++++++++-----
1 file changed, 10 insertions(+), 5 deletions(-)
diff --git a/about/en/gsoc.wml b/about/en/gsoc.wml
index bc849281..d663ade5 100644
--- a/about/en/gsoc.wml
+++ b/about/en/gsoc.wml
@@ -2,14 +2,14 @@
# Revision: $Revision$
# Translation-Priority: 4-optional
-#include "head.wmi" TITLE="Tor: Google Summer of Code 2017" CHARSET="UTF-8"
+#include "head.wmi" TITLE="Tor: Google Summer of Code 2019" CHARSET="UTF-8"
<div id="content" class="clearfix">
<div id="breadcrumbs">
<a href="<page index>">Home » </a>
<a href="<page about/gsoc>">Google Summer of Code</a>
</div>
<div id="maincol">
- <h2>Tor: Google Summer of Code 2017</h2>
+ <h2>Tor: Google Summer of Code 2019</h2>
<hr>
<br /><br />
@@ -17,15 +17,20 @@
<p>
The Tor Project, in collaboration with <a href="https://www.eff.org/">The
Electronic Frontier Foundation</a>, have taken part in Google Summer of Code
- for 2007 through 2016, mentoring the total of 64 students. Now google has
+ for 2007 through 2016, mentoring the total of 64 students. We have applied
+ to <a href="https://summerofcode.withgoogle.com/">GSoC 2019</a>, and
+ should know by the end of February whether we are in this year.
+ <!--
+ Now google has
announced that we'll be taking part again for <a
- href="https://summerofcode.withgoogle.com/">Google Summer of Code 2017</a>!
+ href="https://summerofcode.withgoogle.com/">Google Summer of Code 2019</a>!
+ -->
</p>
<p>
You must be self-motivated and able to work independently. We have
a thriving community of interested developers on the IRC channel and
- mailing lists, and we're eager to work with you, brainstorm about design,
+ mailing lists. We're eager to work with you, brainstorm about design,
and so on, but you need to be able to manage your own time, and you
need to already be somewhat familiar with how free software development on the
Internet works.
1
0

[translation/support-portal] Update translations for support-portal
by translation@torproject.org 07 Feb '19
by translation@torproject.org 07 Feb '19
07 Feb '19
commit abed55dc9fe97596ad52680a8f3b50c12f89abb4
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Feb 7 01:19:59 2019 +0000
Update translations for support-portal
---
contents+zh-CN.po | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/contents+zh-CN.po b/contents+zh-CN.po
index cfd86139d..ed219cfc1 100644
--- a/contents+zh-CN.po
+++ b/contents+zh-CN.po
@@ -80,14 +80,14 @@ msgstr ""
msgid ""
"You should not install any additional add-ons to Tor Browser because that "
"can compromise some of its privacy features."
-msgstr ""
+msgstr "你不应该安装额外新的插件到 Tor 浏览器,因为这些插件会影响一些隐私保护功能。"
#: https//support.torproject.org/glossary/
#: (content/glossary/contents+en.lrquestion.description)
#: https//support.torproject.org/misc/tor-glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid "### antivirus software"
-msgstr ""
+msgstr "### 杀毒软件"
#: https//support.torproject.org/glossary/
#: (content/glossary/contents+en.lrquestion.description)
1
0

[translation/donatepages-messagespot_completed] Update translations for donatepages-messagespot_completed
by translation@torproject.org 07 Feb '19
by translation@torproject.org 07 Feb '19
07 Feb '19
commit c6740917f67e24fccb280f33de344d837ad8fe6c
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Feb 7 01:15:31 2019 +0000
Update translations for donatepages-messagespot_completed
---
locale/zh_CN/LC_MESSAGES/messages.po | 886 ++++++++++++++++++++---------------
1 file changed, 500 insertions(+), 386 deletions(-)
diff --git a/locale/zh_CN/LC_MESSAGES/messages.po b/locale/zh_CN/LC_MESSAGES/messages.po
index 0f5be3f2d..7d28762cc 100644
--- a/locale/zh_CN/LC_MESSAGES/messages.po
+++ b/locale/zh_CN/LC_MESSAGES/messages.po
@@ -7,49 +7,57 @@
# ヨイツの賢狼ホロ, 2018
# Emma Peel, 2018
# Chris Xiao, 2018
-# Yikai Yang <ff98sha(a)gmail.com>, 2018
+# Yikai Yang <ff98sha(a)gmail.com>, 2019
#
msgid ""
msgstr ""
-"Last-Translator: Yikai Yang <ff98sha(a)gmail.com>, 2018\n"
+"Last-Translator: Yikai Yang <ff98sha(a)gmail.com>, 2019\n"
"Language-Team: Chinese (China) (https://www.transifex.com/otf/teams/1519/zh_CN/)\n"
"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:34
+#: tmp/cache_locale/e1/e1e12763540d9524f8871157240d5a8fbf2ea77ace1c46527b3031db68943acc.php:34
+msgid "Processing Donation - Tor"
+msgstr "正在处理捐款 - Tor"
+
+#: tmp/cache_locale/e1/e1e12763540d9524f8871157240d5a8fbf2ea77ace1c46527b3031db68943acc.php:44
+msgid "Processing Donation. Please Wait..."
+msgstr "正在处理捐款。请等等……"
+
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:34
msgid "Tor Privacy Policy"
msgstr "Tor 隐私政策"
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:44
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:44
msgid "Donor privacy policy"
msgstr "捐助人隐私政策"
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:58
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:58
msgid ""
"The Tor Project respects donor privacy and welcomes anonymous donations."
msgstr "Tor Project 尊重捐助人的隐私而且欢迎匿名捐赠。"
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:60
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:60
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/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:65
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 "如果在捐赠过程中你提供了个人信息,这些信息可能会被 Tor Project 和/或如下所述的第三方服务提供商收集和储存。"
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:67
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:67
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 Project 影响很小的第三方服务提供商,例如 PayPal,也许会收集和使用你的个人信息。"
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:69
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:69
msgid ""
"We recommend you familiarize yourself with their <a class=\"hyperlinks "
"links\" target=\"_blank\" href=\"https://www.paypal.com/webapps/mpp/ua"
@@ -59,7 +67,7 @@ msgstr ""
"href=\"https://www.paypal.com/webapps/mpp/ua/privacy-"
"full\">隐私政策</a>,特别是如果你有隐私方面的需求的话。"
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:74
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:74
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 "
@@ -68,30 +76,30 @@ msgstr ""
"当你给 Tor Project "
"捐款时,依据你使用的不同方法,我们可能会知道你的名字、捐款数目、电邮地址、电话号码和/或邮政地址,以及其它任何你提供的信息。"
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:76
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:76
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/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:78
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 Project 不会访问你的财务数据,比如你的信用卡信息。我们旨在非常小心地处理你的信息。"
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:83
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:83
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/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:85
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/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:87
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\" "
@@ -102,134 +110,92 @@ msgstr ""
"target=\"_blank\" href=\"https://www.irs.gov/pub/irs-pdf/f990ezb.pdf\">Form "
"990 的 B 计划</a>向 IRS 披露。"
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:89
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:89
msgid ""
"But, that information is redacted from the publicly-available version of our"
" Form 990."
msgstr "但这些信息会被我们的 Form 990 的公众可见版本中剔除掉。"
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:91
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:91
msgid ""
"We will never publicly identify you as a donor without your permission."
msgstr "我们不会在没有你的许可的情况下把你标识为捐助人。"
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:96
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:96
msgid "We do not publish, sell, trade, or rent any information about you."
msgstr "我们不公开、销售、交易或出租关于你的任何信息。"
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:98
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:98
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/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:100
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 "能访问到这些信息的人是被严格限制在 Tor Project 内部需要这些信息来工作的人,比如发送感谢信或给你寄送 T恤衫。"
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:105
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:105
msgid ""
"<span class=\"bold\">The Tor Project very much appreciates all its donors. "
"Thank you for supporting Tor</span>."
msgstr "<span class=\"bold\">Tor Project 感谢所有的捐助人。谢谢你们支持 Tor</span>。"
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:113
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:658
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:113
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:656
msgid "Back to Donate Page"
msgstr "回到捐款页面"
-#: 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 "欧款T恤的尺寸偏小,所以你可能要稍大一些的尺码。"
-
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:36
-msgid "Fit"
-msgstr "款型"
-
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:40
-msgid "Select Fit"
-msgstr "选择尺码"
-
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:44
-msgid "Slim"
-msgstr "瘦款"
-
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:48
-msgid "Classic"
-msgstr "经典款"
-
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:56
-msgid "European"
-msgstr "欧款"
-
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:66
-msgid "Size"
-msgstr "大小"
-
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:70
-msgid "Select Size"
-msgstr "选择尺寸"
-
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:74
-msgid "S"
-msgstr "S"
-
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:78
-msgid "M"
-msgstr "M"
-
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:82
-msgid "L"
-msgstr "L"
-
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:86
-msgid "XL"
-msgstr "XL"
-
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:90
-msgid "XXL"
-msgstr "XXL"
-
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:35
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:35
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:35
msgid "Support the Tor Project Today!"
msgstr "今天就支持 Tor Project 吧!"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:48
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:71
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:621
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:48
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:71
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:647
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:48
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:71
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:641
msgid "Tor: Strength in Numbers"
msgstr "Tor:众人拾柴火焰高"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:52
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:75
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:52
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:75
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:52
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:75
msgid "Donate to the Tor Project and protect the privacy of millions."
msgstr "捐助Tor Project,保护数百万人的隐私"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:54
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:77
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:54
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:77
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:54
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:77
msgid "Anonymity loves company."
msgstr "匿名的表示对公司的爱意。"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:63
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:63
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:63
msgid "summary_large_image"
msgstr "summary_large_image"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:67
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:67
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:67
msgid "@torproject"
msgstr "@torproject"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:102
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:102
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:102
msgid ""
"This page requires Javascript to do PayPal or credit card\n"
" donations, but it appears you have Javascript disabled."
msgstr "这个页面要求 Javascript 以便进行 PayPal 或信用卡捐款,但看上去你没有开启它。"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:106
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:106
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:106
msgid ""
"If you wish to donate without enabling Javascript, please take a look at our"
" <a href=\"https://www.torproject.org/donate/donate-options.html.en\">other "
@@ -238,84 +204,113 @@ msgstr ""
"如果你希望不开启 Javascript 也能捐款,请来看看我们的<a href=\"https://www.torproject.org/donate"
"/donate-options.html.en\">其它捐款选项页面</a>。"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:123
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:127
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:127
msgid "Number of Donations"
msgstr "捐赠数量"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:139
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:143
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:143
msgid "Total Donated"
msgstr "捐赠总额"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:155
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:159
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:159
msgid "Total Raised with Mozilla's Match"
msgstr "Mozilla 的捐赠匹配总共筹集的款项"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:163
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:169
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:170
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:176
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:170
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:176
msgid "donate"
msgstr "捐款"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:165
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:172
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:172
msgid "once"
msgstr "仅一次"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:171
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:178
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:178
msgid "monthly"
msgstr "月捐"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:178
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:331
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:185
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:345
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:185
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:339
msgid "Want to donate Bitcoin, Stock, or via snail mail?"
msgstr "想要捐比特币、股票,还是走邮政邮件?"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:193
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:201
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:201
msgid "invalid amount"
msgstr "无法接受的捐款数额"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:197
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:205
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:205
msgid "$2 minimum donation"
msgstr "最小捐款 2 美元"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:201
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:209
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:209
msgid "$ other"
msgstr "其它数额 $"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:208
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:216
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:216
msgid "Choose your gift as a token of our thanks."
msgstr "请选择我们的感谢礼物。"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:215
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:223
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:223
msgid "No thanks, I don't want a gift."
msgstr "不了谢谢,我不要礼物。"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:217
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:225
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:225
#, php-format
msgid "I would prefer 100% of my donation to go to the Tor Project's work."
msgstr "我更想让我的捐款 100% 用到 Tor Project 的工作。"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:228
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:236
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:236
msgid "sticker Pack"
msgstr "贴纸/徽章包"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:235
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:243
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:243
msgid ""
"A collection of our favorite logo stickers for decorating your stuff and "
"covering your cams."
msgstr "我们最喜爱的商标贴纸系列,可以用来装饰你的物件,盖住你的摄像头。"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:245
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:253
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:253
msgid "t-shirt"
msgstr "T恤"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:253
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:259
+msgid "$15"
+msgstr "15 美元"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:261
+msgid "OFF"
+msgstr "优惠"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:267
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:261
msgid "Get our limited edition Tor: Strength in Numbers shirt."
msgstr "获得我们的限量版“Tor:众人拾柴火焰高”T恤衫"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:264
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:278
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:272
msgid "t-shirt pack"
msgstr "T恤"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:274
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:288
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:282
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 "
@@ -323,205 +318,290 @@ msgid ""
msgstr ""
"我们的“Tor:众人抬柴火焰高”T恤,加上“Tor:壮大数码抵抗”T恤, “网络干预开放观测站(OONI)” T恤,或”Tor在互联网自由的核心“T恤。"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:280
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:294
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:288
msgid "Tor at the Heart of Internet Freedom"
msgstr "Tor在互联网自由的核心"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:284
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:298
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:292
msgid "Powering the Digital Resistance"
msgstr "壮大数码抵抗"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:288
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:302
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:296
msgid "Open Observatory of Network Interference"
msgstr "网络干预开放观测站"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:299
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:313
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:307
msgid "sweatshirt"
msgstr "卫衣"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:306
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:320
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:314
msgid "Your generous support of Tor gets you this high-quality zip hoodie."
msgstr "您对 Tor 的强力支持可以得到这件高质量拉链卫衣。"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:316
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:330
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:324
msgid "how do you want to <span class=\"green\">DONATE</span>?"
msgstr "您打算怎样<span class=\"green\">捐款</span>?"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:322
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:336
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:330
msgid "Credit Card"
msgstr "信用卡"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:338
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:352
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:346
msgid "Your Info"
msgstr "您的信息"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:342
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:356
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:350
msgid "* required fields"
msgstr "* 必填"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:347
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:361
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:355
msgid "First Name"
msgstr "名"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:351
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:365
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:359
msgid "Last Name"
msgstr "姓"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:357
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:371
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:365
msgid "Street Address"
msgstr "街道地址"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:361
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:375
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:369
msgid "Apt."
msgstr "门牌号"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:371
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:385
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:379
msgid "City"
msgstr "城市"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:375
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:389
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:383
msgid "State"
msgstr "状态"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:380
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:394
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:388
msgid "Zip"
msgstr "邮编"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:386
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:400
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:394
msgid "Enter email"
msgstr "输入邮箱"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:390
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:404
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:398
msgid "We‘ll email you your receipt"
msgstr "我们会把收据电邮发给您"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:397
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:411
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:405
msgid "Start sending me email updates about the Tor Project!"
msgstr "今后发送关于 Tor Project 的新闻邮件给我!"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:404
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:418
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:412
msgid "Card Number"
msgstr "卡号"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:411
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:425
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:419
msgid "MM"
msgstr "月"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:415
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:429
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:423
msgid "YY"
msgstr "年"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:419
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:433
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:427
msgid "CVC"
msgstr "CVC 码"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:427
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:472
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:441
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:493
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:435
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:487
msgid "Choose your size and fit."
msgstr "选择你的尺码和身型。"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:432
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:440
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:446
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:454
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:440
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:448
msgid "T-shirt:"
msgstr "T恤:"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:450
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:454
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:456
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:464
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:468
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:470
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:458
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:462
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:464
msgid "Comments"
msgstr "注释"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:462
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:476
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:470
+msgid "Donating:"
+msgstr "捐赠:"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:483
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:477
msgid "Donate"
msgstr "捐款"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:476
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:497
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:491
msgid "T-Shirt"
msgstr "T恤"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:480
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:501
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:495
msgid "Choose your size and fit for each shirt."
msgstr "请为每一件T恤选择适合你的尺码和身型。"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:484
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:505
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:499
msgid ""
"Tor at the Heart of Internet, Powering Digital Resistance or Open "
"Observvatory of Network Interference (OONI) T-Shirt"
msgstr "“Tor在互联网自由的核心”, “壮大数码抵抗”,或“网络干预开放观测站(OONI)” T恤"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:488
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:509
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:503
msgid "Strength in Numbers T-Shirt"
msgstr "\"众人拾柴火焰高\"T恤衫"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:492
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:513
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:507
msgid "Choose your size."
msgstr "请选择你的尺码"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:496
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:517
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:511
msgid "Sweatshirt"
msgstr "卫衣"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:500
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:521
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:515
msgid "A required field is missing from the form."
msgstr "表格中有一必填项没有填。"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:502
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:523
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:517
msgid "Please reload the page and try again."
msgstr "请重新载入本页再试一试。"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:506
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:527
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:521
msgid "There was a problem submitting your request to the server:<br>"
msgstr "您提交给服务器的表格遇到点问题:<br>"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:510
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:531
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:525
msgid "validation failed"
msgstr "认证失败"
#. notes: __field_name__ will be replaced with the field name in the
#. javascript.
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:516
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:537
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:531
msgid "__field_name__ must be filled out."
msgstr "__field_name__ 为必填。"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:521
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:542
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:536
msgid "This field is required"
msgstr "此项必填"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:525
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:546
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:540
msgid "Invalid email address."
msgstr "不合格的电邮地址。"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:538
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:550
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:544
+msgid "per month"
+msgstr "每月"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:564
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:558
msgid "One moment while we shovel coal into our servers."
msgstr "请稍等一会儿,我们正在处理您提交的信息。"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:625
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:654
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:662
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:648
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:656
msgid ""
"Stand up for the universal human rights to privacy and freedom and help keep"
-" Tor independent, robust, and secure."
-msgstr "为全人类的自由和隐私权起身,让 Tor 保持独立、坚定和安全。"
+" Tor robust and secure."
+msgstr "为全人类的自由和隐私权起身,让 Tor 保持坚定和安全。"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:627
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:656
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:650
msgid "Mozilla will match your gift and double your impact."
msgstr "Mozilla 会匹配你的捐赠,使你的善心翻倍。"
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:34
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:22
+msgid "See if your employer offers employee gift matching"
+msgstr "看你的雇主是否会提供员工礼物匹配"
+
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:52
+msgid "Company"
+msgstr "公司"
+
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:60
+msgid "Matching Conditions"
+msgstr "匹配条件"
+
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:68
+msgid "Contact Information"
+msgstr "联系方式"
+
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:76
+msgid "Additional Notes"
+msgstr "更多备注"
+
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:84
+msgid "Procedure"
+msgstr "流程"
+
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:34
msgid "Tor Thanks You"
msgstr "Tor 感谢您"
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:44
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:44
msgid "Thank you!"
msgstr "感谢您!"
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:48
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:51
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:61
msgid "Thank you for supporting Tor's Strength in Numbers campaign."
msgstr "感谢您支持Tor的“众人拾柴火焰高”活动"
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:50
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:53
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:63
msgid "You should receive an email receipt shortly."
msgstr "您马上会收到电子邮件收据"
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:52
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:55
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, "
@@ -531,53 +611,54 @@ msgstr ""
"有了您和 Mozilla 匹配捐赠的支持,我们能够完成有潜力的项目,比如开发更安全、隐私加强的移动设备上的浏览器,并让第三方开发者更容易地把 Tor "
"整合到他们的应用里。"
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:56
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.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 ""
+"有了您的支持,我们能够完成有潜力的项目,比如开发更安全、隐私加强的移动设备上的浏览器,并让第三方开发者更容易地把 Tor 整合到他们的应用里。"
+
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:71
msgid ""
"It's an incredible time to stand up for world-leading security and privacy "
"software."
msgstr "现在是时候站出来支持世界领先的安全和隐私软件了。"
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:58
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:73
msgid ""
"Tell family, friends, and colleagues that you're supporting privacy and "
"security with Tor!"
msgstr "告诉家人、朋友和同事你在跟 Tor 一起支持隐私和安全!"
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:62
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:77
msgid "SHARE THE TOR PROJECT"
msgstr "分享 Tor 项目"
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:88
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:115
msgid "Got Skills?"
msgstr "你有相关技能不?"
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:94
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:121
msgid "The Tor network depends on volunteers."
msgstr "Tor 网络有赖于志愿者们。"
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:100
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:127
msgid ""
"We need people to run relays, write code, organize the community and spread "
"the word about our good work."
msgstr "我们需要人来运行中继节点,写代码,组织社区活动,并推广我们的佳作。"
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:102
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:129
msgid "Learn how you can help."
msgstr "来看看你可以帮点什么。"
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:110
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:137
msgid "I Want To Volunteer"
msgstr "我想成为志愿者"
-#: tmp/cache_locale/92/9248b30ecfc0bb3509fc7e1db98f98ec86e72399ad551da3d5abe54c7cd987af.php:34
-msgid "Processing Donation - Tor"
-msgstr "正在处理捐款 - Tor"
-
-#: tmp/cache_locale/92/9248b30ecfc0bb3509fc7e1db98f98ec86e72399ad551da3d5abe54c7cd987af.php:44
-msgid "Processing Donation. Please Wait..."
-msgstr "正在处理捐款。请等等……"
-
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:25
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.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"
@@ -587,27 +668,27 @@ msgstr ""
"The Tor Project 是一家美国 501(c)(3) "
"非营利机构,致力于通过开发和部署自由且开放源代码的匿名和隐私技术,为其不受限制的可用性和使用提供支持,促进其在科研领域和大众的知名度来支持人权和自由。"
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:31
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:31
msgid "Subscribe to Our Newsletter"
msgstr "订阅我们的新闻"
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:35
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:35
msgid "Get monthly updates and opportunities from the Tor Project."
msgstr "订阅我们每个月发布的消息"
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:39
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:39
msgid "Sign Up"
msgstr "注册"
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:47
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:47
msgid "Donate FAQs"
msgstr "捐赠常见问题"
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:51
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:51
msgid "Privacy Policy"
msgstr "隐私政策"
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:67
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:67
msgid ""
"Designed and built by <span class=\"stamp-bold\"><a "
"href=\"https://www.giantrabbit.com/\" class=\"stamp-bold\" "
@@ -616,15 +697,15 @@ msgstr ""
"设计和构建:<span class=\"stamp-bold\"><a href=\"https://www.giantrabbit.com/\" "
"class=\"stamp-bold\" target=\"_blank\">Giant Rabbit</a></span>"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:34
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:34
msgid "Tor Donor FAQ"
msgstr "Tor 捐助人常见问题"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:46
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:44
msgid "Questions?"
msgstr "有疑问?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:61
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:59
msgid ""
"If your question isn’t answered below, email <span "
"class=\"email\">frontdesk(at)rt.torproject.org</span> with general Tor "
@@ -635,11 +716,11 @@ msgstr ""
"class=\"email\">frontdesk(at)rt.torproject.org</span> (一般性问题), 或者 <span "
"class=\"email\">giving(at)torproject.org</span> (关于捐款的问题)。 "
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:68
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:66
msgid "What is the Tor Project and what does it do?"
msgstr "什么是 Tor Project,它是做什么的?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:72
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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, "
@@ -649,7 +730,7 @@ msgstr ""
"Tor Project "
"的使命是通过开发和部署自由和开放的匿名和隐私相关技术来促进人类权利和自由,支持人们不受限制的使用(这些技术——译者注),并深化他们对这些技术在科学的和大众的理解。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:74
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:72
msgid ""
"The main product of the Tor Project is <a "
"href=\"https://www.torproject.org/download/download-easy.html.en\">Tor "
@@ -658,21 +739,21 @@ msgstr ""
"Tor Project 的主要产品是 <a href=\"https://www.torproject.org/download/download-"
"easy.html.en\">Tor 浏览器</a>,可以让人们匿名地浏览互联网。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:76
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:74
msgid ""
"The Tor Project is a 501(c)3 tax-exempt non-profit organization based in "
"Boston, Massachusetts."
msgstr "Tor Project 是一家位于美国马萨诸塞州波士顿的 501(c)3 免税非营利组织。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:78
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:76
msgid "It was founded in 2006."
msgstr "成立于 2006年。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:84
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:82
msgid "Who works for the Tor Project, and what do they do?"
msgstr "Tor Project 都有哪些职员,他们主要做什么?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:88
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:86
msgid ""
"Thousands of people around the world actively support the work of the Tor "
"Project, including developers, designers, relay operators, researchers, "
@@ -682,12 +763,12 @@ msgstr ""
"全世界有上千志愿者积极地为 Tor Project "
"提供支持,包括开发者、设计师、中继服务器运维、研究者、密码学家、计算机科学家和隐私权益倡导者,他们的大多数都没有受薪。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:90
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:88
msgid ""
-"The paid staff of the Tor Project is very small: about 20 people in total."
-msgstr "受薪员工是非常少的:总共大约20人。"
+"The paid staff of the Tor Project is very small: about 47 people in total."
+msgstr "受薪员工是非常少的:总共约 47 人。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:92
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:90
msgid ""
"You can read about the core contributors to the Tor Project on our <a "
"class=\"hyperlinks\" target=\"_blank\" "
@@ -698,31 +779,31 @@ msgstr ""
"href=\"https://www.torproject.org/about/corepeople.html.en\"><span "
"class=\"links\">核心成员页面</span></a>一览核心贡献者。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:97
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:95
msgid "Who uses Tor?"
msgstr "谁在使用 Tor?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:101
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "绝大多数 Tor 用户都是想控制自己的在线隐私的普通人,或者是在使用受审查的互联网的人。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:103
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:101
msgid ""
"Other Tor users are journalists, human rights defenders, domestic violence "
"survivors, policymakers, diplomats, and academic and research institutions."
msgstr "其他 Tor 用户会是记者、人权捍卫者、家庭暴力幸存者、政策制定者、外交官,和学术研究机构。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:109
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:107
msgid "Can anyone use Tor?"
msgstr "任何人都能用 Tor 吗?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:113
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:111
msgid "Yes! Tor is free, and anyone can use it."
msgstr "是的!Tor是免费的,任何人都能用。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:115
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "
@@ -732,7 +813,7 @@ msgstr ""
"href=\"https://www.torproject.org/projects/torbrowser.html.en\"><span "
"class=\"links\">下载 Tor 浏览器</span></a>。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:117
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:115
msgid ""
"We offer instructions on how to download for <a class=\"hyperlinks links\" "
"target=\"_blank\" "
@@ -749,15 +830,15 @@ msgstr ""
"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:123
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:121
msgid "What kinds of people support Tor?"
msgstr "什么样的人会支持 Tor?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:127
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:125
msgid "All kinds of people."
msgstr "所有类型的人们。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:129
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "
@@ -770,42 +851,42 @@ msgstr ""
"给 Tor Project 捐款的有上千人,我们也受到众多的机构的捐款,包括谷歌、福特基金会、Knight "
"基金会、Reddit、美国国家科学基金、电子前哨基金会、人权观察、瑞典国际发展合作组织、德国联邦对外办公室、美国海军研究实验室、Omidyar网络、SRI国际、自由亚洲电台。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:131
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "人们也以非金钱的方式支持 Tor,比如运行一个 Tor 中继服务器来为用户承担一些流量。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:133
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "
"any single individual."
msgstr "此外,每个使用 Tor 的人都是在帮助其它用户更安全和更匿名,因为越多人用 Tor,就越难识别出单个的用户。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:139
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:137
msgid "How does the Tor software work to protect people's anonymity?"
msgstr "Tor 软件如何工作以保障人们的网络匿名?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:143
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "
"world."
msgstr "Tor 通过让你的通讯流量在 Tor 网络内来回中转的方式来保护你。Tor 网络是一种由世界各地志愿者运行的中继服务器组成的分布式网络。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:145
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:143
msgid ""
"If someone is watching your internet connection, Tor prevents them from "
"finding out what sites you are visiting."
msgstr "如果有人在看着你的互联网连接,Tor 能防止他看到你在访问哪些网站。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:147
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:145
msgid ""
"It also prevents sites you visit from finding out where you're located."
msgstr "Tor 也能防止你访问的网站知道你的地理位置。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:149
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:147
msgid ""
"You can read more about how Tor works on our <a class=\"hyperlinks links\" "
"target=\"_blank\" "
@@ -814,13 +895,13 @@ msgstr ""
"你可以从我们这个页面了解更多: <a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"https://www.torproject.org/about/overview.html.en\">概述页面。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:156
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:154
msgid ""
-"I would like to know more about how Tor works, what hidden services are, or "
+"I would like to know more about how Tor works, what onion services are, or "
"how to run a relay."
-msgstr "我想学习更多关于 Tor 如何工作,什么是 “隐匿的服务”,或怎样运行一个中继服务器。"
+msgstr "我想学习更多关于 Tor 如何工作,什么是 “洋葱服务”,或怎样运行一个中继服务器。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:160
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:158
msgid ""
"<a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"https://www.torproject.org/docs/faq.html.en\">This Tor Project "
@@ -830,11 +911,11 @@ msgstr ""
"href=\"https://www.torproject.org/docs/faq.html.en\">这个 Tor Project 的FAQ</a>"
" 就回答了所有这些提问,还说了更多。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:166
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:164
msgid "Does the Tor software work?"
msgstr "Tor 能起作用吗?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:170
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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"
@@ -843,13 +924,13 @@ msgstr ""
"我们相信 Tor 是当今最好且可用的解决方案,我们也知道它比其它方法比如 VPNs, proxychains, "
"或浏览器的“隐私模式”都更好地让你匿名地上网。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:172
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:170
msgid ""
"We know that both the Russian government and the NSA have tried in the past "
"to crack Tor, and failed."
msgstr "我们知道俄罗斯政府和 美国国家安全局都尝试过攻克 Tor,但都失败了。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:174
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:172
msgid ""
"The Electronic Frontier Foundation says that Tor offers <a "
"class=\"hyperlinks links\" target=\"_blank\" "
@@ -863,23 +944,23 @@ msgstr ""
"tor\">现今最强悍的匿名软件之一</a>。安全专家 Bruce "
"Schneier也在他的书《数据和歌利亚》中写道“当前让你匿名浏览网页时的最好工具就是 Tor。”"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:180
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:178
msgid "Is what Tor does legal? Can I get in trouble for using it?"
msgstr "Tor 合法吗?我会因使用它而惹来麻烦么?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:184
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:182
msgid ""
"Downloading Tor Browser or using the Tor network is legal in nearly every "
"country."
msgstr "在几乎每一个国家下 Tor 浏览器或使用 Tor 网络都是合法的。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:186
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:184
msgid ""
"A few web sites occasionally block Tor, but that doesn't mean you're doing "
"anything wrong."
msgstr "一些网站偶尔屏蔽了 Tor,但者并不意味着你做错了什么。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:188
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "
@@ -887,13 +968,13 @@ msgid ""
msgstr ""
"通常它只说明那网站遇到了麻烦,不知如何处理过去曾用过 Tor 的访客,或者他们对 Tor 是什么及它怎样工作有误解(我们正在积极改变这些)。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:190
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:188
msgid ""
"But it is not illegal to use Tor, and you shouldn't get in trouble for doing"
" it."
msgstr "但用 Tor 并不是非法的,你不该因为用它而遇到麻烦。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:192
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:190
msgid ""
"You can find more information about Tor's legal status on the <a "
"class=\"hyperlinks links\" target=\"_blank\" "
@@ -902,13 +983,13 @@ msgstr ""
"你可以在这个网站了解 Tor 的法律状态: <a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"https://www.eff.org/torchallenge/faq.html\">EFF 网站</a>."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:198
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:196
msgid ""
"Where can I find out more about the Tor Project, especially financial "
"information?"
msgstr "我能从哪里找到更多关于 Tor Project 尤其是其财务方面的信息?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:202
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "
@@ -918,18 +999,18 @@ msgstr ""
"href=\"https://www.torproject.org/about/financials.html.en\">财务报告,以及它的 Form "
"990</a>."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:208
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:206
msgid "Where does the Tor Project's money come from?"
msgstr "Tor Project 的钱从哪里来?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:212
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:210
msgid ""
"Tor is supported by United States government funding agencies, NGOs, private"
-" foundations, research institutions, private companies, and nearly 8,000 "
+" foundations, research institutions, private companies, and over 20,000 "
"personal donations from people like you."
-msgstr "Tor 的钱来自美国政府资助机构、NGO、私立基金会、研究机构、私营公司,和近8000名像你一样的个人。"
+msgstr "Tor 的钱来自美国政府资助机构、非政府组织、私立基金会、研究机构、私营公司,和近 20000 名像你一样的个人。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:214
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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>"
@@ -938,69 +1019,69 @@ msgstr ""
"(详情请见 <a class=\"hyperlinks links single-link\" target=\"_blank\" "
"href=\"https://www.torproject.org/about/sponsors.html.en\">https://www.torproject.org/about/sponsors</a>)"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:216
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "虽然我们很感激这些资助,但我们也不想让 Tor Project 过于依赖任何单一的资助来源。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:218
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "
"and respond quickly to changing events."
msgstr "众筹能让我们的捐助者多元化,且不受捐助者的限制——我们可以花更多的钱在我们认为最重要的项目上,并能对正在变化的事情快速响应。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:220
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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"
" services we provide."
msgstr "我们呼吁你们在财务上支持我们,增加 Tor Project 的独立性,并保证产品和服务的可持续性。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:226
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:224
msgid ""
"How much money does the Tor Project spend annually, and what is it used for?"
msgstr "Tor Project 每年花费多少钱,用在了哪里?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:230
-msgid "The Tor Project spends about $2.5 million annually."
-msgstr "Tor Project 每年花费约 250 万美元。"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:228
+msgid "The Tor Project spends about $4 million annually."
+msgstr "Tor Project 每年花费约 400 万美元。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:232
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:230
#, php-format
msgid ""
"About 80% of the Tor Project's spending goes to staffing, mostly software "
"engineers."
msgstr "大约 80% 用在了人力资源上,大多是软件工程师。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:234
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:232
msgid ""
"About 10% goes towards administrative costs such as accounting and legal "
"costs and bank fees."
msgstr "大约 10% 用作管理成本,比如会计和法律成本和银行费用。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:236
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "最后10% 用于差旅、聚会和会议,这些对 Tor 很重要因为 Tor 是个全球社区。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:242
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:240
msgid "Is my donation tax-deductible?"
msgstr "我的捐助可以减税吗?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:246
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "如果你是在美国纳税的,你对 Tor 的捐赠在法律要求的全部范围内都是减税的。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:248
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:246
msgid "Following is information you may need for reporting purposes:"
msgstr "以下信息你可能需要用于汇报(给美国税务当局——译者注,非美国纳税者无关):"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:253
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:251
msgid ""
"<b>Tor Project Tax ID Number (EIN #):</b> 20-8096820<br>\n"
" <b>Address:</b><br>\n"
@@ -1008,101 +1089,101 @@ msgid ""
" 217 First Avenue South #4903<br>\n"
" Seattle, WA 98194<br>\n"
" <b>Phone number:</b> 206-420-3136<br>\n"
-" <b>Contact person:</b> Shari Steele, Executive Director<br>"
+" <b>Contact person:</b> Isabela Bagueros, Executive Director<br>"
msgstr ""
-"<b>Tor Project Tax ID Number (EIN #):</b> 20-8096820<br>\n"
-" <b>Address:</b><br>\n"
+"<b>Tor Project 税收号码(EIN #):</b> 20-8096820<br>\n"
+" <b>地址:</b><br>\n"
" The Tor Project, Inc.<br>\n"
" 217 First Avenue South #4903<br>\n"
" Seattle, WA 98194<br>\n"
-" <b>Phone number:</b> 206-420-3136<br>\n"
-" <b>Contact person:</b> Shari Steele, Executive Director<br>"
+" <b>电话号码:</b> 206-420-3136<br>\n"
+" <b>联系人:</b> Isabela Bagueros,执行总监<br>"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:266
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:264
msgid "If I am not in the United States, can I still donate?"
msgstr "如果我不在美国,我还能捐款吗?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:270
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:268
msgid "Yes, definitely."
msgstr "可以,当然。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:272
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:278
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:276
msgid ""
"Can I donate to a specific project, or restrict my donation to a particular "
"purpose?"
msgstr "我能对一个项目做定向捐款吗?或要求将我的捐款用于特点用途?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:282
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:562
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:280
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:560
msgid "No, sorry."
msgstr "不能,对不起。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:284
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "
"money."
msgstr "如果我们答应来自某人的捐款可以用于他/她指定的目的,那我们会被 IRS 要求单独对这笔款项进行追踪和报告。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:286
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:288
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:286
msgid ""
"However, we would be very happy to hear your ideas and feedback about our "
"work."
msgstr "然而,我们会很高兴听到你对我们工作的想法和反馈。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:290
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:296
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:294
msgid "Can I donate while using Tor Browser?"
msgstr "我可以用 Tor 浏览器捐款吗?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:300
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:298
msgid "Yes! In our testing, donation works via Tor Browser."
msgstr "可以!经我们测试,可以通过 Tor 浏览器捐款。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:302
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:300
msgid ""
"If you run into problems, please contact <span "
"class=\"email\">giving(at)torproject.org</span>."
msgstr "如果你遇到问题,请联系:<span class=\"email\">giving(at)torproject.org</span>."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:306
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:304
msgid ""
"For users logging in to Paypal: some people had no problem donating via "
"PayPal while using Tor Browser."
msgstr "用 Paypal 的用户:有些人用 Tor 浏览器登录 Paypal 进行捐赠并没有问题。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:308
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:306
msgid ""
"In past years, some people couldn't complete the donation process, and one "
"person had their PayPal account temporarily frozen."
msgstr "过去几年,有的人无法完成捐赠流程,还有一个人的 Paypal 账户被临时冻结了。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:310
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:308
msgid "If you run into any problems donating via PayPal, please let us know."
msgstr "如果你在通过 Paypal 捐款时遇到任何问题,请联系我们。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:316
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:314
msgid "How can I donate via debit or credit card?"
msgstr "我怎样通过储蓄卡(debit)或银行卡捐款?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:320
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "
@@ -1111,50 +1192,50 @@ msgstr ""
"要通过主流的信用卡或银行卡(VISA、MasterCard、Discover or American Express)或通过 "
"Paypal捐款,请访问我们的 <a href=\"https://donate.torproject.org\">捐赠页面</a>。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:326
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:324
msgid "Why do you ask for my address and similar information?"
msgstr "为什么你们会问我要我的地址和类似的信息?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:330
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "
"address."
msgstr "如果你通过信用卡捐款,你会被要求提供一些信息用于处理你的信用卡支付,包括你的账单地址。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:332
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:334
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:332
msgid ""
"We don't ask for information beyond what's required by the payment "
"processor."
msgstr "支付处理者要求的信息范围以外的信息我们是不会索取的。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:340
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:338
msgid "Why is there a minimum donation?"
msgstr "为什么会有最小捐款额呢?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:344
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:342
msgid ""
"People who have stolen credit card information often donate to nonprofits as"
" a way of testing whether the card works."
msgstr "有人偷了信用卡信息后通常会捐款给非营利组织,以测试这张信用卡是否可以用。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:346
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "这些人使用非常小的数额用于测试,我们发现把最低额设为 1美元应该可以阻止他们。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:352
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:350
msgid "Is there a maximum donation?"
msgstr "那有最高捐款额吗?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:356
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "
@@ -1164,11 +1245,11 @@ msgstr ""
"没,没,没!资助越多说明我们可以做更多我们想做的事,比如雇一个人全职监控 Tor 网络,或做研究、测试,和把我们让 Tor "
"网络变得更强大的想法付诸实践。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:362
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:360
msgid "Can I donate via bitcoin?"
msgstr "我可以捐比特币吗?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:366
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:364
msgid ""
"Yes! We accept <a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"https://www.torproject.org/donate/donate-options.html.en\">bitcoin "
@@ -1178,13 +1259,13 @@ msgstr ""
"href=\"https://www.torproject.org/donate/donate-options.html.en\">bitcoin "
"via BitPay</a>."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:372
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:370
msgid ""
"If I want my donation to be anonymous, what is the best way for me to "
"donate?"
msgstr "如果我想匿名地捐款,用哪种方式最好?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:376
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:374
msgid ""
"You can donate by <a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"https://www.torproject.org/donate/donate-"
@@ -1194,29 +1275,29 @@ msgstr ""
"href=\"https://www.torproject.org/donate/donate-"
"options.html.en#cash\">邮政汇款</a>的方式捐款给我们。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:378
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:378
msgid "You can buy cash gift cards and mail them to us."
msgstr "你也可以买礼品卡,寄给我们。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:382
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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:389
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:387
msgid ""
"Is the Tor Project required to identify me as a donor to the United States "
"government, or to any other authority?"
msgstr "Tor Project 是否会被要求向美国政府,或其它当局报告包含我名字的捐款人名单?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:393
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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"
@@ -1225,84 +1306,84 @@ msgstr ""
"如果你一年内捐款超过5000美元,我们会被要求每年向 IRS 报告捐款总量和你的名字及地址(如果我们有这些信息的话),依据是 Form 990 "
"的B计划。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:395
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "
"do."
msgstr "然而,非营利组织撤回个人捐赠者的信息也是很正常的,我们也是这么做的。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:397
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:395
msgid ""
"We are not required to identify donors to any other organization or "
"authority, and we do not."
msgstr "别的组织或当局没有要求我们提供捐款人的信息,我们也不会这么做。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:399
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:397
msgid ""
-"(Also, if you wanted, you could give us $4,999 in late 2016 and $4,999 in "
-"early 2017 ;)"
-msgstr "(还有,如果你愿意,你可以在2016年底给我们4999美元,在2017年初再给我们4999美元;)"
+"(Also, if you wanted, you could give us $4,999 in late 2018 and $4,999 in "
+"early 2019.)"
+msgstr "(还有,如果你愿意,你可以在2018年底给我们4999美元,在2019年初再给我们4999美元。)"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:405
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:407
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:405
msgid "What does that mean?"
msgstr "这是什么意思?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:411
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:409
msgid "Yes, that's right."
msgstr "没错,是这样。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:413
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "如你给 Tor Project 捐款,那么 Tor Project 里肯定有人知道你的捐款。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:415
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:417
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "
"donated."
msgstr "这意味着我们不会在我们网站贴出你的名字,在推特上感谢你,或者做其它任何能辨识出你是我们的捐款人的事情。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:419
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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."
msgstr "如果我们决定公开你作为我们的捐款人,我们会事先问你,在没有你说 okay 之前我们是不会这么做的。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:425
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:429
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:427
msgid ""
"Right now, we can only offer tax-deductibility to donors who pay taxes in "
"the United States."
msgstr "现在,我们只能提供在美国的纳税人的捐款减税资质。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:431
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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:433
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:431
msgid ""
"Or, if you are in Germany, France or Sweden, <a class=\"hyperlinks links\" "
"target=\"_blank\" "
@@ -1314,13 +1395,13 @@ msgstr ""
"href=\"https://www.torproject.org/docs/faq.html.en#RelayDonations\">有这些组织 提供"
" Tor 网络</a>,他们或许可以对你的捐款提供减税资质。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:439
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:437
msgid ""
"What if I don't want to use credit card or PayPal? Is there another way I "
"can donate?"
msgstr "如果我不想用信用卡或 Paypal 捐款呢?还有什么别的方式可以用么?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:443
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "
@@ -1329,11 +1410,11 @@ msgstr ""
"有的!这里有个列表: <a href=\"https://www.torproject.org/donate/donate-"
"options.html.en\" class=\"hyperlinks links\" target=\"_blank\">捐款的其它方式。</a>"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:450
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:448
msgid "What is your donor privacy policy?"
msgstr "你们的捐款人隐私政策是什么?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:454
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:452
msgid ""
"Here is the Tor Project <a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"/%langcode%/privacy-policy\">donor privacy policy</a>."
@@ -1341,62 +1422,65 @@ msgstr ""
"这里是 Tor Project 的<a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"/%langcode%/privacy-policy\">捐款人隐私政策</a>。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:460
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:458
msgid "What is your refund policy?"
msgstr "你们的退款政策是怎样?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:464
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:462
msgid ""
"If you want your donation refunded, please tell us by emailing <span "
"class=\"email\">giving(at)torproject.org</span>."
msgstr ""
"如果你想退回你的捐款,请给我们发邮件到:<span class=\"email\">giving(at)torproject.org</span>."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:466
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "
"country of origin."
msgstr "为了处理你的退款请求,我们需要知道你的捐款日期、捐款数额、你的全名、支付方式和你所在的国家。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:468
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:466
msgid "Please also tell us why you're asking for a refund."
msgstr "也请告诉我们你退款的原因。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:470
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "
"you in order to process yours."
msgstr "请注意有的支付方式不支持退款,或要求他们以特定的方式操作,所以我们需要从你那里得知一些额外的信息。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:476
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:474
msgid "Can I donate by mail?"
msgstr "我能通过邮政捐款么?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:480
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:586
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:478
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:584
msgid "Yes."
msgstr "可以。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:482
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:480
msgid ""
-"Our mailing address is The Tor Project, P.O. Box 4903, Seattle WA 98194, USA"
-msgstr "我们的邮政地址是 The Tor Project, P.O. Box 4903, Seattle WA 98194, USA"
+"Our mailing address is The Tor Project, 217 First Avenue South #4903, "
+"Seattle WA 98194, USA"
+msgstr ""
+"我们的邮政地址是 The Tor Project, 217 First Avenue South #4903, Seattle WA 98194, "
+"USA"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:488
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:486
msgid "Do you accept cash donations?"
msgstr "你们接收现今捐款么?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:492
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:490
msgid "Yes"
msgstr "是"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:498
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:496
msgid "Does Tor Project accept matching donations?"
msgstr "Tor Project 接受配捐吗?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:502
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:500
msgid ""
"Yes! Many companies --such as Google, Microsoft, eBay, PayPal, Apple, "
"Verizon, Red Hat, many universities, and others-- will match donations made "
@@ -1404,7 +1488,7 @@ msgid ""
msgstr ""
"是的!许多公司——比如谷歌、微软、eBay、PayPal、苹果、Verizon、红帽、许多大学,还有其它组织——都会对他们的员工的捐款进行配捐。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:504
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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"
@@ -1415,30 +1499,30 @@ msgstr ""
"links\" target=\"_blank\" "
"href=\"https://www.matchinggifts.com/rit/\">https://www.matchinggifts.com/rit/</a>."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:506
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "如果你的公司当前没有为 Tor Project 搞配捐,我们很愿意帮忙做些文书工作。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:508
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:506
msgid ""
"If you want help figuring out the process, write us at <span "
"class=\"email\">giving(at)torproject.org</a>."
msgstr ""
"如果你想要帮忙完成这个过程,请给我们发邮件: <span class=\"email\">giving(at)torproject.org</a>。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:514
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:512
msgid "Can I become a Tor Project member?"
msgstr "我可以成为 Tor Project 的成员吗?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:518
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:516
msgid ""
"Right now, we don't have a membership program, but we may set one up in the "
"future."
msgstr "现在,我们还没有会员项目,但我们在未来可能会成立一个。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:520
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:518
msgid ""
"If you want to get involved with the Tor Project, <a class=\"hyperlinks "
"links\" target=\"_blank\" "
@@ -1448,11 +1532,11 @@ msgstr ""
"如果你想参与到 Tor Project,可以先看看 <a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">这里</a>。 "
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:526
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:524
msgid "How can I get a Tor t-shirt or stickers?"
msgstr "我怎么能得到一件 Tor T恤或一些贴纸?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:530
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:528
msgid ""
"A variety of thank-you gifts for donors, including t-shirts, hoodies and "
"stickers, are presented on our main <a "
@@ -1461,13 +1545,13 @@ msgstr ""
"我们准备了不少给捐款人的感谢礼物,包括T恤、卫衣和贴纸,样式可以在我们的主 <a "
"href=\"https://donate.torproject.org\">捐款页面</a>查看。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:536
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "如果我跟 Tor Project 保持联系,最好的方式是什么?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:540
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "
@@ -1483,40 +1567,40 @@ msgstr ""
"links\" target=\"_blank\" "
"href=\"https://twitter.com/torproject\">关注我们的推特</a>。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:546
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:544
msgid ""
"Does the Tor Project participate in the Combined Federal Campaign program?"
msgstr "Tor Project 参与了「组合联邦倡议运动」项目(CFC)么?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:550
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:548
msgid "No, Tor doesn't currently participate in the CFC program."
msgstr "没,Tor 没有参加。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:552
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "如果你想让 Tor 加入到你当地的 CFC 项目,那很好:如你需要帮助请告诉我们。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:558
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:556
msgid "Can I donate my airline miles, flight vouchers, or hotel points?"
msgstr "我能捐赠我的航班里程、航班优惠券,或酒店积分吗?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:564
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:570
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:568
msgid "Can I donate hardware?"
msgstr "我可以捐赠硬件吗?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:574
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:572
msgid "Typically no, we don't encourage people to donate hardware."
msgstr "一般的话,不行,我们不鼓励人们捐赠硬件。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:576
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:574
msgid ""
"But if you want to make a hardware donation that you think might be "
"especially useful for us, please mail <span "
@@ -1525,11 +1609,11 @@ msgstr ""
"但如果你觉得你要捐赠的硬件对我们非常有用,请电邮给我们:<span "
"class=\"email\">giving(at)torproject.org</span>。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:582
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:580
msgid "Can I donate my time?"
msgstr "我可以捐我的时间吗?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:588
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:586
msgid ""
"Here's a <a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">list of "
@@ -1538,27 +1622,27 @@ msgstr ""
"这里有份 <a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">我们希望得到你帮助的区域列表</a>。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:594
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:592
msgid "I would like my company to support Tor."
msgstr "我想让我的公司来支持 Tor。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:596
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:594
msgid "What can we do to help?"
msgstr "我们可以怎么帮忙呢?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:600
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:598
msgid ""
"Your company could match donations made by its employees to the Tor Project"
"--that would be wonderful."
msgstr "你的公司可以对自己的员工给 Tor Project 的捐款进行配捐——这就很棒了。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:602
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:600
msgid ""
"Your company may operate a corporate foundation that gives out grants, and "
"if so, you should encourage it to fund us."
msgstr "你的公司可能会运作一个企业基金,用来发出一些资助项目。如果是这样,你可以鼓励你们的基金资助我们。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:604
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:602
msgid ""
"Maybe your company would be willing to <a class=\"hyperlinks links\" "
"target=\"_blank\" "
@@ -1569,86 +1653,116 @@ msgstr ""
"href=\"https://www.torproject.org/docs/faq.html.en#HowDoIDecide\">运行个 Tor "
"中继服务器</a>。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:606
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "如果你的公司销售云服务,可以捐一些云服务给 Tor:我们可以用来运行些反审查项目。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:612
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:610
msgid "You don't support my preferred way to donate."
msgstr "我最喜爱的捐款方式你们不支持。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:614
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:612
msgid "Can I recommend a new donation method to you?"
msgstr "我可以给你们推荐新的捐款方式吗?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:618
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:616
msgid "Sure."
msgstr "当然。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:620
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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>"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:626
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.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 "Tor Project 会接收来自任何人的捐款吗?还是你们会保留拒绝来自特定组织或个人支持的权利?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:630
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:628
msgid "We do reserve the right to reject a donation."
msgstr "我们确实会保留拒绝一份捐款的权利。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:632
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:630
msgid "To date though, we haven't exercised that right."
msgstr "但迄今,我们还没践行过这个权利。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:634
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:632
msgid "We are happy that a broad range of people use and support Tor."
msgstr "我们很高兴有广泛的人群在使用和支持 Tor。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:640
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:638
msgid "I have more questions."
msgstr "我有更多的问题。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:642
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:640
msgid "How can I get answers?"
msgstr "我可以怎样得到答案?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:646
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:644
msgid ""
"Feel free to send questions to <span "
"class=\"email\">frontdesk(at)rt.torproject.org</span>."
msgstr "请尽管把问题发到:<span class=\"email\">frontdesk(at)rt.torproject.org</span>。"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:648
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:646
msgid ""
"We will try to answer you, and we'll also post your question (and the "
"answer) here."
msgstr "我们会尝试回答你,且我们会将你的问题(和答案)贴在这里。"
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:22
-msgid "See if your employer offers employee gift matching"
-msgstr "看你的雇主是否会提供员工礼物匹配"
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:29
+msgid ""
+"The European shirt fits run a little small so you might want to consider "
+"sizing up."
+msgstr "欧款T恤的尺寸偏小,所以你可能要稍大一些的尺码。"
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:52
-msgid "Company"
-msgstr "公司"
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:36
+msgid "Fit"
+msgstr "款型"
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:60
-msgid "Matching Conditions"
-msgstr "匹配条件"
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:40
+msgid "Select Fit"
+msgstr "选择尺码"
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:68
-msgid "Contact Information"
-msgstr "联系方式"
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:44
+msgid "Slim"
+msgstr "瘦款"
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:76
-msgid "Additional Notes"
-msgstr "更多备注"
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:48
+msgid "Classic"
+msgstr "经典款"
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:84
-msgid "Procedure"
-msgstr "流程"
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:56
+msgid "European"
+msgstr "欧款"
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:66
+msgid "Size"
+msgstr "大小"
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:70
+msgid "Select Size"
+msgstr "选择尺寸"
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:74
+msgid "S"
+msgstr "S"
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:78
+msgid "M"
+msgstr "M"
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:82
+msgid "L"
+msgstr "L"
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:86
+msgid "XL"
+msgstr "XL"
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:90
+msgid "XXL"
+msgstr "XXL"
1
0

[translation/donatepages-messagespot] Update translations for donatepages-messagespot
by translation@torproject.org 07 Feb '19
by translation@torproject.org 07 Feb '19
07 Feb '19
commit b8b58fb06ff8b59c83fa6194131d2290cf65acc7
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Feb 7 01:15:25 2019 +0000
Update translations for donatepages-messagespot
---
locale/zh_CN/LC_MESSAGES/messages.po | 22 ++++++++++++++++------
1 file changed, 16 insertions(+), 6 deletions(-)
diff --git a/locale/zh_CN/LC_MESSAGES/messages.po b/locale/zh_CN/LC_MESSAGES/messages.po
index b09a4c177..7d28762cc 100644
--- a/locale/zh_CN/LC_MESSAGES/messages.po
+++ b/locale/zh_CN/LC_MESSAGES/messages.po
@@ -297,7 +297,7 @@ msgstr "15 美元"
#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:261
msgid "OFF"
-msgstr ""
+msgstr "优惠"
#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:267
#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:261
@@ -552,7 +552,7 @@ msgstr "请稍等一会儿,我们正在处理您提交的信息。"
msgid ""
"Stand up for the universal human rights to privacy and freedom and help keep"
" Tor robust and secure."
-msgstr ""
+msgstr "为全人类的自由和隐私权起身,让 Tor 保持坚定和安全。"
#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:656
#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:650
@@ -618,6 +618,7 @@ msgid ""
"making it easier for third-party developers to integrate Tor into their "
"applications."
msgstr ""
+"有了您的支持,我们能够完成有潜力的项目,比如开发更安全、隐私加强的移动设备上的浏览器,并让第三方开发者更容易地把 Tor 整合到他们的应用里。"
#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:71
msgid ""
@@ -765,7 +766,7 @@ msgstr ""
#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:88
msgid ""
"The paid staff of the Tor Project is very small: about 47 people in total."
-msgstr ""
+msgstr "受薪员工是非常少的:总共约 47 人。"
#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:90
msgid ""
@@ -898,7 +899,7 @@ msgstr ""
msgid ""
"I would like to know more about how Tor works, what onion services are, or "
"how to run a relay."
-msgstr ""
+msgstr "我想学习更多关于 Tor 如何工作,什么是 “洋葱服务”,或怎样运行一个中继服务器。"
#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:158
msgid ""
@@ -1007,7 +1008,7 @@ msgid ""
"Tor is supported by United States government funding agencies, NGOs, private"
" foundations, research institutions, private companies, and over 20,000 "
"personal donations from people like you."
-msgstr ""
+msgstr "Tor 的钱来自美国政府资助机构、非政府组织、私立基金会、研究机构、私营公司,和近 20000 名像你一样的个人。"
#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:212
msgid ""
@@ -1090,6 +1091,13 @@ msgid ""
" <b>Phone number:</b> 206-420-3136<br>\n"
" <b>Contact person:</b> Isabela Bagueros, Executive Director<br>"
msgstr ""
+"<b>Tor Project 税收号码(EIN #):</b> 20-8096820<br>\n"
+" <b>地址:</b><br>\n"
+" The Tor Project, Inc.<br>\n"
+" 217 First Avenue South #4903<br>\n"
+" Seattle, WA 98194<br>\n"
+" <b>电话号码:</b> 206-420-3136<br>\n"
+" <b>联系人:</b> Isabela Bagueros,执行总监<br>"
#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:264
msgid "If I am not in the United States, can I still donate?"
@@ -1315,7 +1323,7 @@ msgstr "别的组织或当局没有要求我们提供捐款人的信息,我们
msgid ""
"(Also, if you wanted, you could give us $4,999 in late 2018 and $4,999 in "
"early 2019.)"
-msgstr ""
+msgstr "(还有,如果你愿意,你可以在2018年底给我们4999美元,在2019年初再给我们4999美元。)"
#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:403
msgid ""
@@ -1457,6 +1465,8 @@ msgid ""
"Our mailing address is The Tor Project, 217 First Avenue South #4903, "
"Seattle WA 98194, USA"
msgstr ""
+"我们的邮政地址是 The Tor Project, 217 First Avenue South #4903, Seattle WA 98194, "
+"USA"
#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:486
msgid "Do you accept cash donations?"
1
0

[translation/donatepages-messagespot] Update translations for donatepages-messagespot
by translation@torproject.org 07 Feb '19
by translation@torproject.org 07 Feb '19
07 Feb '19
commit 32489dccc768206f235a8af67b01dd9b82ad9a15
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Feb 7 00:45:26 2019 +0000
Update translations for donatepages-messagespot
---
locale/sv/LC_MESSAGES/messages.po | 6 +++++-
locale/zh_CN/LC_MESSAGES/messages.po | 12 ++++++------
2 files changed, 11 insertions(+), 7 deletions(-)
diff --git a/locale/sv/LC_MESSAGES/messages.po b/locale/sv/LC_MESSAGES/messages.po
index 653254c1f..854fc4874 100644
--- a/locale/sv/LC_MESSAGES/messages.po
+++ b/locale/sv/LC_MESSAGES/messages.po
@@ -19,7 +19,7 @@ msgstr "Behandlar donation – Tor"
#: tmp/cache_locale/e1/e1e12763540d9524f8871157240d5a8fbf2ea77ace1c46527b3031db68943acc.php:44
msgid "Processing Donation. Please Wait..."
-msgstr ""
+msgstr "Behandlar donation. Vänligen dröj kvar …"
#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:34
msgid "Tor Privacy Policy"
@@ -33,6 +33,8 @@ msgstr ""
msgid ""
"The Tor Project respects donor privacy and welcomes anonymous donations."
msgstr ""
+"Tor-projektet respekterar donatorernas privata uppgifter och välkomnar "
+"anonyma bidrag."
#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:60
msgid ""
@@ -40,6 +42,8 @@ msgid ""
"anonymity is by donating using a method that doesn't disclose your personal "
"information."
msgstr ""
+"Om du värdesätter möjligheten att vara anonym bevarar du din anonymitet bäst"
+" genom att donera via en tjänst som inte uppger dina personuppgifter."
#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:65
msgid ""
diff --git a/locale/zh_CN/LC_MESSAGES/messages.po b/locale/zh_CN/LC_MESSAGES/messages.po
index 8968e6470..b09a4c177 100644
--- a/locale/zh_CN/LC_MESSAGES/messages.po
+++ b/locale/zh_CN/LC_MESSAGES/messages.po
@@ -7,11 +7,11 @@
# ヨイツの賢狼ホロ, 2018
# Emma Peel, 2018
# Chris Xiao, 2018
-# Yikai Yang <ff98sha(a)gmail.com>, 2018
+# Yikai Yang <ff98sha(a)gmail.com>, 2019
#
msgid ""
msgstr ""
-"Last-Translator: Yikai Yang <ff98sha(a)gmail.com>, 2018\n"
+"Last-Translator: Yikai Yang <ff98sha(a)gmail.com>, 2019\n"
"Language-Team: Chinese (China) (https://www.transifex.com/otf/teams/1519/zh_CN/)\n"
"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -293,7 +293,7 @@ msgstr "T恤"
#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:259
msgid "$15"
-msgstr ""
+msgstr "15 美元"
#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:261
msgid "OFF"
@@ -459,7 +459,7 @@ msgstr "注释"
#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:476
#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:470
msgid "Donating:"
-msgstr ""
+msgstr "捐赠:"
#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:483
#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:477
@@ -538,7 +538,7 @@ msgstr "不合格的电邮地址。"
#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:550
#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:544
msgid "per month"
-msgstr ""
+msgstr "每月"
#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:564
#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:558
@@ -1045,7 +1045,7 @@ msgstr "Tor Project 每年花费多少钱,用在了哪里?"
#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:228
msgid "The Tor Project spends about $4 million annually."
-msgstr ""
+msgstr "Tor Project 每年花费约 400 万美元。"
#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:230
#, php-format
1
0

[translation/donatepages-messagespot] Update translations for donatepages-messagespot
by translation@torproject.org 07 Feb '19
by translation@torproject.org 07 Feb '19
07 Feb '19
commit f8b60207d74eb834f76609c3648604663141f088
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Feb 7 00:15:25 2019 +0000
Update translations for donatepages-messagespot
---
locale/sv/LC_MESSAGES/messages.po | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/locale/sv/LC_MESSAGES/messages.po b/locale/sv/LC_MESSAGES/messages.po
index 1fa3dce79..653254c1f 100644
--- a/locale/sv/LC_MESSAGES/messages.po
+++ b/locale/sv/LC_MESSAGES/messages.po
@@ -4,17 +4,18 @@
# Henrik Mattsson-Mårn <h(a)reglage.net>, 2018
# erinm, 2018
# Jonatan Nyberg, 2018
+# Filip Bengtsson, 2019
#
msgid ""
msgstr ""
-"Last-Translator: Jonatan Nyberg, 2018\n"
+"Last-Translator: Filip Bengtsson, 2019\n"
"Language-Team: Swedish (https://www.transifex.com/otf/teams/1519/sv/)\n"
"Language: sv\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: tmp/cache_locale/e1/e1e12763540d9524f8871157240d5a8fbf2ea77ace1c46527b3031db68943acc.php:34
msgid "Processing Donation - Tor"
-msgstr ""
+msgstr "Behandlar donation – Tor"
#: tmp/cache_locale/e1/e1e12763540d9524f8871157240d5a8fbf2ea77ace1c46527b3031db68943acc.php:44
msgid "Processing Donation. Please Wait..."
1
0

[tor-browser-build/master] Bug 29183: Use linux-x86_64 langpacks on linux-x86_64
by gk@torproject.org 06 Feb '19
by gk@torproject.org 06 Feb '19
06 Feb '19
commit 86ebdafc28a55042fea553ad7f23f796ea963b75
Author: Nicolas Vigier <boklm(a)torproject.org>
Date: Wed Feb 6 17:16:40 2019 +0100
Bug 29183: Use linux-x86_64 langpacks on linux-x86_64
We were previously using the linux-i686 langpacks in the linux-x86_64
builds.
---
projects/firefox-langpacks/config | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/projects/firefox-langpacks/config b/projects/firefox-langpacks/config
index 04cd7dd..17a707a 100644
--- a/projects/firefox-langpacks/config
+++ b/projects/firefox-langpacks/config
@@ -5,10 +5,12 @@ filename: '[% project %]-[% c("version") %]-[% c("var/osname") %]-[% c("var/buil
var:
ff_version: '[% pc("firefox", "var/firefox_version") %]'
ff_build: build2
- ff_arch: linux-i686
input_filename: 'dl-langpack-[% c("var/ff_arch") %]-[% c("version") %]'
targets:
+ linux:
+ var:
+ ff_arch: 'linux-[% c("arch") %]'
windows-i686:
var:
ff_arch: win32
1
0