Import build system from proof-of-concept
Lunar

Lunar commited on 2014-05-15 12:02:44
Zeige 37 geänderte Dateien mit 5617 Einfügungen und 12 Löschungen.

... ...
@@ -0,0 +1,24 @@
1
+*.sw[o-z]
2
+*~
3
+#*
4
+
5
+/html
6
+/tor-browser-version.txt
7
+
8
+/tor-browser-user-manual.pot
9
+/[a-z][a-z]/*.mo
10
+/[a-z][a-z]/*.stamp
11
+/[a-z][a-z]/*.page
12
+/[a-z][a-z]_[A-Z][A-Z]/*.mo
13
+/[a-z][a-z]_[A-Z][A-Z]/*.stamp
14
+/[a-z][a-z]_[A-Z][A-Z]/*.page
15
+
16
+/Makefile
17
+/Makefile.in
18
+/aclocal.m4
19
+/autom4te.cache
20
+/configure
21
+/config.log
22
+/config.status
23
+/install-sh
24
+/missing
... ...
@@ -141,7 +141,7 @@ the Tor network. Select 'Use custom bridges' and enter each bridge identifier
141 141
 on its own line.
142 142
 </p>
143 143
 
144
-<media type="image" src="imgs/tor-launcher-custom-bridges_en-US.png" />
144
+<media type="image" src="media/tor-launcher-custom-bridges_en-US.png" />
145 145
 
146 146
 <p>
147 147
 Click Connect. Using bridges slow down the connection. If the connection fails,
... ...
@@ -18,14 +18,14 @@ These circumvention tools are called Pluggable Transports. To turn them on,
18 18
 click "Configure" in the Tor launcher window. 
19 19
 </p>
20 20
 
21
-<media type="image" src="imgs/tor-launcher-configure_en-US.png" />
21
+<media type="image" src="media/tor-launcher-configure_en-US.png" />
22 22
 
23 23
 <p>
24 24
 Select yes when asked if your internet service provider blocks connections 
25 25
 to Tor." 
26 26
 </p>
27 27
 
28
-<media type="image" src="imgs/tor-launcher-wizard_en-US.png" />
28
+<media type="image" src="media/tor-launcher-wizard_en-US.png" />
29 29
 
30 30
 <p>
31 31
 Select "Connect with provided bridges". Tor Browser has three Pluggable 
... ...
@@ -33,7 +33,7 @@ Transports to choose from. If one fails to get you online, try selecting a
33 33
 different transport. 
34 34
 </p>
35 35
 
36
-<media type="image" src="imgs/tor-launcher-provided-bridges_en-US.png" />
36
+<media type="image" src="media/tor-launcher-provided-bridges_en-US.png" />
37 37
 
38 38
 <p>
39 39
 If you try all three transports, and none of them get you online, select 
... ...
@@ -16,7 +16,7 @@
16 16
     in the Tor network, before the traffic is sent out onto the public
17 17
     Internet
18 18
   </p>
19
-  <media type="image" src="imgs/how-tor-works.png" />
19
+  <media type="image" src="media/how-tor-works.png" />
20 20
   <p>
21 21
     The image above illustrates a user browsing to different websites
22 22
     over Tor. The green monitors represent relays in the Tor network,
... ...
@@ -0,0 +1,12 @@
1
+<page xmlns="http://projectmallard.org/1.0/"
2
+      xmlns:xi="http://www.w3.org/2001/XInclude"
3
+      xmlns:its="http://www.w3.org/2005/11/its"
4
+      type="guide"
5
+      id="index">
6
+  <title>Tor Browser Help</title>
7
+  <p its:locNote="&lt;span/&gt; will be replaced by current Tor Browser version">
8
+    Version:
9
+    <span its:translate="no"><xi:include href="../tor-browser-version.txt" parse="text"/></span>
10
+  </p>
11
+</page>
12
+
... ...
@@ -16,7 +16,7 @@ The Tor Browser should get you online automatically after clicking the
16 16
 "Connect" button on the start up screen. 
17 17
 </p>
18 18
 
19
-<media type="image" src="imgs/tor-launcher-connect_en-US.png" />
19
+<media type="image" src="media/tor-launcher-connect_en-US.png" />
20 20
 
21 21
 <p>
22 22
 If it doesn't connect, there may be a simple fix. Try each of the following: 
... ...
@@ -0,0 +1,38 @@
1
+@YELP_HELP_RULES@
2
+
3
+HELP_ID = tor-browser-user-manual
4
+HELP_FILES = $(shell cd C && git ls-files '*.page')
5
+HELP_MEDIA = $(shell cd C && git ls-files 'media')
6
+HELP_PLATFORMS = windows macosx linux
7
+HELP_LINGUAS = ar de es fa fr it ko nl pl pt_PT ru tr vi zh_CN
8
+
9
+.PHONY: html
10
+html: all
11
+	set -e && \
12
+		for lc in C $(HELP_LINGUAS); do \
13
+			for media in $(HELP_MEDIA); do \
14
+				if ! [ -f $$lc/$$media ]; then \
15
+					mkdir -p $$(dirname $$lc/$$media); \
16
+					ln -nsf ../../C/$$media $$lc/$$media; \
17
+				fi; \
18
+			done; \
19
+			for platform in $(HELP_PLATFORMS); do \
20
+				mkdir -p html/$$platform/$$lc; \
21
+				yelp-build html -x platform-$$platform.xslt \
22
+						-o html/$$platform/$$lc $$lc; \
23
+			done; \
24
+		done;
25
+
26
+clean:
27
+	set -e && \
28
+		for lc in C $(HELP_LINGUAS); do \
29
+			for media in $(HELP_MEDIA); do \
30
+				if [ -L $$lc/$$media ]; then \
31
+					rm $$lc/$$media; \
32
+				fi; \
33
+				rmdir --ignore-fail-on-non-empty $$(dirname $$lc/$$media); \
34
+			done; \
35
+		done;
36
+
37
+distclean-local:
38
+	rm -rf html
... ...
@@ -0,0 +1,28 @@
1
+Tor Browser User Manual
2
+=======================
3
+
4
+Written using Mallard.
5
+
6
+Original (English) source lies in `C`.
7
+
8
+Building the HTML version
9
+-------------------------
10
+
11
+Required dependencies on Debian:
12
+
13
+    autoconf yelp-tools yelp-xsl intltool
14
+
15
+Bootstrap:
16
+
17
+    autoreconf -vif
18
+
19
+Build:
20
+
21
+    ./configure
22
+    make html
23
+
24
+Ressources
25
+----------
26
+
27
+Mallard cheat sheet:
28
+<http://blogs.gnome.org/shaunm/files/2012/01/mallardcheatsheet.png>
... ...
@@ -0,0 +1,380 @@
1
+msgid ""
2
+msgstr ""
3
+"Project-Id-Version: PACKAGE VERSION\n"
4
+"POT-Creation-Date: 2014-05-15 11:21+0200\n"
5
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
6
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
7
+"Language-Team: LANGUAGE <LL@li.org>\n"
8
+"MIME-Version: 1.0\n"
9
+"Content-Type: text/plain; charset=UTF-8\n"
10
+"Content-Transfer-Encoding: 8bit\n"
11
+
12
+#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
13
+msgctxt "_"
14
+msgid "translator-credits"
15
+msgstr ""
16
+
17
+#. This is a reference to an external file such as an image or video. When
18
+#. the file changes, the md5 hash will change to let you know you need to
19
+#. update your localized copy. The msgstr is not used at all. Set it to
20
+#. whatever you like once you have updated your copy of the file.
21
+#: C/bridges.page:144(media)
22
+msgctxt "_"
23
+msgid "external ref='media/tor-launcher-custom-bridges_en-US.png' md5='93365c2aa3fb4d627497e83f28a39b7e'"
24
+msgstr ""
25
+
26
+#: C/bridges.page:7(info/desc)
27
+msgid "What bridges are and how to use them."
28
+msgstr ""
29
+
30
+#: C/bridges.page:8(info/title)
31
+msgctxt "sort"
32
+msgid "05 Bridges"
33
+msgstr ""
34
+
35
+#: C/bridges.page:12(page/title)
36
+msgid "Bridges"
37
+msgstr ""
38
+
39
+#: C/bridges.page:14(page/p)
40
+msgid "Bridges are quiet gateways into the Tor Network. Like Tor relays, they are run by volunteers. Unlike relays, they are not listed publicly. Using bridges disguise the fact that one is using Tor."
41
+msgstr ""
42
+
43
+#: C/bridges.page:20(page/p)
44
+msgid "Currently there are five bridge types, or transports, available. More are being developed."
45
+msgstr ""
46
+
47
+#: C/bridges.page:27(td/p)
48
+msgid "ORPort"
49
+msgstr ""
50
+
51
+#: C/bridges.page:32(td/p)
52
+msgid "Requesting 'bridges' without specifying the bridge type, will return ORPort bridges, also called Vanilla bridges. ORPort bridges are NOT reliable for circumventing censorship or national firewalls. ORPort bridges can be useful as trusted entry points into the Tor network."
53
+msgstr ""
54
+
55
+#: C/bridges.page:42(td/p)
56
+msgid "obfs2"
57
+msgstr ""
58
+
59
+#: C/bridges.page:47(td/p)
60
+msgid "Censors have learned how to identify obfs2 bridges. This transport is being deprecated."
61
+msgstr ""
62
+
63
+#: C/bridges.page:55(td/p)
64
+msgid "obfs3"
65
+msgstr ""
66
+
67
+#: C/bridges.page:60(td/p)
68
+msgid "Obfsproxy disguises Tor traffic as random noise. obfs3 bridges work almost everywhere. A few obfs3 bridges have been blocked."
69
+msgstr ""
70
+
71
+#: C/bridges.page:68(td/p)
72
+msgid "Scramblesuit"
73
+msgstr ""
74
+
75
+#: C/bridges.page:73(td/p)
76
+msgid "Scramblesuit is an additional tool for the obfsproxy transport. Scramblesuit bridges are designed to be hard to identify and hard to block."
77
+msgstr ""
78
+
79
+#: C/bridges.page:82(td/p)
80
+msgid "FTE"
81
+msgstr ""
82
+
83
+#: C/bridges.page:87(td/p)
84
+msgid "Format-Transforming Encryption disguises Tor traffic as web (HTTP) traffic or other types of internet traffic. FTE bridges are effective, but in limited supply."
85
+msgstr ""
86
+
87
+#: C/bridges.page:96(page/p)
88
+msgid "(Note that flashproxy is a Pluggable Transport, but does not rely on bridges.)"
89
+msgstr ""
90
+
91
+#: C/bridges.page:100(page/p)
92
+msgid "There are four ways to get a bridge."
93
+msgstr ""
94
+
95
+#: C/bridges.page:106(item/p)
96
+msgid "Visit <link href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</link> and follow the instructions."
97
+msgstr ""
98
+
99
+#: C/bridges.page:111(item/p)
100
+msgid "Email bridges@bridges.torproject.org from a gmail or yahoo email address. Put <cmd>get bridges</cmd> in the body for ORPort bridges or <cmd>transport=obfs3</cmd> for obfs3 bridges."
101
+msgstr ""
102
+
103
+#: C/bridges.page:118(item/p)
104
+msgid "Politely ask a human at help@rt.torproject.org if you cannot access either of the first two methods."
105
+msgstr ""
106
+
107
+#: C/bridges.page:124(item/p)
108
+msgid "Install and configure a Tor instance to be bridge for yourself. The computer acting as a bridge must have uncensored internet access to the Tor network. A full installation guide can be found at <link href=\"https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en\">https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en</link>"
109
+msgstr ""
110
+
111
+#: C/bridges.page:133(page/p)
112
+msgid "Enter the bridge information you get from any of the above steps in Tor-launcher."
113
+msgstr ""
114
+
115
+#: C/bridges.page:138(page/p)
116
+msgid "Choose yes when asked if your Internet Service Provider blocks connections to the Tor network. Select 'Use custom bridges' and enter each bridge identifier on its own line."
117
+msgstr ""
118
+
119
+#: C/bridges.page:146(page/p)
120
+msgid "Click Connect. Using bridges slow down the connection. If the connection fails, the bridges you received may be down. Get more and try again."
121
+msgstr ""
122
+
123
+#. This is a reference to an external file such as an image or video. When
124
+#. the file changes, the md5 hash will change to let you know you need to
125
+#. update your localized copy. The msgstr is not used at all. Set it to
126
+#. whatever you like once you have updated your copy of the file.
127
+#: C/circumvention.page:21(media)
128
+msgctxt "_"
129
+msgid "external ref='media/tor-launcher-configure_en-US.png' md5='966f4bafcb829e59b2b84d08144d885e'"
130
+msgstr ""
131
+
132
+#. This is a reference to an external file such as an image or video. When
133
+#. the file changes, the md5 hash will change to let you know you need to
134
+#. update your localized copy. The msgstr is not used at all. Set it to
135
+#. whatever you like once you have updated your copy of the file.
136
+#: C/circumvention.page:28(media)
137
+msgctxt "_"
138
+msgid "external ref='media/tor-launcher-wizard_en-US.png' md5='21f80fc3f4e34359bfdc44684d7da09d'"
139
+msgstr ""
140
+
141
+#. This is a reference to an external file such as an image or video. When
142
+#. the file changes, the md5 hash will change to let you know you need to
143
+#. update your localized copy. The msgstr is not used at all. Set it to
144
+#. whatever you like once you have updated your copy of the file.
145
+#: C/circumvention.page:36(media)
146
+msgctxt "_"
147
+msgid "external ref='media/tor-launcher-provided-bridges_en-US.png' md5='70524dccb698a21bb1d20223461e3272'"
148
+msgstr ""
149
+
150
+#: C/circumvention.page:7(info/title)
151
+msgctxt "sort"
152
+msgid "04 Circumvention"
153
+msgstr ""
154
+
155
+#: C/circumvention.page:8(info/desc)
156
+msgid "What to do if the Tor network is blocked."
157
+msgstr ""
158
+
159
+#: C/circumvention.page:12(page/title)
160
+msgid "Circumvention"
161
+msgstr ""
162
+
163
+#: C/circumvention.page:14(page/p)
164
+msgid "Some firewalls can detect and block connections to Tor. The Tor Browser includes some circumvention tools for getting around blocking firewalls. These circumvention tools are called Pluggable Transports. To turn them on, click \"Configure\" in the Tor launcher window."
165
+msgstr ""
166
+
167
+#: C/circumvention.page:23(page/p)
168
+msgid "Select yes when asked if your internet service provider blocks connections to Tor.\""
169
+msgstr ""
170
+
171
+#: C/circumvention.page:30(page/p)
172
+msgid "Select \"Connect with provided bridges\". Tor Browser has three Pluggable Transports to choose from. If one fails to get you online, try selecting a different transport."
173
+msgstr ""
174
+
175
+#: C/circumvention.page:38(page/p)
176
+msgid "If you try all three transports, and none of them get you online, select \"Enter custom bridges\", and enter bridges manually. Read the <link xref=\"bridges\">Getting Bridges</link> section for instructions on getting custom bridges."
177
+msgstr ""
178
+
179
+#. This is a reference to an external file such as an image or video. When
180
+#. the file changes, the md5 hash will change to let you know you need to
181
+#. update your localized copy. The msgstr is not used at all. Set it to
182
+#. whatever you like once you have updated your copy of the file.
183
+#: C/how-tor-works.page:19(media)
184
+msgctxt "_"
185
+msgid "external ref='media/how-tor-works.png' md5='6fe4151a88b7a518466f0582e40ccc8c'"
186
+msgstr ""
187
+
188
+#: C/how-tor-works.page:6(info/title)
189
+msgctxt "sort"
190
+msgid "01 Tor"
191
+msgstr ""
192
+
193
+#: C/how-tor-works.page:7(info/desc)
194
+msgid "How Tor works."
195
+msgstr ""
196
+
197
+#: C/how-tor-works.page:11(page/title)
198
+msgid "Tor"
199
+msgstr ""
200
+
201
+#: C/how-tor-works.page:12(page/p)
202
+msgid "Tor is a network of virtual tunnels that allows you to improve your privacy and security on the Internet. Tor works by sending your traffic through three random servers (also known as <em>relays</em>) in the Tor network, before the traffic is sent out onto the public Internet"
203
+msgstr ""
204
+
205
+#: C/how-tor-works.page:20(page/p)
206
+msgid "The image above illustrates a user browsing to different websites over Tor. The green monitors represent relays in the Tor network, while the three keys represent the layers of encryption between the user and each relay."
207
+msgstr ""
208
+
209
+#: C/how-tor-works.page:26(page/p)
210
+msgid "Tor will anonymize the origin of your traffic, and it will encrypt everything between you and the Tor network. Tor will also encrypt your traffic inside the Tor network, but it cannot encrypt your traffic between the Tor network and its final destination."
211
+msgstr ""
212
+
213
+#: C/how-tor-works.page:32(page/p)
214
+msgid "If you are communicating sensitive information, for example when logging on to a website with a username and password, make sure that you are using HTTPS (e.g. <input><em>https</em>://torproject.org/</input>, not <input><em>http</em>://torproject.org/</input>)."
215
+msgstr ""
216
+
217
+#: C/index.page:6(page/title)
218
+msgid "Tor Browser Help"
219
+msgstr ""
220
+
221
+#: C/index.page:7(page/p)
222
+msgid "Version: UNKNOWN-dirty"
223
+msgstr ""
224
+
225
+#: C/known-issues.page:7(info/desc)
226
+msgid "A list of known issues."
227
+msgstr ""
228
+
229
+#: C/known-issues.page:8(info/title)
230
+msgctxt "sort"
231
+msgid "03 Known Issues"
232
+msgstr ""
233
+
234
+#: C/known-issues.page:12(page/title)
235
+msgid "Known Issues"
236
+msgstr ""
237
+
238
+#: C/known-issues.page:16(item/p)
239
+msgid "The following firewall software have been known to interfere with Tor and may need to be temporarily disabled:"
240
+msgstr ""
241
+
242
+#: C/known-issues.page:20(item/p)
243
+msgid "Webroot SecureAnywhere"
244
+msgstr ""
245
+
246
+#: C/known-issues.page:23(item/p)
247
+msgid "Kaspersky Internet Security 2012"
248
+msgstr ""
249
+
250
+#: C/known-issues.page:26(item/p)
251
+msgid "Sophos Antivirus for Mac"
252
+msgstr ""
253
+
254
+#: C/known-issues.page:29(item/p)
255
+msgid "Microsoft Security Essentials"
256
+msgstr ""
257
+
258
+#: C/known-issues.page:34(item/p)
259
+msgid "Videos that require Adobe Flash are unavailable. Flash is disabled for security reasons. Most YouTube videos can be played with HTML5 by visiting the video's \"Embed\" → \"Share\" link."
260
+msgstr ""
261
+
262
+#: C/known-issues.page:41(item/p)
263
+msgid "Tor can not use a bridge if a proxy is set."
264
+msgstr ""
265
+
266
+#: C/known-issues.page:46(item/p)
267
+msgid "The Tor Browser package is dated January 1, 2000 00:00:00 UTC. This is to ensure that each software build is exactly reproducible."
268
+msgstr ""
269
+
270
+#: C/known-issues.page:52(item/p)
271
+msgid "To run Tor Browser on Ubuntu, users need to execute a shell script. Open \"Files\" (Unity's explorer), open Preferences → Behavior Tab → Set \"Run executable text files when they are opened\" to \"Ask every time\", then OK. Tor Browser can also be started from the command line by running"
272
+msgstr ""
273
+
274
+#: C/known-issues.page:58(item/code)
275
+#, no-wrap
276
+msgid ""
277
+"\n"
278
+"    ./start-tor-browser\n"
279
+"    "
280
+msgstr ""
281
+
282
+#: C/known-issues.page:61(item/p)
283
+msgid "from inside the Tor Browser directory."
284
+msgstr ""
285
+
286
+#: C/known-issues.page:66(page/p)
287
+msgid "If you have an issue with Tor Browser that isn't on this list, feel free to email help@rt.torproject.org."
288
+msgstr ""
289
+
290
+#. This is a reference to an external file such as an image or video. When
291
+#. the file changes, the md5 hash will change to let you know you need to
292
+#. update your localized copy. The msgstr is not used at all. Set it to
293
+#. whatever you like once you have updated your copy of the file.
294
+#: C/troubleshooting.page:19(media)
295
+msgctxt "_"
296
+msgid "external ref='media/tor-launcher-connect_en-US.png' md5='03118f523f4cbc7c001da1ddacc9e394'"
297
+msgstr ""
298
+
299
+#: C/troubleshooting.page:7(info/title)
300
+msgctxt "sort"
301
+msgid "02 Troubleshooting"
302
+msgstr ""
303
+
304
+#: C/troubleshooting.page:8(info/desc)
305
+msgid "What to do if Tor Browser doesn't work."
306
+msgstr ""
307
+
308
+#: C/troubleshooting.page:12(page/title)
309
+msgid "Troubleshooting"
310
+msgstr ""
311
+
312
+#: C/troubleshooting.page:14(page/p)
313
+msgid "The Tor Browser should get you online automatically after clicking the \"Connect\" button on the start up screen."
314
+msgstr ""
315
+
316
+#: C/troubleshooting.page:21(page/p)
317
+msgid "If it doesn't connect, there may be a simple fix. Try each of the following:"
318
+msgstr ""
319
+
320
+#: C/troubleshooting.page:27(item/p)
321
+msgid "Make sure another Tor Browser is not already running. If you're not sure if Tor Browser is running, restart your computer."
322
+msgstr ""
323
+
324
+#: C/troubleshooting.page:31(item/p)
325
+msgid "'Allow' Tor in your antivirus program."
326
+msgstr ""
327
+
328
+#: C/troubleshooting.page:34(item/p)
329
+msgid "Temporarily disable your firewall."
330
+msgstr ""
331
+
332
+#: C/troubleshooting.page:37(item/p)
333
+msgid "Delete Tor Browser and install it again. If updating, do not overwrite your previous Tor Browser files."
334
+msgstr ""
335
+
336
+#: C/troubleshooting.page:42(page/p)
337
+msgid "If you still can't connect, your internet service provider might be censoring connections to Tor. Follow the instructions in the <link xref=\"circumvention\">Circumvention</link> section."
338
+msgstr ""
339
+
340
+#: C/troubleshooting.page:48(page/p)
341
+msgid "If the above steps do not address your problem, email help@rt.torproject.org with your operating system, the details of your problem, and what you've already tried."
342
+msgstr ""
343
+
344
+#: C/uninstalling.page:7(info/desc)
345
+msgid "How to remove Tor Browser from your system."
346
+msgstr ""
347
+
348
+#: C/uninstalling.page:8(info/title)
349
+msgctxt "sort"
350
+msgid "06 Uninstalling"
351
+msgstr ""
352
+
353
+#: C/uninstalling.page:12(page/title)
354
+msgid "Uninstalling"
355
+msgstr ""
356
+
357
+#: C/uninstalling.page:14(page/p)
358
+msgid "The Tor Browser does not affect any of the existing software or settings on your computer. Uninstalling Tor Browser will not affect your system's software or settings either."
359
+msgstr ""
360
+
361
+#: C/uninstalling.page:20(page/p)
362
+msgid "Removing the Tor Browser from your system is simple:"
363
+msgstr ""
364
+
365
+#: C/uninstalling.page:26(item/p)
366
+msgid "Locate your Tor Browser folder. The default location is your Desktop."
367
+msgstr ""
368
+
369
+#: C/uninstalling.page:29(item/p)
370
+msgid "Delete the Tor Browser folder."
371
+msgstr ""
372
+
373
+#: C/uninstalling.page:32(item/p)
374
+msgid "Empty your Trash"
375
+msgstr ""
376
+
377
+#: C/uninstalling.page:36(page/p)
378
+msgid "Note that your operating system's standard \"Uninstall\" utility is not used."
379
+msgstr ""
380
+
... ...
@@ -0,0 +1,155 @@
1
+#!/bin/sh
2
+# Print a version string.
3
+scriptversion=2010-05-28.15; # UTC
4
+
5
+# Copyright (C) 2007-2010 Free Software Foundation, Inc.
6
+#
7
+# This program is free software: you can redistribute it and/or modify
8
+# it under the terms of the GNU General Public License as published by
9
+# the Free Software Foundation; either version 3 of the License, or
10
+# (at your option) any later version.
11
+#
12
+# This program is distributed in the hope that it will be useful,
13
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
+# GNU General Public License for more details.
16
+#
17
+# You should have received a copy of the GNU General Public License
18
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
+
20
+# This script is derived from GIT-VERSION-GEN from GIT: http://git.or.cz/.
21
+# It may be run two ways:
22
+# - from a git repository in which the "git describe" command below
23
+#   produces useful output (thus requiring at least one signed tag)
24
+# - from a non-git-repo directory containing a .tarball-version file, which
25
+#   presumes this script is invoked like "./git-version-gen .tarball-version".
26
+
27
+# In order to use intra-version strings in your project, you will need two
28
+# separate generated version string files:
29
+#
30
+# .tarball-version - present only in a distribution tarball, and not in
31
+#   a checked-out repository.  Created with contents that were learned at
32
+#   the last time autoconf was run, and used by git-version-gen.  Must not
33
+#   be present in either $(srcdir) or $(builddir) for git-version-gen to
34
+#   give accurate answers during normal development with a checked out tree,
35
+#   but must be present in a tarball when there is no version control system.
36
+#   Therefore, it cannot be used in any dependencies.  GNUmakefile has
37
+#   hooks to force a reconfigure at distribution time to get the value
38
+#   correct, without penalizing normal development with extra reconfigures.
39
+#
40
+# .version - present in a checked-out repository and in a distribution
41
+#   tarball.  Usable in dependencies, particularly for files that don't
42
+#   want to depend on config.h but do want to track version changes.
43
+#   Delete this file prior to any autoconf run where you want to rebuild
44
+#   files to pick up a version string change; and leave it stale to
45
+#   minimize rebuild time after unrelated changes to configure sources.
46
+#
47
+# It is probably wise to add these two files to .gitignore, so that you
48
+# don't accidentally commit either generated file.
49
+#
50
+# Use the following line in your configure.ac, so that $(VERSION) will
51
+# automatically be up-to-date each time configure is run (and note that
52
+# since configure.ac no longer includes a version string, Makefile rules
53
+# should not depend on configure.ac for version updates).
54
+#
55
+# AC_INIT([GNU project],
56
+#         m4_esyscmd([build-aux/git-version-gen .tarball-version]),
57
+#         [bug-project@example])
58
+#
59
+# Then use the following lines in your Makefile.am, so that .version
60
+# will be present for dependencies, and so that .tarball-version will
61
+# exist in distribution tarballs.
62
+#
63
+# BUILT_SOURCES = $(top_srcdir)/.version
64
+# $(top_srcdir)/.version:
65
+#	echo $(VERSION) > $@-t && mv $@-t $@
66
+# dist-hook:
67
+#	echo $(VERSION) > $(distdir)/.tarball-version
68
+
69
+case $# in
70
+    1|2) ;;
71
+    *) echo 1>&2 "Usage: $0 \$srcdir/.tarball-version" \
72
+         '[TAG-NORMALIZATION-SED-SCRIPT]'
73
+       exit 1;;
74
+esac
75
+
76
+tarball_version_file=$1
77
+tag_sed_script="${2:-s/x/x/}"
78
+nl='
79
+'
80
+
81
+# First see if there is a tarball-only version file.
82
+# then try "git describe", then default.
83
+if test -f $tarball_version_file
84
+then
85
+    v=`cat $tarball_version_file` || exit 1
86
+    case $v in
87
+	*$nl*) v= ;; # reject multi-line output
88
+	[0-9]*) ;;
89
+	*) v= ;;
90
+    esac
91
+    test -z "$v" \
92
+	&& echo "$0: WARNING: $tarball_version_file seems to be damaged" 1>&2
93
+fi
94
+
95
+if test -n "$v"
96
+then
97
+    : # use $v
98
+elif test -d .git \
99
+    && v=`git describe --abbrev=4 --match='v*' HEAD 2>/dev/null \
100
+	  || git describe --abbrev=4 HEAD 2>/dev/null` \
101
+    && v=`printf '%s\n' "$v" | sed "$tag_sed_script"` \
102
+    && case $v in
103
+	 v[0-9]*) ;;
104
+	 *) (exit 1) ;;
105
+       esac
106
+then
107
+    # Is this a new git that lists number of commits since the last
108
+    # tag or the previous older version that did not?
109
+    #   Newer: v6.10-77-g0f8faeb
110
+    #   Older: v6.10-g0f8faeb
111
+    case $v in
112
+	*-*-*) : git describe is okay three part flavor ;;
113
+	*-*)
114
+	    : git describe is older two part flavor
115
+	    # Recreate the number of commits and rewrite such that the
116
+	    # result is the same as if we were using the newer version
117
+	    # of git describe.
118
+	    vtag=`echo "$v" | sed 's/-.*//'`
119
+	    numcommits=`git rev-list "$vtag"..HEAD | wc -l`
120
+	    v=`echo "$v" | sed "s/\(.*\)-\(.*\)/\1-$numcommits-\2/"`;
121
+	    ;;
122
+    esac
123
+
124
+    # Change the first '-' to a '.', so version-comparing tools work properly.
125
+    # Remove the "g" in git describe's output string, to save a byte.
126
+    v=`echo "$v" | sed 's/-/./;s/\(.*\)-g/\1-/'`;
127
+else
128
+    v=UNKNOWN
129
+fi
130
+
131
+v=`echo "$v" |sed 's/^v//'`
132
+
133
+# Don't declare a version "dirty" merely because a time stamp has changed.
134
+git update-index --refresh > /dev/null 2>&1
135
+
136
+dirty=`sh -c 'git diff-index --name-only HEAD' 2>/dev/null` || dirty=
137
+case "$dirty" in
138
+    '') ;;
139
+    *) # Append the suffix only if there isn't one already.
140
+	case $v in
141
+	  *-dirty) ;;
142
+	  *) v="$v-dirty" ;;
143
+	esac ;;
144
+esac
145
+
146
+# Omit the trailing newline, so that m4_esyscmd can use the result directly.
147
+echo "$v" | tr -d "$nl"
148
+
149
+# Local variables:
150
+# eval: (add-hook 'write-file-hooks 'time-stamp)
151
+# time-stamp-start: "scriptversion="
152
+# time-stamp-format: "%:y-%02m-%02d.%02H"
153
+# time-stamp-time-zone: "UTC"
154
+# time-stamp-end: "; # UTC"
155
+# End:
... ...
@@ -0,0 +1,12 @@
1
+AC_INIT([tor-browser-user-manual],
2
+        m4_esyscmd([build-aux/git-version-gen .version]),
3
+        [tbb-dev@lists.torproject.org])
4
+
5
+AM_INIT_AUTOMAKE([foreign])
6
+
7
+YELP_HELP_INIT
8
+
9
+AC_CONFIG_FILES([Makefile
10
+                 tor-browser-version.txt])
11
+
12
+AC_OUTPUT
... ...
@@ -0,0 +1,380 @@
1
+msgid ""
2
+msgstr ""
3
+"Project-Id-Version: PACKAGE VERSION\n"
4
+"POT-Creation-Date: 2014-05-15 11:21+0200\n"
5
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
6
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
7
+"Language-Team: LANGUAGE <LL@li.org>\n"
8
+"MIME-Version: 1.0\n"
9
+"Content-Type: text/plain; charset=UTF-8\n"
10
+"Content-Transfer-Encoding: 8bit\n"
11
+
12
+#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
13
+msgctxt "_"
14
+msgid "translator-credits"
15
+msgstr ""
16
+
17
+#. This is a reference to an external file such as an image or video. When
18
+#. the file changes, the md5 hash will change to let you know you need to
19
+#. update your localized copy. The msgstr is not used at all. Set it to
20
+#. whatever you like once you have updated your copy of the file.
21
+#: C/bridges.page:144(media)
22
+msgctxt "_"
23
+msgid "external ref='media/tor-launcher-custom-bridges_en-US.png' md5='93365c2aa3fb4d627497e83f28a39b7e'"
24
+msgstr ""
25
+
26
+#: C/bridges.page:7(info/desc)
27
+msgid "What bridges are and how to use them."
28
+msgstr ""
29
+
30
+#: C/bridges.page:8(info/title)
31
+msgctxt "sort"
32
+msgid "05 Bridges"
33
+msgstr ""
34
+
35
+#: C/bridges.page:12(page/title)
36
+msgid "Bridges"
37
+msgstr ""
38
+
39
+#: C/bridges.page:14(page/p)
40
+msgid "Bridges are quiet gateways into the Tor Network. Like Tor relays, they are run by volunteers. Unlike relays, they are not listed publicly. Using bridges disguise the fact that one is using Tor."
41
+msgstr ""
42
+
43
+#: C/bridges.page:20(page/p)
44
+msgid "Currently there are five bridge types, or transports, available. More are being developed."
45
+msgstr ""
46
+
47
+#: C/bridges.page:27(td/p)
48
+msgid "ORPort"
49
+msgstr ""
50
+
51
+#: C/bridges.page:32(td/p)
52
+msgid "Requesting 'bridges' without specifying the bridge type, will return ORPort bridges, also called Vanilla bridges. ORPort bridges are NOT reliable for circumventing censorship or national firewalls. ORPort bridges can be useful as trusted entry points into the Tor network."
53
+msgstr ""
54
+
55
+#: C/bridges.page:42(td/p)
56
+msgid "obfs2"
57
+msgstr ""
58
+
59
+#: C/bridges.page:47(td/p)
60
+msgid "Censors have learned how to identify obfs2 bridges. This transport is being deprecated."
61
+msgstr ""
62
+
63
+#: C/bridges.page:55(td/p)
64
+msgid "obfs3"
65
+msgstr ""
66
+
67
+#: C/bridges.page:60(td/p)
68
+msgid "Obfsproxy disguises Tor traffic as random noise. obfs3 bridges work almost everywhere. A few obfs3 bridges have been blocked."
69
+msgstr ""
70
+
71
+#: C/bridges.page:68(td/p)
72
+msgid "Scramblesuit"
73
+msgstr ""
74
+
75
+#: C/bridges.page:73(td/p)
76
+msgid "Scramblesuit is an additional tool for the obfsproxy transport. Scramblesuit bridges are designed to be hard to identify and hard to block."
77
+msgstr ""
78
+
79
+#: C/bridges.page:82(td/p)
80
+msgid "FTE"
81
+msgstr ""
82
+
83
+#: C/bridges.page:87(td/p)
84
+msgid "Format-Transforming Encryption disguises Tor traffic as web (HTTP) traffic or other types of internet traffic. FTE bridges are effective, but in limited supply."
85
+msgstr ""
86
+
87
+#: C/bridges.page:96(page/p)
88
+msgid "(Note that flashproxy is a Pluggable Transport, but does not rely on bridges.)"
89
+msgstr ""
90
+
91
+#: C/bridges.page:100(page/p)
92
+msgid "There are four ways to get a bridge."
93
+msgstr ""
94
+
95
+#: C/bridges.page:106(item/p)
96
+msgid "Visit <link href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</link> and follow the instructions."
97
+msgstr ""
98
+
99
+#: C/bridges.page:111(item/p)
100
+msgid "Email bridges@bridges.torproject.org from a gmail or yahoo email address. Put <cmd>get bridges</cmd> in the body for ORPort bridges or <cmd>transport=obfs3</cmd> for obfs3 bridges."
101
+msgstr ""
102
+
103
+#: C/bridges.page:118(item/p)
104
+msgid "Politely ask a human at help@rt.torproject.org if you cannot access either of the first two methods."
105
+msgstr ""
106
+
107
+#: C/bridges.page:124(item/p)
108
+msgid "Install and configure a Tor instance to be bridge for yourself. The computer acting as a bridge must have uncensored internet access to the Tor network. A full installation guide can be found at <link href=\"https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en\">https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en</link>"
109
+msgstr ""
110
+
111
+#: C/bridges.page:133(page/p)
112
+msgid "Enter the bridge information you get from any of the above steps in Tor-launcher."
113
+msgstr ""
114
+
115
+#: C/bridges.page:138(page/p)
116
+msgid "Choose yes when asked if your Internet Service Provider blocks connections to the Tor network. Select 'Use custom bridges' and enter each bridge identifier on its own line."
117
+msgstr ""
118
+
119
+#: C/bridges.page:146(page/p)
120
+msgid "Click Connect. Using bridges slow down the connection. If the connection fails, the bridges you received may be down. Get more and try again."
121
+msgstr ""
122
+
123
+#. This is a reference to an external file such as an image or video. When
124
+#. the file changes, the md5 hash will change to let you know you need to
125
+#. update your localized copy. The msgstr is not used at all. Set it to
126
+#. whatever you like once you have updated your copy of the file.
127
+#: C/circumvention.page:21(media)
128
+msgctxt "_"
129
+msgid "external ref='media/tor-launcher-configure_en-US.png' md5='966f4bafcb829e59b2b84d08144d885e'"
130
+msgstr ""
131
+
132
+#. This is a reference to an external file such as an image or video. When
133
+#. the file changes, the md5 hash will change to let you know you need to
134
+#. update your localized copy. The msgstr is not used at all. Set it to
135
+#. whatever you like once you have updated your copy of the file.
136
+#: C/circumvention.page:28(media)
137
+msgctxt "_"
138
+msgid "external ref='media/tor-launcher-wizard_en-US.png' md5='21f80fc3f4e34359bfdc44684d7da09d'"
139
+msgstr ""
140
+
141
+#. This is a reference to an external file such as an image or video. When
142
+#. the file changes, the md5 hash will change to let you know you need to
143
+#. update your localized copy. The msgstr is not used at all. Set it to
144
+#. whatever you like once you have updated your copy of the file.
145
+#: C/circumvention.page:36(media)
146
+msgctxt "_"
147
+msgid "external ref='media/tor-launcher-provided-bridges_en-US.png' md5='70524dccb698a21bb1d20223461e3272'"
148
+msgstr ""
149
+
150
+#: C/circumvention.page:7(info/title)
151
+msgctxt "sort"
152
+msgid "04 Circumvention"
153
+msgstr ""
154
+
155
+#: C/circumvention.page:8(info/desc)
156
+msgid "What to do if the Tor network is blocked."
157
+msgstr ""
158
+
159
+#: C/circumvention.page:12(page/title)
160
+msgid "Circumvention"
161
+msgstr ""
162
+
163
+#: C/circumvention.page:14(page/p)
164
+msgid "Some firewalls can detect and block connections to Tor. The Tor Browser includes some circumvention tools for getting around blocking firewalls. These circumvention tools are called Pluggable Transports. To turn them on, click \"Configure\" in the Tor launcher window."
165
+msgstr ""
166
+
167
+#: C/circumvention.page:23(page/p)
168
+msgid "Select yes when asked if your internet service provider blocks connections to Tor.\""
169
+msgstr ""
170
+
171
+#: C/circumvention.page:30(page/p)
172
+msgid "Select \"Connect with provided bridges\". Tor Browser has three Pluggable Transports to choose from. If one fails to get you online, try selecting a different transport."
173
+msgstr ""
174
+
175
+#: C/circumvention.page:38(page/p)
176
+msgid "If you try all three transports, and none of them get you online, select \"Enter custom bridges\", and enter bridges manually. Read the <link xref=\"bridges\">Getting Bridges</link> section for instructions on getting custom bridges."
177
+msgstr ""
178
+
179
+#. This is a reference to an external file such as an image or video. When
180
+#. the file changes, the md5 hash will change to let you know you need to
181
+#. update your localized copy. The msgstr is not used at all. Set it to
182
+#. whatever you like once you have updated your copy of the file.
183
+#: C/how-tor-works.page:19(media)
184
+msgctxt "_"
185
+msgid "external ref='media/how-tor-works.png' md5='6fe4151a88b7a518466f0582e40ccc8c'"
186
+msgstr ""
187
+
188
+#: C/how-tor-works.page:6(info/title)
189
+msgctxt "sort"
190
+msgid "01 Tor"
191
+msgstr ""
192
+
193
+#: C/how-tor-works.page:7(info/desc)
194
+msgid "How Tor works."
195
+msgstr ""
196
+
197
+#: C/how-tor-works.page:11(page/title)
198
+msgid "Tor"
199
+msgstr ""
200
+
201
+#: C/how-tor-works.page:12(page/p)
202
+msgid "Tor is a network of virtual tunnels that allows you to improve your privacy and security on the Internet. Tor works by sending your traffic through three random servers (also known as <em>relays</em>) in the Tor network, before the traffic is sent out onto the public Internet"
203
+msgstr ""
204
+
205
+#: C/how-tor-works.page:20(page/p)
206
+msgid "The image above illustrates a user browsing to different websites over Tor. The green monitors represent relays in the Tor network, while the three keys represent the layers of encryption between the user and each relay."
207
+msgstr ""
208
+
209
+#: C/how-tor-works.page:26(page/p)
210
+msgid "Tor will anonymize the origin of your traffic, and it will encrypt everything between you and the Tor network. Tor will also encrypt your traffic inside the Tor network, but it cannot encrypt your traffic between the Tor network and its final destination."
211
+msgstr ""
212
+
213
+#: C/how-tor-works.page:32(page/p)
214
+msgid "If you are communicating sensitive information, for example when logging on to a website with a username and password, make sure that you are using HTTPS (e.g. <input><em>https</em>://torproject.org/</input>, not <input><em>http</em>://torproject.org/</input>)."
215
+msgstr ""
216
+
217
+#: C/index.page:6(page/title)
218
+msgid "Tor Browser Help"
219
+msgstr ""
220
+
221
+#: C/index.page:7(page/p)
222
+msgid "Version: UNKNOWN-dirty"
223
+msgstr ""
224
+
225
+#: C/known-issues.page:7(info/desc)
226
+msgid "A list of known issues."
227
+msgstr ""
228
+
229
+#: C/known-issues.page:8(info/title)
230
+msgctxt "sort"
231
+msgid "03 Known Issues"
232
+msgstr ""
233
+
234
+#: C/known-issues.page:12(page/title)
235
+msgid "Known Issues"
236
+msgstr ""
237
+
238
+#: C/known-issues.page:16(item/p)
239
+msgid "The following firewall software have been known to interfere with Tor and may need to be temporarily disabled:"
240
+msgstr ""
241
+
242
+#: C/known-issues.page:20(item/p)
243
+msgid "Webroot SecureAnywhere"
244
+msgstr ""
245
+
246
+#: C/known-issues.page:23(item/p)
247
+msgid "Kaspersky Internet Security 2012"
248
+msgstr ""
249
+
250
+#: C/known-issues.page:26(item/p)
251
+msgid "Sophos Antivirus for Mac"
252
+msgstr ""
253
+
254
+#: C/known-issues.page:29(item/p)
255
+msgid "Microsoft Security Essentials"
256
+msgstr ""
257
+
258
+#: C/known-issues.page:34(item/p)
259
+msgid "Videos that require Adobe Flash are unavailable. Flash is disabled for security reasons. Most YouTube videos can be played with HTML5 by visiting the video's \"Embed\" → \"Share\" link."
260
+msgstr ""
261
+
262
+#: C/known-issues.page:41(item/p)
263
+msgid "Tor can not use a bridge if a proxy is set."
264
+msgstr ""
265
+
266
+#: C/known-issues.page:46(item/p)
267
+msgid "The Tor Browser package is dated January 1, 2000 00:00:00 UTC. This is to ensure that each software build is exactly reproducible."
268
+msgstr ""
269
+
270
+#: C/known-issues.page:52(item/p)
271
+msgid "To run Tor Browser on Ubuntu, users need to execute a shell script. Open \"Files\" (Unity's explorer), open Preferences → Behavior Tab → Set \"Run executable text files when they are opened\" to \"Ask every time\", then OK. Tor Browser can also be started from the command line by running"
272
+msgstr ""
273
+
274
+#: C/known-issues.page:58(item/code)
275
+#, no-wrap
276
+msgid ""
277
+"\n"
278
+"    ./start-tor-browser\n"
279
+"    "
280
+msgstr ""
281
+
282
+#: C/known-issues.page:61(item/p)
283
+msgid "from inside the Tor Browser directory."
284
+msgstr ""
285
+
286
+#: C/known-issues.page:66(page/p)
287
+msgid "If you have an issue with Tor Browser that isn't on this list, feel free to email help@rt.torproject.org."
288
+msgstr ""
289
+
290
+#. This is a reference to an external file such as an image or video. When
291
+#. the file changes, the md5 hash will change to let you know you need to
292
+#. update your localized copy. The msgstr is not used at all. Set it to
293
+#. whatever you like once you have updated your copy of the file.
294
+#: C/troubleshooting.page:19(media)
295
+msgctxt "_"
296
+msgid "external ref='media/tor-launcher-connect_en-US.png' md5='03118f523f4cbc7c001da1ddacc9e394'"
297
+msgstr ""
298
+
299
+#: C/troubleshooting.page:7(info/title)
300
+msgctxt "sort"
301
+msgid "02 Troubleshooting"
302
+msgstr ""
303
+
304
+#: C/troubleshooting.page:8(info/desc)
305
+msgid "What to do if Tor Browser doesn't work."
306
+msgstr ""
307
+
308
+#: C/troubleshooting.page:12(page/title)
309
+msgid "Troubleshooting"
310
+msgstr ""
311
+
312
+#: C/troubleshooting.page:14(page/p)
313
+msgid "The Tor Browser should get you online automatically after clicking the \"Connect\" button on the start up screen."
314
+msgstr ""
315
+
316
+#: C/troubleshooting.page:21(page/p)
317
+msgid "If it doesn't connect, there may be a simple fix. Try each of the following:"
318
+msgstr ""
319
+
320
+#: C/troubleshooting.page:27(item/p)
321
+msgid "Make sure another Tor Browser is not already running. If you're not sure if Tor Browser is running, restart your computer."
322
+msgstr ""
323
+
324
+#: C/troubleshooting.page:31(item/p)
325
+msgid "'Allow' Tor in your antivirus program."
326
+msgstr ""
327
+
328
+#: C/troubleshooting.page:34(item/p)
329
+msgid "Temporarily disable your firewall."
330
+msgstr ""
331
+
332
+#: C/troubleshooting.page:37(item/p)
333
+msgid "Delete Tor Browser and install it again. If updating, do not overwrite your previous Tor Browser files."
334
+msgstr ""
335
+
336
+#: C/troubleshooting.page:42(page/p)
337
+msgid "If you still can't connect, your internet service provider might be censoring connections to Tor. Follow the instructions in the <link xref=\"circumvention\">Circumvention</link> section."
338
+msgstr ""
339
+
340
+#: C/troubleshooting.page:48(page/p)
341
+msgid "If the above steps do not address your problem, email help@rt.torproject.org with your operating system, the details of your problem, and what you've already tried."
342
+msgstr ""
343
+
344
+#: C/uninstalling.page:7(info/desc)
345
+msgid "How to remove Tor Browser from your system."
346
+msgstr ""
347
+
348
+#: C/uninstalling.page:8(info/title)
349
+msgctxt "sort"
350
+msgid "06 Uninstalling"
351
+msgstr ""
352
+
353
+#: C/uninstalling.page:12(page/title)
354
+msgid "Uninstalling"
355
+msgstr ""
356
+
357
+#: C/uninstalling.page:14(page/p)
358
+msgid "The Tor Browser does not affect any of the existing software or settings on your computer. Uninstalling Tor Browser will not affect your system's software or settings either."
359
+msgstr ""
360
+
361
+#: C/uninstalling.page:20(page/p)
362
+msgid "Removing the Tor Browser from your system is simple:"
363
+msgstr ""
364
+
365
+#: C/uninstalling.page:26(item/p)
366
+msgid "Locate your Tor Browser folder. The default location is your Desktop."
367
+msgstr ""
368
+
369
+#: C/uninstalling.page:29(item/p)
370
+msgid "Delete the Tor Browser folder."
371
+msgstr ""
372
+
373
+#: C/uninstalling.page:32(item/p)
374
+msgid "Empty your Trash"
375
+msgstr ""
376
+
377
+#: C/uninstalling.page:36(page/p)
378
+msgid "Note that your operating system's standard \"Uninstall\" utility is not used."
379
+msgstr ""
380
+
... ...
@@ -1,6 +0,0 @@
1
-<page xmlns="http://projectmallard.org/1.0/"
2
-type="guide"
3
-id="index">
4
-<title>Tor Browser Help</title>
5
-</page>
6
-
... ...
@@ -0,0 +1,380 @@
1
+msgid ""
2
+msgstr ""
3
+"Project-Id-Version: PACKAGE VERSION\n"
4
+"POT-Creation-Date: 2014-05-15 11:21+0200\n"
5
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
6
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
7
+"Language-Team: LANGUAGE <LL@li.org>\n"
8
+"MIME-Version: 1.0\n"
9
+"Content-Type: text/plain; charset=UTF-8\n"
10
+"Content-Transfer-Encoding: 8bit\n"
11
+
12
+#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
13
+msgctxt "_"
14
+msgid "translator-credits"
15
+msgstr ""
16
+
17
+#. This is a reference to an external file such as an image or video. When
18
+#. the file changes, the md5 hash will change to let you know you need to
19
+#. update your localized copy. The msgstr is not used at all. Set it to
20
+#. whatever you like once you have updated your copy of the file.
21
+#: C/bridges.page:144(media)
22
+msgctxt "_"
23
+msgid "external ref='media/tor-launcher-custom-bridges_en-US.png' md5='93365c2aa3fb4d627497e83f28a39b7e'"
24
+msgstr ""
25
+
26
+#: C/bridges.page:7(info/desc)
27
+msgid "What bridges are and how to use them."
28
+msgstr ""
29
+
30
+#: C/bridges.page:8(info/title)
31
+msgctxt "sort"
32
+msgid "05 Bridges"
33
+msgstr ""
34
+
35
+#: C/bridges.page:12(page/title)
36
+msgid "Bridges"
37
+msgstr ""
38
+
39
+#: C/bridges.page:14(page/p)
40
+msgid "Bridges are quiet gateways into the Tor Network. Like Tor relays, they are run by volunteers. Unlike relays, they are not listed publicly. Using bridges disguise the fact that one is using Tor."
41
+msgstr ""
42
+
43
+#: C/bridges.page:20(page/p)
44
+msgid "Currently there are five bridge types, or transports, available. More are being developed."
45
+msgstr ""
46
+
47
+#: C/bridges.page:27(td/p)
48
+msgid "ORPort"
49
+msgstr ""
50
+
51
+#: C/bridges.page:32(td/p)
52
+msgid "Requesting 'bridges' without specifying the bridge type, will return ORPort bridges, also called Vanilla bridges. ORPort bridges are NOT reliable for circumventing censorship or national firewalls. ORPort bridges can be useful as trusted entry points into the Tor network."
53
+msgstr ""
54
+
55
+#: C/bridges.page:42(td/p)
56
+msgid "obfs2"
57
+msgstr ""
58
+
59
+#: C/bridges.page:47(td/p)
60
+msgid "Censors have learned how to identify obfs2 bridges. This transport is being deprecated."
61
+msgstr ""
62
+
63
+#: C/bridges.page:55(td/p)
64
+msgid "obfs3"
65
+msgstr ""
66
+
67
+#: C/bridges.page:60(td/p)
68
+msgid "Obfsproxy disguises Tor traffic as random noise. obfs3 bridges work almost everywhere. A few obfs3 bridges have been blocked."
69
+msgstr ""
70
+
71
+#: C/bridges.page:68(td/p)
72
+msgid "Scramblesuit"
73
+msgstr ""
74
+
75
+#: C/bridges.page:73(td/p)
76
+msgid "Scramblesuit is an additional tool for the obfsproxy transport. Scramblesuit bridges are designed to be hard to identify and hard to block."
77
+msgstr ""
78
+
79
+#: C/bridges.page:82(td/p)
80
+msgid "FTE"
81
+msgstr ""
82
+
83
+#: C/bridges.page:87(td/p)
84
+msgid "Format-Transforming Encryption disguises Tor traffic as web (HTTP) traffic or other types of internet traffic. FTE bridges are effective, but in limited supply."
85
+msgstr ""
86
+
87
+#: C/bridges.page:96(page/p)
88
+msgid "(Note that flashproxy is a Pluggable Transport, but does not rely on bridges.)"
89
+msgstr ""
90
+
91
+#: C/bridges.page:100(page/p)
92
+msgid "There are four ways to get a bridge."
93
+msgstr ""
94
+
95
+#: C/bridges.page:106(item/p)
96
+msgid "Visit <link href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</link> and follow the instructions."
97
+msgstr ""
98
+
99
+#: C/bridges.page:111(item/p)
100
+msgid "Email bridges@bridges.torproject.org from a gmail or yahoo email address. Put <cmd>get bridges</cmd> in the body for ORPort bridges or <cmd>transport=obfs3</cmd> for obfs3 bridges."
101
+msgstr ""
102
+
103
+#: C/bridges.page:118(item/p)
104
+msgid "Politely ask a human at help@rt.torproject.org if you cannot access either of the first two methods."
105
+msgstr ""
106
+
107
+#: C/bridges.page:124(item/p)
108
+msgid "Install and configure a Tor instance to be bridge for yourself. The computer acting as a bridge must have uncensored internet access to the Tor network. A full installation guide can be found at <link href=\"https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en\">https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en</link>"
109
+msgstr ""
110
+
111
+#: C/bridges.page:133(page/p)
112
+msgid "Enter the bridge information you get from any of the above steps in Tor-launcher."
113
+msgstr ""
114
+
115
+#: C/bridges.page:138(page/p)
116
+msgid "Choose yes when asked if your Internet Service Provider blocks connections to the Tor network. Select 'Use custom bridges' and enter each bridge identifier on its own line."
117
+msgstr ""
118
+
119
+#: C/bridges.page:146(page/p)
120
+msgid "Click Connect. Using bridges slow down the connection. If the connection fails, the bridges you received may be down. Get more and try again."
121
+msgstr ""
122
+
123
+#. This is a reference to an external file such as an image or video. When
124
+#. the file changes, the md5 hash will change to let you know you need to
125
+#. update your localized copy. The msgstr is not used at all. Set it to
126
+#. whatever you like once you have updated your copy of the file.
127
+#: C/circumvention.page:21(media)
128
+msgctxt "_"
129
+msgid "external ref='media/tor-launcher-configure_en-US.png' md5='966f4bafcb829e59b2b84d08144d885e'"
130
+msgstr ""
131
+
132
+#. This is a reference to an external file such as an image or video. When
133
+#. the file changes, the md5 hash will change to let you know you need to
134
+#. update your localized copy. The msgstr is not used at all. Set it to
135
+#. whatever you like once you have updated your copy of the file.
136
+#: C/circumvention.page:28(media)
137
+msgctxt "_"
138
+msgid "external ref='media/tor-launcher-wizard_en-US.png' md5='21f80fc3f4e34359bfdc44684d7da09d'"
139
+msgstr ""
140
+
141
+#. This is a reference to an external file such as an image or video. When
142
+#. the file changes, the md5 hash will change to let you know you need to
143
+#. update your localized copy. The msgstr is not used at all. Set it to
144
+#. whatever you like once you have updated your copy of the file.
145
+#: C/circumvention.page:36(media)
146
+msgctxt "_"
147
+msgid "external ref='media/tor-launcher-provided-bridges_en-US.png' md5='70524dccb698a21bb1d20223461e3272'"
148
+msgstr ""
149
+
150
+#: C/circumvention.page:7(info/title)
151
+msgctxt "sort"
152
+msgid "04 Circumvention"
153
+msgstr ""
154
+
155
+#: C/circumvention.page:8(info/desc)
156
+msgid "What to do if the Tor network is blocked."
157
+msgstr ""
158
+
159
+#: C/circumvention.page:12(page/title)
160
+msgid "Circumvention"
161
+msgstr ""
162
+
163
+#: C/circumvention.page:14(page/p)
164
+msgid "Some firewalls can detect and block connections to Tor. The Tor Browser includes some circumvention tools for getting around blocking firewalls. These circumvention tools are called Pluggable Transports. To turn them on, click \"Configure\" in the Tor launcher window."
165
+msgstr ""
166
+
167
+#: C/circumvention.page:23(page/p)
168
+msgid "Select yes when asked if your internet service provider blocks connections to Tor.\""
169
+msgstr ""
170
+
171
+#: C/circumvention.page:30(page/p)
172
+msgid "Select \"Connect with provided bridges\". Tor Browser has three Pluggable Transports to choose from. If one fails to get you online, try selecting a different transport."
173
+msgstr ""
174
+
175
+#: C/circumvention.page:38(page/p)
176
+msgid "If you try all three transports, and none of them get you online, select \"Enter custom bridges\", and enter bridges manually. Read the <link xref=\"bridges\">Getting Bridges</link> section for instructions on getting custom bridges."
177
+msgstr ""
178
+
179
+#. This is a reference to an external file such as an image or video. When
180
+#. the file changes, the md5 hash will change to let you know you need to
181
+#. update your localized copy. The msgstr is not used at all. Set it to
182
+#. whatever you like once you have updated your copy of the file.
183
+#: C/how-tor-works.page:19(media)
184
+msgctxt "_"
185
+msgid "external ref='media/how-tor-works.png' md5='6fe4151a88b7a518466f0582e40ccc8c'"
186
+msgstr ""
187
+
188
+#: C/how-tor-works.page:6(info/title)
189
+msgctxt "sort"
190
+msgid "01 Tor"
191
+msgstr ""
192
+
193
+#: C/how-tor-works.page:7(info/desc)
194
+msgid "How Tor works."
195
+msgstr ""
196
+
197
+#: C/how-tor-works.page:11(page/title)
198
+msgid "Tor"
199
+msgstr ""
200
+
201
+#: C/how-tor-works.page:12(page/p)
202
+msgid "Tor is a network of virtual tunnels that allows you to improve your privacy and security on the Internet. Tor works by sending your traffic through three random servers (also known as <em>relays</em>) in the Tor network, before the traffic is sent out onto the public Internet"
203
+msgstr ""
204
+
205
+#: C/how-tor-works.page:20(page/p)
206
+msgid "The image above illustrates a user browsing to different websites over Tor. The green monitors represent relays in the Tor network, while the three keys represent the layers of encryption between the user and each relay."
207
+msgstr ""
208
+
209
+#: C/how-tor-works.page:26(page/p)
210
+msgid "Tor will anonymize the origin of your traffic, and it will encrypt everything between you and the Tor network. Tor will also encrypt your traffic inside the Tor network, but it cannot encrypt your traffic between the Tor network and its final destination."
211
+msgstr ""
212
+
213
+#: C/how-tor-works.page:32(page/p)
214
+msgid "If you are communicating sensitive information, for example when logging on to a website with a username and password, make sure that you are using HTTPS (e.g. <input><em>https</em>://torproject.org/</input>, not <input><em>http</em>://torproject.org/</input>)."
215
+msgstr ""
216
+
217
+#: C/index.page:6(page/title)
218
+msgid "Tor Browser Help"
219
+msgstr ""
220
+
221
+#: C/index.page:7(page/p)
222
+msgid "Version: UNKNOWN-dirty"
223
+msgstr ""
224
+
225
+#: C/known-issues.page:7(info/desc)
226
+msgid "A list of known issues."
227
+msgstr ""
228
+
229
+#: C/known-issues.page:8(info/title)
230
+msgctxt "sort"
231
+msgid "03 Known Issues"
232
+msgstr ""
233
+
234
+#: C/known-issues.page:12(page/title)
235
+msgid "Known Issues"
236
+msgstr ""
237
+
238
+#: C/known-issues.page:16(item/p)
239
+msgid "The following firewall software have been known to interfere with Tor and may need to be temporarily disabled:"
240
+msgstr ""
241
+
242
+#: C/known-issues.page:20(item/p)
243
+msgid "Webroot SecureAnywhere"
244
+msgstr ""
245
+
246
+#: C/known-issues.page:23(item/p)
247
+msgid "Kaspersky Internet Security 2012"
248
+msgstr ""
249
+
250
+#: C/known-issues.page:26(item/p)
251
+msgid "Sophos Antivirus for Mac"
252
+msgstr ""
253
+
254
+#: C/known-issues.page:29(item/p)
255
+msgid "Microsoft Security Essentials"
256
+msgstr ""
257
+
258
+#: C/known-issues.page:34(item/p)
259
+msgid "Videos that require Adobe Flash are unavailable. Flash is disabled for security reasons. Most YouTube videos can be played with HTML5 by visiting the video's \"Embed\" → \"Share\" link."
260
+msgstr ""
261
+
262
+#: C/known-issues.page:41(item/p)
263
+msgid "Tor can not use a bridge if a proxy is set."
264
+msgstr ""
265
+
266
+#: C/known-issues.page:46(item/p)
267
+msgid "The Tor Browser package is dated January 1, 2000 00:00:00 UTC. This is to ensure that each software build is exactly reproducible."
268
+msgstr ""
269
+
270
+#: C/known-issues.page:52(item/p)
271
+msgid "To run Tor Browser on Ubuntu, users need to execute a shell script. Open \"Files\" (Unity's explorer), open Preferences → Behavior Tab → Set \"Run executable text files when they are opened\" to \"Ask every time\", then OK. Tor Browser can also be started from the command line by running"
272
+msgstr ""
273
+
274
+#: C/known-issues.page:58(item/code)
275
+#, no-wrap
276
+msgid ""
277
+"\n"
278
+"    ./start-tor-browser\n"
279
+"    "
280
+msgstr ""
281
+
282
+#: C/known-issues.page:61(item/p)
283
+msgid "from inside the Tor Browser directory."
284
+msgstr ""
285
+
286
+#: C/known-issues.page:66(page/p)
287
+msgid "If you have an issue with Tor Browser that isn't on this list, feel free to email help@rt.torproject.org."
288
+msgstr ""
289
+
290
+#. This is a reference to an external file such as an image or video. When
291
+#. the file changes, the md5 hash will change to let you know you need to
292
+#. update your localized copy. The msgstr is not used at all. Set it to
293
+#. whatever you like once you have updated your copy of the file.
294
+#: C/troubleshooting.page:19(media)
295
+msgctxt "_"
296
+msgid "external ref='media/tor-launcher-connect_en-US.png' md5='03118f523f4cbc7c001da1ddacc9e394'"
297
+msgstr ""
298
+
299
+#: C/troubleshooting.page:7(info/title)
300
+msgctxt "sort"
301
+msgid "02 Troubleshooting"
302
+msgstr ""
303
+
304
+#: C/troubleshooting.page:8(info/desc)
305
+msgid "What to do if Tor Browser doesn't work."
306
+msgstr ""
307
+
308
+#: C/troubleshooting.page:12(page/title)
309
+msgid "Troubleshooting"
310
+msgstr ""
311
+
312
+#: C/troubleshooting.page:14(page/p)
313
+msgid "The Tor Browser should get you online automatically after clicking the \"Connect\" button on the start up screen."
314
+msgstr ""
315
+
316
+#: C/troubleshooting.page:21(page/p)
317
+msgid "If it doesn't connect, there may be a simple fix. Try each of the following:"
318
+msgstr ""
319
+
320
+#: C/troubleshooting.page:27(item/p)
321
+msgid "Make sure another Tor Browser is not already running. If you're not sure if Tor Browser is running, restart your computer."
322
+msgstr ""
323
+
324
+#: C/troubleshooting.page:31(item/p)
325
+msgid "'Allow' Tor in your antivirus program."
326
+msgstr ""
327
+
328
+#: C/troubleshooting.page:34(item/p)
329
+msgid "Temporarily disable your firewall."
330
+msgstr ""
331
+
332
+#: C/troubleshooting.page:37(item/p)
333
+msgid "Delete Tor Browser and install it again. If updating, do not overwrite your previous Tor Browser files."
334
+msgstr ""
335
+
336
+#: C/troubleshooting.page:42(page/p)
337
+msgid "If you still can't connect, your internet service provider might be censoring connections to Tor. Follow the instructions in the <link xref=\"circumvention\">Circumvention</link> section."
338
+msgstr ""
339
+
340
+#: C/troubleshooting.page:48(page/p)
341
+msgid "If the above steps do not address your problem, email help@rt.torproject.org with your operating system, the details of your problem, and what you've already tried."
342
+msgstr ""
343
+
344
+#: C/uninstalling.page:7(info/desc)
345
+msgid "How to remove Tor Browser from your system."
346
+msgstr ""
347
+
348
+#: C/uninstalling.page:8(info/title)
349
+msgctxt "sort"
350
+msgid "06 Uninstalling"
351
+msgstr ""
352
+
353
+#: C/uninstalling.page:12(page/title)
354
+msgid "Uninstalling"
355
+msgstr ""
356
+
357
+#: C/uninstalling.page:14(page/p)
358
+msgid "The Tor Browser does not affect any of the existing software or settings on your computer. Uninstalling Tor Browser will not affect your system's software or settings either."
359
+msgstr ""
360
+
361
+#: C/uninstalling.page:20(page/p)
362
+msgid "Removing the Tor Browser from your system is simple:"
363
+msgstr ""
364
+
365
+#: C/uninstalling.page:26(item/p)
366
+msgid "Locate your Tor Browser folder. The default location is your Desktop."
367
+msgstr ""
368
+
369
+#: C/uninstalling.page:29(item/p)
370
+msgid "Delete the Tor Browser folder."
371
+msgstr ""
372
+
373
+#: C/uninstalling.page:32(item/p)
374
+msgid "Empty your Trash"
375
+msgstr ""
376
+
377
+#: C/uninstalling.page:36(page/p)
378
+msgid "Note that your operating system's standard \"Uninstall\" utility is not used."
379
+msgstr ""
380
+
... ...
@@ -0,0 +1,380 @@
1
+msgid ""
2
+msgstr ""
3
+"Project-Id-Version: PACKAGE VERSION\n"
4
+"POT-Creation-Date: 2014-05-15 11:21+0200\n"
5
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
6
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
7
+"Language-Team: LANGUAGE <LL@li.org>\n"
8
+"MIME-Version: 1.0\n"
9
+"Content-Type: text/plain; charset=UTF-8\n"
10
+"Content-Transfer-Encoding: 8bit\n"
11
+
12
+#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
13
+msgctxt "_"
14
+msgid "translator-credits"
15
+msgstr ""
16
+
17
+#. This is a reference to an external file such as an image or video. When
18
+#. the file changes, the md5 hash will change to let you know you need to
19
+#. update your localized copy. The msgstr is not used at all. Set it to
20
+#. whatever you like once you have updated your copy of the file.
21
+#: C/bridges.page:144(media)
22
+msgctxt "_"
23
+msgid "external ref='media/tor-launcher-custom-bridges_en-US.png' md5='93365c2aa3fb4d627497e83f28a39b7e'"
24
+msgstr ""
25
+
26
+#: C/bridges.page:7(info/desc)
27
+msgid "What bridges are and how to use them."
28
+msgstr ""
29
+
30
+#: C/bridges.page:8(info/title)
31
+msgctxt "sort"
32
+msgid "05 Bridges"
33
+msgstr ""
34
+
35
+#: C/bridges.page:12(page/title)
36
+msgid "Bridges"
37
+msgstr ""
38
+
39
+#: C/bridges.page:14(page/p)
40
+msgid "Bridges are quiet gateways into the Tor Network. Like Tor relays, they are run by volunteers. Unlike relays, they are not listed publicly. Using bridges disguise the fact that one is using Tor."
41
+msgstr ""
42
+
43
+#: C/bridges.page:20(page/p)
44
+msgid "Currently there are five bridge types, or transports, available. More are being developed."
45
+msgstr ""
46
+
47
+#: C/bridges.page:27(td/p)
48
+msgid "ORPort"
49
+msgstr ""
50
+
51
+#: C/bridges.page:32(td/p)
52
+msgid "Requesting 'bridges' without specifying the bridge type, will return ORPort bridges, also called Vanilla bridges. ORPort bridges are NOT reliable for circumventing censorship or national firewalls. ORPort bridges can be useful as trusted entry points into the Tor network."
53
+msgstr ""
54
+
55
+#: C/bridges.page:42(td/p)
56
+msgid "obfs2"
57
+msgstr ""
58
+
59
+#: C/bridges.page:47(td/p)
60
+msgid "Censors have learned how to identify obfs2 bridges. This transport is being deprecated."
61
+msgstr ""
62
+
63
+#: C/bridges.page:55(td/p)
64
+msgid "obfs3"
65
+msgstr ""
66
+
67
+#: C/bridges.page:60(td/p)
68
+msgid "Obfsproxy disguises Tor traffic as random noise. obfs3 bridges work almost everywhere. A few obfs3 bridges have been blocked."
69
+msgstr ""
70
+
71
+#: C/bridges.page:68(td/p)
72
+msgid "Scramblesuit"
73
+msgstr ""
74
+
75
+#: C/bridges.page:73(td/p)
76
+msgid "Scramblesuit is an additional tool for the obfsproxy transport. Scramblesuit bridges are designed to be hard to identify and hard to block."
77
+msgstr ""
78
+
79
+#: C/bridges.page:82(td/p)
80
+msgid "FTE"
81
+msgstr ""
82
+
83
+#: C/bridges.page:87(td/p)
84
+msgid "Format-Transforming Encryption disguises Tor traffic as web (HTTP) traffic or other types of internet traffic. FTE bridges are effective, but in limited supply."
85
+msgstr ""
86
+
87
+#: C/bridges.page:96(page/p)
88
+msgid "(Note that flashproxy is a Pluggable Transport, but does not rely on bridges.)"
89
+msgstr ""
90
+
91
+#: C/bridges.page:100(page/p)
92
+msgid "There are four ways to get a bridge."
93
+msgstr ""
94
+
95
+#: C/bridges.page:106(item/p)
96
+msgid "Visit <link href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</link> and follow the instructions."
97
+msgstr ""
98
+
99
+#: C/bridges.page:111(item/p)
100
+msgid "Email bridges@bridges.torproject.org from a gmail or yahoo email address. Put <cmd>get bridges</cmd> in the body for ORPort bridges or <cmd>transport=obfs3</cmd> for obfs3 bridges."
101
+msgstr ""
102
+
103
+#: C/bridges.page:118(item/p)
104
+msgid "Politely ask a human at help@rt.torproject.org if you cannot access either of the first two methods."
105
+msgstr ""
106
+
107
+#: C/bridges.page:124(item/p)
108
+msgid "Install and configure a Tor instance to be bridge for yourself. The computer acting as a bridge must have uncensored internet access to the Tor network. A full installation guide can be found at <link href=\"https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en\">https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en</link>"
109
+msgstr ""
110
+
111
+#: C/bridges.page:133(page/p)
112
+msgid "Enter the bridge information you get from any of the above steps in Tor-launcher."
113
+msgstr ""
114
+
115
+#: C/bridges.page:138(page/p)
116
+msgid "Choose yes when asked if your Internet Service Provider blocks connections to the Tor network. Select 'Use custom bridges' and enter each bridge identifier on its own line."
117
+msgstr ""
118
+
119
+#: C/bridges.page:146(page/p)
120
+msgid "Click Connect. Using bridges slow down the connection. If the connection fails, the bridges you received may be down. Get more and try again."
121
+msgstr ""
122
+
123
+#. This is a reference to an external file such as an image or video. When
124
+#. the file changes, the md5 hash will change to let you know you need to
125
+#. update your localized copy. The msgstr is not used at all. Set it to
126
+#. whatever you like once you have updated your copy of the file.
127
+#: C/circumvention.page:21(media)
128
+msgctxt "_"
129
+msgid "external ref='media/tor-launcher-configure_en-US.png' md5='966f4bafcb829e59b2b84d08144d885e'"
130
+msgstr ""
131
+
132
+#. This is a reference to an external file such as an image or video. When
133
+#. the file changes, the md5 hash will change to let you know you need to
134
+#. update your localized copy. The msgstr is not used at all. Set it to
135
+#. whatever you like once you have updated your copy of the file.
136
+#: C/circumvention.page:28(media)
137
+msgctxt "_"
138
+msgid "external ref='media/tor-launcher-wizard_en-US.png' md5='21f80fc3f4e34359bfdc44684d7da09d'"
139
+msgstr ""
140
+
141
+#. This is a reference to an external file such as an image or video. When
142
+#. the file changes, the md5 hash will change to let you know you need to
143
+#. update your localized copy. The msgstr is not used at all. Set it to
144
+#. whatever you like once you have updated your copy of the file.
145
+#: C/circumvention.page:36(media)
146
+msgctxt "_"
147
+msgid "external ref='media/tor-launcher-provided-bridges_en-US.png' md5='70524dccb698a21bb1d20223461e3272'"
148
+msgstr ""
149
+
150
+#: C/circumvention.page:7(info/title)
151
+msgctxt "sort"
152
+msgid "04 Circumvention"
153
+msgstr ""
154
+
155
+#: C/circumvention.page:8(info/desc)
156
+msgid "What to do if the Tor network is blocked."
157
+msgstr ""
158
+
159
+#: C/circumvention.page:12(page/title)
160
+msgid "Circumvention"
161
+msgstr ""
162
+
163
+#: C/circumvention.page:14(page/p)
164
+msgid "Some firewalls can detect and block connections to Tor. The Tor Browser includes some circumvention tools for getting around blocking firewalls. These circumvention tools are called Pluggable Transports. To turn them on, click \"Configure\" in the Tor launcher window."
165
+msgstr ""
166
+
167
+#: C/circumvention.page:23(page/p)
168
+msgid "Select yes when asked if your internet service provider blocks connections to Tor.\""
169
+msgstr ""
170
+
171
+#: C/circumvention.page:30(page/p)
172
+msgid "Select \"Connect with provided bridges\". Tor Browser has three Pluggable Transports to choose from. If one fails to get you online, try selecting a different transport."
173
+msgstr ""
174
+
175
+#: C/circumvention.page:38(page/p)
176
+msgid "If you try all three transports, and none of them get you online, select \"Enter custom bridges\", and enter bridges manually. Read the <link xref=\"bridges\">Getting Bridges</link> section for instructions on getting custom bridges."
177
+msgstr ""
178
+
179
+#. This is a reference to an external file such as an image or video. When
180
+#. the file changes, the md5 hash will change to let you know you need to
181
+#. update your localized copy. The msgstr is not used at all. Set it to
182
+#. whatever you like once you have updated your copy of the file.
183
+#: C/how-tor-works.page:19(media)
184
+msgctxt "_"
185
+msgid "external ref='media/how-tor-works.png' md5='6fe4151a88b7a518466f0582e40ccc8c'"
186
+msgstr ""
187
+
188
+#: C/how-tor-works.page:6(info/title)
189
+msgctxt "sort"
190
+msgid "01 Tor"
191
+msgstr ""
192
+
193
+#: C/how-tor-works.page:7(info/desc)
194
+msgid "How Tor works."
195
+msgstr ""
196
+
197
+#: C/how-tor-works.page:11(page/title)
198
+msgid "Tor"
199
+msgstr ""
200
+
201
+#: C/how-tor-works.page:12(page/p)
202
+msgid "Tor is a network of virtual tunnels that allows you to improve your privacy and security on the Internet. Tor works by sending your traffic through three random servers (also known as <em>relays</em>) in the Tor network, before the traffic is sent out onto the public Internet"
203
+msgstr ""
204
+
205
+#: C/how-tor-works.page:20(page/p)
206
+msgid "The image above illustrates a user browsing to different websites over Tor. The green monitors represent relays in the Tor network, while the three keys represent the layers of encryption between the user and each relay."
207
+msgstr ""
208
+
209
+#: C/how-tor-works.page:26(page/p)
210
+msgid "Tor will anonymize the origin of your traffic, and it will encrypt everything between you and the Tor network. Tor will also encrypt your traffic inside the Tor network, but it cannot encrypt your traffic between the Tor network and its final destination."
211
+msgstr ""
212
+
213
+#: C/how-tor-works.page:32(page/p)
214
+msgid "If you are communicating sensitive information, for example when logging on to a website with a username and password, make sure that you are using HTTPS (e.g. <input><em>https</em>://torproject.org/</input>, not <input><em>http</em>://torproject.org/</input>)."
215
+msgstr ""
216
+
217
+#: C/index.page:6(page/title)
218
+msgid "Tor Browser Help"
219
+msgstr ""
220
+
221
+#: C/index.page:7(page/p)
222
+msgid "Version: UNKNOWN-dirty"
223
+msgstr ""
224
+
225
+#: C/known-issues.page:7(info/desc)
226
+msgid "A list of known issues."
227
+msgstr ""
228
+
229
+#: C/known-issues.page:8(info/title)
230
+msgctxt "sort"
231
+msgid "03 Known Issues"
232
+msgstr ""
233
+
234
+#: C/known-issues.page:12(page/title)
235
+msgid "Known Issues"
236
+msgstr ""
237
+
238
+#: C/known-issues.page:16(item/p)
239
+msgid "The following firewall software have been known to interfere with Tor and may need to be temporarily disabled:"
240
+msgstr ""
241
+
242
+#: C/known-issues.page:20(item/p)
243
+msgid "Webroot SecureAnywhere"
244
+msgstr ""
245
+
246
+#: C/known-issues.page:23(item/p)
247
+msgid "Kaspersky Internet Security 2012"
248
+msgstr ""
249
+
250
+#: C/known-issues.page:26(item/p)
251
+msgid "Sophos Antivirus for Mac"
252
+msgstr ""
253
+
254
+#: C/known-issues.page:29(item/p)
255
+msgid "Microsoft Security Essentials"
256
+msgstr ""
257
+
258
+#: C/known-issues.page:34(item/p)
259
+msgid "Videos that require Adobe Flash are unavailable. Flash is disabled for security reasons. Most YouTube videos can be played with HTML5 by visiting the video's \"Embed\" → \"Share\" link."
260
+msgstr ""
261
+
262
+#: C/known-issues.page:41(item/p)
263
+msgid "Tor can not use a bridge if a proxy is set."
264
+msgstr ""
265
+
266
+#: C/known-issues.page:46(item/p)
267
+msgid "The Tor Browser package is dated January 1, 2000 00:00:00 UTC. This is to ensure that each software build is exactly reproducible."
268
+msgstr ""
269
+
270
+#: C/known-issues.page:52(item/p)
271
+msgid "To run Tor Browser on Ubuntu, users need to execute a shell script. Open \"Files\" (Unity's explorer), open Preferences → Behavior Tab → Set \"Run executable text files when they are opened\" to \"Ask every time\", then OK. Tor Browser can also be started from the command line by running"
272
+msgstr ""
273
+
274
+#: C/known-issues.page:58(item/code)
275
+#, no-wrap
276
+msgid ""
277
+"\n"
278
+"    ./start-tor-browser\n"
279
+"    "
280
+msgstr ""
281
+
282
+#: C/known-issues.page:61(item/p)
283
+msgid "from inside the Tor Browser directory."
284
+msgstr ""
285
+
286
+#: C/known-issues.page:66(page/p)
287
+msgid "If you have an issue with Tor Browser that isn't on this list, feel free to email help@rt.torproject.org."
288
+msgstr ""
289
+
290
+#. This is a reference to an external file such as an image or video. When
291
+#. the file changes, the md5 hash will change to let you know you need to
292
+#. update your localized copy. The msgstr is not used at all. Set it to
293
+#. whatever you like once you have updated your copy of the file.
294
+#: C/troubleshooting.page:19(media)
295
+msgctxt "_"
296
+msgid "external ref='media/tor-launcher-connect_en-US.png' md5='03118f523f4cbc7c001da1ddacc9e394'"
297
+msgstr ""
298
+
299
+#: C/troubleshooting.page:7(info/title)
300
+msgctxt "sort"
301
+msgid "02 Troubleshooting"
302
+msgstr ""
303
+
304
+#: C/troubleshooting.page:8(info/desc)
305
+msgid "What to do if Tor Browser doesn't work."
306
+msgstr ""
307
+
308
+#: C/troubleshooting.page:12(page/title)
309
+msgid "Troubleshooting"
310
+msgstr ""
311
+
312
+#: C/troubleshooting.page:14(page/p)
313
+msgid "The Tor Browser should get you online automatically after clicking the \"Connect\" button on the start up screen."
314
+msgstr ""
315
+
316
+#: C/troubleshooting.page:21(page/p)
317
+msgid "If it doesn't connect, there may be a simple fix. Try each of the following:"
318
+msgstr ""
319
+
320
+#: C/troubleshooting.page:27(item/p)
321
+msgid "Make sure another Tor Browser is not already running. If you're not sure if Tor Browser is running, restart your computer."
322
+msgstr ""
323
+
324
+#: C/troubleshooting.page:31(item/p)
325
+msgid "'Allow' Tor in your antivirus program."
326
+msgstr ""
327
+
328
+#: C/troubleshooting.page:34(item/p)
329
+msgid "Temporarily disable your firewall."
330
+msgstr ""
331
+
332
+#: C/troubleshooting.page:37(item/p)
333
+msgid "Delete Tor Browser and install it again. If updating, do not overwrite your previous Tor Browser files."
334
+msgstr ""
335
+
336
+#: C/troubleshooting.page:42(page/p)
337
+msgid "If you still can't connect, your internet service provider might be censoring connections to Tor. Follow the instructions in the <link xref=\"circumvention\">Circumvention</link> section."
338
+msgstr ""
339
+
340
+#: C/troubleshooting.page:48(page/p)
341
+msgid "If the above steps do not address your problem, email help@rt.torproject.org with your operating system, the details of your problem, and what you've already tried."
342
+msgstr ""
343
+
344
+#: C/uninstalling.page:7(info/desc)
345
+msgid "How to remove Tor Browser from your system."
346
+msgstr ""
347
+
348
+#: C/uninstalling.page:8(info/title)
349
+msgctxt "sort"
350
+msgid "06 Uninstalling"
351
+msgstr ""
352
+
353
+#: C/uninstalling.page:12(page/title)
354
+msgid "Uninstalling"
355
+msgstr ""
356
+
357
+#: C/uninstalling.page:14(page/p)
358
+msgid "The Tor Browser does not affect any of the existing software or settings on your computer. Uninstalling Tor Browser will not affect your system's software or settings either."
359
+msgstr ""
360
+
361
+#: C/uninstalling.page:20(page/p)
362
+msgid "Removing the Tor Browser from your system is simple:"
363
+msgstr ""
364
+
365
+#: C/uninstalling.page:26(item/p)
366
+msgid "Locate your Tor Browser folder. The default location is your Desktop."
367
+msgstr ""
368
+
369
+#: C/uninstalling.page:29(item/p)
370
+msgid "Delete the Tor Browser folder."
371
+msgstr ""
372
+
373
+#: C/uninstalling.page:32(item/p)
374
+msgid "Empty your Trash"
375
+msgstr ""
376
+
377
+#: C/uninstalling.page:36(page/p)
378
+msgid "Note that your operating system's standard \"Uninstall\" utility is not used."
379
+msgstr ""
380
+
... ...
@@ -0,0 +1,380 @@
1
+msgid ""
2
+msgstr ""
3
+"Project-Id-Version: PACKAGE VERSION\n"
4
+"POT-Creation-Date: 2014-05-15 11:21+0200\n"
5
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
6
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
7
+"Language-Team: LANGUAGE <LL@li.org>\n"
8
+"MIME-Version: 1.0\n"
9
+"Content-Type: text/plain; charset=UTF-8\n"
10
+"Content-Transfer-Encoding: 8bit\n"
11
+
12
+#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
13
+msgctxt "_"
14
+msgid "translator-credits"
15
+msgstr ""
16
+
17
+#. This is a reference to an external file such as an image or video. When
18
+#. the file changes, the md5 hash will change to let you know you need to
19
+#. update your localized copy. The msgstr is not used at all. Set it to
20
+#. whatever you like once you have updated your copy of the file.
21
+#: C/bridges.page:144(media)
22
+msgctxt "_"
23
+msgid "external ref='media/tor-launcher-custom-bridges_en-US.png' md5='93365c2aa3fb4d627497e83f28a39b7e'"
24
+msgstr ""
25
+
26
+#: C/bridges.page:7(info/desc)
27
+msgid "What bridges are and how to use them."
28
+msgstr ""
29
+
30
+#: C/bridges.page:8(info/title)
31
+msgctxt "sort"
32
+msgid "05 Bridges"
33
+msgstr ""
34
+
35
+#: C/bridges.page:12(page/title)
36
+msgid "Bridges"
37
+msgstr ""
38
+
39
+#: C/bridges.page:14(page/p)
40
+msgid "Bridges are quiet gateways into the Tor Network. Like Tor relays, they are run by volunteers. Unlike relays, they are not listed publicly. Using bridges disguise the fact that one is using Tor."
41
+msgstr ""
42
+
43
+#: C/bridges.page:20(page/p)
44
+msgid "Currently there are five bridge types, or transports, available. More are being developed."
45
+msgstr ""
46
+
47
+#: C/bridges.page:27(td/p)
48
+msgid "ORPort"
49
+msgstr ""
50
+
51
+#: C/bridges.page:32(td/p)
52
+msgid "Requesting 'bridges' without specifying the bridge type, will return ORPort bridges, also called Vanilla bridges. ORPort bridges are NOT reliable for circumventing censorship or national firewalls. ORPort bridges can be useful as trusted entry points into the Tor network."
53
+msgstr ""
54
+
55
+#: C/bridges.page:42(td/p)
56
+msgid "obfs2"
57
+msgstr ""
58
+
59
+#: C/bridges.page:47(td/p)
60
+msgid "Censors have learned how to identify obfs2 bridges. This transport is being deprecated."
61
+msgstr ""
62
+
63
+#: C/bridges.page:55(td/p)
64
+msgid "obfs3"
65
+msgstr ""
66
+
67
+#: C/bridges.page:60(td/p)
68
+msgid "Obfsproxy disguises Tor traffic as random noise. obfs3 bridges work almost everywhere. A few obfs3 bridges have been blocked."
69
+msgstr ""
70
+
71
+#: C/bridges.page:68(td/p)
72
+msgid "Scramblesuit"
73
+msgstr ""
74
+
75
+#: C/bridges.page:73(td/p)
76
+msgid "Scramblesuit is an additional tool for the obfsproxy transport. Scramblesuit bridges are designed to be hard to identify and hard to block."
77
+msgstr ""
78
+
79
+#: C/bridges.page:82(td/p)
80
+msgid "FTE"
81
+msgstr ""
82
+
83
+#: C/bridges.page:87(td/p)
84
+msgid "Format-Transforming Encryption disguises Tor traffic as web (HTTP) traffic or other types of internet traffic. FTE bridges are effective, but in limited supply."
85
+msgstr ""
86
+
87
+#: C/bridges.page:96(page/p)
88
+msgid "(Note that flashproxy is a Pluggable Transport, but does not rely on bridges.)"
89
+msgstr ""
90
+
91
+#: C/bridges.page:100(page/p)
92
+msgid "There are four ways to get a bridge."
93
+msgstr ""
94
+
95
+#: C/bridges.page:106(item/p)
96
+msgid "Visit <link href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</link> and follow the instructions."
97
+msgstr ""
98
+
99
+#: C/bridges.page:111(item/p)
100
+msgid "Email bridges@bridges.torproject.org from a gmail or yahoo email address. Put <cmd>get bridges</cmd> in the body for ORPort bridges or <cmd>transport=obfs3</cmd> for obfs3 bridges."
101
+msgstr ""
102
+
103
+#: C/bridges.page:118(item/p)
104
+msgid "Politely ask a human at help@rt.torproject.org if you cannot access either of the first two methods."
105
+msgstr ""
106
+
107
+#: C/bridges.page:124(item/p)
108
+msgid "Install and configure a Tor instance to be bridge for yourself. The computer acting as a bridge must have uncensored internet access to the Tor network. A full installation guide can be found at <link href=\"https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en\">https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en</link>"
109
+msgstr ""
110
+
111
+#: C/bridges.page:133(page/p)
112
+msgid "Enter the bridge information you get from any of the above steps in Tor-launcher."
113
+msgstr ""
114
+
115
+#: C/bridges.page:138(page/p)
116
+msgid "Choose yes when asked if your Internet Service Provider blocks connections to the Tor network. Select 'Use custom bridges' and enter each bridge identifier on its own line."
117
+msgstr ""
118
+
119
+#: C/bridges.page:146(page/p)
120
+msgid "Click Connect. Using bridges slow down the connection. If the connection fails, the bridges you received may be down. Get more and try again."
121
+msgstr ""
122
+
123
+#. This is a reference to an external file such as an image or video. When
124
+#. the file changes, the md5 hash will change to let you know you need to
125
+#. update your localized copy. The msgstr is not used at all. Set it to
126
+#. whatever you like once you have updated your copy of the file.
127
+#: C/circumvention.page:21(media)
128
+msgctxt "_"
129
+msgid "external ref='media/tor-launcher-configure_en-US.png' md5='966f4bafcb829e59b2b84d08144d885e'"
130
+msgstr ""
131
+
132
+#. This is a reference to an external file such as an image or video. When
133
+#. the file changes, the md5 hash will change to let you know you need to
134
+#. update your localized copy. The msgstr is not used at all. Set it to
135
+#. whatever you like once you have updated your copy of the file.
136
+#: C/circumvention.page:28(media)
137
+msgctxt "_"
138
+msgid "external ref='media/tor-launcher-wizard_en-US.png' md5='21f80fc3f4e34359bfdc44684d7da09d'"
139
+msgstr ""
140
+
141
+#. This is a reference to an external file such as an image or video. When
142
+#. the file changes, the md5 hash will change to let you know you need to
143
+#. update your localized copy. The msgstr is not used at all. Set it to
144
+#. whatever you like once you have updated your copy of the file.
145
+#: C/circumvention.page:36(media)
146
+msgctxt "_"
147
+msgid "external ref='media/tor-launcher-provided-bridges_en-US.png' md5='70524dccb698a21bb1d20223461e3272'"
148
+msgstr ""
149
+
150
+#: C/circumvention.page:7(info/title)
151
+msgctxt "sort"
152
+msgid "04 Circumvention"
153
+msgstr ""
154
+
155
+#: C/circumvention.page:8(info/desc)
156
+msgid "What to do if the Tor network is blocked."
157
+msgstr ""
158
+
159
+#: C/circumvention.page:12(page/title)
160
+msgid "Circumvention"
161
+msgstr ""
162
+
163
+#: C/circumvention.page:14(page/p)
164
+msgid "Some firewalls can detect and block connections to Tor. The Tor Browser includes some circumvention tools for getting around blocking firewalls. These circumvention tools are called Pluggable Transports. To turn them on, click \"Configure\" in the Tor launcher window."
165
+msgstr ""
166
+
167
+#: C/circumvention.page:23(page/p)
168
+msgid "Select yes when asked if your internet service provider blocks connections to Tor.\""
169
+msgstr ""
170
+
171
+#: C/circumvention.page:30(page/p)
172
+msgid "Select \"Connect with provided bridges\". Tor Browser has three Pluggable Transports to choose from. If one fails to get you online, try selecting a different transport."
173
+msgstr ""
174
+
175
+#: C/circumvention.page:38(page/p)
176
+msgid "If you try all three transports, and none of them get you online, select \"Enter custom bridges\", and enter bridges manually. Read the <link xref=\"bridges\">Getting Bridges</link> section for instructions on getting custom bridges."
177
+msgstr ""
178
+
179
+#. This is a reference to an external file such as an image or video. When
180
+#. the file changes, the md5 hash will change to let you know you need to
181
+#. update your localized copy. The msgstr is not used at all. Set it to
182
+#. whatever you like once you have updated your copy of the file.
183
+#: C/how-tor-works.page:19(media)
184
+msgctxt "_"
185
+msgid "external ref='media/how-tor-works.png' md5='6fe4151a88b7a518466f0582e40ccc8c'"
186
+msgstr ""
187
+
188
+#: C/how-tor-works.page:6(info/title)
189
+msgctxt "sort"
190
+msgid "01 Tor"
191
+msgstr ""
192
+
193
+#: C/how-tor-works.page:7(info/desc)
194
+msgid "How Tor works."
195
+msgstr ""
196
+
197
+#: C/how-tor-works.page:11(page/title)
198
+msgid "Tor"
199
+msgstr ""
200
+
201
+#: C/how-tor-works.page:12(page/p)
202
+msgid "Tor is a network of virtual tunnels that allows you to improve your privacy and security on the Internet. Tor works by sending your traffic through three random servers (also known as <em>relays</em>) in the Tor network, before the traffic is sent out onto the public Internet"
203
+msgstr ""
204
+
205
+#: C/how-tor-works.page:20(page/p)
206
+msgid "The image above illustrates a user browsing to different websites over Tor. The green monitors represent relays in the Tor network, while the three keys represent the layers of encryption between the user and each relay."
207
+msgstr ""
208
+
209
+#: C/how-tor-works.page:26(page/p)
210
+msgid "Tor will anonymize the origin of your traffic, and it will encrypt everything between you and the Tor network. Tor will also encrypt your traffic inside the Tor network, but it cannot encrypt your traffic between the Tor network and its final destination."
211
+msgstr ""
212
+
213
+#: C/how-tor-works.page:32(page/p)
214
+msgid "If you are communicating sensitive information, for example when logging on to a website with a username and password, make sure that you are using HTTPS (e.g. <input><em>https</em>://torproject.org/</input>, not <input><em>http</em>://torproject.org/</input>)."
215
+msgstr ""
216
+
217
+#: C/index.page:6(page/title)
218
+msgid "Tor Browser Help"
219
+msgstr ""
220
+
221
+#: C/index.page:7(page/p)
222
+msgid "Version: UNKNOWN-dirty"
223
+msgstr ""
224
+
225
+#: C/known-issues.page:7(info/desc)
226
+msgid "A list of known issues."
227
+msgstr ""
228
+
229
+#: C/known-issues.page:8(info/title)
230
+msgctxt "sort"
231
+msgid "03 Known Issues"
232
+msgstr ""
233
+
234
+#: C/known-issues.page:12(page/title)
235
+msgid "Known Issues"
236
+msgstr ""
237
+
238
+#: C/known-issues.page:16(item/p)
239
+msgid "The following firewall software have been known to interfere with Tor and may need to be temporarily disabled:"
240
+msgstr ""
241
+
242
+#: C/known-issues.page:20(item/p)
243
+msgid "Webroot SecureAnywhere"
244
+msgstr ""
245
+
246
+#: C/known-issues.page:23(item/p)
247
+msgid "Kaspersky Internet Security 2012"
248
+msgstr ""
249
+
250
+#: C/known-issues.page:26(item/p)
251
+msgid "Sophos Antivirus for Mac"
252
+msgstr ""
253
+
254
+#: C/known-issues.page:29(item/p)
255
+msgid "Microsoft Security Essentials"
256
+msgstr ""
257
+
258
+#: C/known-issues.page:34(item/p)
259
+msgid "Videos that require Adobe Flash are unavailable. Flash is disabled for security reasons. Most YouTube videos can be played with HTML5 by visiting the video's \"Embed\" → \"Share\" link."
260
+msgstr ""
261
+
262
+#: C/known-issues.page:41(item/p)
263
+msgid "Tor can not use a bridge if a proxy is set."
264
+msgstr ""
265
+
266
+#: C/known-issues.page:46(item/p)
267
+msgid "The Tor Browser package is dated January 1, 2000 00:00:00 UTC. This is to ensure that each software build is exactly reproducible."
268
+msgstr ""
269
+
270
+#: C/known-issues.page:52(item/p)
271
+msgid "To run Tor Browser on Ubuntu, users need to execute a shell script. Open \"Files\" (Unity's explorer), open Preferences → Behavior Tab → Set \"Run executable text files when they are opened\" to \"Ask every time\", then OK. Tor Browser can also be started from the command line by running"
272
+msgstr ""
273
+
274
+#: C/known-issues.page:58(item/code)
275
+#, no-wrap
276
+msgid ""
277
+"\n"
278
+"    ./start-tor-browser\n"
279
+"    "
280
+msgstr ""
281
+
282
+#: C/known-issues.page:61(item/p)
283
+msgid "from inside the Tor Browser directory."
284
+msgstr ""
285
+
286
+#: C/known-issues.page:66(page/p)
287
+msgid "If you have an issue with Tor Browser that isn't on this list, feel free to email help@rt.torproject.org."
288
+msgstr ""
289
+
290
+#. This is a reference to an external file such as an image or video. When
291
+#. the file changes, the md5 hash will change to let you know you need to
292
+#. update your localized copy. The msgstr is not used at all. Set it to
293
+#. whatever you like once you have updated your copy of the file.
294
+#: C/troubleshooting.page:19(media)
295
+msgctxt "_"
296
+msgid "external ref='media/tor-launcher-connect_en-US.png' md5='03118f523f4cbc7c001da1ddacc9e394'"
297
+msgstr ""
298
+
299
+#: C/troubleshooting.page:7(info/title)
300
+msgctxt "sort"
301
+msgid "02 Troubleshooting"
302
+msgstr ""
303
+
304
+#: C/troubleshooting.page:8(info/desc)
305
+msgid "What to do if Tor Browser doesn't work."
306
+msgstr ""
307
+
308
+#: C/troubleshooting.page:12(page/title)
309
+msgid "Troubleshooting"
310
+msgstr ""
311
+
312
+#: C/troubleshooting.page:14(page/p)
313
+msgid "The Tor Browser should get you online automatically after clicking the \"Connect\" button on the start up screen."
314
+msgstr ""
315
+
316
+#: C/troubleshooting.page:21(page/p)
317
+msgid "If it doesn't connect, there may be a simple fix. Try each of the following:"
318
+msgstr ""
319
+
320
+#: C/troubleshooting.page:27(item/p)
321
+msgid "Make sure another Tor Browser is not already running. If you're not sure if Tor Browser is running, restart your computer."
322
+msgstr ""
323
+
324
+#: C/troubleshooting.page:31(item/p)
325
+msgid "'Allow' Tor in your antivirus program."
326
+msgstr ""
327
+
328
+#: C/troubleshooting.page:34(item/p)
329
+msgid "Temporarily disable your firewall."
330
+msgstr ""
331
+
332
+#: C/troubleshooting.page:37(item/p)
333
+msgid "Delete Tor Browser and install it again. If updating, do not overwrite your previous Tor Browser files."
334
+msgstr ""
335
+
336
+#: C/troubleshooting.page:42(page/p)
337
+msgid "If you still can't connect, your internet service provider might be censoring connections to Tor. Follow the instructions in the <link xref=\"circumvention\">Circumvention</link> section."
338
+msgstr ""
339
+
340
+#: C/troubleshooting.page:48(page/p)
341
+msgid "If the above steps do not address your problem, email help@rt.torproject.org with your operating system, the details of your problem, and what you've already tried."
342
+msgstr ""
343
+
344
+#: C/uninstalling.page:7(info/desc)
345
+msgid "How to remove Tor Browser from your system."
346
+msgstr ""
347
+
348
+#: C/uninstalling.page:8(info/title)
349
+msgctxt "sort"
350
+msgid "06 Uninstalling"
351
+msgstr ""
352
+
353
+#: C/uninstalling.page:12(page/title)
354
+msgid "Uninstalling"
355
+msgstr ""
356
+
357
+#: C/uninstalling.page:14(page/p)
358
+msgid "The Tor Browser does not affect any of the existing software or settings on your computer. Uninstalling Tor Browser will not affect your system's software or settings either."
359
+msgstr ""
360
+
361
+#: C/uninstalling.page:20(page/p)
362
+msgid "Removing the Tor Browser from your system is simple:"
363
+msgstr ""
364
+
365
+#: C/uninstalling.page:26(item/p)
366
+msgid "Locate your Tor Browser folder. The default location is your Desktop."
367
+msgstr ""
368
+
369
+#: C/uninstalling.page:29(item/p)
370
+msgid "Delete the Tor Browser folder."
371
+msgstr ""
372
+
373
+#: C/uninstalling.page:32(item/p)
374
+msgid "Empty your Trash"
375
+msgstr ""
376
+
377
+#: C/uninstalling.page:36(page/p)
378
+msgid "Note that your operating system's standard \"Uninstall\" utility is not used."
379
+msgstr ""
380
+
... ...
@@ -0,0 +1,380 @@
1
+msgid ""
2
+msgstr ""
3
+"Project-Id-Version: PACKAGE VERSION\n"
4
+"POT-Creation-Date: 2014-05-15 11:21+0200\n"
5
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
6
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
7
+"Language-Team: LANGUAGE <LL@li.org>\n"
8
+"MIME-Version: 1.0\n"
9
+"Content-Type: text/plain; charset=UTF-8\n"
10
+"Content-Transfer-Encoding: 8bit\n"
11
+
12
+#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
13
+msgctxt "_"
14
+msgid "translator-credits"
15
+msgstr ""
16
+
17
+#. This is a reference to an external file such as an image or video. When
18
+#. the file changes, the md5 hash will change to let you know you need to
19
+#. update your localized copy. The msgstr is not used at all. Set it to
20
+#. whatever you like once you have updated your copy of the file.
21
+#: C/bridges.page:144(media)
22
+msgctxt "_"
23
+msgid "external ref='media/tor-launcher-custom-bridges_en-US.png' md5='93365c2aa3fb4d627497e83f28a39b7e'"
24
+msgstr ""
25
+
26
+#: C/bridges.page:7(info/desc)
27
+msgid "What bridges are and how to use them."
28
+msgstr ""
29
+
30
+#: C/bridges.page:8(info/title)
31
+msgctxt "sort"
32
+msgid "05 Bridges"
33
+msgstr ""
34
+
35
+#: C/bridges.page:12(page/title)
36
+msgid "Bridges"
37
+msgstr ""
38
+
39
+#: C/bridges.page:14(page/p)
40
+msgid "Bridges are quiet gateways into the Tor Network. Like Tor relays, they are run by volunteers. Unlike relays, they are not listed publicly. Using bridges disguise the fact that one is using Tor."
41
+msgstr ""
42
+
43
+#: C/bridges.page:20(page/p)
44
+msgid "Currently there are five bridge types, or transports, available. More are being developed."
45
+msgstr ""
46
+
47
+#: C/bridges.page:27(td/p)
48
+msgid "ORPort"
49
+msgstr ""
50
+
51
+#: C/bridges.page:32(td/p)
52
+msgid "Requesting 'bridges' without specifying the bridge type, will return ORPort bridges, also called Vanilla bridges. ORPort bridges are NOT reliable for circumventing censorship or national firewalls. ORPort bridges can be useful as trusted entry points into the Tor network."
53
+msgstr ""
54
+
55
+#: C/bridges.page:42(td/p)
56
+msgid "obfs2"
57
+msgstr ""
58
+
59
+#: C/bridges.page:47(td/p)
60
+msgid "Censors have learned how to identify obfs2 bridges. This transport is being deprecated."
61
+msgstr ""
62
+
63
+#: C/bridges.page:55(td/p)
64
+msgid "obfs3"
65
+msgstr ""
66
+
67
+#: C/bridges.page:60(td/p)
68
+msgid "Obfsproxy disguises Tor traffic as random noise. obfs3 bridges work almost everywhere. A few obfs3 bridges have been blocked."
69
+msgstr ""
70
+
71
+#: C/bridges.page:68(td/p)
72
+msgid "Scramblesuit"
73
+msgstr ""
74
+
75
+#: C/bridges.page:73(td/p)
76
+msgid "Scramblesuit is an additional tool for the obfsproxy transport. Scramblesuit bridges are designed to be hard to identify and hard to block."
77
+msgstr ""
78
+
79
+#: C/bridges.page:82(td/p)
80
+msgid "FTE"
81
+msgstr ""
82
+
83
+#: C/bridges.page:87(td/p)
84
+msgid "Format-Transforming Encryption disguises Tor traffic as web (HTTP) traffic or other types of internet traffic. FTE bridges are effective, but in limited supply."
85
+msgstr ""
86
+
87
+#: C/bridges.page:96(page/p)
88
+msgid "(Note that flashproxy is a Pluggable Transport, but does not rely on bridges.)"
89
+msgstr ""
90
+
91
+#: C/bridges.page:100(page/p)
92
+msgid "There are four ways to get a bridge."
93
+msgstr ""
94
+
95
+#: C/bridges.page:106(item/p)
96
+msgid "Visit <link href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</link> and follow the instructions."
97
+msgstr ""
98
+
99
+#: C/bridges.page:111(item/p)
100
+msgid "Email bridges@bridges.torproject.org from a gmail or yahoo email address. Put <cmd>get bridges</cmd> in the body for ORPort bridges or <cmd>transport=obfs3</cmd> for obfs3 bridges."
101
+msgstr ""
102
+
103
+#: C/bridges.page:118(item/p)
104
+msgid "Politely ask a human at help@rt.torproject.org if you cannot access either of the first two methods."
105
+msgstr ""
106
+
107
+#: C/bridges.page:124(item/p)
108
+msgid "Install and configure a Tor instance to be bridge for yourself. The computer acting as a bridge must have uncensored internet access to the Tor network. A full installation guide can be found at <link href=\"https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en\">https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en</link>"
109
+msgstr ""
110
+
111
+#: C/bridges.page:133(page/p)
112
+msgid "Enter the bridge information you get from any of the above steps in Tor-launcher."
113
+msgstr ""
114
+
115
+#: C/bridges.page:138(page/p)
116
+msgid "Choose yes when asked if your Internet Service Provider blocks connections to the Tor network. Select 'Use custom bridges' and enter each bridge identifier on its own line."
117
+msgstr ""
118
+
119
+#: C/bridges.page:146(page/p)
120
+msgid "Click Connect. Using bridges slow down the connection. If the connection fails, the bridges you received may be down. Get more and try again."
121
+msgstr ""
122
+
123
+#. This is a reference to an external file such as an image or video. When
124
+#. the file changes, the md5 hash will change to let you know you need to
125
+#. update your localized copy. The msgstr is not used at all. Set it to
126
+#. whatever you like once you have updated your copy of the file.
127
+#: C/circumvention.page:21(media)
128
+msgctxt "_"
129
+msgid "external ref='media/tor-launcher-configure_en-US.png' md5='966f4bafcb829e59b2b84d08144d885e'"
130
+msgstr ""
131
+
132
+#. This is a reference to an external file such as an image or video. When
133
+#. the file changes, the md5 hash will change to let you know you need to
134
+#. update your localized copy. The msgstr is not used at all. Set it to
135
+#. whatever you like once you have updated your copy of the file.
136
+#: C/circumvention.page:28(media)
137
+msgctxt "_"
138
+msgid "external ref='media/tor-launcher-wizard_en-US.png' md5='21f80fc3f4e34359bfdc44684d7da09d'"
139
+msgstr ""
140
+
141
+#. This is a reference to an external file such as an image or video. When
142
+#. the file changes, the md5 hash will change to let you know you need to
143
+#. update your localized copy. The msgstr is not used at all. Set it to
144
+#. whatever you like once you have updated your copy of the file.
145
+#: C/circumvention.page:36(media)
146
+msgctxt "_"
147
+msgid "external ref='media/tor-launcher-provided-bridges_en-US.png' md5='70524dccb698a21bb1d20223461e3272'"
148
+msgstr ""
149
+
150
+#: C/circumvention.page:7(info/title)
151
+msgctxt "sort"
152
+msgid "04 Circumvention"
153
+msgstr ""
154
+
155
+#: C/circumvention.page:8(info/desc)
156
+msgid "What to do if the Tor network is blocked."
157
+msgstr ""
158
+
159
+#: C/circumvention.page:12(page/title)
160
+msgid "Circumvention"
161
+msgstr ""
162
+
163
+#: C/circumvention.page:14(page/p)
164
+msgid "Some firewalls can detect and block connections to Tor. The Tor Browser includes some circumvention tools for getting around blocking firewalls. These circumvention tools are called Pluggable Transports. To turn them on, click \"Configure\" in the Tor launcher window."
165
+msgstr ""
166
+
167
+#: C/circumvention.page:23(page/p)
168
+msgid "Select yes when asked if your internet service provider blocks connections to Tor.\""
169
+msgstr ""
170
+
171
+#: C/circumvention.page:30(page/p)
172
+msgid "Select \"Connect with provided bridges\". Tor Browser has three Pluggable Transports to choose from. If one fails to get you online, try selecting a different transport."
173
+msgstr ""
174
+
175
+#: C/circumvention.page:38(page/p)
176
+msgid "If you try all three transports, and none of them get you online, select \"Enter custom bridges\", and enter bridges manually. Read the <link xref=\"bridges\">Getting Bridges</link> section for instructions on getting custom bridges."
177
+msgstr ""
178
+
179
+#. This is a reference to an external file such as an image or video. When
180
+#. the file changes, the md5 hash will change to let you know you need to
181
+#. update your localized copy. The msgstr is not used at all. Set it to
182
+#. whatever you like once you have updated your copy of the file.
183
+#: C/how-tor-works.page:19(media)
184
+msgctxt "_"
185
+msgid "external ref='media/how-tor-works.png' md5='6fe4151a88b7a518466f0582e40ccc8c'"
186
+msgstr ""
187
+
188
+#: C/how-tor-works.page:6(info/title)
189
+msgctxt "sort"
190
+msgid "01 Tor"
191
+msgstr ""
192
+
193
+#: C/how-tor-works.page:7(info/desc)
194
+msgid "How Tor works."
195
+msgstr ""
196
+
197
+#: C/how-tor-works.page:11(page/title)
198
+msgid "Tor"
199
+msgstr ""
200
+
201
+#: C/how-tor-works.page:12(page/p)
202
+msgid "Tor is a network of virtual tunnels that allows you to improve your privacy and security on the Internet. Tor works by sending your traffic through three random servers (also known as <em>relays</em>) in the Tor network, before the traffic is sent out onto the public Internet"
203
+msgstr ""
204
+
205
+#: C/how-tor-works.page:20(page/p)
206
+msgid "The image above illustrates a user browsing to different websites over Tor. The green monitors represent relays in the Tor network, while the three keys represent the layers of encryption between the user and each relay."
207
+msgstr ""
208
+
209
+#: C/how-tor-works.page:26(page/p)
210
+msgid "Tor will anonymize the origin of your traffic, and it will encrypt everything between you and the Tor network. Tor will also encrypt your traffic inside the Tor network, but it cannot encrypt your traffic between the Tor network and its final destination."
211
+msgstr ""
212
+
213
+#: C/how-tor-works.page:32(page/p)
214
+msgid "If you are communicating sensitive information, for example when logging on to a website with a username and password, make sure that you are using HTTPS (e.g. <input><em>https</em>://torproject.org/</input>, not <input><em>http</em>://torproject.org/</input>)."
215
+msgstr ""
216
+
217
+#: C/index.page:6(page/title)
218
+msgid "Tor Browser Help"
219
+msgstr ""
220
+
221
+#: C/index.page:7(page/p)
222
+msgid "Version: UNKNOWN-dirty"
223
+msgstr ""
224
+
225
+#: C/known-issues.page:7(info/desc)
226
+msgid "A list of known issues."
227
+msgstr ""
228
+
229
+#: C/known-issues.page:8(info/title)
230
+msgctxt "sort"
231
+msgid "03 Known Issues"
232
+msgstr ""
233
+
234
+#: C/known-issues.page:12(page/title)
235
+msgid "Known Issues"
236
+msgstr ""
237
+
238
+#: C/known-issues.page:16(item/p)
239
+msgid "The following firewall software have been known to interfere with Tor and may need to be temporarily disabled:"
240
+msgstr ""
241
+
242
+#: C/known-issues.page:20(item/p)
243
+msgid "Webroot SecureAnywhere"
244
+msgstr ""
245
+
246
+#: C/known-issues.page:23(item/p)
247
+msgid "Kaspersky Internet Security 2012"
248
+msgstr ""
249
+
250
+#: C/known-issues.page:26(item/p)
251
+msgid "Sophos Antivirus for Mac"
252
+msgstr ""
253
+
254
+#: C/known-issues.page:29(item/p)
255
+msgid "Microsoft Security Essentials"
256
+msgstr ""
257
+
258
+#: C/known-issues.page:34(item/p)
259
+msgid "Videos that require Adobe Flash are unavailable. Flash is disabled for security reasons. Most YouTube videos can be played with HTML5 by visiting the video's \"Embed\" → \"Share\" link."
260
+msgstr ""
261
+
262
+#: C/known-issues.page:41(item/p)
263
+msgid "Tor can not use a bridge if a proxy is set."
264
+msgstr ""
265
+
266
+#: C/known-issues.page:46(item/p)
267
+msgid "The Tor Browser package is dated January 1, 2000 00:00:00 UTC. This is to ensure that each software build is exactly reproducible."
268
+msgstr ""
269
+
270
+#: C/known-issues.page:52(item/p)
271
+msgid "To run Tor Browser on Ubuntu, users need to execute a shell script. Open \"Files\" (Unity's explorer), open Preferences → Behavior Tab → Set \"Run executable text files when they are opened\" to \"Ask every time\", then OK. Tor Browser can also be started from the command line by running"
272
+msgstr ""
273
+
274
+#: C/known-issues.page:58(item/code)
275
+#, no-wrap
276
+msgid ""
277
+"\n"
278
+"    ./start-tor-browser\n"
279
+"    "
280
+msgstr ""
281
+
282
+#: C/known-issues.page:61(item/p)
283
+msgid "from inside the Tor Browser directory."
284
+msgstr ""
285
+
286
+#: C/known-issues.page:66(page/p)
287
+msgid "If you have an issue with Tor Browser that isn't on this list, feel free to email help@rt.torproject.org."
288
+msgstr ""
289
+
290
+#. This is a reference to an external file such as an image or video. When
291
+#. the file changes, the md5 hash will change to let you know you need to
292
+#. update your localized copy. The msgstr is not used at all. Set it to
293
+#. whatever you like once you have updated your copy of the file.
294
+#: C/troubleshooting.page:19(media)
295
+msgctxt "_"
296
+msgid "external ref='media/tor-launcher-connect_en-US.png' md5='03118f523f4cbc7c001da1ddacc9e394'"
297
+msgstr ""
298
+
299
+#: C/troubleshooting.page:7(info/title)
300
+msgctxt "sort"
301
+msgid "02 Troubleshooting"
302
+msgstr ""
303
+
304
+#: C/troubleshooting.page:8(info/desc)
305
+msgid "What to do if Tor Browser doesn't work."
306
+msgstr ""
307
+
308
+#: C/troubleshooting.page:12(page/title)
309
+msgid "Troubleshooting"
310
+msgstr ""
311
+
312
+#: C/troubleshooting.page:14(page/p)
313
+msgid "The Tor Browser should get you online automatically after clicking the \"Connect\" button on the start up screen."
314
+msgstr ""
315
+
316
+#: C/troubleshooting.page:21(page/p)
317
+msgid "If it doesn't connect, there may be a simple fix. Try each of the following:"
318
+msgstr ""
319
+
320
+#: C/troubleshooting.page:27(item/p)
321
+msgid "Make sure another Tor Browser is not already running. If you're not sure if Tor Browser is running, restart your computer."
322
+msgstr ""
323
+
324
+#: C/troubleshooting.page:31(item/p)
325
+msgid "'Allow' Tor in your antivirus program."
326
+msgstr ""
327
+
328
+#: C/troubleshooting.page:34(item/p)
329
+msgid "Temporarily disable your firewall."
330
+msgstr ""
331
+
332
+#: C/troubleshooting.page:37(item/p)
333
+msgid "Delete Tor Browser and install it again. If updating, do not overwrite your previous Tor Browser files."
334
+msgstr ""
335
+
336
+#: C/troubleshooting.page:42(page/p)
337
+msgid "If you still can't connect, your internet service provider might be censoring connections to Tor. Follow the instructions in the <link xref=\"circumvention\">Circumvention</link> section."
338
+msgstr ""
339
+
340
+#: C/troubleshooting.page:48(page/p)
341
+msgid "If the above steps do not address your problem, email help@rt.torproject.org with your operating system, the details of your problem, and what you've already tried."
342
+msgstr ""
343
+
344
+#: C/uninstalling.page:7(info/desc)
345
+msgid "How to remove Tor Browser from your system."
346
+msgstr ""
347
+
348
+#: C/uninstalling.page:8(info/title)
349
+msgctxt "sort"
350
+msgid "06 Uninstalling"
351
+msgstr ""
352
+
353
+#: C/uninstalling.page:12(page/title)
354
+msgid "Uninstalling"
355
+msgstr ""
356
+
357
+#: C/uninstalling.page:14(page/p)
358
+msgid "The Tor Browser does not affect any of the existing software or settings on your computer. Uninstalling Tor Browser will not affect your system's software or settings either."
359
+msgstr ""
360
+
361
+#: C/uninstalling.page:20(page/p)
362
+msgid "Removing the Tor Browser from your system is simple:"
363
+msgstr ""
364
+
365
+#: C/uninstalling.page:26(item/p)
366
+msgid "Locate your Tor Browser folder. The default location is your Desktop."
367
+msgstr ""
368
+
369
+#: C/uninstalling.page:29(item/p)
370
+msgid "Delete the Tor Browser folder."
371
+msgstr ""
372
+
373
+#: C/uninstalling.page:32(item/p)
374
+msgid "Empty your Trash"
375
+msgstr ""
376
+
377
+#: C/uninstalling.page:36(page/p)
378
+msgid "Note that your operating system's standard \"Uninstall\" utility is not used."
379
+msgstr ""
380
+
... ...
@@ -0,0 +1,380 @@
1
+msgid ""
2
+msgstr ""
3
+"Project-Id-Version: PACKAGE VERSION\n"
4
+"POT-Creation-Date: 2014-05-15 11:21+0200\n"
5
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
6
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
7
+"Language-Team: LANGUAGE <LL@li.org>\n"
8
+"MIME-Version: 1.0\n"
9
+"Content-Type: text/plain; charset=UTF-8\n"
10
+"Content-Transfer-Encoding: 8bit\n"
11
+
12
+#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
13
+msgctxt "_"
14
+msgid "translator-credits"
15
+msgstr ""
16
+
17
+#. This is a reference to an external file such as an image or video. When
18
+#. the file changes, the md5 hash will change to let you know you need to
19
+#. update your localized copy. The msgstr is not used at all. Set it to
20
+#. whatever you like once you have updated your copy of the file.
21
+#: C/bridges.page:144(media)
22
+msgctxt "_"
23
+msgid "external ref='media/tor-launcher-custom-bridges_en-US.png' md5='93365c2aa3fb4d627497e83f28a39b7e'"
24
+msgstr ""
25
+
26
+#: C/bridges.page:7(info/desc)
27
+msgid "What bridges are and how to use them."
28
+msgstr ""
29
+
30
+#: C/bridges.page:8(info/title)
31
+msgctxt "sort"
32
+msgid "05 Bridges"
33
+msgstr ""
34
+
35
+#: C/bridges.page:12(page/title)
36
+msgid "Bridges"
37
+msgstr ""
38
+
39
+#: C/bridges.page:14(page/p)
40
+msgid "Bridges are quiet gateways into the Tor Network. Like Tor relays, they are run by volunteers. Unlike relays, they are not listed publicly. Using bridges disguise the fact that one is using Tor."
41
+msgstr ""
42
+
43
+#: C/bridges.page:20(page/p)
44
+msgid "Currently there are five bridge types, or transports, available. More are being developed."
45
+msgstr ""
46
+
47
+#: C/bridges.page:27(td/p)
48
+msgid "ORPort"
49
+msgstr ""
50
+
51
+#: C/bridges.page:32(td/p)
52
+msgid "Requesting 'bridges' without specifying the bridge type, will return ORPort bridges, also called Vanilla bridges. ORPort bridges are NOT reliable for circumventing censorship or national firewalls. ORPort bridges can be useful as trusted entry points into the Tor network."
53
+msgstr ""
54
+
55
+#: C/bridges.page:42(td/p)
56
+msgid "obfs2"
57
+msgstr ""
58
+
59
+#: C/bridges.page:47(td/p)
60
+msgid "Censors have learned how to identify obfs2 bridges. This transport is being deprecated."
61
+msgstr ""
62
+
63
+#: C/bridges.page:55(td/p)
64
+msgid "obfs3"
65
+msgstr ""
66
+
67
+#: C/bridges.page:60(td/p)
68
+msgid "Obfsproxy disguises Tor traffic as random noise. obfs3 bridges work almost everywhere. A few obfs3 bridges have been blocked."
69
+msgstr ""
70
+
71
+#: C/bridges.page:68(td/p)
72
+msgid "Scramblesuit"
73
+msgstr ""
74
+
75
+#: C/bridges.page:73(td/p)
76
+msgid "Scramblesuit is an additional tool for the obfsproxy transport. Scramblesuit bridges are designed to be hard to identify and hard to block."
77
+msgstr ""
78
+
79
+#: C/bridges.page:82(td/p)
80
+msgid "FTE"
81
+msgstr ""
82
+
83
+#: C/bridges.page:87(td/p)
84
+msgid "Format-Transforming Encryption disguises Tor traffic as web (HTTP) traffic or other types of internet traffic. FTE bridges are effective, but in limited supply."
85
+msgstr ""
86
+
87
+#: C/bridges.page:96(page/p)
88
+msgid "(Note that flashproxy is a Pluggable Transport, but does not rely on bridges.)"
89
+msgstr ""
90
+
91
+#: C/bridges.page:100(page/p)
92
+msgid "There are four ways to get a bridge."
93
+msgstr ""
94
+
95
+#: C/bridges.page:106(item/p)
96
+msgid "Visit <link href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</link> and follow the instructions."
97
+msgstr ""
98
+
99
+#: C/bridges.page:111(item/p)
100
+msgid "Email bridges@bridges.torproject.org from a gmail or yahoo email address. Put <cmd>get bridges</cmd> in the body for ORPort bridges or <cmd>transport=obfs3</cmd> for obfs3 bridges."
101
+msgstr ""
102
+
103
+#: C/bridges.page:118(item/p)
104
+msgid "Politely ask a human at help@rt.torproject.org if you cannot access either of the first two methods."
105
+msgstr ""
106
+
107
+#: C/bridges.page:124(item/p)
108
+msgid "Install and configure a Tor instance to be bridge for yourself. The computer acting as a bridge must have uncensored internet access to the Tor network. A full installation guide can be found at <link href=\"https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en\">https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en</link>"
109
+msgstr ""
110
+
111
+#: C/bridges.page:133(page/p)
112
+msgid "Enter the bridge information you get from any of the above steps in Tor-launcher."
113
+msgstr ""
114
+
115
+#: C/bridges.page:138(page/p)
116
+msgid "Choose yes when asked if your Internet Service Provider blocks connections to the Tor network. Select 'Use custom bridges' and enter each bridge identifier on its own line."
117
+msgstr ""
118
+
119
+#: C/bridges.page:146(page/p)
120
+msgid "Click Connect. Using bridges slow down the connection. If the connection fails, the bridges you received may be down. Get more and try again."
121
+msgstr ""
122
+
123
+#. This is a reference to an external file such as an image or video. When
124
+#. the file changes, the md5 hash will change to let you know you need to
125
+#. update your localized copy. The msgstr is not used at all. Set it to
126
+#. whatever you like once you have updated your copy of the file.
127
+#: C/circumvention.page:21(media)
128
+msgctxt "_"
129
+msgid "external ref='media/tor-launcher-configure_en-US.png' md5='966f4bafcb829e59b2b84d08144d885e'"
130
+msgstr ""
131
+
132
+#. This is a reference to an external file such as an image or video. When
133
+#. the file changes, the md5 hash will change to let you know you need to
134
+#. update your localized copy. The msgstr is not used at all. Set it to
135
+#. whatever you like once you have updated your copy of the file.
136
+#: C/circumvention.page:28(media)
137
+msgctxt "_"
138
+msgid "external ref='media/tor-launcher-wizard_en-US.png' md5='21f80fc3f4e34359bfdc44684d7da09d'"
139
+msgstr ""
140
+
141
+#. This is a reference to an external file such as an image or video. When
142
+#. the file changes, the md5 hash will change to let you know you need to
143
+#. update your localized copy. The msgstr is not used at all. Set it to
144
+#. whatever you like once you have updated your copy of the file.
145
+#: C/circumvention.page:36(media)
146
+msgctxt "_"
147
+msgid "external ref='media/tor-launcher-provided-bridges_en-US.png' md5='70524dccb698a21bb1d20223461e3272'"
148
+msgstr ""
149
+
150
+#: C/circumvention.page:7(info/title)
151
+msgctxt "sort"
152
+msgid "04 Circumvention"
153
+msgstr ""
154
+
155
+#: C/circumvention.page:8(info/desc)
156
+msgid "What to do if the Tor network is blocked."
157
+msgstr ""
158
+
159
+#: C/circumvention.page:12(page/title)
160
+msgid "Circumvention"
161
+msgstr ""
162
+
163
+#: C/circumvention.page:14(page/p)
164
+msgid "Some firewalls can detect and block connections to Tor. The Tor Browser includes some circumvention tools for getting around blocking firewalls. These circumvention tools are called Pluggable Transports. To turn them on, click \"Configure\" in the Tor launcher window."
165
+msgstr ""
166
+
167
+#: C/circumvention.page:23(page/p)
168
+msgid "Select yes when asked if your internet service provider blocks connections to Tor.\""
169
+msgstr ""
170
+
171
+#: C/circumvention.page:30(page/p)
172
+msgid "Select \"Connect with provided bridges\". Tor Browser has three Pluggable Transports to choose from. If one fails to get you online, try selecting a different transport."
173
+msgstr ""
174
+
175
+#: C/circumvention.page:38(page/p)
176
+msgid "If you try all three transports, and none of them get you online, select \"Enter custom bridges\", and enter bridges manually. Read the <link xref=\"bridges\">Getting Bridges</link> section for instructions on getting custom bridges."
177
+msgstr ""
178
+
179
+#. This is a reference to an external file such as an image or video. When
180
+#. the file changes, the md5 hash will change to let you know you need to
181
+#. update your localized copy. The msgstr is not used at all. Set it to
182
+#. whatever you like once you have updated your copy of the file.
183
+#: C/how-tor-works.page:19(media)
184
+msgctxt "_"
185
+msgid "external ref='media/how-tor-works.png' md5='6fe4151a88b7a518466f0582e40ccc8c'"
186
+msgstr ""
187
+
188
+#: C/how-tor-works.page:6(info/title)
189
+msgctxt "sort"
190
+msgid "01 Tor"
191
+msgstr ""
192
+
193
+#: C/how-tor-works.page:7(info/desc)
194
+msgid "How Tor works."
195
+msgstr ""
196
+
197
+#: C/how-tor-works.page:11(page/title)
198
+msgid "Tor"
199
+msgstr ""
200
+
201
+#: C/how-tor-works.page:12(page/p)
202
+msgid "Tor is a network of virtual tunnels that allows you to improve your privacy and security on the Internet. Tor works by sending your traffic through three random servers (also known as <em>relays</em>) in the Tor network, before the traffic is sent out onto the public Internet"
203
+msgstr ""
204
+
205
+#: C/how-tor-works.page:20(page/p)
206
+msgid "The image above illustrates a user browsing to different websites over Tor. The green monitors represent relays in the Tor network, while the three keys represent the layers of encryption between the user and each relay."
207
+msgstr ""
208
+
209
+#: C/how-tor-works.page:26(page/p)
210
+msgid "Tor will anonymize the origin of your traffic, and it will encrypt everything between you and the Tor network. Tor will also encrypt your traffic inside the Tor network, but it cannot encrypt your traffic between the Tor network and its final destination."
211
+msgstr ""
212
+
213
+#: C/how-tor-works.page:32(page/p)
214
+msgid "If you are communicating sensitive information, for example when logging on to a website with a username and password, make sure that you are using HTTPS (e.g. <input><em>https</em>://torproject.org/</input>, not <input><em>http</em>://torproject.org/</input>)."
215
+msgstr ""
216
+
217
+#: C/index.page:6(page/title)
218
+msgid "Tor Browser Help"
219
+msgstr ""
220
+
221
+#: C/index.page:7(page/p)
222
+msgid "Version: UNKNOWN-dirty"
223
+msgstr ""
224
+
225
+#: C/known-issues.page:7(info/desc)
226
+msgid "A list of known issues."
227
+msgstr ""
228
+
229
+#: C/known-issues.page:8(info/title)
230
+msgctxt "sort"
231
+msgid "03 Known Issues"
232
+msgstr ""
233
+
234
+#: C/known-issues.page:12(page/title)
235
+msgid "Known Issues"
236
+msgstr ""
237
+
238
+#: C/known-issues.page:16(item/p)
239
+msgid "The following firewall software have been known to interfere with Tor and may need to be temporarily disabled:"
240
+msgstr ""
241
+
242
+#: C/known-issues.page:20(item/p)
243
+msgid "Webroot SecureAnywhere"
244
+msgstr ""
245
+
246
+#: C/known-issues.page:23(item/p)
247
+msgid "Kaspersky Internet Security 2012"
248
+msgstr ""
249
+
250
+#: C/known-issues.page:26(item/p)
251
+msgid "Sophos Antivirus for Mac"
252
+msgstr ""
253
+
254
+#: C/known-issues.page:29(item/p)
255
+msgid "Microsoft Security Essentials"
256
+msgstr ""
257
+
258
+#: C/known-issues.page:34(item/p)
259
+msgid "Videos that require Adobe Flash are unavailable. Flash is disabled for security reasons. Most YouTube videos can be played with HTML5 by visiting the video's \"Embed\" → \"Share\" link."
260
+msgstr ""
261
+
262
+#: C/known-issues.page:41(item/p)
263
+msgid "Tor can not use a bridge if a proxy is set."
264
+msgstr ""
265
+
266
+#: C/known-issues.page:46(item/p)
267
+msgid "The Tor Browser package is dated January 1, 2000 00:00:00 UTC. This is to ensure that each software build is exactly reproducible."
268
+msgstr ""
269
+
270
+#: C/known-issues.page:52(item/p)
271
+msgid "To run Tor Browser on Ubuntu, users need to execute a shell script. Open \"Files\" (Unity's explorer), open Preferences → Behavior Tab → Set \"Run executable text files when they are opened\" to \"Ask every time\", then OK. Tor Browser can also be started from the command line by running"
272
+msgstr ""
273
+
274
+#: C/known-issues.page:58(item/code)
275
+#, no-wrap
276
+msgid ""
277
+"\n"
278
+"    ./start-tor-browser\n"
279
+"    "
280
+msgstr ""
281
+
282
+#: C/known-issues.page:61(item/p)
283
+msgid "from inside the Tor Browser directory."
284
+msgstr ""
285
+
286
+#: C/known-issues.page:66(page/p)
287
+msgid "If you have an issue with Tor Browser that isn't on this list, feel free to email help@rt.torproject.org."
288
+msgstr ""
289
+
290
+#. This is a reference to an external file such as an image or video. When
291
+#. the file changes, the md5 hash will change to let you know you need to
292
+#. update your localized copy. The msgstr is not used at all. Set it to
293
+#. whatever you like once you have updated your copy of the file.
294
+#: C/troubleshooting.page:19(media)
295
+msgctxt "_"
296
+msgid "external ref='media/tor-launcher-connect_en-US.png' md5='03118f523f4cbc7c001da1ddacc9e394'"
297
+msgstr ""
298
+
299
+#: C/troubleshooting.page:7(info/title)
300
+msgctxt "sort"
301
+msgid "02 Troubleshooting"
302
+msgstr ""
303
+
304
+#: C/troubleshooting.page:8(info/desc)
305
+msgid "What to do if Tor Browser doesn't work."
306
+msgstr ""
307
+
308
+#: C/troubleshooting.page:12(page/title)
309
+msgid "Troubleshooting"
310
+msgstr ""
311
+
312
+#: C/troubleshooting.page:14(page/p)
313
+msgid "The Tor Browser should get you online automatically after clicking the \"Connect\" button on the start up screen."
314
+msgstr ""
315
+
316
+#: C/troubleshooting.page:21(page/p)
317
+msgid "If it doesn't connect, there may be a simple fix. Try each of the following:"
318
+msgstr ""
319
+
320
+#: C/troubleshooting.page:27(item/p)
321
+msgid "Make sure another Tor Browser is not already running. If you're not sure if Tor Browser is running, restart your computer."
322
+msgstr ""
323
+
324
+#: C/troubleshooting.page:31(item/p)
325
+msgid "'Allow' Tor in your antivirus program."
326
+msgstr ""
327
+
328
+#: C/troubleshooting.page:34(item/p)
329
+msgid "Temporarily disable your firewall."
330
+msgstr ""
331
+
332
+#: C/troubleshooting.page:37(item/p)
333
+msgid "Delete Tor Browser and install it again. If updating, do not overwrite your previous Tor Browser files."
334
+msgstr ""
335
+
336
+#: C/troubleshooting.page:42(page/p)
337
+msgid "If you still can't connect, your internet service provider might be censoring connections to Tor. Follow the instructions in the <link xref=\"circumvention\">Circumvention</link> section."
338
+msgstr ""
339
+
340
+#: C/troubleshooting.page:48(page/p)
341
+msgid "If the above steps do not address your problem, email help@rt.torproject.org with your operating system, the details of your problem, and what you've already tried."
342
+msgstr ""
343
+
344
+#: C/uninstalling.page:7(info/desc)
345
+msgid "How to remove Tor Browser from your system."
346
+msgstr ""
347
+
348
+#: C/uninstalling.page:8(info/title)
349
+msgctxt "sort"
350
+msgid "06 Uninstalling"
351
+msgstr ""
352
+
353
+#: C/uninstalling.page:12(page/title)
354
+msgid "Uninstalling"
355
+msgstr ""
356
+
357
+#: C/uninstalling.page:14(page/p)
358
+msgid "The Tor Browser does not affect any of the existing software or settings on your computer. Uninstalling Tor Browser will not affect your system's software or settings either."
359
+msgstr ""
360
+
361
+#: C/uninstalling.page:20(page/p)
362
+msgid "Removing the Tor Browser from your system is simple:"
363
+msgstr ""
364
+
365
+#: C/uninstalling.page:26(item/p)
366
+msgid "Locate your Tor Browser folder. The default location is your Desktop."
367
+msgstr ""
368
+
369
+#: C/uninstalling.page:29(item/p)
370
+msgid "Delete the Tor Browser folder."
371
+msgstr ""
372
+
373
+#: C/uninstalling.page:32(item/p)
374
+msgid "Empty your Trash"
375
+msgstr ""
376
+
377
+#: C/uninstalling.page:36(page/p)
378
+msgid "Note that your operating system's standard \"Uninstall\" utility is not used."
379
+msgstr ""
380
+
... ...
@@ -0,0 +1,380 @@
1
+msgid ""
2
+msgstr ""
3
+"Project-Id-Version: PACKAGE VERSION\n"
4
+"POT-Creation-Date: 2014-05-15 11:21+0200\n"
5
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
6
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
7
+"Language-Team: LANGUAGE <LL@li.org>\n"
8
+"MIME-Version: 1.0\n"
9
+"Content-Type: text/plain; charset=UTF-8\n"
10
+"Content-Transfer-Encoding: 8bit\n"
11
+
12
+#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
13
+msgctxt "_"
14
+msgid "translator-credits"
15
+msgstr ""
16
+
17
+#. This is a reference to an external file such as an image or video. When
18
+#. the file changes, the md5 hash will change to let you know you need to
19
+#. update your localized copy. The msgstr is not used at all. Set it to
20
+#. whatever you like once you have updated your copy of the file.
21
+#: C/bridges.page:144(media)
22
+msgctxt "_"
23
+msgid "external ref='media/tor-launcher-custom-bridges_en-US.png' md5='93365c2aa3fb4d627497e83f28a39b7e'"
24
+msgstr ""
25
+
26
+#: C/bridges.page:7(info/desc)
27
+msgid "What bridges are and how to use them."
28
+msgstr ""
29
+
30
+#: C/bridges.page:8(info/title)
31
+msgctxt "sort"
32
+msgid "05 Bridges"
33
+msgstr ""
34
+
35
+#: C/bridges.page:12(page/title)
36
+msgid "Bridges"
37
+msgstr ""
38
+
39
+#: C/bridges.page:14(page/p)
40
+msgid "Bridges are quiet gateways into the Tor Network. Like Tor relays, they are run by volunteers. Unlike relays, they are not listed publicly. Using bridges disguise the fact that one is using Tor."
41
+msgstr ""
42
+
43
+#: C/bridges.page:20(page/p)
44
+msgid "Currently there are five bridge types, or transports, available. More are being developed."
45
+msgstr ""
46
+
47
+#: C/bridges.page:27(td/p)
48
+msgid "ORPort"
49
+msgstr ""
50
+
51
+#: C/bridges.page:32(td/p)
52
+msgid "Requesting 'bridges' without specifying the bridge type, will return ORPort bridges, also called Vanilla bridges. ORPort bridges are NOT reliable for circumventing censorship or national firewalls. ORPort bridges can be useful as trusted entry points into the Tor network."
53
+msgstr ""
54
+
55
+#: C/bridges.page:42(td/p)
56
+msgid "obfs2"
57
+msgstr ""
58
+
59
+#: C/bridges.page:47(td/p)
60
+msgid "Censors have learned how to identify obfs2 bridges. This transport is being deprecated."
61
+msgstr ""
62
+
63
+#: C/bridges.page:55(td/p)
64
+msgid "obfs3"
65
+msgstr ""
66
+
67
+#: C/bridges.page:60(td/p)
68
+msgid "Obfsproxy disguises Tor traffic as random noise. obfs3 bridges work almost everywhere. A few obfs3 bridges have been blocked."
69
+msgstr ""
70
+
71
+#: C/bridges.page:68(td/p)
72
+msgid "Scramblesuit"
73
+msgstr ""
74
+
75
+#: C/bridges.page:73(td/p)
76
+msgid "Scramblesuit is an additional tool for the obfsproxy transport. Scramblesuit bridges are designed to be hard to identify and hard to block."
77
+msgstr ""
78
+
79
+#: C/bridges.page:82(td/p)
80
+msgid "FTE"
81
+msgstr ""
82
+
83
+#: C/bridges.page:87(td/p)
84
+msgid "Format-Transforming Encryption disguises Tor traffic as web (HTTP) traffic or other types of internet traffic. FTE bridges are effective, but in limited supply."
85
+msgstr ""
86
+
87
+#: C/bridges.page:96(page/p)
88
+msgid "(Note that flashproxy is a Pluggable Transport, but does not rely on bridges.)"
89
+msgstr ""
90
+
91
+#: C/bridges.page:100(page/p)
92
+msgid "There are four ways to get a bridge."
93
+msgstr ""
94
+
95
+#: C/bridges.page:106(item/p)
96
+msgid "Visit <link href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</link> and follow the instructions."
97
+msgstr ""
98
+
99
+#: C/bridges.page:111(item/p)
100
+msgid "Email bridges@bridges.torproject.org from a gmail or yahoo email address. Put <cmd>get bridges</cmd> in the body for ORPort bridges or <cmd>transport=obfs3</cmd> for obfs3 bridges."
101
+msgstr ""
102
+
103
+#: C/bridges.page:118(item/p)
104
+msgid "Politely ask a human at help@rt.torproject.org if you cannot access either of the first two methods."
105
+msgstr ""
106
+
107
+#: C/bridges.page:124(item/p)
108
+msgid "Install and configure a Tor instance to be bridge for yourself. The computer acting as a bridge must have uncensored internet access to the Tor network. A full installation guide can be found at <link href=\"https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en\">https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en</link>"
109
+msgstr ""
110
+
111
+#: C/bridges.page:133(page/p)
112
+msgid "Enter the bridge information you get from any of the above steps in Tor-launcher."
113
+msgstr ""
114
+
115
+#: C/bridges.page:138(page/p)
116
+msgid "Choose yes when asked if your Internet Service Provider blocks connections to the Tor network. Select 'Use custom bridges' and enter each bridge identifier on its own line."
117
+msgstr ""
118
+
119
+#: C/bridges.page:146(page/p)
120
+msgid "Click Connect. Using bridges slow down the connection. If the connection fails, the bridges you received may be down. Get more and try again."
121
+msgstr ""
122
+
123
+#. This is a reference to an external file such as an image or video. When
124
+#. the file changes, the md5 hash will change to let you know you need to
125
+#. update your localized copy. The msgstr is not used at all. Set it to
126
+#. whatever you like once you have updated your copy of the file.
127
+#: C/circumvention.page:21(media)
128
+msgctxt "_"
129
+msgid "external ref='media/tor-launcher-configure_en-US.png' md5='966f4bafcb829e59b2b84d08144d885e'"
130
+msgstr ""
131
+
132
+#. This is a reference to an external file such as an image or video. When
133
+#. the file changes, the md5 hash will change to let you know you need to
134
+#. update your localized copy. The msgstr is not used at all. Set it to
135
+#. whatever you like once you have updated your copy of the file.
136
+#: C/circumvention.page:28(media)
137
+msgctxt "_"
138
+msgid "external ref='media/tor-launcher-wizard_en-US.png' md5='21f80fc3f4e34359bfdc44684d7da09d'"
139
+msgstr ""
140
+
141
+#. This is a reference to an external file such as an image or video. When
142
+#. the file changes, the md5 hash will change to let you know you need to
143
+#. update your localized copy. The msgstr is not used at all. Set it to
144
+#. whatever you like once you have updated your copy of the file.
145
+#: C/circumvention.page:36(media)
146
+msgctxt "_"
147
+msgid "external ref='media/tor-launcher-provided-bridges_en-US.png' md5='70524dccb698a21bb1d20223461e3272'"
148
+msgstr ""
149
+
150
+#: C/circumvention.page:7(info/title)
151
+msgctxt "sort"
152
+msgid "04 Circumvention"
153
+msgstr ""
154
+
155
+#: C/circumvention.page:8(info/desc)
156
+msgid "What to do if the Tor network is blocked."
157
+msgstr ""
158
+
159
+#: C/circumvention.page:12(page/title)
160
+msgid "Circumvention"
161
+msgstr ""
162
+
163
+#: C/circumvention.page:14(page/p)
164
+msgid "Some firewalls can detect and block connections to Tor. The Tor Browser includes some circumvention tools for getting around blocking firewalls. These circumvention tools are called Pluggable Transports. To turn them on, click \"Configure\" in the Tor launcher window."
165
+msgstr ""
166
+
167
+#: C/circumvention.page:23(page/p)
168
+msgid "Select yes when asked if your internet service provider blocks connections to Tor.\""
169
+msgstr ""
170
+
171
+#: C/circumvention.page:30(page/p)
172
+msgid "Select \"Connect with provided bridges\". Tor Browser has three Pluggable Transports to choose from. If one fails to get you online, try selecting a different transport."
173
+msgstr ""
174
+
175
+#: C/circumvention.page:38(page/p)
176
+msgid "If you try all three transports, and none of them get you online, select \"Enter custom bridges\", and enter bridges manually. Read the <link xref=\"bridges\">Getting Bridges</link> section for instructions on getting custom bridges."
177
+msgstr ""
178
+
179
+#. This is a reference to an external file such as an image or video. When
180
+#. the file changes, the md5 hash will change to let you know you need to
181
+#. update your localized copy. The msgstr is not used at all. Set it to
182
+#. whatever you like once you have updated your copy of the file.
183
+#: C/how-tor-works.page:19(media)
184
+msgctxt "_"
185
+msgid "external ref='media/how-tor-works.png' md5='6fe4151a88b7a518466f0582e40ccc8c'"
186
+msgstr ""
187
+
188
+#: C/how-tor-works.page:6(info/title)
189
+msgctxt "sort"
190
+msgid "01 Tor"
191
+msgstr ""
192
+
193
+#: C/how-tor-works.page:7(info/desc)
194
+msgid "How Tor works."
195
+msgstr ""
196
+
197
+#: C/how-tor-works.page:11(page/title)
198
+msgid "Tor"
199
+msgstr ""
200
+
201
+#: C/how-tor-works.page:12(page/p)
202
+msgid "Tor is a network of virtual tunnels that allows you to improve your privacy and security on the Internet. Tor works by sending your traffic through three random servers (also known as <em>relays</em>) in the Tor network, before the traffic is sent out onto the public Internet"
203
+msgstr ""
204
+
205
+#: C/how-tor-works.page:20(page/p)
206
+msgid "The image above illustrates a user browsing to different websites over Tor. The green monitors represent relays in the Tor network, while the three keys represent the layers of encryption between the user and each relay."
207
+msgstr ""
208
+
209
+#: C/how-tor-works.page:26(page/p)
210
+msgid "Tor will anonymize the origin of your traffic, and it will encrypt everything between you and the Tor network. Tor will also encrypt your traffic inside the Tor network, but it cannot encrypt your traffic between the Tor network and its final destination."
211
+msgstr ""
212
+
213
+#: C/how-tor-works.page:32(page/p)
214
+msgid "If you are communicating sensitive information, for example when logging on to a website with a username and password, make sure that you are using HTTPS (e.g. <input><em>https</em>://torproject.org/</input>, not <input><em>http</em>://torproject.org/</input>)."
215
+msgstr ""
216
+
217
+#: C/index.page:6(page/title)
218
+msgid "Tor Browser Help"
219
+msgstr ""
220
+
221
+#: C/index.page:7(page/p)
222
+msgid "Version: UNKNOWN-dirty"
223
+msgstr ""
224
+
225
+#: C/known-issues.page:7(info/desc)
226
+msgid "A list of known issues."
227
+msgstr ""
228
+
229
+#: C/known-issues.page:8(info/title)
230
+msgctxt "sort"
231
+msgid "03 Known Issues"
232
+msgstr ""
233
+
234
+#: C/known-issues.page:12(page/title)
235
+msgid "Known Issues"
236
+msgstr ""
237
+
238
+#: C/known-issues.page:16(item/p)
239
+msgid "The following firewall software have been known to interfere with Tor and may need to be temporarily disabled:"
240
+msgstr ""
241
+
242
+#: C/known-issues.page:20(item/p)
243
+msgid "Webroot SecureAnywhere"
244
+msgstr ""
245
+
246
+#: C/known-issues.page:23(item/p)
247
+msgid "Kaspersky Internet Security 2012"
248
+msgstr ""
249
+
250
+#: C/known-issues.page:26(item/p)
251
+msgid "Sophos Antivirus for Mac"
252
+msgstr ""
253
+
254
+#: C/known-issues.page:29(item/p)
255
+msgid "Microsoft Security Essentials"
256
+msgstr ""
257
+
258
+#: C/known-issues.page:34(item/p)
259
+msgid "Videos that require Adobe Flash are unavailable. Flash is disabled for security reasons. Most YouTube videos can be played with HTML5 by visiting the video's \"Embed\" → \"Share\" link."
260
+msgstr ""
261
+
262
+#: C/known-issues.page:41(item/p)
263
+msgid "Tor can not use a bridge if a proxy is set."
264
+msgstr ""
265
+
266
+#: C/known-issues.page:46(item/p)
267
+msgid "The Tor Browser package is dated January 1, 2000 00:00:00 UTC. This is to ensure that each software build is exactly reproducible."
268
+msgstr ""
269
+
270
+#: C/known-issues.page:52(item/p)
271
+msgid "To run Tor Browser on Ubuntu, users need to execute a shell script. Open \"Files\" (Unity's explorer), open Preferences → Behavior Tab → Set \"Run executable text files when they are opened\" to \"Ask every time\", then OK. Tor Browser can also be started from the command line by running"
272
+msgstr ""
273
+
274
+#: C/known-issues.page:58(item/code)
275
+#, no-wrap
276
+msgid ""
277
+"\n"
278
+"    ./start-tor-browser\n"
279
+"    "
280
+msgstr ""
281
+
282
+#: C/known-issues.page:61(item/p)
283
+msgid "from inside the Tor Browser directory."
284
+msgstr ""
285
+
286
+#: C/known-issues.page:66(page/p)
287
+msgid "If you have an issue with Tor Browser that isn't on this list, feel free to email help@rt.torproject.org."
288
+msgstr ""
289
+
290
+#. This is a reference to an external file such as an image or video. When
291
+#. the file changes, the md5 hash will change to let you know you need to
292
+#. update your localized copy. The msgstr is not used at all. Set it to
293
+#. whatever you like once you have updated your copy of the file.
294
+#: C/troubleshooting.page:19(media)
295
+msgctxt "_"
296
+msgid "external ref='media/tor-launcher-connect_en-US.png' md5='03118f523f4cbc7c001da1ddacc9e394'"
297
+msgstr ""
298
+
299
+#: C/troubleshooting.page:7(info/title)
300
+msgctxt "sort"
301
+msgid "02 Troubleshooting"
302
+msgstr ""
303
+
304
+#: C/troubleshooting.page:8(info/desc)
305
+msgid "What to do if Tor Browser doesn't work."
306
+msgstr ""
307
+
308
+#: C/troubleshooting.page:12(page/title)
309
+msgid "Troubleshooting"
310
+msgstr ""
311
+
312
+#: C/troubleshooting.page:14(page/p)
313
+msgid "The Tor Browser should get you online automatically after clicking the \"Connect\" button on the start up screen."
314
+msgstr ""
315
+
316
+#: C/troubleshooting.page:21(page/p)
317
+msgid "If it doesn't connect, there may be a simple fix. Try each of the following:"
318
+msgstr ""
319
+
320
+#: C/troubleshooting.page:27(item/p)
321
+msgid "Make sure another Tor Browser is not already running. If you're not sure if Tor Browser is running, restart your computer."
322
+msgstr ""
323
+
324
+#: C/troubleshooting.page:31(item/p)
325
+msgid "'Allow' Tor in your antivirus program."
326
+msgstr ""
327
+
328
+#: C/troubleshooting.page:34(item/p)
329
+msgid "Temporarily disable your firewall."
330
+msgstr ""
331
+
332
+#: C/troubleshooting.page:37(item/p)
333
+msgid "Delete Tor Browser and install it again. If updating, do not overwrite your previous Tor Browser files."
334
+msgstr ""
335
+
336
+#: C/troubleshooting.page:42(page/p)
337
+msgid "If you still can't connect, your internet service provider might be censoring connections to Tor. Follow the instructions in the <link xref=\"circumvention\">Circumvention</link> section."
338
+msgstr ""
339
+
340
+#: C/troubleshooting.page:48(page/p)
341
+msgid "If the above steps do not address your problem, email help@rt.torproject.org with your operating system, the details of your problem, and what you've already tried."
342
+msgstr ""
343
+
344
+#: C/uninstalling.page:7(info/desc)
345
+msgid "How to remove Tor Browser from your system."
346
+msgstr ""
347
+
348
+#: C/uninstalling.page:8(info/title)
349
+msgctxt "sort"
350
+msgid "06 Uninstalling"
351
+msgstr ""
352
+
353
+#: C/uninstalling.page:12(page/title)
354
+msgid "Uninstalling"
355
+msgstr ""
356
+
357
+#: C/uninstalling.page:14(page/p)
358
+msgid "The Tor Browser does not affect any of the existing software or settings on your computer. Uninstalling Tor Browser will not affect your system's software or settings either."
359
+msgstr ""
360
+
361
+#: C/uninstalling.page:20(page/p)
362
+msgid "Removing the Tor Browser from your system is simple:"
363
+msgstr ""
364
+
365
+#: C/uninstalling.page:26(item/p)
366
+msgid "Locate your Tor Browser folder. The default location is your Desktop."
367
+msgstr ""
368
+
369
+#: C/uninstalling.page:29(item/p)
370
+msgid "Delete the Tor Browser folder."
371
+msgstr ""
372
+
373
+#: C/uninstalling.page:32(item/p)
374
+msgid "Empty your Trash"
375
+msgstr ""
376
+
377
+#: C/uninstalling.page:36(page/p)
378
+msgid "Note that your operating system's standard \"Uninstall\" utility is not used."
379
+msgstr ""
380
+
... ...
@@ -0,0 +1,380 @@
1
+msgid ""
2
+msgstr ""
3
+"Project-Id-Version: PACKAGE VERSION\n"
4
+"POT-Creation-Date: 2014-05-15 11:21+0200\n"
5
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
6
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
7
+"Language-Team: LANGUAGE <LL@li.org>\n"
8
+"MIME-Version: 1.0\n"
9
+"Content-Type: text/plain; charset=UTF-8\n"
10
+"Content-Transfer-Encoding: 8bit\n"
11
+
12
+#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
13
+msgctxt "_"
14
+msgid "translator-credits"
15
+msgstr ""
16
+
17
+#. This is a reference to an external file such as an image or video. When
18
+#. the file changes, the md5 hash will change to let you know you need to
19
+#. update your localized copy. The msgstr is not used at all. Set it to
20
+#. whatever you like once you have updated your copy of the file.
21
+#: C/bridges.page:144(media)
22
+msgctxt "_"
23
+msgid "external ref='media/tor-launcher-custom-bridges_en-US.png' md5='93365c2aa3fb4d627497e83f28a39b7e'"
24
+msgstr ""
25
+
26
+#: C/bridges.page:7(info/desc)
27
+msgid "What bridges are and how to use them."
28
+msgstr ""
29
+
30
+#: C/bridges.page:8(info/title)
31
+msgctxt "sort"
32
+msgid "05 Bridges"
33
+msgstr ""
34
+
35
+#: C/bridges.page:12(page/title)
36
+msgid "Bridges"
37
+msgstr ""
38
+
39
+#: C/bridges.page:14(page/p)
40
+msgid "Bridges are quiet gateways into the Tor Network. Like Tor relays, they are run by volunteers. Unlike relays, they are not listed publicly. Using bridges disguise the fact that one is using Tor."
41
+msgstr ""
42
+
43
+#: C/bridges.page:20(page/p)
44
+msgid "Currently there are five bridge types, or transports, available. More are being developed."
45
+msgstr ""
46
+
47
+#: C/bridges.page:27(td/p)
48
+msgid "ORPort"
49
+msgstr ""
50
+
51
+#: C/bridges.page:32(td/p)
52
+msgid "Requesting 'bridges' without specifying the bridge type, will return ORPort bridges, also called Vanilla bridges. ORPort bridges are NOT reliable for circumventing censorship or national firewalls. ORPort bridges can be useful as trusted entry points into the Tor network."
53
+msgstr ""
54
+
55
+#: C/bridges.page:42(td/p)
56
+msgid "obfs2"
57
+msgstr ""
58
+
59
+#: C/bridges.page:47(td/p)
60
+msgid "Censors have learned how to identify obfs2 bridges. This transport is being deprecated."
61
+msgstr ""
62
+
63
+#: C/bridges.page:55(td/p)
64
+msgid "obfs3"
65
+msgstr ""
66
+
67
+#: C/bridges.page:60(td/p)
68
+msgid "Obfsproxy disguises Tor traffic as random noise. obfs3 bridges work almost everywhere. A few obfs3 bridges have been blocked."
69
+msgstr ""
70
+
71
+#: C/bridges.page:68(td/p)
72
+msgid "Scramblesuit"
73
+msgstr ""
74
+
75
+#: C/bridges.page:73(td/p)
76
+msgid "Scramblesuit is an additional tool for the obfsproxy transport. Scramblesuit bridges are designed to be hard to identify and hard to block."
77
+msgstr ""
78
+
79
+#: C/bridges.page:82(td/p)
80
+msgid "FTE"
81
+msgstr ""
82
+
83
+#: C/bridges.page:87(td/p)
84
+msgid "Format-Transforming Encryption disguises Tor traffic as web (HTTP) traffic or other types of internet traffic. FTE bridges are effective, but in limited supply."
85
+msgstr ""
86
+
87
+#: C/bridges.page:96(page/p)
88
+msgid "(Note that flashproxy is a Pluggable Transport, but does not rely on bridges.)"
89
+msgstr ""
90
+
91
+#: C/bridges.page:100(page/p)
92
+msgid "There are four ways to get a bridge."
93
+msgstr ""
94
+
95
+#: C/bridges.page:106(item/p)
96
+msgid "Visit <link href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</link> and follow the instructions."
97
+msgstr ""
98
+
99
+#: C/bridges.page:111(item/p)
100
+msgid "Email bridges@bridges.torproject.org from a gmail or yahoo email address. Put <cmd>get bridges</cmd> in the body for ORPort bridges or <cmd>transport=obfs3</cmd> for obfs3 bridges."
101
+msgstr ""
102
+
103
+#: C/bridges.page:118(item/p)
104
+msgid "Politely ask a human at help@rt.torproject.org if you cannot access either of the first two methods."
105
+msgstr ""
106
+
107
+#: C/bridges.page:124(item/p)
108
+msgid "Install and configure a Tor instance to be bridge for yourself. The computer acting as a bridge must have uncensored internet access to the Tor network. A full installation guide can be found at <link href=\"https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en\">https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en</link>"
109
+msgstr ""
110
+
111
+#: C/bridges.page:133(page/p)
112
+msgid "Enter the bridge information you get from any of the above steps in Tor-launcher."
113
+msgstr ""
114
+
115
+#: C/bridges.page:138(page/p)
116
+msgid "Choose yes when asked if your Internet Service Provider blocks connections to the Tor network. Select 'Use custom bridges' and enter each bridge identifier on its own line."
117
+msgstr ""
118
+
119
+#: C/bridges.page:146(page/p)
120
+msgid "Click Connect. Using bridges slow down the connection. If the connection fails, the bridges you received may be down. Get more and try again."
121
+msgstr ""
122
+
123
+#. This is a reference to an external file such as an image or video. When
124
+#. the file changes, the md5 hash will change to let you know you need to
125
+#. update your localized copy. The msgstr is not used at all. Set it to
126
+#. whatever you like once you have updated your copy of the file.
127
+#: C/circumvention.page:21(media)
128
+msgctxt "_"
129
+msgid "external ref='media/tor-launcher-configure_en-US.png' md5='966f4bafcb829e59b2b84d08144d885e'"
130
+msgstr ""
131
+
132
+#. This is a reference to an external file such as an image or video. When
133
+#. the file changes, the md5 hash will change to let you know you need to
134
+#. update your localized copy. The msgstr is not used at all. Set it to
135
+#. whatever you like once you have updated your copy of the file.
136
+#: C/circumvention.page:28(media)
137
+msgctxt "_"
138
+msgid "external ref='media/tor-launcher-wizard_en-US.png' md5='21f80fc3f4e34359bfdc44684d7da09d'"
139
+msgstr ""
140
+
141
+#. This is a reference to an external file such as an image or video. When
142
+#. the file changes, the md5 hash will change to let you know you need to
143
+#. update your localized copy. The msgstr is not used at all. Set it to
144
+#. whatever you like once you have updated your copy of the file.
145
+#: C/circumvention.page:36(media)
146
+msgctxt "_"
147
+msgid "external ref='media/tor-launcher-provided-bridges_en-US.png' md5='70524dccb698a21bb1d20223461e3272'"
148
+msgstr ""
149
+
150
+#: C/circumvention.page:7(info/title)
151
+msgctxt "sort"
152
+msgid "04 Circumvention"
153
+msgstr ""
154
+
155
+#: C/circumvention.page:8(info/desc)
156
+msgid "What to do if the Tor network is blocked."
157
+msgstr ""
158
+
159
+#: C/circumvention.page:12(page/title)
160
+msgid "Circumvention"
161
+msgstr ""
162
+
163
+#: C/circumvention.page:14(page/p)
164
+msgid "Some firewalls can detect and block connections to Tor. The Tor Browser includes some circumvention tools for getting around blocking firewalls. These circumvention tools are called Pluggable Transports. To turn them on, click \"Configure\" in the Tor launcher window."
165
+msgstr ""
166
+
167
+#: C/circumvention.page:23(page/p)
168
+msgid "Select yes when asked if your internet service provider blocks connections to Tor.\""
169
+msgstr ""
170
+
171
+#: C/circumvention.page:30(page/p)
172
+msgid "Select \"Connect with provided bridges\". Tor Browser has three Pluggable Transports to choose from. If one fails to get you online, try selecting a different transport."
173
+msgstr ""
174
+
175
+#: C/circumvention.page:38(page/p)
176
+msgid "If you try all three transports, and none of them get you online, select \"Enter custom bridges\", and enter bridges manually. Read the <link xref=\"bridges\">Getting Bridges</link> section for instructions on getting custom bridges."
177
+msgstr ""
178
+
179
+#. This is a reference to an external file such as an image or video. When
180
+#. the file changes, the md5 hash will change to let you know you need to
181
+#. update your localized copy. The msgstr is not used at all. Set it to
182
+#. whatever you like once you have updated your copy of the file.
183
+#: C/how-tor-works.page:19(media)
184
+msgctxt "_"
185
+msgid "external ref='media/how-tor-works.png' md5='6fe4151a88b7a518466f0582e40ccc8c'"
186
+msgstr ""
187
+
188
+#: C/how-tor-works.page:6(info/title)
189
+msgctxt "sort"
190
+msgid "01 Tor"
191
+msgstr ""
192
+
193
+#: C/how-tor-works.page:7(info/desc)
194
+msgid "How Tor works."
195
+msgstr ""
196
+
197
+#: C/how-tor-works.page:11(page/title)
198
+msgid "Tor"
199
+msgstr ""
200
+
201
+#: C/how-tor-works.page:12(page/p)
202
+msgid "Tor is a network of virtual tunnels that allows you to improve your privacy and security on the Internet. Tor works by sending your traffic through three random servers (also known as <em>relays</em>) in the Tor network, before the traffic is sent out onto the public Internet"
203
+msgstr ""
204
+
205
+#: C/how-tor-works.page:20(page/p)
206
+msgid "The image above illustrates a user browsing to different websites over Tor. The green monitors represent relays in the Tor network, while the three keys represent the layers of encryption between the user and each relay."
207
+msgstr ""
208
+
209
+#: C/how-tor-works.page:26(page/p)
210
+msgid "Tor will anonymize the origin of your traffic, and it will encrypt everything between you and the Tor network. Tor will also encrypt your traffic inside the Tor network, but it cannot encrypt your traffic between the Tor network and its final destination."
211
+msgstr ""
212
+
213
+#: C/how-tor-works.page:32(page/p)
214
+msgid "If you are communicating sensitive information, for example when logging on to a website with a username and password, make sure that you are using HTTPS (e.g. <input><em>https</em>://torproject.org/</input>, not <input><em>http</em>://torproject.org/</input>)."
215
+msgstr ""
216
+
217
+#: C/index.page:6(page/title)
218
+msgid "Tor Browser Help"
219
+msgstr ""
220
+
221
+#: C/index.page:7(page/p)
222
+msgid "Version: UNKNOWN-dirty"
223
+msgstr ""
224
+
225
+#: C/known-issues.page:7(info/desc)
226
+msgid "A list of known issues."
227
+msgstr ""
228
+
229
+#: C/known-issues.page:8(info/title)
230
+msgctxt "sort"
231
+msgid "03 Known Issues"
232
+msgstr ""
233
+
234
+#: C/known-issues.page:12(page/title)
235
+msgid "Known Issues"
236
+msgstr ""
237
+
238
+#: C/known-issues.page:16(item/p)
239
+msgid "The following firewall software have been known to interfere with Tor and may need to be temporarily disabled:"
240
+msgstr ""
241
+
242
+#: C/known-issues.page:20(item/p)
243
+msgid "Webroot SecureAnywhere"
244
+msgstr ""
245
+
246
+#: C/known-issues.page:23(item/p)
247
+msgid "Kaspersky Internet Security 2012"
248
+msgstr ""
249
+
250
+#: C/known-issues.page:26(item/p)
251
+msgid "Sophos Antivirus for Mac"
252
+msgstr ""
253
+
254
+#: C/known-issues.page:29(item/p)
255
+msgid "Microsoft Security Essentials"
256
+msgstr ""
257
+
258
+#: C/known-issues.page:34(item/p)
259
+msgid "Videos that require Adobe Flash are unavailable. Flash is disabled for security reasons. Most YouTube videos can be played with HTML5 by visiting the video's \"Embed\" → \"Share\" link."
260
+msgstr ""
261
+
262
+#: C/known-issues.page:41(item/p)
263
+msgid "Tor can not use a bridge if a proxy is set."
264
+msgstr ""
265
+
266
+#: C/known-issues.page:46(item/p)
267
+msgid "The Tor Browser package is dated January 1, 2000 00:00:00 UTC. This is to ensure that each software build is exactly reproducible."
268
+msgstr ""
269
+
270
+#: C/known-issues.page:52(item/p)
271
+msgid "To run Tor Browser on Ubuntu, users need to execute a shell script. Open \"Files\" (Unity's explorer), open Preferences → Behavior Tab → Set \"Run executable text files when they are opened\" to \"Ask every time\", then OK. Tor Browser can also be started from the command line by running"
272
+msgstr ""
273
+
274
+#: C/known-issues.page:58(item/code)
275
+#, no-wrap
276
+msgid ""
277
+"\n"
278
+"    ./start-tor-browser\n"
279
+"    "
280
+msgstr ""
281
+
282
+#: C/known-issues.page:61(item/p)
283
+msgid "from inside the Tor Browser directory."
284
+msgstr ""
285
+
286
+#: C/known-issues.page:66(page/p)
287
+msgid "If you have an issue with Tor Browser that isn't on this list, feel free to email help@rt.torproject.org."
288
+msgstr ""
289
+
290
+#. This is a reference to an external file such as an image or video. When
291
+#. the file changes, the md5 hash will change to let you know you need to
292
+#. update your localized copy. The msgstr is not used at all. Set it to
293
+#. whatever you like once you have updated your copy of the file.
294
+#: C/troubleshooting.page:19(media)
295
+msgctxt "_"
296
+msgid "external ref='media/tor-launcher-connect_en-US.png' md5='03118f523f4cbc7c001da1ddacc9e394'"
297
+msgstr ""
298
+
299
+#: C/troubleshooting.page:7(info/title)
300
+msgctxt "sort"
301
+msgid "02 Troubleshooting"
302
+msgstr ""
303
+
304
+#: C/troubleshooting.page:8(info/desc)
305
+msgid "What to do if Tor Browser doesn't work."
306
+msgstr ""
307
+
308
+#: C/troubleshooting.page:12(page/title)
309
+msgid "Troubleshooting"
310
+msgstr ""
311
+
312
+#: C/troubleshooting.page:14(page/p)
313
+msgid "The Tor Browser should get you online automatically after clicking the \"Connect\" button on the start up screen."
314
+msgstr ""
315
+
316
+#: C/troubleshooting.page:21(page/p)
317
+msgid "If it doesn't connect, there may be a simple fix. Try each of the following:"
318
+msgstr ""
319
+
320
+#: C/troubleshooting.page:27(item/p)
321
+msgid "Make sure another Tor Browser is not already running. If you're not sure if Tor Browser is running, restart your computer."
322
+msgstr ""
323
+
324
+#: C/troubleshooting.page:31(item/p)
325
+msgid "'Allow' Tor in your antivirus program."
326
+msgstr ""
327
+
328
+#: C/troubleshooting.page:34(item/p)
329
+msgid "Temporarily disable your firewall."
330
+msgstr ""
331
+
332
+#: C/troubleshooting.page:37(item/p)
333
+msgid "Delete Tor Browser and install it again. If updating, do not overwrite your previous Tor Browser files."
334
+msgstr ""
335
+
336
+#: C/troubleshooting.page:42(page/p)
337
+msgid "If you still can't connect, your internet service provider might be censoring connections to Tor. Follow the instructions in the <link xref=\"circumvention\">Circumvention</link> section."
338
+msgstr ""
339
+
340
+#: C/troubleshooting.page:48(page/p)
341
+msgid "If the above steps do not address your problem, email help@rt.torproject.org with your operating system, the details of your problem, and what you've already tried."
342
+msgstr ""
343
+
344
+#: C/uninstalling.page:7(info/desc)
345
+msgid "How to remove Tor Browser from your system."
346
+msgstr ""
347
+
348
+#: C/uninstalling.page:8(info/title)
349
+msgctxt "sort"
350
+msgid "06 Uninstalling"
351
+msgstr ""
352
+
353
+#: C/uninstalling.page:12(page/title)
354
+msgid "Uninstalling"
355
+msgstr ""
356
+
357
+#: C/uninstalling.page:14(page/p)
358
+msgid "The Tor Browser does not affect any of the existing software or settings on your computer. Uninstalling Tor Browser will not affect your system's software or settings either."
359
+msgstr ""
360
+
361
+#: C/uninstalling.page:20(page/p)
362
+msgid "Removing the Tor Browser from your system is simple:"
363
+msgstr ""
364
+
365
+#: C/uninstalling.page:26(item/p)
366
+msgid "Locate your Tor Browser folder. The default location is your Desktop."
367
+msgstr ""
368
+
369
+#: C/uninstalling.page:29(item/p)
370
+msgid "Delete the Tor Browser folder."
371
+msgstr ""
372
+
373
+#: C/uninstalling.page:32(item/p)
374
+msgid "Empty your Trash"
375
+msgstr ""
376
+
377
+#: C/uninstalling.page:36(page/p)
378
+msgid "Note that your operating system's standard \"Uninstall\" utility is not used."
379
+msgstr ""
380
+
... ...
@@ -0,0 +1,7 @@
1
+<xsl:stylesheet
2
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3
+ xmlns:mal="http://projectmallard.org/1.0/"
4
+ exclude-result-prefixes="mal"
5
+ version="1.0">
6
+  <xsl:param name="mal.if.platform" select="'platform:linux'"/>
7
+</xsl:stylesheet>
... ...
@@ -0,0 +1,7 @@
1
+<xsl:stylesheet
2
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3
+ xmlns:mal="http://projectmallard.org/1.0/"
4
+ exclude-result-prefixes="mal"
5
+ version="1.0">
6
+  <xsl:param name="mal.if.platform" select="'platform:macosx'"/>
7
+</xsl:stylesheet>
... ...
@@ -0,0 +1,7 @@
1
+<xsl:stylesheet
2
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3
+ xmlns:mal="http://projectmallard.org/1.0/"
4
+ exclude-result-prefixes="mal"
5
+ version="1.0">
6
+  <xsl:param name="mal.if.platform" select="'platform:windows'"/>
7
+</xsl:stylesheet>
... ...
@@ -0,0 +1,380 @@
1
+msgid ""
2
+msgstr ""
3
+"Project-Id-Version: PACKAGE VERSION\n"
4
+"POT-Creation-Date: 2014-05-15 11:21+0200\n"
5
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
6
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
7
+"Language-Team: LANGUAGE <LL@li.org>\n"
8
+"MIME-Version: 1.0\n"
9
+"Content-Type: text/plain; charset=UTF-8\n"
10
+"Content-Transfer-Encoding: 8bit\n"
11
+
12
+#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
13
+msgctxt "_"
14
+msgid "translator-credits"
15
+msgstr ""
16
+
17
+#. This is a reference to an external file such as an image or video. When
18
+#. the file changes, the md5 hash will change to let you know you need to
19
+#. update your localized copy. The msgstr is not used at all. Set it to
20
+#. whatever you like once you have updated your copy of the file.
21
+#: C/bridges.page:144(media)
22
+msgctxt "_"
23
+msgid "external ref='media/tor-launcher-custom-bridges_en-US.png' md5='93365c2aa3fb4d627497e83f28a39b7e'"
24
+msgstr ""
25
+
26
+#: C/bridges.page:7(info/desc)
27
+msgid "What bridges are and how to use them."
28
+msgstr ""
29
+
30
+#: C/bridges.page:8(info/title)
31
+msgctxt "sort"
32
+msgid "05 Bridges"
33
+msgstr ""
34
+
35
+#: C/bridges.page:12(page/title)
36
+msgid "Bridges"
37
+msgstr ""
38
+
39
+#: C/bridges.page:14(page/p)
40
+msgid "Bridges are quiet gateways into the Tor Network. Like Tor relays, they are run by volunteers. Unlike relays, they are not listed publicly. Using bridges disguise the fact that one is using Tor."
41
+msgstr ""
42
+
43
+#: C/bridges.page:20(page/p)
44
+msgid "Currently there are five bridge types, or transports, available. More are being developed."
45
+msgstr ""
46
+
47
+#: C/bridges.page:27(td/p)
48
+msgid "ORPort"
49
+msgstr ""
50
+
51
+#: C/bridges.page:32(td/p)
52
+msgid "Requesting 'bridges' without specifying the bridge type, will return ORPort bridges, also called Vanilla bridges. ORPort bridges are NOT reliable for circumventing censorship or national firewalls. ORPort bridges can be useful as trusted entry points into the Tor network."
53
+msgstr ""
54
+
55
+#: C/bridges.page:42(td/p)
56
+msgid "obfs2"
57
+msgstr ""
58
+
59
+#: C/bridges.page:47(td/p)
60
+msgid "Censors have learned how to identify obfs2 bridges. This transport is being deprecated."
61
+msgstr ""
62
+
63
+#: C/bridges.page:55(td/p)
64
+msgid "obfs3"
65
+msgstr ""
66
+
67
+#: C/bridges.page:60(td/p)
68
+msgid "Obfsproxy disguises Tor traffic as random noise. obfs3 bridges work almost everywhere. A few obfs3 bridges have been blocked."
69
+msgstr ""
70
+
71
+#: C/bridges.page:68(td/p)
72
+msgid "Scramblesuit"
73
+msgstr ""
74
+
75
+#: C/bridges.page:73(td/p)
76
+msgid "Scramblesuit is an additional tool for the obfsproxy transport. Scramblesuit bridges are designed to be hard to identify and hard to block."
77
+msgstr ""
78
+
79
+#: C/bridges.page:82(td/p)
80
+msgid "FTE"
81
+msgstr ""
82
+
83
+#: C/bridges.page:87(td/p)
84
+msgid "Format-Transforming Encryption disguises Tor traffic as web (HTTP) traffic or other types of internet traffic. FTE bridges are effective, but in limited supply."
85
+msgstr ""
86
+
87
+#: C/bridges.page:96(page/p)
88
+msgid "(Note that flashproxy is a Pluggable Transport, but does not rely on bridges.)"
89
+msgstr ""
90
+
91
+#: C/bridges.page:100(page/p)
92
+msgid "There are four ways to get a bridge."
93
+msgstr ""
94
+
95
+#: C/bridges.page:106(item/p)
96
+msgid "Visit <link href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</link> and follow the instructions."
97
+msgstr ""
98
+
99
+#: C/bridges.page:111(item/p)
100
+msgid "Email bridges@bridges.torproject.org from a gmail or yahoo email address. Put <cmd>get bridges</cmd> in the body for ORPort bridges or <cmd>transport=obfs3</cmd> for obfs3 bridges."
101
+msgstr ""
102
+
103
+#: C/bridges.page:118(item/p)
104
+msgid "Politely ask a human at help@rt.torproject.org if you cannot access either of the first two methods."
105
+msgstr ""
106
+
107
+#: C/bridges.page:124(item/p)
108
+msgid "Install and configure a Tor instance to be bridge for yourself. The computer acting as a bridge must have uncensored internet access to the Tor network. A full installation guide can be found at <link href=\"https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en\">https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en</link>"
109
+msgstr ""
110
+
111
+#: C/bridges.page:133(page/p)
112
+msgid "Enter the bridge information you get from any of the above steps in Tor-launcher."
113
+msgstr ""
114
+
115
+#: C/bridges.page:138(page/p)
116
+msgid "Choose yes when asked if your Internet Service Provider blocks connections to the Tor network. Select 'Use custom bridges' and enter each bridge identifier on its own line."
117
+msgstr ""
118
+
119
+#: C/bridges.page:146(page/p)
120
+msgid "Click Connect. Using bridges slow down the connection. If the connection fails, the bridges you received may be down. Get more and try again."
121
+msgstr ""
122
+
123
+#. This is a reference to an external file such as an image or video. When
124
+#. the file changes, the md5 hash will change to let you know you need to
125
+#. update your localized copy. The msgstr is not used at all. Set it to
126
+#. whatever you like once you have updated your copy of the file.
127
+#: C/circumvention.page:21(media)
128
+msgctxt "_"
129
+msgid "external ref='media/tor-launcher-configure_en-US.png' md5='966f4bafcb829e59b2b84d08144d885e'"
130
+msgstr ""
131
+
132
+#. This is a reference to an external file such as an image or video. When
133
+#. the file changes, the md5 hash will change to let you know you need to
134
+#. update your localized copy. The msgstr is not used at all. Set it to
135
+#. whatever you like once you have updated your copy of the file.
136
+#: C/circumvention.page:28(media)
137
+msgctxt "_"
138
+msgid "external ref='media/tor-launcher-wizard_en-US.png' md5='21f80fc3f4e34359bfdc44684d7da09d'"
139
+msgstr ""
140
+
141
+#. This is a reference to an external file such as an image or video. When
142
+#. the file changes, the md5 hash will change to let you know you need to
143
+#. update your localized copy. The msgstr is not used at all. Set it to
144
+#. whatever you like once you have updated your copy of the file.
145
+#: C/circumvention.page:36(media)
146
+msgctxt "_"
147
+msgid "external ref='media/tor-launcher-provided-bridges_en-US.png' md5='70524dccb698a21bb1d20223461e3272'"
148
+msgstr ""
149
+
150
+#: C/circumvention.page:7(info/title)
151
+msgctxt "sort"
152
+msgid "04 Circumvention"
153
+msgstr ""
154
+
155
+#: C/circumvention.page:8(info/desc)
156
+msgid "What to do if the Tor network is blocked."
157
+msgstr ""
158
+
159
+#: C/circumvention.page:12(page/title)
160
+msgid "Circumvention"
161
+msgstr ""
162
+
163
+#: C/circumvention.page:14(page/p)
164
+msgid "Some firewalls can detect and block connections to Tor. The Tor Browser includes some circumvention tools for getting around blocking firewalls. These circumvention tools are called Pluggable Transports. To turn them on, click \"Configure\" in the Tor launcher window."
165
+msgstr ""
166
+
167
+#: C/circumvention.page:23(page/p)
168
+msgid "Select yes when asked if your internet service provider blocks connections to Tor.\""
169
+msgstr ""
170
+
171
+#: C/circumvention.page:30(page/p)
172
+msgid "Select \"Connect with provided bridges\". Tor Browser has three Pluggable Transports to choose from. If one fails to get you online, try selecting a different transport."
173
+msgstr ""
174
+
175
+#: C/circumvention.page:38(page/p)
176
+msgid "If you try all three transports, and none of them get you online, select \"Enter custom bridges\", and enter bridges manually. Read the <link xref=\"bridges\">Getting Bridges</link> section for instructions on getting custom bridges."
177
+msgstr ""
178
+
179
+#. This is a reference to an external file such as an image or video. When
180
+#. the file changes, the md5 hash will change to let you know you need to
181
+#. update your localized copy. The msgstr is not used at all. Set it to
182
+#. whatever you like once you have updated your copy of the file.
183
+#: C/how-tor-works.page:19(media)
184
+msgctxt "_"
185
+msgid "external ref='media/how-tor-works.png' md5='6fe4151a88b7a518466f0582e40ccc8c'"
186
+msgstr ""
187
+
188
+#: C/how-tor-works.page:6(info/title)
189
+msgctxt "sort"
190
+msgid "01 Tor"
191
+msgstr ""
192
+
193
+#: C/how-tor-works.page:7(info/desc)
194
+msgid "How Tor works."
195
+msgstr ""
196
+
197
+#: C/how-tor-works.page:11(page/title)
198
+msgid "Tor"
199
+msgstr ""
200
+
201
+#: C/how-tor-works.page:12(page/p)
202
+msgid "Tor is a network of virtual tunnels that allows you to improve your privacy and security on the Internet. Tor works by sending your traffic through three random servers (also known as <em>relays</em>) in the Tor network, before the traffic is sent out onto the public Internet"
203
+msgstr ""
204
+
205
+#: C/how-tor-works.page:20(page/p)
206
+msgid "The image above illustrates a user browsing to different websites over Tor. The green monitors represent relays in the Tor network, while the three keys represent the layers of encryption between the user and each relay."
207
+msgstr ""
208
+
209
+#: C/how-tor-works.page:26(page/p)
210
+msgid "Tor will anonymize the origin of your traffic, and it will encrypt everything between you and the Tor network. Tor will also encrypt your traffic inside the Tor network, but it cannot encrypt your traffic between the Tor network and its final destination."
211
+msgstr ""
212
+
213
+#: C/how-tor-works.page:32(page/p)
214
+msgid "If you are communicating sensitive information, for example when logging on to a website with a username and password, make sure that you are using HTTPS (e.g. <input><em>https</em>://torproject.org/</input>, not <input><em>http</em>://torproject.org/</input>)."
215
+msgstr ""
216
+
217
+#: C/index.page:6(page/title)
218
+msgid "Tor Browser Help"
219
+msgstr ""
220
+
221
+#: C/index.page:7(page/p)
222
+msgid "Version: UNKNOWN-dirty"
223
+msgstr ""
224
+
225
+#: C/known-issues.page:7(info/desc)
226
+msgid "A list of known issues."
227
+msgstr ""
228
+
229
+#: C/known-issues.page:8(info/title)
230
+msgctxt "sort"
231
+msgid "03 Known Issues"
232
+msgstr ""
233
+
234
+#: C/known-issues.page:12(page/title)
235
+msgid "Known Issues"
236
+msgstr ""
237
+
238
+#: C/known-issues.page:16(item/p)
239
+msgid "The following firewall software have been known to interfere with Tor and may need to be temporarily disabled:"
240
+msgstr ""
241
+
242
+#: C/known-issues.page:20(item/p)
243
+msgid "Webroot SecureAnywhere"
244
+msgstr ""
245
+
246
+#: C/known-issues.page:23(item/p)
247
+msgid "Kaspersky Internet Security 2012"
248
+msgstr ""
249
+
250
+#: C/known-issues.page:26(item/p)
251
+msgid "Sophos Antivirus for Mac"
252
+msgstr ""
253
+
254
+#: C/known-issues.page:29(item/p)
255
+msgid "Microsoft Security Essentials"
256
+msgstr ""
257
+
258
+#: C/known-issues.page:34(item/p)
259
+msgid "Videos that require Adobe Flash are unavailable. Flash is disabled for security reasons. Most YouTube videos can be played with HTML5 by visiting the video's \"Embed\" → \"Share\" link."
260
+msgstr ""
261
+
262
+#: C/known-issues.page:41(item/p)
263
+msgid "Tor can not use a bridge if a proxy is set."
264
+msgstr ""
265
+
266
+#: C/known-issues.page:46(item/p)
267
+msgid "The Tor Browser package is dated January 1, 2000 00:00:00 UTC. This is to ensure that each software build is exactly reproducible."
268
+msgstr ""
269
+
270
+#: C/known-issues.page:52(item/p)
271
+msgid "To run Tor Browser on Ubuntu, users need to execute a shell script. Open \"Files\" (Unity's explorer), open Preferences → Behavior Tab → Set \"Run executable text files when they are opened\" to \"Ask every time\", then OK. Tor Browser can also be started from the command line by running"
272
+msgstr ""
273
+
274
+#: C/known-issues.page:58(item/code)
275
+#, no-wrap
276
+msgid ""
277
+"\n"
278
+"    ./start-tor-browser\n"
279
+"    "
280
+msgstr ""
281
+
282
+#: C/known-issues.page:61(item/p)
283
+msgid "from inside the Tor Browser directory."
284
+msgstr ""
285
+
286
+#: C/known-issues.page:66(page/p)
287
+msgid "If you have an issue with Tor Browser that isn't on this list, feel free to email help@rt.torproject.org."
288
+msgstr ""
289
+
290
+#. This is a reference to an external file such as an image or video. When
291
+#. the file changes, the md5 hash will change to let you know you need to
292
+#. update your localized copy. The msgstr is not used at all. Set it to
293
+#. whatever you like once you have updated your copy of the file.
294
+#: C/troubleshooting.page:19(media)
295
+msgctxt "_"
296
+msgid "external ref='media/tor-launcher-connect_en-US.png' md5='03118f523f4cbc7c001da1ddacc9e394'"
297
+msgstr ""
298
+
299
+#: C/troubleshooting.page:7(info/title)
300
+msgctxt "sort"
301
+msgid "02 Troubleshooting"
302
+msgstr ""
303
+
304
+#: C/troubleshooting.page:8(info/desc)
305
+msgid "What to do if Tor Browser doesn't work."
306
+msgstr ""
307
+
308
+#: C/troubleshooting.page:12(page/title)
309
+msgid "Troubleshooting"
310
+msgstr ""
311
+
312
+#: C/troubleshooting.page:14(page/p)
313
+msgid "The Tor Browser should get you online automatically after clicking the \"Connect\" button on the start up screen."
314
+msgstr ""
315
+
316
+#: C/troubleshooting.page:21(page/p)
317
+msgid "If it doesn't connect, there may be a simple fix. Try each of the following:"
318
+msgstr ""
319
+
320
+#: C/troubleshooting.page:27(item/p)
321
+msgid "Make sure another Tor Browser is not already running. If you're not sure if Tor Browser is running, restart your computer."
322
+msgstr ""
323
+
324
+#: C/troubleshooting.page:31(item/p)
325
+msgid "'Allow' Tor in your antivirus program."
326
+msgstr ""
327
+
328
+#: C/troubleshooting.page:34(item/p)
329
+msgid "Temporarily disable your firewall."
330
+msgstr ""
331
+
332
+#: C/troubleshooting.page:37(item/p)
333
+msgid "Delete Tor Browser and install it again. If updating, do not overwrite your previous Tor Browser files."
334
+msgstr ""
335
+
336
+#: C/troubleshooting.page:42(page/p)
337
+msgid "If you still can't connect, your internet service provider might be censoring connections to Tor. Follow the instructions in the <link xref=\"circumvention\">Circumvention</link> section."
338
+msgstr ""
339
+
340
+#: C/troubleshooting.page:48(page/p)
341
+msgid "If the above steps do not address your problem, email help@rt.torproject.org with your operating system, the details of your problem, and what you've already tried."
342
+msgstr ""
343
+
344
+#: C/uninstalling.page:7(info/desc)
345
+msgid "How to remove Tor Browser from your system."
346
+msgstr ""
347
+
348
+#: C/uninstalling.page:8(info/title)
349
+msgctxt "sort"
350
+msgid "06 Uninstalling"
351
+msgstr ""
352
+
353
+#: C/uninstalling.page:12(page/title)
354
+msgid "Uninstalling"
355
+msgstr ""
356
+
357
+#: C/uninstalling.page:14(page/p)
358
+msgid "The Tor Browser does not affect any of the existing software or settings on your computer. Uninstalling Tor Browser will not affect your system's software or settings either."
359
+msgstr ""
360
+
361
+#: C/uninstalling.page:20(page/p)
362
+msgid "Removing the Tor Browser from your system is simple:"
363
+msgstr ""
364
+
365
+#: C/uninstalling.page:26(item/p)
366
+msgid "Locate your Tor Browser folder. The default location is your Desktop."
367
+msgstr ""
368
+
369
+#: C/uninstalling.page:29(item/p)
370
+msgid "Delete the Tor Browser folder."
371
+msgstr ""
372
+
373
+#: C/uninstalling.page:32(item/p)
374
+msgid "Empty your Trash"
375
+msgstr ""
376
+
377
+#: C/uninstalling.page:36(page/p)
378
+msgid "Note that your operating system's standard \"Uninstall\" utility is not used."
379
+msgstr ""
380
+
... ...
@@ -0,0 +1,380 @@
1
+msgid ""
2
+msgstr ""
3
+"Project-Id-Version: PACKAGE VERSION\n"
4
+"POT-Creation-Date: 2014-05-15 11:21+0200\n"
5
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
6
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
7
+"Language-Team: LANGUAGE <LL@li.org>\n"
8
+"MIME-Version: 1.0\n"
9
+"Content-Type: text/plain; charset=UTF-8\n"
10
+"Content-Transfer-Encoding: 8bit\n"
11
+
12
+#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
13
+msgctxt "_"
14
+msgid "translator-credits"
15
+msgstr ""
16
+
17
+#. This is a reference to an external file such as an image or video. When
18
+#. the file changes, the md5 hash will change to let you know you need to
19
+#. update your localized copy. The msgstr is not used at all. Set it to
20
+#. whatever you like once you have updated your copy of the file.
21
+#: C/bridges.page:144(media)
22
+msgctxt "_"
23
+msgid "external ref='media/tor-launcher-custom-bridges_en-US.png' md5='93365c2aa3fb4d627497e83f28a39b7e'"
24
+msgstr ""
25
+
26
+#: C/bridges.page:7(info/desc)
27
+msgid "What bridges are and how to use them."
28
+msgstr ""
29
+
30
+#: C/bridges.page:8(info/title)
31
+msgctxt "sort"
32
+msgid "05 Bridges"
33
+msgstr ""
34
+
35
+#: C/bridges.page:12(page/title)
36
+msgid "Bridges"
37
+msgstr ""
38
+
39
+#: C/bridges.page:14(page/p)
40
+msgid "Bridges are quiet gateways into the Tor Network. Like Tor relays, they are run by volunteers. Unlike relays, they are not listed publicly. Using bridges disguise the fact that one is using Tor."
41
+msgstr ""
42
+
43
+#: C/bridges.page:20(page/p)
44
+msgid "Currently there are five bridge types, or transports, available. More are being developed."
45
+msgstr ""
46
+
47
+#: C/bridges.page:27(td/p)
48
+msgid "ORPort"
49
+msgstr ""
50
+
51
+#: C/bridges.page:32(td/p)
52
+msgid "Requesting 'bridges' without specifying the bridge type, will return ORPort bridges, also called Vanilla bridges. ORPort bridges are NOT reliable for circumventing censorship or national firewalls. ORPort bridges can be useful as trusted entry points into the Tor network."
53
+msgstr ""
54
+
55
+#: C/bridges.page:42(td/p)
56
+msgid "obfs2"
57
+msgstr ""
58
+
59
+#: C/bridges.page:47(td/p)
60
+msgid "Censors have learned how to identify obfs2 bridges. This transport is being deprecated."
61
+msgstr ""
62
+
63
+#: C/bridges.page:55(td/p)
64
+msgid "obfs3"
65
+msgstr ""
66
+
67
+#: C/bridges.page:60(td/p)
68
+msgid "Obfsproxy disguises Tor traffic as random noise. obfs3 bridges work almost everywhere. A few obfs3 bridges have been blocked."
69
+msgstr ""
70
+
71
+#: C/bridges.page:68(td/p)
72
+msgid "Scramblesuit"
73
+msgstr ""
74
+
75
+#: C/bridges.page:73(td/p)
76
+msgid "Scramblesuit is an additional tool for the obfsproxy transport. Scramblesuit bridges are designed to be hard to identify and hard to block."
77
+msgstr ""
78
+
79
+#: C/bridges.page:82(td/p)
80
+msgid "FTE"
81
+msgstr ""
82
+
83
+#: C/bridges.page:87(td/p)
84
+msgid "Format-Transforming Encryption disguises Tor traffic as web (HTTP) traffic or other types of internet traffic. FTE bridges are effective, but in limited supply."
85
+msgstr ""
86
+
87
+#: C/bridges.page:96(page/p)
88
+msgid "(Note that flashproxy is a Pluggable Transport, but does not rely on bridges.)"
89
+msgstr ""
90
+
91
+#: C/bridges.page:100(page/p)
92
+msgid "There are four ways to get a bridge."
93
+msgstr ""
94
+
95
+#: C/bridges.page:106(item/p)
96
+msgid "Visit <link href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</link> and follow the instructions."
97
+msgstr ""
98
+
99
+#: C/bridges.page:111(item/p)
100
+msgid "Email bridges@bridges.torproject.org from a gmail or yahoo email address. Put <cmd>get bridges</cmd> in the body for ORPort bridges or <cmd>transport=obfs3</cmd> for obfs3 bridges."
101
+msgstr ""
102
+
103
+#: C/bridges.page:118(item/p)
104
+msgid "Politely ask a human at help@rt.torproject.org if you cannot access either of the first two methods."
105
+msgstr ""
106
+
107
+#: C/bridges.page:124(item/p)
108
+msgid "Install and configure a Tor instance to be bridge for yourself. The computer acting as a bridge must have uncensored internet access to the Tor network. A full installation guide can be found at <link href=\"https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en\">https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en</link>"
109
+msgstr ""
110
+
111
+#: C/bridges.page:133(page/p)
112
+msgid "Enter the bridge information you get from any of the above steps in Tor-launcher."
113
+msgstr ""
114
+
115
+#: C/bridges.page:138(page/p)
116
+msgid "Choose yes when asked if your Internet Service Provider blocks connections to the Tor network. Select 'Use custom bridges' and enter each bridge identifier on its own line."
117
+msgstr ""
118
+
119
+#: C/bridges.page:146(page/p)
120
+msgid "Click Connect. Using bridges slow down the connection. If the connection fails, the bridges you received may be down. Get more and try again."
121
+msgstr ""
122
+
123
+#. This is a reference to an external file such as an image or video. When
124
+#. the file changes, the md5 hash will change to let you know you need to
125
+#. update your localized copy. The msgstr is not used at all. Set it to
126
+#. whatever you like once you have updated your copy of the file.
127
+#: C/circumvention.page:21(media)
128
+msgctxt "_"
129
+msgid "external ref='media/tor-launcher-configure_en-US.png' md5='966f4bafcb829e59b2b84d08144d885e'"
130
+msgstr ""
131
+
132
+#. This is a reference to an external file such as an image or video. When
133
+#. the file changes, the md5 hash will change to let you know you need to
134
+#. update your localized copy. The msgstr is not used at all. Set it to
135
+#. whatever you like once you have updated your copy of the file.
136
+#: C/circumvention.page:28(media)
137
+msgctxt "_"
138
+msgid "external ref='media/tor-launcher-wizard_en-US.png' md5='21f80fc3f4e34359bfdc44684d7da09d'"
139
+msgstr ""
140
+
141
+#. This is a reference to an external file such as an image or video. When
142
+#. the file changes, the md5 hash will change to let you know you need to
143
+#. update your localized copy. The msgstr is not used at all. Set it to
144
+#. whatever you like once you have updated your copy of the file.
145
+#: C/circumvention.page:36(media)
146
+msgctxt "_"
147
+msgid "external ref='media/tor-launcher-provided-bridges_en-US.png' md5='70524dccb698a21bb1d20223461e3272'"
148
+msgstr ""
149
+
150
+#: C/circumvention.page:7(info/title)
151
+msgctxt "sort"
152
+msgid "04 Circumvention"
153
+msgstr ""
154
+
155
+#: C/circumvention.page:8(info/desc)
156
+msgid "What to do if the Tor network is blocked."
157
+msgstr ""
158
+
159
+#: C/circumvention.page:12(page/title)
160
+msgid "Circumvention"
161
+msgstr ""
162
+
163
+#: C/circumvention.page:14(page/p)
164
+msgid "Some firewalls can detect and block connections to Tor. The Tor Browser includes some circumvention tools for getting around blocking firewalls. These circumvention tools are called Pluggable Transports. To turn them on, click \"Configure\" in the Tor launcher window."
165
+msgstr ""
166
+
167
+#: C/circumvention.page:23(page/p)
168
+msgid "Select yes when asked if your internet service provider blocks connections to Tor.\""
169
+msgstr ""
170
+
171
+#: C/circumvention.page:30(page/p)
172
+msgid "Select \"Connect with provided bridges\". Tor Browser has three Pluggable Transports to choose from. If one fails to get you online, try selecting a different transport."
173
+msgstr ""
174
+
175
+#: C/circumvention.page:38(page/p)
176
+msgid "If you try all three transports, and none of them get you online, select \"Enter custom bridges\", and enter bridges manually. Read the <link xref=\"bridges\">Getting Bridges</link> section for instructions on getting custom bridges."
177
+msgstr ""
178
+
179
+#. This is a reference to an external file such as an image or video. When
180
+#. the file changes, the md5 hash will change to let you know you need to
181
+#. update your localized copy. The msgstr is not used at all. Set it to
182
+#. whatever you like once you have updated your copy of the file.
183
+#: C/how-tor-works.page:19(media)
184
+msgctxt "_"
185
+msgid "external ref='media/how-tor-works.png' md5='6fe4151a88b7a518466f0582e40ccc8c'"
186
+msgstr ""
187
+
188
+#: C/how-tor-works.page:6(info/title)
189
+msgctxt "sort"
190
+msgid "01 Tor"
191
+msgstr ""
192
+
193
+#: C/how-tor-works.page:7(info/desc)
194
+msgid "How Tor works."
195
+msgstr ""
196
+
197
+#: C/how-tor-works.page:11(page/title)
198
+msgid "Tor"
199
+msgstr ""
200
+
201
+#: C/how-tor-works.page:12(page/p)
202
+msgid "Tor is a network of virtual tunnels that allows you to improve your privacy and security on the Internet. Tor works by sending your traffic through three random servers (also known as <em>relays</em>) in the Tor network, before the traffic is sent out onto the public Internet"
203
+msgstr ""
204
+
205
+#: C/how-tor-works.page:20(page/p)
206
+msgid "The image above illustrates a user browsing to different websites over Tor. The green monitors represent relays in the Tor network, while the three keys represent the layers of encryption between the user and each relay."
207
+msgstr ""
208
+
209
+#: C/how-tor-works.page:26(page/p)
210
+msgid "Tor will anonymize the origin of your traffic, and it will encrypt everything between you and the Tor network. Tor will also encrypt your traffic inside the Tor network, but it cannot encrypt your traffic between the Tor network and its final destination."
211
+msgstr ""
212
+
213
+#: C/how-tor-works.page:32(page/p)
214
+msgid "If you are communicating sensitive information, for example when logging on to a website with a username and password, make sure that you are using HTTPS (e.g. <input><em>https</em>://torproject.org/</input>, not <input><em>http</em>://torproject.org/</input>)."
215
+msgstr ""
216
+
217
+#: C/index.page:6(page/title)
218
+msgid "Tor Browser Help"
219
+msgstr ""
220
+
221
+#: C/index.page:7(page/p)
222
+msgid "Version: UNKNOWN-dirty"
223
+msgstr ""
224
+
225
+#: C/known-issues.page:7(info/desc)
226
+msgid "A list of known issues."
227
+msgstr ""
228
+
229
+#: C/known-issues.page:8(info/title)
230
+msgctxt "sort"
231
+msgid "03 Known Issues"
232
+msgstr ""
233
+
234
+#: C/known-issues.page:12(page/title)
235
+msgid "Known Issues"
236
+msgstr ""
237
+
238
+#: C/known-issues.page:16(item/p)
239
+msgid "The following firewall software have been known to interfere with Tor and may need to be temporarily disabled:"
240
+msgstr ""
241
+
242
+#: C/known-issues.page:20(item/p)
243
+msgid "Webroot SecureAnywhere"
244
+msgstr ""
245
+
246
+#: C/known-issues.page:23(item/p)
247
+msgid "Kaspersky Internet Security 2012"
248
+msgstr ""
249
+
250
+#: C/known-issues.page:26(item/p)
251
+msgid "Sophos Antivirus for Mac"
252
+msgstr ""
253
+
254
+#: C/known-issues.page:29(item/p)
255
+msgid "Microsoft Security Essentials"
256
+msgstr ""
257
+
258
+#: C/known-issues.page:34(item/p)
259
+msgid "Videos that require Adobe Flash are unavailable. Flash is disabled for security reasons. Most YouTube videos can be played with HTML5 by visiting the video's \"Embed\" → \"Share\" link."
260
+msgstr ""
261
+
262
+#: C/known-issues.page:41(item/p)
263
+msgid "Tor can not use a bridge if a proxy is set."
264
+msgstr ""
265
+
266
+#: C/known-issues.page:46(item/p)
267
+msgid "The Tor Browser package is dated January 1, 2000 00:00:00 UTC. This is to ensure that each software build is exactly reproducible."
268
+msgstr ""
269
+
270
+#: C/known-issues.page:52(item/p)
271
+msgid "To run Tor Browser on Ubuntu, users need to execute a shell script. Open \"Files\" (Unity's explorer), open Preferences → Behavior Tab → Set \"Run executable text files when they are opened\" to \"Ask every time\", then OK. Tor Browser can also be started from the command line by running"
272
+msgstr ""
273
+
274
+#: C/known-issues.page:58(item/code)
275
+#, no-wrap
276
+msgid ""
277
+"\n"
278
+"    ./start-tor-browser\n"
279
+"    "
280
+msgstr ""
281
+
282
+#: C/known-issues.page:61(item/p)
283
+msgid "from inside the Tor Browser directory."
284
+msgstr ""
285
+
286
+#: C/known-issues.page:66(page/p)
287
+msgid "If you have an issue with Tor Browser that isn't on this list, feel free to email help@rt.torproject.org."
288
+msgstr ""
289
+
290
+#. This is a reference to an external file such as an image or video. When
291
+#. the file changes, the md5 hash will change to let you know you need to
292
+#. update your localized copy. The msgstr is not used at all. Set it to
293
+#. whatever you like once you have updated your copy of the file.
294
+#: C/troubleshooting.page:19(media)
295
+msgctxt "_"
296
+msgid "external ref='media/tor-launcher-connect_en-US.png' md5='03118f523f4cbc7c001da1ddacc9e394'"
297
+msgstr ""
298
+
299
+#: C/troubleshooting.page:7(info/title)
300
+msgctxt "sort"
301
+msgid "02 Troubleshooting"
302
+msgstr ""
303
+
304
+#: C/troubleshooting.page:8(info/desc)
305
+msgid "What to do if Tor Browser doesn't work."
306
+msgstr ""
307
+
308
+#: C/troubleshooting.page:12(page/title)
309
+msgid "Troubleshooting"
310
+msgstr ""
311
+
312
+#: C/troubleshooting.page:14(page/p)
313
+msgid "The Tor Browser should get you online automatically after clicking the \"Connect\" button on the start up screen."
314
+msgstr ""
315
+
316
+#: C/troubleshooting.page:21(page/p)
317
+msgid "If it doesn't connect, there may be a simple fix. Try each of the following:"
318
+msgstr ""
319
+
320
+#: C/troubleshooting.page:27(item/p)
321
+msgid "Make sure another Tor Browser is not already running. If you're not sure if Tor Browser is running, restart your computer."
322
+msgstr ""
323
+
324
+#: C/troubleshooting.page:31(item/p)
325
+msgid "'Allow' Tor in your antivirus program."
326
+msgstr ""
327
+
328
+#: C/troubleshooting.page:34(item/p)
329
+msgid "Temporarily disable your firewall."
330
+msgstr ""
331
+
332
+#: C/troubleshooting.page:37(item/p)
333
+msgid "Delete Tor Browser and install it again. If updating, do not overwrite your previous Tor Browser files."
334
+msgstr ""
335
+
336
+#: C/troubleshooting.page:42(page/p)
337
+msgid "If you still can't connect, your internet service provider might be censoring connections to Tor. Follow the instructions in the <link xref=\"circumvention\">Circumvention</link> section."
338
+msgstr ""
339
+
340
+#: C/troubleshooting.page:48(page/p)
341
+msgid "If the above steps do not address your problem, email help@rt.torproject.org with your operating system, the details of your problem, and what you've already tried."
342
+msgstr ""
343
+
344
+#: C/uninstalling.page:7(info/desc)
345
+msgid "How to remove Tor Browser from your system."
346
+msgstr ""
347
+
348
+#: C/uninstalling.page:8(info/title)
349
+msgctxt "sort"
350
+msgid "06 Uninstalling"
351
+msgstr ""
352
+
353
+#: C/uninstalling.page:12(page/title)
354
+msgid "Uninstalling"
355
+msgstr ""
356
+
357
+#: C/uninstalling.page:14(page/p)
358
+msgid "The Tor Browser does not affect any of the existing software or settings on your computer. Uninstalling Tor Browser will not affect your system's software or settings either."
359
+msgstr ""
360
+
361
+#: C/uninstalling.page:20(page/p)
362
+msgid "Removing the Tor Browser from your system is simple:"
363
+msgstr ""
364
+
365
+#: C/uninstalling.page:26(item/p)
366
+msgid "Locate your Tor Browser folder. The default location is your Desktop."
367
+msgstr ""
368
+
369
+#: C/uninstalling.page:29(item/p)
370
+msgid "Delete the Tor Browser folder."
371
+msgstr ""
372
+
373
+#: C/uninstalling.page:32(item/p)
374
+msgid "Empty your Trash"
375
+msgstr ""
376
+
377
+#: C/uninstalling.page:36(page/p)
378
+msgid "Note that your operating system's standard \"Uninstall\" utility is not used."
379
+msgstr ""
380
+
... ...
@@ -0,0 +1 @@
1
+@VERSION@
... ...
@@ -0,0 +1,380 @@
1
+msgid ""
2
+msgstr ""
3
+"Project-Id-Version: PACKAGE VERSION\n"
4
+"POT-Creation-Date: 2014-05-15 11:21+0200\n"
5
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
6
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
7
+"Language-Team: LANGUAGE <LL@li.org>\n"
8
+"MIME-Version: 1.0\n"
9
+"Content-Type: text/plain; charset=UTF-8\n"
10
+"Content-Transfer-Encoding: 8bit\n"
11
+
12
+#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
13
+msgctxt "_"
14
+msgid "translator-credits"
15
+msgstr ""
16
+
17
+#. This is a reference to an external file such as an image or video. When
18
+#. the file changes, the md5 hash will change to let you know you need to
19
+#. update your localized copy. The msgstr is not used at all. Set it to
20
+#. whatever you like once you have updated your copy of the file.
21
+#: C/bridges.page:144(media)
22
+msgctxt "_"
23
+msgid "external ref='media/tor-launcher-custom-bridges_en-US.png' md5='93365c2aa3fb4d627497e83f28a39b7e'"
24
+msgstr ""
25
+
26
+#: C/bridges.page:7(info/desc)
27
+msgid "What bridges are and how to use them."
28
+msgstr ""
29
+
30
+#: C/bridges.page:8(info/title)
31
+msgctxt "sort"
32
+msgid "05 Bridges"
33
+msgstr ""
34
+
35
+#: C/bridges.page:12(page/title)
36
+msgid "Bridges"
37
+msgstr ""
38
+
39
+#: C/bridges.page:14(page/p)
40
+msgid "Bridges are quiet gateways into the Tor Network. Like Tor relays, they are run by volunteers. Unlike relays, they are not listed publicly. Using bridges disguise the fact that one is using Tor."
41
+msgstr ""
42
+
43
+#: C/bridges.page:20(page/p)
44
+msgid "Currently there are five bridge types, or transports, available. More are being developed."
45
+msgstr ""
46
+
47
+#: C/bridges.page:27(td/p)
48
+msgid "ORPort"
49
+msgstr ""
50
+
51
+#: C/bridges.page:32(td/p)
52
+msgid "Requesting 'bridges' without specifying the bridge type, will return ORPort bridges, also called Vanilla bridges. ORPort bridges are NOT reliable for circumventing censorship or national firewalls. ORPort bridges can be useful as trusted entry points into the Tor network."
53
+msgstr ""
54
+
55
+#: C/bridges.page:42(td/p)
56
+msgid "obfs2"
57
+msgstr ""
58
+
59
+#: C/bridges.page:47(td/p)
60
+msgid "Censors have learned how to identify obfs2 bridges. This transport is being deprecated."
61
+msgstr ""
62
+
63
+#: C/bridges.page:55(td/p)
64
+msgid "obfs3"
65
+msgstr ""
66
+
67
+#: C/bridges.page:60(td/p)
68
+msgid "Obfsproxy disguises Tor traffic as random noise. obfs3 bridges work almost everywhere. A few obfs3 bridges have been blocked."
69
+msgstr ""
70
+
71
+#: C/bridges.page:68(td/p)
72
+msgid "Scramblesuit"
73
+msgstr ""
74
+
75
+#: C/bridges.page:73(td/p)
76
+msgid "Scramblesuit is an additional tool for the obfsproxy transport. Scramblesuit bridges are designed to be hard to identify and hard to block."
77
+msgstr ""
78
+
79
+#: C/bridges.page:82(td/p)
80
+msgid "FTE"
81
+msgstr ""
82
+
83
+#: C/bridges.page:87(td/p)
84
+msgid "Format-Transforming Encryption disguises Tor traffic as web (HTTP) traffic or other types of internet traffic. FTE bridges are effective, but in limited supply."
85
+msgstr ""
86
+
87
+#: C/bridges.page:96(page/p)
88
+msgid "(Note that flashproxy is a Pluggable Transport, but does not rely on bridges.)"
89
+msgstr ""
90
+
91
+#: C/bridges.page:100(page/p)
92
+msgid "There are four ways to get a bridge."
93
+msgstr ""
94
+
95
+#: C/bridges.page:106(item/p)
96
+msgid "Visit <link href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</link> and follow the instructions."
97
+msgstr ""
98
+
99
+#: C/bridges.page:111(item/p)
100
+msgid "Email bridges@bridges.torproject.org from a gmail or yahoo email address. Put <cmd>get bridges</cmd> in the body for ORPort bridges or <cmd>transport=obfs3</cmd> for obfs3 bridges."
101
+msgstr ""
102
+
103
+#: C/bridges.page:118(item/p)
104
+msgid "Politely ask a human at help@rt.torproject.org if you cannot access either of the first two methods."
105
+msgstr ""
106
+
107
+#: C/bridges.page:124(item/p)
108
+msgid "Install and configure a Tor instance to be bridge for yourself. The computer acting as a bridge must have uncensored internet access to the Tor network. A full installation guide can be found at <link href=\"https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en\">https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en</link>"
109
+msgstr ""
110
+
111
+#: C/bridges.page:133(page/p)
112
+msgid "Enter the bridge information you get from any of the above steps in Tor-launcher."
113
+msgstr ""
114
+
115
+#: C/bridges.page:138(page/p)
116
+msgid "Choose yes when asked if your Internet Service Provider blocks connections to the Tor network. Select 'Use custom bridges' and enter each bridge identifier on its own line."
117
+msgstr ""
118
+
119
+#: C/bridges.page:146(page/p)
120
+msgid "Click Connect. Using bridges slow down the connection. If the connection fails, the bridges you received may be down. Get more and try again."
121
+msgstr ""
122
+
123
+#. This is a reference to an external file such as an image or video. When
124
+#. the file changes, the md5 hash will change to let you know you need to
125
+#. update your localized copy. The msgstr is not used at all. Set it to
126
+#. whatever you like once you have updated your copy of the file.
127
+#: C/circumvention.page:21(media)
128
+msgctxt "_"
129
+msgid "external ref='media/tor-launcher-configure_en-US.png' md5='966f4bafcb829e59b2b84d08144d885e'"
130
+msgstr ""
131
+
132
+#. This is a reference to an external file such as an image or video. When
133
+#. the file changes, the md5 hash will change to let you know you need to
134
+#. update your localized copy. The msgstr is not used at all. Set it to
135
+#. whatever you like once you have updated your copy of the file.
136
+#: C/circumvention.page:28(media)
137
+msgctxt "_"
138
+msgid "external ref='media/tor-launcher-wizard_en-US.png' md5='21f80fc3f4e34359bfdc44684d7da09d'"
139
+msgstr ""
140
+
141
+#. This is a reference to an external file such as an image or video. When
142
+#. the file changes, the md5 hash will change to let you know you need to
143
+#. update your localized copy. The msgstr is not used at all. Set it to
144
+#. whatever you like once you have updated your copy of the file.
145
+#: C/circumvention.page:36(media)
146
+msgctxt "_"
147
+msgid "external ref='media/tor-launcher-provided-bridges_en-US.png' md5='70524dccb698a21bb1d20223461e3272'"
148
+msgstr ""
149
+
150
+#: C/circumvention.page:7(info/title)
151
+msgctxt "sort"
152
+msgid "04 Circumvention"
153
+msgstr ""
154
+
155
+#: C/circumvention.page:8(info/desc)
156
+msgid "What to do if the Tor network is blocked."
157
+msgstr ""
158
+
159
+#: C/circumvention.page:12(page/title)
160
+msgid "Circumvention"
161
+msgstr ""
162
+
163
+#: C/circumvention.page:14(page/p)
164
+msgid "Some firewalls can detect and block connections to Tor. The Tor Browser includes some circumvention tools for getting around blocking firewalls. These circumvention tools are called Pluggable Transports. To turn them on, click \"Configure\" in the Tor launcher window."
165
+msgstr ""
166
+
167
+#: C/circumvention.page:23(page/p)
168
+msgid "Select yes when asked if your internet service provider blocks connections to Tor.\""
169
+msgstr ""
170
+
171
+#: C/circumvention.page:30(page/p)
172
+msgid "Select \"Connect with provided bridges\". Tor Browser has three Pluggable Transports to choose from. If one fails to get you online, try selecting a different transport."
173
+msgstr ""
174
+
175
+#: C/circumvention.page:38(page/p)
176
+msgid "If you try all three transports, and none of them get you online, select \"Enter custom bridges\", and enter bridges manually. Read the <link xref=\"bridges\">Getting Bridges</link> section for instructions on getting custom bridges."
177
+msgstr ""
178
+
179
+#. This is a reference to an external file such as an image or video. When
180
+#. the file changes, the md5 hash will change to let you know you need to
181
+#. update your localized copy. The msgstr is not used at all. Set it to
182
+#. whatever you like once you have updated your copy of the file.
183
+#: C/how-tor-works.page:19(media)
184
+msgctxt "_"
185
+msgid "external ref='media/how-tor-works.png' md5='6fe4151a88b7a518466f0582e40ccc8c'"
186
+msgstr ""
187
+
188
+#: C/how-tor-works.page:6(info/title)
189
+msgctxt "sort"
190
+msgid "01 Tor"
191
+msgstr ""
192
+
193
+#: C/how-tor-works.page:7(info/desc)
194
+msgid "How Tor works."
195
+msgstr ""
196
+
197
+#: C/how-tor-works.page:11(page/title)
198
+msgid "Tor"
199
+msgstr ""
200
+
201
+#: C/how-tor-works.page:12(page/p)
202
+msgid "Tor is a network of virtual tunnels that allows you to improve your privacy and security on the Internet. Tor works by sending your traffic through three random servers (also known as <em>relays</em>) in the Tor network, before the traffic is sent out onto the public Internet"
203
+msgstr ""
204
+
205
+#: C/how-tor-works.page:20(page/p)
206
+msgid "The image above illustrates a user browsing to different websites over Tor. The green monitors represent relays in the Tor network, while the three keys represent the layers of encryption between the user and each relay."
207
+msgstr ""
208
+
209
+#: C/how-tor-works.page:26(page/p)
210
+msgid "Tor will anonymize the origin of your traffic, and it will encrypt everything between you and the Tor network. Tor will also encrypt your traffic inside the Tor network, but it cannot encrypt your traffic between the Tor network and its final destination."
211
+msgstr ""
212
+
213
+#: C/how-tor-works.page:32(page/p)
214
+msgid "If you are communicating sensitive information, for example when logging on to a website with a username and password, make sure that you are using HTTPS (e.g. <input><em>https</em>://torproject.org/</input>, not <input><em>http</em>://torproject.org/</input>)."
215
+msgstr ""
216
+
217
+#: C/index.page:6(page/title)
218
+msgid "Tor Browser Help"
219
+msgstr ""
220
+
221
+#: C/index.page:7(page/p)
222
+msgid "Version: UNKNOWN-dirty"
223
+msgstr ""
224
+
225
+#: C/known-issues.page:7(info/desc)
226
+msgid "A list of known issues."
227
+msgstr ""
228
+
229
+#: C/known-issues.page:8(info/title)
230
+msgctxt "sort"
231
+msgid "03 Known Issues"
232
+msgstr ""
233
+
234
+#: C/known-issues.page:12(page/title)
235
+msgid "Known Issues"
236
+msgstr ""
237
+
238
+#: C/known-issues.page:16(item/p)
239
+msgid "The following firewall software have been known to interfere with Tor and may need to be temporarily disabled:"
240
+msgstr ""
241
+
242
+#: C/known-issues.page:20(item/p)
243
+msgid "Webroot SecureAnywhere"
244
+msgstr ""
245
+
246
+#: C/known-issues.page:23(item/p)
247
+msgid "Kaspersky Internet Security 2012"
248
+msgstr ""
249
+
250
+#: C/known-issues.page:26(item/p)
251
+msgid "Sophos Antivirus for Mac"
252
+msgstr ""
253
+
254
+#: C/known-issues.page:29(item/p)
255
+msgid "Microsoft Security Essentials"
256
+msgstr ""
257
+
258
+#: C/known-issues.page:34(item/p)
259
+msgid "Videos that require Adobe Flash are unavailable. Flash is disabled for security reasons. Most YouTube videos can be played with HTML5 by visiting the video's \"Embed\" → \"Share\" link."
260
+msgstr ""
261
+
262
+#: C/known-issues.page:41(item/p)
263
+msgid "Tor can not use a bridge if a proxy is set."
264
+msgstr ""
265
+
266
+#: C/known-issues.page:46(item/p)
267
+msgid "The Tor Browser package is dated January 1, 2000 00:00:00 UTC. This is to ensure that each software build is exactly reproducible."
268
+msgstr ""
269
+
270
+#: C/known-issues.page:52(item/p)
271
+msgid "To run Tor Browser on Ubuntu, users need to execute a shell script. Open \"Files\" (Unity's explorer), open Preferences → Behavior Tab → Set \"Run executable text files when they are opened\" to \"Ask every time\", then OK. Tor Browser can also be started from the command line by running"
272
+msgstr ""
273
+
274
+#: C/known-issues.page:58(item/code)
275
+#, no-wrap
276
+msgid ""
277
+"\n"
278
+"    ./start-tor-browser\n"
279
+"    "
280
+msgstr ""
281
+
282
+#: C/known-issues.page:61(item/p)
283
+msgid "from inside the Tor Browser directory."
284
+msgstr ""
285
+
286
+#: C/known-issues.page:66(page/p)
287
+msgid "If you have an issue with Tor Browser that isn't on this list, feel free to email help@rt.torproject.org."
288
+msgstr ""
289
+
290
+#. This is a reference to an external file such as an image or video. When
291
+#. the file changes, the md5 hash will change to let you know you need to
292
+#. update your localized copy. The msgstr is not used at all. Set it to
293
+#. whatever you like once you have updated your copy of the file.
294
+#: C/troubleshooting.page:19(media)
295
+msgctxt "_"
296
+msgid "external ref='media/tor-launcher-connect_en-US.png' md5='03118f523f4cbc7c001da1ddacc9e394'"
297
+msgstr ""
298
+
299
+#: C/troubleshooting.page:7(info/title)
300
+msgctxt "sort"
301
+msgid "02 Troubleshooting"
302
+msgstr ""
303
+
304
+#: C/troubleshooting.page:8(info/desc)
305
+msgid "What to do if Tor Browser doesn't work."
306
+msgstr ""
307
+
308
+#: C/troubleshooting.page:12(page/title)
309
+msgid "Troubleshooting"
310
+msgstr ""
311
+
312
+#: C/troubleshooting.page:14(page/p)
313
+msgid "The Tor Browser should get you online automatically after clicking the \"Connect\" button on the start up screen."
314
+msgstr ""
315
+
316
+#: C/troubleshooting.page:21(page/p)
317
+msgid "If it doesn't connect, there may be a simple fix. Try each of the following:"
318
+msgstr ""
319
+
320
+#: C/troubleshooting.page:27(item/p)
321
+msgid "Make sure another Tor Browser is not already running. If you're not sure if Tor Browser is running, restart your computer."
322
+msgstr ""
323
+
324
+#: C/troubleshooting.page:31(item/p)
325
+msgid "'Allow' Tor in your antivirus program."
326
+msgstr ""
327
+
328
+#: C/troubleshooting.page:34(item/p)
329
+msgid "Temporarily disable your firewall."
330
+msgstr ""
331
+
332
+#: C/troubleshooting.page:37(item/p)
333
+msgid "Delete Tor Browser and install it again. If updating, do not overwrite your previous Tor Browser files."
334
+msgstr ""
335
+
336
+#: C/troubleshooting.page:42(page/p)
337
+msgid "If you still can't connect, your internet service provider might be censoring connections to Tor. Follow the instructions in the <link xref=\"circumvention\">Circumvention</link> section."
338
+msgstr ""
339
+
340
+#: C/troubleshooting.page:48(page/p)
341
+msgid "If the above steps do not address your problem, email help@rt.torproject.org with your operating system, the details of your problem, and what you've already tried."
342
+msgstr ""
343
+
344
+#: C/uninstalling.page:7(info/desc)
345
+msgid "How to remove Tor Browser from your system."
346
+msgstr ""
347
+
348
+#: C/uninstalling.page:8(info/title)
349
+msgctxt "sort"
350
+msgid "06 Uninstalling"
351
+msgstr ""
352
+
353
+#: C/uninstalling.page:12(page/title)
354
+msgid "Uninstalling"
355
+msgstr ""
356
+
357
+#: C/uninstalling.page:14(page/p)
358
+msgid "The Tor Browser does not affect any of the existing software or settings on your computer. Uninstalling Tor Browser will not affect your system's software or settings either."
359
+msgstr ""
360
+
361
+#: C/uninstalling.page:20(page/p)
362
+msgid "Removing the Tor Browser from your system is simple:"
363
+msgstr ""
364
+
365
+#: C/uninstalling.page:26(item/p)
366
+msgid "Locate your Tor Browser folder. The default location is your Desktop."
367
+msgstr ""
368
+
369
+#: C/uninstalling.page:29(item/p)
370
+msgid "Delete the Tor Browser folder."
371
+msgstr ""
372
+
373
+#: C/uninstalling.page:32(item/p)
374
+msgid "Empty your Trash"
375
+msgstr ""
376
+
377
+#: C/uninstalling.page:36(page/p)
378
+msgid "Note that your operating system's standard \"Uninstall\" utility is not used."
379
+msgstr ""
380
+
... ...
@@ -0,0 +1,380 @@
1
+msgid ""
2
+msgstr ""
3
+"Project-Id-Version: PACKAGE VERSION\n"
4
+"POT-Creation-Date: 2014-05-15 11:21+0200\n"
5
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
6
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
7
+"Language-Team: LANGUAGE <LL@li.org>\n"
8
+"MIME-Version: 1.0\n"
9
+"Content-Type: text/plain; charset=UTF-8\n"
10
+"Content-Transfer-Encoding: 8bit\n"
11
+
12
+#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
13
+msgctxt "_"
14
+msgid "translator-credits"
15
+msgstr ""
16
+
17
+#. This is a reference to an external file such as an image or video. When
18
+#. the file changes, the md5 hash will change to let you know you need to
19
+#. update your localized copy. The msgstr is not used at all. Set it to
20
+#. whatever you like once you have updated your copy of the file.
21
+#: C/bridges.page:144(media)
22
+msgctxt "_"
23
+msgid "external ref='media/tor-launcher-custom-bridges_en-US.png' md5='93365c2aa3fb4d627497e83f28a39b7e'"
24
+msgstr ""
25
+
26
+#: C/bridges.page:7(info/desc)
27
+msgid "What bridges are and how to use them."
28
+msgstr ""
29
+
30
+#: C/bridges.page:8(info/title)
31
+msgctxt "sort"
32
+msgid "05 Bridges"
33
+msgstr ""
34
+
35
+#: C/bridges.page:12(page/title)
36
+msgid "Bridges"
37
+msgstr ""
38
+
39
+#: C/bridges.page:14(page/p)
40
+msgid "Bridges are quiet gateways into the Tor Network. Like Tor relays, they are run by volunteers. Unlike relays, they are not listed publicly. Using bridges disguise the fact that one is using Tor."
41
+msgstr ""
42
+
43
+#: C/bridges.page:20(page/p)
44
+msgid "Currently there are five bridge types, or transports, available. More are being developed."
45
+msgstr ""
46
+
47
+#: C/bridges.page:27(td/p)
48
+msgid "ORPort"
49
+msgstr ""
50
+
51
+#: C/bridges.page:32(td/p)
52
+msgid "Requesting 'bridges' without specifying the bridge type, will return ORPort bridges, also called Vanilla bridges. ORPort bridges are NOT reliable for circumventing censorship or national firewalls. ORPort bridges can be useful as trusted entry points into the Tor network."
53
+msgstr ""
54
+
55
+#: C/bridges.page:42(td/p)
56
+msgid "obfs2"
57
+msgstr ""
58
+
59
+#: C/bridges.page:47(td/p)
60
+msgid "Censors have learned how to identify obfs2 bridges. This transport is being deprecated."
61
+msgstr ""
62
+
63
+#: C/bridges.page:55(td/p)
64
+msgid "obfs3"
65
+msgstr ""
66
+
67
+#: C/bridges.page:60(td/p)
68
+msgid "Obfsproxy disguises Tor traffic as random noise. obfs3 bridges work almost everywhere. A few obfs3 bridges have been blocked."
69
+msgstr ""
70
+
71
+#: C/bridges.page:68(td/p)
72
+msgid "Scramblesuit"
73
+msgstr ""
74
+
75
+#: C/bridges.page:73(td/p)
76
+msgid "Scramblesuit is an additional tool for the obfsproxy transport. Scramblesuit bridges are designed to be hard to identify and hard to block."
77
+msgstr ""
78
+
79
+#: C/bridges.page:82(td/p)
80
+msgid "FTE"
81
+msgstr ""
82
+
83
+#: C/bridges.page:87(td/p)
84
+msgid "Format-Transforming Encryption disguises Tor traffic as web (HTTP) traffic or other types of internet traffic. FTE bridges are effective, but in limited supply."
85
+msgstr ""
86
+
87
+#: C/bridges.page:96(page/p)
88
+msgid "(Note that flashproxy is a Pluggable Transport, but does not rely on bridges.)"
89
+msgstr ""
90
+
91
+#: C/bridges.page:100(page/p)
92
+msgid "There are four ways to get a bridge."
93
+msgstr ""
94
+
95
+#: C/bridges.page:106(item/p)
96
+msgid "Visit <link href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</link> and follow the instructions."
97
+msgstr ""
98
+
99
+#: C/bridges.page:111(item/p)
100
+msgid "Email bridges@bridges.torproject.org from a gmail or yahoo email address. Put <cmd>get bridges</cmd> in the body for ORPort bridges or <cmd>transport=obfs3</cmd> for obfs3 bridges."
101
+msgstr ""
102
+
103
+#: C/bridges.page:118(item/p)
104
+msgid "Politely ask a human at help@rt.torproject.org if you cannot access either of the first two methods."
105
+msgstr ""
106
+
107
+#: C/bridges.page:124(item/p)
108
+msgid "Install and configure a Tor instance to be bridge for yourself. The computer acting as a bridge must have uncensored internet access to the Tor network. A full installation guide can be found at <link href=\"https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en\">https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en</link>"
109
+msgstr ""
110
+
111
+#: C/bridges.page:133(page/p)
112
+msgid "Enter the bridge information you get from any of the above steps in Tor-launcher."
113
+msgstr ""
114
+
115
+#: C/bridges.page:138(page/p)
116
+msgid "Choose yes when asked if your Internet Service Provider blocks connections to the Tor network. Select 'Use custom bridges' and enter each bridge identifier on its own line."
117
+msgstr ""
118
+
119
+#: C/bridges.page:146(page/p)
120
+msgid "Click Connect. Using bridges slow down the connection. If the connection fails, the bridges you received may be down. Get more and try again."
121
+msgstr ""
122
+
123
+#. This is a reference to an external file such as an image or video. When
124
+#. the file changes, the md5 hash will change to let you know you need to
125
+#. update your localized copy. The msgstr is not used at all. Set it to
126
+#. whatever you like once you have updated your copy of the file.
127
+#: C/circumvention.page:21(media)
128
+msgctxt "_"
129
+msgid "external ref='media/tor-launcher-configure_en-US.png' md5='966f4bafcb829e59b2b84d08144d885e'"
130
+msgstr ""
131
+
132
+#. This is a reference to an external file such as an image or video. When
133
+#. the file changes, the md5 hash will change to let you know you need to
134
+#. update your localized copy. The msgstr is not used at all. Set it to
135
+#. whatever you like once you have updated your copy of the file.
136
+#: C/circumvention.page:28(media)
137
+msgctxt "_"
138
+msgid "external ref='media/tor-launcher-wizard_en-US.png' md5='21f80fc3f4e34359bfdc44684d7da09d'"
139
+msgstr ""
140
+
141
+#. This is a reference to an external file such as an image or video. When
142
+#. the file changes, the md5 hash will change to let you know you need to
143
+#. update your localized copy. The msgstr is not used at all. Set it to
144
+#. whatever you like once you have updated your copy of the file.
145
+#: C/circumvention.page:36(media)
146
+msgctxt "_"
147
+msgid "external ref='media/tor-launcher-provided-bridges_en-US.png' md5='70524dccb698a21bb1d20223461e3272'"
148
+msgstr ""
149
+
150
+#: C/circumvention.page:7(info/title)
151
+msgctxt "sort"
152
+msgid "04 Circumvention"
153
+msgstr ""
154
+
155
+#: C/circumvention.page:8(info/desc)
156
+msgid "What to do if the Tor network is blocked."
157
+msgstr ""
158
+
159
+#: C/circumvention.page:12(page/title)
160
+msgid "Circumvention"
161
+msgstr ""
162
+
163
+#: C/circumvention.page:14(page/p)
164
+msgid "Some firewalls can detect and block connections to Tor. The Tor Browser includes some circumvention tools for getting around blocking firewalls. These circumvention tools are called Pluggable Transports. To turn them on, click \"Configure\" in the Tor launcher window."
165
+msgstr ""
166
+
167
+#: C/circumvention.page:23(page/p)
168
+msgid "Select yes when asked if your internet service provider blocks connections to Tor.\""
169
+msgstr ""
170
+
171
+#: C/circumvention.page:30(page/p)
172
+msgid "Select \"Connect with provided bridges\". Tor Browser has three Pluggable Transports to choose from. If one fails to get you online, try selecting a different transport."
173
+msgstr ""
174
+
175
+#: C/circumvention.page:38(page/p)
176
+msgid "If you try all three transports, and none of them get you online, select \"Enter custom bridges\", and enter bridges manually. Read the <link xref=\"bridges\">Getting Bridges</link> section for instructions on getting custom bridges."
177
+msgstr ""
178
+
179
+#. This is a reference to an external file such as an image or video. When
180
+#. the file changes, the md5 hash will change to let you know you need to
181
+#. update your localized copy. The msgstr is not used at all. Set it to
182
+#. whatever you like once you have updated your copy of the file.
183
+#: C/how-tor-works.page:19(media)
184
+msgctxt "_"
185
+msgid "external ref='media/how-tor-works.png' md5='6fe4151a88b7a518466f0582e40ccc8c'"
186
+msgstr ""
187
+
188
+#: C/how-tor-works.page:6(info/title)
189
+msgctxt "sort"
190
+msgid "01 Tor"
191
+msgstr ""
192
+
193
+#: C/how-tor-works.page:7(info/desc)
194
+msgid "How Tor works."
195
+msgstr ""
196
+
197
+#: C/how-tor-works.page:11(page/title)
198
+msgid "Tor"
199
+msgstr ""
200
+
201
+#: C/how-tor-works.page:12(page/p)
202
+msgid "Tor is a network of virtual tunnels that allows you to improve your privacy and security on the Internet. Tor works by sending your traffic through three random servers (also known as <em>relays</em>) in the Tor network, before the traffic is sent out onto the public Internet"
203
+msgstr ""
204
+
205
+#: C/how-tor-works.page:20(page/p)
206
+msgid "The image above illustrates a user browsing to different websites over Tor. The green monitors represent relays in the Tor network, while the three keys represent the layers of encryption between the user and each relay."
207
+msgstr ""
208
+
209
+#: C/how-tor-works.page:26(page/p)
210
+msgid "Tor will anonymize the origin of your traffic, and it will encrypt everything between you and the Tor network. Tor will also encrypt your traffic inside the Tor network, but it cannot encrypt your traffic between the Tor network and its final destination."
211
+msgstr ""
212
+
213
+#: C/how-tor-works.page:32(page/p)
214
+msgid "If you are communicating sensitive information, for example when logging on to a website with a username and password, make sure that you are using HTTPS (e.g. <input><em>https</em>://torproject.org/</input>, not <input><em>http</em>://torproject.org/</input>)."
215
+msgstr ""
216
+
217
+#: C/index.page:6(page/title)
218
+msgid "Tor Browser Help"
219
+msgstr ""
220
+
221
+#: C/index.page:7(page/p)
222
+msgid "Version: UNKNOWN-dirty"
223
+msgstr ""
224
+
225
+#: C/known-issues.page:7(info/desc)
226
+msgid "A list of known issues."
227
+msgstr ""
228
+
229
+#: C/known-issues.page:8(info/title)
230
+msgctxt "sort"
231
+msgid "03 Known Issues"
232
+msgstr ""
233
+
234
+#: C/known-issues.page:12(page/title)
235
+msgid "Known Issues"
236
+msgstr ""
237
+
238
+#: C/known-issues.page:16(item/p)
239
+msgid "The following firewall software have been known to interfere with Tor and may need to be temporarily disabled:"
240
+msgstr ""
241
+
242
+#: C/known-issues.page:20(item/p)
243
+msgid "Webroot SecureAnywhere"
244
+msgstr ""
245
+
246
+#: C/known-issues.page:23(item/p)
247
+msgid "Kaspersky Internet Security 2012"
248
+msgstr ""
249
+
250
+#: C/known-issues.page:26(item/p)
251
+msgid "Sophos Antivirus for Mac"
252
+msgstr ""
253
+
254
+#: C/known-issues.page:29(item/p)
255
+msgid "Microsoft Security Essentials"
256
+msgstr ""
257
+
258
+#: C/known-issues.page:34(item/p)
259
+msgid "Videos that require Adobe Flash are unavailable. Flash is disabled for security reasons. Most YouTube videos can be played with HTML5 by visiting the video's \"Embed\" → \"Share\" link."
260
+msgstr ""
261
+
262
+#: C/known-issues.page:41(item/p)
263
+msgid "Tor can not use a bridge if a proxy is set."
264
+msgstr ""
265
+
266
+#: C/known-issues.page:46(item/p)
267
+msgid "The Tor Browser package is dated January 1, 2000 00:00:00 UTC. This is to ensure that each software build is exactly reproducible."
268
+msgstr ""
269
+
270
+#: C/known-issues.page:52(item/p)
271
+msgid "To run Tor Browser on Ubuntu, users need to execute a shell script. Open \"Files\" (Unity's explorer), open Preferences → Behavior Tab → Set \"Run executable text files when they are opened\" to \"Ask every time\", then OK. Tor Browser can also be started from the command line by running"
272
+msgstr ""
273
+
274
+#: C/known-issues.page:58(item/code)
275
+#, no-wrap
276
+msgid ""
277
+"\n"
278
+"    ./start-tor-browser\n"
279
+"    "
280
+msgstr ""
281
+
282
+#: C/known-issues.page:61(item/p)
283
+msgid "from inside the Tor Browser directory."
284
+msgstr ""
285
+
286
+#: C/known-issues.page:66(page/p)
287
+msgid "If you have an issue with Tor Browser that isn't on this list, feel free to email help@rt.torproject.org."
288
+msgstr ""
289
+
290
+#. This is a reference to an external file such as an image or video. When
291
+#. the file changes, the md5 hash will change to let you know you need to
292
+#. update your localized copy. The msgstr is not used at all. Set it to
293
+#. whatever you like once you have updated your copy of the file.
294
+#: C/troubleshooting.page:19(media)
295
+msgctxt "_"
296
+msgid "external ref='media/tor-launcher-connect_en-US.png' md5='03118f523f4cbc7c001da1ddacc9e394'"
297
+msgstr ""
298
+
299
+#: C/troubleshooting.page:7(info/title)
300
+msgctxt "sort"
301
+msgid "02 Troubleshooting"
302
+msgstr ""
303
+
304
+#: C/troubleshooting.page:8(info/desc)
305
+msgid "What to do if Tor Browser doesn't work."
306
+msgstr ""
307
+
308
+#: C/troubleshooting.page:12(page/title)
309
+msgid "Troubleshooting"
310
+msgstr ""
311
+
312
+#: C/troubleshooting.page:14(page/p)
313
+msgid "The Tor Browser should get you online automatically after clicking the \"Connect\" button on the start up screen."
314
+msgstr ""
315
+
316
+#: C/troubleshooting.page:21(page/p)
317
+msgid "If it doesn't connect, there may be a simple fix. Try each of the following:"
318
+msgstr ""
319
+
320
+#: C/troubleshooting.page:27(item/p)
321
+msgid "Make sure another Tor Browser is not already running. If you're not sure if Tor Browser is running, restart your computer."
322
+msgstr ""
323
+
324
+#: C/troubleshooting.page:31(item/p)
325
+msgid "'Allow' Tor in your antivirus program."
326
+msgstr ""
327
+
328
+#: C/troubleshooting.page:34(item/p)
329
+msgid "Temporarily disable your firewall."
330
+msgstr ""
331
+
332
+#: C/troubleshooting.page:37(item/p)
333
+msgid "Delete Tor Browser and install it again. If updating, do not overwrite your previous Tor Browser files."
334
+msgstr ""
335
+
336
+#: C/troubleshooting.page:42(page/p)
337
+msgid "If you still can't connect, your internet service provider might be censoring connections to Tor. Follow the instructions in the <link xref=\"circumvention\">Circumvention</link> section."
338
+msgstr ""
339
+
340
+#: C/troubleshooting.page:48(page/p)
341
+msgid "If the above steps do not address your problem, email help@rt.torproject.org with your operating system, the details of your problem, and what you've already tried."
342
+msgstr ""
343
+
344
+#: C/uninstalling.page:7(info/desc)
345
+msgid "How to remove Tor Browser from your system."
346
+msgstr ""
347
+
348
+#: C/uninstalling.page:8(info/title)
349
+msgctxt "sort"
350
+msgid "06 Uninstalling"
351
+msgstr ""
352
+
353
+#: C/uninstalling.page:12(page/title)
354
+msgid "Uninstalling"
355
+msgstr ""
356
+
357
+#: C/uninstalling.page:14(page/p)
358
+msgid "The Tor Browser does not affect any of the existing software or settings on your computer. Uninstalling Tor Browser will not affect your system's software or settings either."
359
+msgstr ""
360
+
361
+#: C/uninstalling.page:20(page/p)
362
+msgid "Removing the Tor Browser from your system is simple:"
363
+msgstr ""
364
+
365
+#: C/uninstalling.page:26(item/p)
366
+msgid "Locate your Tor Browser folder. The default location is your Desktop."
367
+msgstr ""
368
+
369
+#: C/uninstalling.page:29(item/p)
370
+msgid "Delete the Tor Browser folder."
371
+msgstr ""
372
+
373
+#: C/uninstalling.page:32(item/p)
374
+msgid "Empty your Trash"
375
+msgstr ""
376
+
377
+#: C/uninstalling.page:36(page/p)
378
+msgid "Note that your operating system's standard \"Uninstall\" utility is not used."
379
+msgstr ""
380
+
... ...
@@ -0,0 +1,380 @@
1
+msgid ""
2
+msgstr ""
3
+"Project-Id-Version: PACKAGE VERSION\n"
4
+"POT-Creation-Date: 2014-05-15 11:21+0200\n"
5
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
6
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
7
+"Language-Team: LANGUAGE <LL@li.org>\n"
8
+"MIME-Version: 1.0\n"
9
+"Content-Type: text/plain; charset=UTF-8\n"
10
+"Content-Transfer-Encoding: 8bit\n"
11
+
12
+#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
13
+msgctxt "_"
14
+msgid "translator-credits"
15
+msgstr ""
16
+
17
+#. This is a reference to an external file such as an image or video. When
18
+#. the file changes, the md5 hash will change to let you know you need to
19
+#. update your localized copy. The msgstr is not used at all. Set it to
20
+#. whatever you like once you have updated your copy of the file.
21
+#: C/bridges.page:144(media)
22
+msgctxt "_"
23
+msgid "external ref='media/tor-launcher-custom-bridges_en-US.png' md5='93365c2aa3fb4d627497e83f28a39b7e'"
24
+msgstr ""
25
+
26
+#: C/bridges.page:7(info/desc)
27
+msgid "What bridges are and how to use them."
28
+msgstr ""
29
+
30
+#: C/bridges.page:8(info/title)
31
+msgctxt "sort"
32
+msgid "05 Bridges"
33
+msgstr ""
34
+
35
+#: C/bridges.page:12(page/title)
36
+msgid "Bridges"
37
+msgstr ""
38
+
39
+#: C/bridges.page:14(page/p)
40
+msgid "Bridges are quiet gateways into the Tor Network. Like Tor relays, they are run by volunteers. Unlike relays, they are not listed publicly. Using bridges disguise the fact that one is using Tor."
41
+msgstr ""
42
+
43
+#: C/bridges.page:20(page/p)
44
+msgid "Currently there are five bridge types, or transports, available. More are being developed."
45
+msgstr ""
46
+
47
+#: C/bridges.page:27(td/p)
48
+msgid "ORPort"
49
+msgstr ""
50
+
51
+#: C/bridges.page:32(td/p)
52
+msgid "Requesting 'bridges' without specifying the bridge type, will return ORPort bridges, also called Vanilla bridges. ORPort bridges are NOT reliable for circumventing censorship or national firewalls. ORPort bridges can be useful as trusted entry points into the Tor network."
53
+msgstr ""
54
+
55
+#: C/bridges.page:42(td/p)
56
+msgid "obfs2"
57
+msgstr ""
58
+
59
+#: C/bridges.page:47(td/p)
60
+msgid "Censors have learned how to identify obfs2 bridges. This transport is being deprecated."
61
+msgstr ""
62
+
63
+#: C/bridges.page:55(td/p)
64
+msgid "obfs3"
65
+msgstr ""
66
+
67
+#: C/bridges.page:60(td/p)
68
+msgid "Obfsproxy disguises Tor traffic as random noise. obfs3 bridges work almost everywhere. A few obfs3 bridges have been blocked."
69
+msgstr ""
70
+
71
+#: C/bridges.page:68(td/p)
72
+msgid "Scramblesuit"
73
+msgstr ""
74
+
75
+#: C/bridges.page:73(td/p)
76
+msgid "Scramblesuit is an additional tool for the obfsproxy transport. Scramblesuit bridges are designed to be hard to identify and hard to block."
77
+msgstr ""
78
+
79
+#: C/bridges.page:82(td/p)
80
+msgid "FTE"
81
+msgstr ""
82
+
83
+#: C/bridges.page:87(td/p)
84
+msgid "Format-Transforming Encryption disguises Tor traffic as web (HTTP) traffic or other types of internet traffic. FTE bridges are effective, but in limited supply."
85
+msgstr ""
86
+
87
+#: C/bridges.page:96(page/p)
88
+msgid "(Note that flashproxy is a Pluggable Transport, but does not rely on bridges.)"
89
+msgstr ""
90
+
91
+#: C/bridges.page:100(page/p)
92
+msgid "There are four ways to get a bridge."
93
+msgstr ""
94
+
95
+#: C/bridges.page:106(item/p)
96
+msgid "Visit <link href=\"https://bridges.torproject.org/\">https://bridges.torproject.org/</link> and follow the instructions."
97
+msgstr ""
98
+
99
+#: C/bridges.page:111(item/p)
100
+msgid "Email bridges@bridges.torproject.org from a gmail or yahoo email address. Put <cmd>get bridges</cmd> in the body for ORPort bridges or <cmd>transport=obfs3</cmd> for obfs3 bridges."
101
+msgstr ""
102
+
103
+#: C/bridges.page:118(item/p)
104
+msgid "Politely ask a human at help@rt.torproject.org if you cannot access either of the first two methods."
105
+msgstr ""
106
+
107
+#: C/bridges.page:124(item/p)
108
+msgid "Install and configure a Tor instance to be bridge for yourself. The computer acting as a bridge must have uncensored internet access to the Tor network. A full installation guide can be found at <link href=\"https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en\">https://www.torproject.org/projects/obfsproxy-debian-instructions.html.en</link>"
109
+msgstr ""
110
+
111
+#: C/bridges.page:133(page/p)
112
+msgid "Enter the bridge information you get from any of the above steps in Tor-launcher."
113
+msgstr ""
114
+
115
+#: C/bridges.page:138(page/p)
116
+msgid "Choose yes when asked if your Internet Service Provider blocks connections to the Tor network. Select 'Use custom bridges' and enter each bridge identifier on its own line."
117
+msgstr ""
118
+
119
+#: C/bridges.page:146(page/p)
120
+msgid "Click Connect. Using bridges slow down the connection. If the connection fails, the bridges you received may be down. Get more and try again."
121
+msgstr ""
122
+
123
+#. This is a reference to an external file such as an image or video. When
124
+#. the file changes, the md5 hash will change to let you know you need to
125
+#. update your localized copy. The msgstr is not used at all. Set it to
126
+#. whatever you like once you have updated your copy of the file.
127
+#: C/circumvention.page:21(media)
128
+msgctxt "_"
129
+msgid "external ref='media/tor-launcher-configure_en-US.png' md5='966f4bafcb829e59b2b84d08144d885e'"
130
+msgstr ""
131
+
132
+#. This is a reference to an external file such as an image or video. When
133
+#. the file changes, the md5 hash will change to let you know you need to
134
+#. update your localized copy. The msgstr is not used at all. Set it to
135
+#. whatever you like once you have updated your copy of the file.
136
+#: C/circumvention.page:28(media)
137
+msgctxt "_"
138
+msgid "external ref='media/tor-launcher-wizard_en-US.png' md5='21f80fc3f4e34359bfdc44684d7da09d'"
139
+msgstr ""
140
+
141
+#. This is a reference to an external file such as an image or video. When
142
+#. the file changes, the md5 hash will change to let you know you need to
143
+#. update your localized copy. The msgstr is not used at all. Set it to
144
+#. whatever you like once you have updated your copy of the file.
145
+#: C/circumvention.page:36(media)
146
+msgctxt "_"
147
+msgid "external ref='media/tor-launcher-provided-bridges_en-US.png' md5='70524dccb698a21bb1d20223461e3272'"
148
+msgstr ""
149
+
150
+#: C/circumvention.page:7(info/title)
151
+msgctxt "sort"
152
+msgid "04 Circumvention"
153
+msgstr ""
154
+
155
+#: C/circumvention.page:8(info/desc)
156
+msgid "What to do if the Tor network is blocked."
157
+msgstr ""
158
+
159
+#: C/circumvention.page:12(page/title)
160
+msgid "Circumvention"
161
+msgstr ""
162
+
163
+#: C/circumvention.page:14(page/p)
164
+msgid "Some firewalls can detect and block connections to Tor. The Tor Browser includes some circumvention tools for getting around blocking firewalls. These circumvention tools are called Pluggable Transports. To turn them on, click \"Configure\" in the Tor launcher window."
165
+msgstr ""
166
+
167
+#: C/circumvention.page:23(page/p)
168
+msgid "Select yes when asked if your internet service provider blocks connections to Tor.\""
169
+msgstr ""
170
+
171
+#: C/circumvention.page:30(page/p)
172
+msgid "Select \"Connect with provided bridges\". Tor Browser has three Pluggable Transports to choose from. If one fails to get you online, try selecting a different transport."
173
+msgstr ""
174
+
175
+#: C/circumvention.page:38(page/p)
176
+msgid "If you try all three transports, and none of them get you online, select \"Enter custom bridges\", and enter bridges manually. Read the <link xref=\"bridges\">Getting Bridges</link> section for instructions on getting custom bridges."
177
+msgstr ""
178
+
179
+#. This is a reference to an external file such as an image or video. When
180
+#. the file changes, the md5 hash will change to let you know you need to
181
+#. update your localized copy. The msgstr is not used at all. Set it to
182
+#. whatever you like once you have updated your copy of the file.
183
+#: C/how-tor-works.page:19(media)
184
+msgctxt "_"
185
+msgid "external ref='media/how-tor-works.png' md5='6fe4151a88b7a518466f0582e40ccc8c'"
186
+msgstr ""
187
+
188
+#: C/how-tor-works.page:6(info/title)
189
+msgctxt "sort"
190
+msgid "01 Tor"
191
+msgstr ""
192
+
193
+#: C/how-tor-works.page:7(info/desc)
194
+msgid "How Tor works."
195
+msgstr ""
196
+
197
+#: C/how-tor-works.page:11(page/title)
198
+msgid "Tor"
199
+msgstr ""
200
+
201
+#: C/how-tor-works.page:12(page/p)
202
+msgid "Tor is a network of virtual tunnels that allows you to improve your privacy and security on the Internet. Tor works by sending your traffic through three random servers (also known as <em>relays</em>) in the Tor network, before the traffic is sent out onto the public Internet"
203
+msgstr ""
204
+
205
+#: C/how-tor-works.page:20(page/p)
206
+msgid "The image above illustrates a user browsing to different websites over Tor. The green monitors represent relays in the Tor network, while the three keys represent the layers of encryption between the user and each relay."
207
+msgstr ""
208
+
209
+#: C/how-tor-works.page:26(page/p)
210
+msgid "Tor will anonymize the origin of your traffic, and it will encrypt everything between you and the Tor network. Tor will also encrypt your traffic inside the Tor network, but it cannot encrypt your traffic between the Tor network and its final destination."
211
+msgstr ""
212
+
213
+#: C/how-tor-works.page:32(page/p)
214
+msgid "If you are communicating sensitive information, for example when logging on to a website with a username and password, make sure that you are using HTTPS (e.g. <input><em>https</em>://torproject.org/</input>, not <input><em>http</em>://torproject.org/</input>)."
215
+msgstr ""
216
+
217
+#: C/index.page:6(page/title)
218
+msgid "Tor Browser Help"
219
+msgstr ""
220
+
221
+#: C/index.page:7(page/p)
222
+msgid "Version: UNKNOWN-dirty"
223
+msgstr ""
224
+
225
+#: C/known-issues.page:7(info/desc)
226
+msgid "A list of known issues."
227
+msgstr ""
228
+
229
+#: C/known-issues.page:8(info/title)
230
+msgctxt "sort"
231
+msgid "03 Known Issues"
232
+msgstr ""
233
+
234
+#: C/known-issues.page:12(page/title)
235
+msgid "Known Issues"
236
+msgstr ""
237
+
238
+#: C/known-issues.page:16(item/p)
239
+msgid "The following firewall software have been known to interfere with Tor and may need to be temporarily disabled:"
240
+msgstr ""
241
+
242
+#: C/known-issues.page:20(item/p)
243
+msgid "Webroot SecureAnywhere"
244
+msgstr ""
245
+
246
+#: C/known-issues.page:23(item/p)
247
+msgid "Kaspersky Internet Security 2012"
248
+msgstr ""
249
+
250
+#: C/known-issues.page:26(item/p)
251
+msgid "Sophos Antivirus for Mac"
252
+msgstr ""
253
+
254
+#: C/known-issues.page:29(item/p)
255
+msgid "Microsoft Security Essentials"
256
+msgstr ""
257
+
258
+#: C/known-issues.page:34(item/p)
259
+msgid "Videos that require Adobe Flash are unavailable. Flash is disabled for security reasons. Most YouTube videos can be played with HTML5 by visiting the video's \"Embed\" → \"Share\" link."
260
+msgstr ""
261
+
262
+#: C/known-issues.page:41(item/p)
263
+msgid "Tor can not use a bridge if a proxy is set."
264
+msgstr ""
265
+
266
+#: C/known-issues.page:46(item/p)
267
+msgid "The Tor Browser package is dated January 1, 2000 00:00:00 UTC. This is to ensure that each software build is exactly reproducible."
268
+msgstr ""
269
+
270
+#: C/known-issues.page:52(item/p)
271
+msgid "To run Tor Browser on Ubuntu, users need to execute a shell script. Open \"Files\" (Unity's explorer), open Preferences → Behavior Tab → Set \"Run executable text files when they are opened\" to \"Ask every time\", then OK. Tor Browser can also be started from the command line by running"
272
+msgstr ""
273
+
274
+#: C/known-issues.page:58(item/code)
275
+#, no-wrap
276
+msgid ""
277
+"\n"
278
+"    ./start-tor-browser\n"
279
+"    "
280
+msgstr ""
281
+
282
+#: C/known-issues.page:61(item/p)
283
+msgid "from inside the Tor Browser directory."
284
+msgstr ""
285
+
286
+#: C/known-issues.page:66(page/p)
287
+msgid "If you have an issue with Tor Browser that isn't on this list, feel free to email help@rt.torproject.org."
288
+msgstr ""
289
+
290
+#. This is a reference to an external file such as an image or video. When
291
+#. the file changes, the md5 hash will change to let you know you need to
292
+#. update your localized copy. The msgstr is not used at all. Set it to
293
+#. whatever you like once you have updated your copy of the file.
294
+#: C/troubleshooting.page:19(media)
295
+msgctxt "_"
296
+msgid "external ref='media/tor-launcher-connect_en-US.png' md5='03118f523f4cbc7c001da1ddacc9e394'"
297
+msgstr ""
298
+
299
+#: C/troubleshooting.page:7(info/title)
300
+msgctxt "sort"
301
+msgid "02 Troubleshooting"
302
+msgstr ""
303
+
304
+#: C/troubleshooting.page:8(info/desc)
305
+msgid "What to do if Tor Browser doesn't work."
306
+msgstr ""
307
+
308
+#: C/troubleshooting.page:12(page/title)
309
+msgid "Troubleshooting"
310
+msgstr ""
311
+
312
+#: C/troubleshooting.page:14(page/p)
313
+msgid "The Tor Browser should get you online automatically after clicking the \"Connect\" button on the start up screen."
314
+msgstr ""
315
+
316
+#: C/troubleshooting.page:21(page/p)
317
+msgid "If it doesn't connect, there may be a simple fix. Try each of the following:"
318
+msgstr ""
319
+
320
+#: C/troubleshooting.page:27(item/p)
321
+msgid "Make sure another Tor Browser is not already running. If you're not sure if Tor Browser is running, restart your computer."
322
+msgstr ""
323
+
324
+#: C/troubleshooting.page:31(item/p)
325
+msgid "'Allow' Tor in your antivirus program."
326
+msgstr ""
327
+
328
+#: C/troubleshooting.page:34(item/p)
329
+msgid "Temporarily disable your firewall."
330
+msgstr ""
331
+
332
+#: C/troubleshooting.page:37(item/p)
333
+msgid "Delete Tor Browser and install it again. If updating, do not overwrite your previous Tor Browser files."
334
+msgstr ""
335
+
336
+#: C/troubleshooting.page:42(page/p)
337
+msgid "If you still can't connect, your internet service provider might be censoring connections to Tor. Follow the instructions in the <link xref=\"circumvention\">Circumvention</link> section."
338
+msgstr ""
339
+
340
+#: C/troubleshooting.page:48(page/p)
341
+msgid "If the above steps do not address your problem, email help@rt.torproject.org with your operating system, the details of your problem, and what you've already tried."
342
+msgstr ""
343
+
344
+#: C/uninstalling.page:7(info/desc)
345
+msgid "How to remove Tor Browser from your system."
346
+msgstr ""
347
+
348
+#: C/uninstalling.page:8(info/title)
349
+msgctxt "sort"
350
+msgid "06 Uninstalling"
351
+msgstr ""
352
+
353
+#: C/uninstalling.page:12(page/title)
354
+msgid "Uninstalling"
355
+msgstr ""
356
+
357
+#: C/uninstalling.page:14(page/p)
358
+msgid "The Tor Browser does not affect any of the existing software or settings on your computer. Uninstalling Tor Browser will not affect your system's software or settings either."
359
+msgstr ""
360
+
361
+#: C/uninstalling.page:20(page/p)
362
+msgid "Removing the Tor Browser from your system is simple:"
363
+msgstr ""
364
+
365
+#: C/uninstalling.page:26(item/p)
366
+msgid "Locate your Tor Browser folder. The default location is your Desktop."
367
+msgstr ""
368
+
369
+#: C/uninstalling.page:29(item/p)
370
+msgid "Delete the Tor Browser folder."
371
+msgstr ""
372
+
373
+#: C/uninstalling.page:32(item/p)
374
+msgid "Empty your Trash"
375
+msgstr ""
376
+
377
+#: C/uninstalling.page:36(page/p)
378
+msgid "Note that your operating system's standard \"Uninstall\" utility is not used."
379
+msgstr ""
380
+
0 381