tor-commits
Threads by month
- ----- 2025 -----
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
February 2021
- 19 participants
- 1772 discussions
commit 1c45a3df7cf9d6d2924e97aa466593ff1f6b70fe
Author: David Goulet <dgoulet(a)torproject.org>
Date: Wed Feb 17 11:33:39 2021 -0500
changes: Add changes file for #40282
Closes #40282
Signed-off-by: David Goulet <dgoulet(a)torproject.org>
---
changes/ticket40282 | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/changes/ticket40282 b/changes/ticket40282
new file mode 100644
index 0000000000..4cfadcc2c0
--- /dev/null
+++ b/changes/ticket40282
@@ -0,0 +…
[View More]1,6 @@
+ o Major feature (relay):
+ - Relay do not use nor advertise a DirPort anymore. Only authorities do
+ because it is still used by them. Closes ticket 40282.
+ - Authority DirPort self reachability test has now been removed because
+ network reentry to that DirPort is not allowed anymore.
+
[View Less]
1
0

23 Feb '21
commit 100c758cd83edb5c64ff669d1b5f444c83addb5c
Author: David Goulet <dgoulet(a)torproject.org>
Date: Wed Feb 17 13:13:02 2021 -0500
man: Note that relay now ignore the DirPort option
Signed-off-by: David Goulet <dgoulet(a)torproject.org>
---
doc/man/tor.1.txt | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/doc/man/tor.1.txt b/doc/man/tor.1.txt
index 3538d94b8e..4b34790e00 100644
--- a/doc/man/tor.1.txt
+++ b/doc/man/tor.1.txt
@@ -2794,6 +2794,13 @@ …
[View More]details.)
but one DirPort must have the **NoAdvertise** flag set. (Default: 0) +
+
The same flags are supported here as are supported by ORPort.
+ +
+ As of Tor 0.4.6.1-alpha, non authoritative relays (see
+ AuthoritativeDirectory) will not publish the DirPort but will still listen
+ on it so to avoid any unknown issues by closing all the sudden all
+ DirPorts on the network for most relays. We expect relays to stop
+ listening at some point in future stable releases. It is thus safe for you
+ to remove the DirPort from your torrc configuration.
[[DirPortFrontPage]] **DirPortFrontPage** __FILENAME__::
When this option is set, it takes an HTML file and publishes it as "/" on
[View Less]
1
0

23 Feb '21
commit 9541ed63a1af9e7d4632aa261976f053bad12438
Author: David Goulet <dgoulet(a)torproject.org>
Date: Wed Feb 17 11:30:44 2021 -0500
relay: Only authorities publish a DirPort
Relay will always publish 0 as DirPort value in their descriptor from now on
except authorities.
Related to #40282
Signed-off-by: David Goulet <dgoulet(a)torproject.org>
---
src/feature/relay/router.c | 4 ++--
src/test/test_options.c | 43 ------------------------------…
[View More]-------------
2 files changed, 2 insertions(+), 45 deletions(-)
diff --git a/src/feature/relay/router.c b/src/feature/relay/router.c
index cd3790856b..73e8393761 100644
--- a/src/feature/relay/router.c
+++ b/src/feature/relay/router.c
@@ -1357,8 +1357,8 @@ decide_to_advertise_dir_impl(const or_options_t *options,
int
router_should_advertise_dirport(const or_options_t *options, uint16_t dir_port)
{
- /* supports_tunnelled_dir_requests is not relevant, pass 0 */
- return decide_to_advertise_dir_impl(options, dir_port, 0) ? dir_port : 0;
+ /* Only authorities should advertise a DirPort now. */
+ return authdir_mode(options) ? dir_port : 0;
}
/** Front-end to decide_to_advertise_dir_impl(): return 0 if we don't want to
diff --git a/src/test/test_options.c b/src/test/test_options.c
index 653b647dfe..e8d480eb19 100644
--- a/src/test/test_options.c
+++ b/src/test/test_options.c
@@ -302,8 +302,6 @@ test_options_validate(void *arg)
"ServerTransportOptions did not parse",
LOG_WARN, "\"slingsnappy\" is not a k=v", PH_VALIDATE);
- WANT_ERR("DirPort 8080\nDirCache 0",
- "DirPort configured but DirCache disabled.", PH_VALIDATE);
WANT_ERR("BridgeRelay 1\nDirCache 0",
"We're a bridge but DirCache is disabled.", PH_VALIDATE);
@@ -1932,18 +1930,6 @@ test_options_validate__publish_server_descriptor(void *ignored)
"PublishServerDescriptor line.");
tor_free(msg);
- free_options_test_data(tdata);
- tdata = get_options_test_data("BridgeRelay 1\n"
- "DirPort 999\n");
-
- mock_clean_saved_logs();
- ret = options_validate(NULL, tdata->opt, &msg);
- tt_int_op(ret, OP_EQ, -1);
- expect_log_msg("Can't set a DirPort on a bridge "
- "relay; disabling DirPort\n");
- tt_assert(!tdata->opt->DirPort_lines);
- tt_assert(!tdata->opt->DirPort_set);
-
done:
teardown_capture_of_logs();
policies_free_all();
@@ -3456,35 +3442,6 @@ test_options_validate__constrained_sockets(void *ignored)
"between 2048 and 262144 in 1024 byte increments.");
tor_free(msg);
- free_options_test_data(tdata);
- tdata = get_options_test_data("ConstrainedSockets 1\n"
- "ConstrainedSockSize 2048\n"
- "DirPort 999\n"
- "DirCache 1\n"
- );
- mock_clean_saved_logs();
- ret = options_validate(NULL, tdata->opt, &msg);
- tt_int_op(ret, OP_EQ, 0);
- expect_log_msg("You have requested constrained "
- "socket buffers while also serving directory entries via DirPort."
- " It is strongly suggested that you disable serving directory"
- " requests when system TCP buffer resources are scarce.\n");
- tor_free(msg);
-
- free_options_test_data(tdata);
- tdata = get_options_test_data("ConstrainedSockets 1\n"
- "ConstrainedSockSize 2048\n"
- );
- mock_clean_saved_logs();
- ret = options_validate(NULL, tdata->opt, &msg);
- tt_int_op(ret, OP_EQ, 0);
- expect_no_log_msg(
- "You have requested constrained socket buffers while also serving"
- " directory entries via DirPort. It is strongly suggested that "
- "you disable serving directory requests when system TCP buffer "
- "resources are scarce.\n");
- tor_free(msg);
-
done:
policies_free_all();
teardown_capture_of_logs();
[View Less]
1
0

[translation/snowflakeaddon-messages.json] https://gitweb.torproject.org/translation.git/commit/?h=snowflakeaddon-messages.json
by translation@torproject.org 23 Feb '21
by translation@torproject.org 23 Feb '21
23 Feb '21
commit 739d3a663272d4ef9ccb61effba1a0a61bd0d2f1
Author: Translation commit bot <translation(a)torproject.org>
Date: Tue Feb 23 11:17:10 2021 +0000
https://gitweb.torproject.org/translation.git/commit/?h=snowflakeaddon-mess…
---
ar/messages.json | 2 +-
bn_BD/messages.json | 2 +-
ca/messages.json | 2 +-
el/messages.json | 2 +-
es_ES/messages.json | 2 +-
fa/messages.json | 2 +-
fi/messages.json | 2 +-
gl/messages.json | 2 +-
he/messages.json | 2 +-
hr/…
[View More]messages.json | 2 +-
hu/messages.json | 2 +-
id/messages.json | 2 +-
ja/messages.json | 2 +-
kk/messages.json | 2 +-
ml/messages.json | 2 +-
nb_NO/messages.json | 2 +-
pl/messages.json | 2 +-
pt_BR/messages.json | 2 +-
pt_PT/messages.json | 2 +-
ro/messages.json | 2 +-
sq/messages.json | 2 +-
sv_SE/messages.json | 2 +-
sw/messages.json | 2 +-
ta/messages.json | 2 +-
tr/messages.json | 2 +-
uk/messages.json | 2 +-
zh_CN/messages.json | 2 +-
zh_TW/messages.json | 2 +-
28 files changed, 28 insertions(+), 28 deletions(-)
diff --git a/ar/messages.json b/ar/messages.json
index 933521af1a..62d8c89529 100644
--- a/ar/messages.json
+++ b/ar/messages.json
@@ -81,7 +81,7 @@
"message": "و التي تظهر على الشكل التالي:"
},
"faq": {
- "message": "FAQ"
+ "message": "الأسئلة الشائعة"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/bn_BD/messages.json b/bn_BD/messages.json
index c8245054be..7572dc7442 100644
--- a/bn_BD/messages.json
+++ b/bn_BD/messages.json
@@ -81,7 +81,7 @@
"message": "যা দেখতে এরকম দেখাচ্ছে:"
},
"faq": {
- "message": "FAQ"
+ "message": "প্রায়শই জিজ্ঞাসিত প্রশ্নাবলী"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/ca/messages.json b/ca/messages.json
index 969849a163..14376d9a43 100644
--- a/ca/messages.json
+++ b/ca/messages.json
@@ -81,7 +81,7 @@
"message": "I es veurà d'aquesta manera:"
},
"faq": {
- "message": "FAQ"
+ "message": "Preguntes més freqüents"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/el/messages.json b/el/messages.json
index 3a722ca5c0..8a97d8eda7 100644
--- a/el/messages.json
+++ b/el/messages.json
@@ -81,7 +81,7 @@
"message": "Που μοιάζει με αυτό:"
},
"faq": {
- "message": "FAQ"
+ "message": "Συχνές Ερωτήσεις"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/es_ES/messages.json b/es_ES/messages.json
index 2aa45652c3..bf0e884a2d 100644
--- a/es_ES/messages.json
+++ b/es_ES/messages.json
@@ -81,7 +81,7 @@
"message": "Que se ve así:"
},
"faq": {
- "message": "FAQ"
+ "message": "Preguntas Más Frecuentes"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/fa/messages.json b/fa/messages.json
index a9b0607b85..ac8e3b87fb 100644
--- a/fa/messages.json
+++ b/fa/messages.json
@@ -81,7 +81,7 @@
"message": "که مانند این است:"
},
"faq": {
- "message": "FAQ"
+ "message": "سوالات متداول"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/fi/messages.json b/fi/messages.json
index f61b62c94d..a0fcc22c24 100644
--- a/fi/messages.json
+++ b/fi/messages.json
@@ -81,7 +81,7 @@
"message": "Joka näyttää tältä:"
},
"faq": {
- "message": "FAQ"
+ "message": "UKK"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/gl/messages.json b/gl/messages.json
index ba2a97cc23..06c344c3f2 100644
--- a/gl/messages.json
+++ b/gl/messages.json
@@ -81,7 +81,7 @@
"message": "Que loce así:"
},
"faq": {
- "message": "FAQ"
+ "message": "PMF"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/he/messages.json b/he/messages.json
index 43e861b78b..650f45cf6f 100644
--- a/he/messages.json
+++ b/he/messages.json
@@ -81,7 +81,7 @@
"message": "שנראה כך:"
},
"faq": {
- "message": "FAQ"
+ "message": "שאלות נפוצות"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/hr/messages.json b/hr/messages.json
index ff086124a3..a7b86fb71e 100644
--- a/hr/messages.json
+++ b/hr/messages.json
@@ -81,7 +81,7 @@
"message": "Izgleda ovako:"
},
"faq": {
- "message": "FAQ"
+ "message": "Često postavljna pitanja"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/hu/messages.json b/hu/messages.json
index 7de5b3d550..87b27f5105 100644
--- a/hu/messages.json
+++ b/hu/messages.json
@@ -81,7 +81,7 @@
"message": "Amely így néz ki:"
},
"faq": {
- "message": "FAQ"
+ "message": "GYIK"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/id/messages.json b/id/messages.json
index 2de668985e..e7dde022f8 100644
--- a/id/messages.json
+++ b/id/messages.json
@@ -81,7 +81,7 @@
"message": "Yang terlihat seperti ini:"
},
"faq": {
- "message": "FAQ"
+ "message": "FAQ "
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/ja/messages.json b/ja/messages.json
index 1d8e913a78..3c575e2d55 100644
--- a/ja/messages.json
+++ b/ja/messages.json
@@ -81,7 +81,7 @@
"message": "これは次のようになります:"
},
"faq": {
- "message": "FAQ"
+ "message": "よくある質問"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/kk/messages.json b/kk/messages.json
index 173c065dcf..598b1eb386 100644
--- a/kk/messages.json
+++ b/kk/messages.json
@@ -81,7 +81,7 @@
"message": "Бұл қалай көрінеді:"
},
"faq": {
- "message": "FAQ"
+ "message": "ЖҚС"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/ml/messages.json b/ml/messages.json
index cd6be7f105..6db161f299 100644
--- a/ml/messages.json
+++ b/ml/messages.json
@@ -81,7 +81,7 @@
"message": "അത് ഇങ്ങനെ കാണാൻ സാധിക്കും :"
},
"faq": {
- "message": "FAQ"
+ "message": "FAQ(പൊതുവായുള്ള സംശയങ്ങള്)"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/nb_NO/messages.json b/nb_NO/messages.json
index 786287ccab..a73b9a0def 100644
--- a/nb_NO/messages.json
+++ b/nb_NO/messages.json
@@ -81,7 +81,7 @@
"message": "Som ser slik ut:"
},
"faq": {
- "message": "FAQ"
+ "message": "OSS"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/pl/messages.json b/pl/messages.json
index bdbbad08a7..ff08e0bba3 100644
--- a/pl/messages.json
+++ b/pl/messages.json
@@ -81,7 +81,7 @@
"message": "Tak to wygląda:"
},
"faq": {
- "message": "FAQ"
+ "message": "Częste pytania"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/pt_BR/messages.json b/pt_BR/messages.json
index 4c6d3ae4f9..892bc19330 100644
--- a/pt_BR/messages.json
+++ b/pt_BR/messages.json
@@ -81,7 +81,7 @@
"message": "Que aparece assim:"
},
"faq": {
- "message": "FAQ"
+ "message": "Perguntas Frequentes"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/pt_PT/messages.json b/pt_PT/messages.json
index 47a4011645..5ac510153f 100644
--- a/pt_PT/messages.json
+++ b/pt_PT/messages.json
@@ -81,7 +81,7 @@
"message": "Que se parece com isto:"
},
"faq": {
- "message": "FAQ"
+ "message": "Perguntas frequentes"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/ro/messages.json b/ro/messages.json
index 9b96e248dd..bf32a591d4 100644
--- a/ro/messages.json
+++ b/ro/messages.json
@@ -81,7 +81,7 @@
"message": "Care arată astfel:"
},
"faq": {
- "message": "FAQ"
+ "message": "Întrebări frecvente"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/sq/messages.json b/sq/messages.json
index c5a697a505..e51364b6f0 100644
--- a/sq/messages.json
+++ b/sq/messages.json
@@ -81,7 +81,7 @@
"message": "Që duket diçka e tillë:"
},
"faq": {
- "message": "FAQ"
+ "message": "PBR"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/sv_SE/messages.json b/sv_SE/messages.json
index b9b242a757..52d36b79a3 100644
--- a/sv_SE/messages.json
+++ b/sv_SE/messages.json
@@ -81,7 +81,7 @@
"message": "Som ser ut så här:"
},
"faq": {
- "message": "FAQ"
+ "message": "Vanliga frågor"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/sw/messages.json b/sw/messages.json
index 7e2b7e08bb..6ba4979c7b 100644
--- a/sw/messages.json
+++ b/sw/messages.json
@@ -81,7 +81,7 @@
"message": "Ambayo inaonekana hivi"
},
"faq": {
- "message": "FAQ"
+ "message": "MYM"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/ta/messages.json b/ta/messages.json
index 8abd82cb96..a964474523 100644
--- a/ta/messages.json
+++ b/ta/messages.json
@@ -81,7 +81,7 @@
"message": "அது இவ்வாறு தோற்றமளிக்கும்:"
},
"faq": {
- "message": "FAQ"
+ "message": "அடிக்கடி கேட்கப்படும் கேள்விகள்"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/tr/messages.json b/tr/messages.json
index a770ddc89b..e88a0c465f 100644
--- a/tr/messages.json
+++ b/tr/messages.json
@@ -81,7 +81,7 @@
"message": "Şu şekilde görüntülenir:"
},
"faq": {
- "message": "FAQ"
+ "message": "SSS"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/uk/messages.json b/uk/messages.json
index 250bc8353e..c23e5f0b00 100644
--- a/uk/messages.json
+++ b/uk/messages.json
@@ -81,7 +81,7 @@
"message": "Він матиме такий вигляд:"
},
"faq": {
- "message": "FAQ"
+ "message": "ЧАП"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/zh_CN/messages.json b/zh_CN/messages.json
index 2d68f68531..7272e38388 100644
--- a/zh_CN/messages.json
+++ b/zh_CN/messages.json
@@ -81,7 +81,7 @@
"message": "看起来是这样的:"
},
"faq": {
- "message": "FAQ"
+ "message": "常见问题"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
diff --git a/zh_TW/messages.json b/zh_TW/messages.json
index cce7292cce..fb94c3acd0 100644
--- a/zh_TW/messages.json
+++ b/zh_TW/messages.json
@@ -81,7 +81,7 @@
"message": "看起來像這樣:"
},
"faq": {
- "message": "FAQ"
+ "message": "常見問題與解答"
},
"support": {
"message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
[View Less]
1
0

[translation/torbutton-torbuttonproperties_completed] https://gitweb.torproject.org/translation.git/commit/?h=torbutton-torbuttonproperties_completed
by translation@torproject.org 23 Feb '21
by translation@torproject.org 23 Feb '21
23 Feb '21
commit 0135f2bf19400cc027e3fa236f30f8154434f5e3
Author: Translation commit bot <translation(a)torproject.org>
Date: Tue Feb 23 10:48:41 2021 +0000
https://gitweb.torproject.org/translation.git/commit/?h=torbutton-torbutton…
---
ar/torbutton.properties | 4 ----
ca/torbutton.properties | 4 ----
cs/torbutton.properties | 4 ----
da/torbutton.properties | 4 ----
de/torbutton.properties | 4 ----
en-GB/torbutton.properties | 4 ----
en-US/torbutton.properties | 4 ----
…
[View More] en/torbutton.properties | 4 ----
es-AR/torbutton.properties | 4 ----
es-ES/torbutton.properties | 4 ----
fa/torbutton.properties | 4 ----
fi/torbutton.properties | 4 ----
fr/torbutton.properties | 4 ----
ga-IE/torbutton.properties | 4 ----
he/torbutton.properties | 4 ----
hr/torbutton.properties | 4 ----
hu/torbutton.properties | 4 ----
is/torbutton.properties | 4 ----
it/torbutton.properties | 4 ----
ja/torbutton.properties | 4 ----
ka/torbutton.properties | 4 ----
ko/torbutton.properties | 4 ----
mk/torbutton.properties | 4 ----
nl/torbutton.properties | 4 ----
pl/torbutton.properties | 4 ----
pt-BR/torbutton.properties | 4 ----
pt-PT/torbutton.properties | 4 ----
ro/torbutton.properties | 4 ----
ru/torbutton.properties | 4 ----
sv-SE/torbutton.properties | 4 ----
tr/torbutton.properties | 4 ----
zh-CN/torbutton.properties | 4 ----
32 files changed, 128 deletions(-)
diff --git a/ar/torbutton.properties b/ar/torbutton.properties
index b83f1d3755..e4e9b02e38 100644
--- a/ar/torbutton.properties
+++ b/ar/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.unknown_country = بلد غير معروف
# torbutton.circuit_display.click_to_copy = Click to Copy
# torbutton.circuit_display.copied = Copied!
# torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = انقر لتفعيل تور
-torbutton.panel.tooltip.enabled = انقر لتعطيل تور
-torbutton.panel.label.disabled = تور معطّل
-torbutton.panel.label.enabled = تور مفعّل
extensions.torbutton(a)torproject.org.description = زر تور يوفر زر لتعديل إعدادات تور وايضاً لمسح بيانات التصفح الخاصة بك بسرعة وبسهولة.
# torbutton.popup.external.title = Download an external file type?
# torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/ca/torbutton.properties b/ca/torbutton.properties
index cba4d77e8f..e811c88367 100644
--- a/ca/torbutton.properties
+++ b/ca/torbutton.properties
@@ -11,10 +11,6 @@
# torbutton.circuit_display.click_to_copy = Click to Copy
# torbutton.circuit_display.copied = Copied!
# torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Feu clic per activar Tor
-torbutton.panel.tooltip.enabled = Feu clic per desactivar Tor
-torbutton.panel.label.disabled = Tor està desactivat
-torbutton.panel.label.enabled = Tor està activat
extensions.torbutton(a)torproject.org.description = Torbutton permet accedir a la configuració de Tor i esborrar fàcilment i ràpidament les dades privades de navegació per internet.
torbutton.popup.external.title = Voleu descarregar un tipus de fitxer extern?
torbutton.popup.external.app = Tor Browser no pot visualitzar aquest fitxer. Cal obrir-lo amb una altra aplicació.\n\n
diff --git a/cs/torbutton.properties b/cs/torbutton.properties
index 5fc7b2d78f..254200b67e 100644
--- a/cs/torbutton.properties
+++ b/cs/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Zjistit více
# torbutton.circuit_display.click_to_copy = Click to Copy
# torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Prohlížeč Tor upravuje velikost vašeho okna, aby znesnadnil možnost vašeho vysledování.
-torbutton.panel.tooltip.disabled = Klepněte pro zapnutí Toru
-torbutton.panel.tooltip.enabled = Klepněte pro vypnutí Toru
-torbutton.panel.label.disabled = Tor vypnut
-torbutton.panel.label.enabled = Tor zapnut
extensions.torbutton(a)torproject.org.description = TorButton je tlačítko pro nastavení Toru a rychlé a jednoduché smazání soukromých údajů o vašem prohlížení.
torbutton.popup.external.title = Stáhnout externí soubor?
torbutton.popup.external.app = Prohlížeč Tor nemůže zobrazit tento soubor. Budete ho muset otevřít v jiné aplikaci.\n\n
diff --git a/da/torbutton.properties b/da/torbutton.properties
index d46feba96a..d702312753 100644
--- a/da/torbutton.properties
+++ b/da/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Lær mere
torbutton.circuit_display.click_to_copy = Klik for at kopiere
torbutton.circuit_display.copied = Kopieret!
torbutton.content_sizer.margin_tooltip = Tor Browser tilføjer margenen for at gøre dit vindues højde og bredde mindre genkendeligt, hvilket reducerer muligheden for at andre kan spore dig online.
-torbutton.panel.tooltip.disabled = Klik for at aktivere Tor
-torbutton.panel.tooltip.enabled = Klik for at deaktivere Tor
-torbutton.panel.label.disabled = Tor deaktiveret
-torbutton.panel.label.enabled = Tor aktiveret
extensions.torbutton(a)torproject.org.description = Torbutton giver en knap til at konfigurere Tor-indstillinger og til hurtigt og nemt at fjerne private browsingdata.
torbutton.popup.external.title = Download en ekstern filtype?
torbutton.popup.external.app = Tor Browser kan ikke vis filen. Du skal åbne den med et andet program.\n\n
diff --git a/de/torbutton.properties b/de/torbutton.properties
index f66c37adab..d2642137a4 100644
--- a/de/torbutton.properties
+++ b/de/torbutton.properties
@@ -11,10 +11,6 @@
# torbutton.circuit_display.click_to_copy = Click to Copy
# torbutton.circuit_display.copied = Copied!
# torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-# torbutton.panel.tooltip.disabled = Click to enable Tor
-# torbutton.panel.tooltip.enabled = Click to disable Tor
-# torbutton.panel.label.disabled = Tor Disabled
-# torbutton.panel.label.enabled = Tor Enabled
# extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
# torbutton.popup.external.title = Download an external file type?
# torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/en-GB/torbutton.properties b/en-GB/torbutton.properties
index f66c37adab..d2642137a4 100644
--- a/en-GB/torbutton.properties
+++ b/en-GB/torbutton.properties
@@ -11,10 +11,6 @@
# torbutton.circuit_display.click_to_copy = Click to Copy
# torbutton.circuit_display.copied = Copied!
# torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-# torbutton.panel.tooltip.disabled = Click to enable Tor
-# torbutton.panel.tooltip.enabled = Click to disable Tor
-# torbutton.panel.label.disabled = Tor Disabled
-# torbutton.panel.label.enabled = Tor Enabled
# extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
# torbutton.popup.external.title = Download an external file type?
# torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/en-US/torbutton.properties b/en-US/torbutton.properties
index f66c37adab..d2642137a4 100644
--- a/en-US/torbutton.properties
+++ b/en-US/torbutton.properties
@@ -11,10 +11,6 @@
# torbutton.circuit_display.click_to_copy = Click to Copy
# torbutton.circuit_display.copied = Copied!
# torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-# torbutton.panel.tooltip.disabled = Click to enable Tor
-# torbutton.panel.tooltip.enabled = Click to disable Tor
-# torbutton.panel.label.disabled = Tor Disabled
-# torbutton.panel.label.enabled = Tor Enabled
# extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
# torbutton.popup.external.title = Download an external file type?
# torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/en/torbutton.properties b/en/torbutton.properties
index f66c37adab..d2642137a4 100644
--- a/en/torbutton.properties
+++ b/en/torbutton.properties
@@ -11,10 +11,6 @@
# torbutton.circuit_display.click_to_copy = Click to Copy
# torbutton.circuit_display.copied = Copied!
# torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-# torbutton.panel.tooltip.disabled = Click to enable Tor
-# torbutton.panel.tooltip.enabled = Click to disable Tor
-# torbutton.panel.label.disabled = Tor Disabled
-# torbutton.panel.label.enabled = Tor Enabled
# extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
# torbutton.popup.external.title = Download an external file type?
# torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/es-AR/torbutton.properties b/es-AR/torbutton.properties
index 581e040973..70427f366b 100644
--- a/es-AR/torbutton.properties
+++ b/es-AR/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Más informacion
torbutton.circuit_display.click_to_copy = Cliquear para copiar
torbutton.circuit_display.copied = ¡Copiado!
torbutton.content_sizer.margin_tooltip = El Navegador Tor añade éste margen para hacer el ancho y alto de tu ventana menos distintivo, y de ésta manera reduce la habilidad de cualquiera para rastrearte en línea.
-torbutton.panel.tooltip.disabled = Cliquear para habilitar Tor
-torbutton.panel.tooltip.enabled = Cliquear para deshabilitar Tor
-torbutton.panel.label.disabled = Tor deshabilitado
-torbutton.panel.label.enabled = Tor habilitado
extensions.torbutton(a)torproject.org.description = Torbutton provee un botón para configurar ajustes de Tor, y rápida y fácilmente eliminar los datos de navegación privados.
torbutton.popup.external.title = ¿Descargar un tipo de archivo externo?
torbutton.popup.external.app = El Navegador Tor no puede mostrar este archivo. Vas a tener que abrirlo con otra aplicación.\n\n
diff --git a/es-ES/torbutton.properties b/es-ES/torbutton.properties
index 0e0f1c4c7f..5a156c12b5 100644
--- a/es-ES/torbutton.properties
+++ b/es-ES/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Conocer más
# torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = ¡Copiado!
torbutton.content_sizer.margin_tooltip = El Tor Browser añade este margen para hacer el ancho y el alto de tu ventana menos especial, y reducir de esta forma la posibilidad de rastrearte en línea.
-torbutton.panel.tooltip.disabled = Haga clic para habilitar Tor
-torbutton.panel.tooltip.enabled = Haga clic para deshabilitar Tor
-torbutton.panel.label.disabled = Tor deshabilitado
-torbutton.panel.label.enabled = Tor habilitado
extensions.torbutton(a)torproject.org.description = Torbutton proporciona un botón para configurar las preferencias de Tor y limpiar rápida y fácilmente los datos de navegación privada.
torbutton.popup.external.title = ¿Descargar un tipo de fichero externo?
torbutton.popup.external.app = El Tor Browser no puede mostrar este fichero. Tendrás que abrirlo con otra aplicación.\n\n
diff --git a/fa/torbutton.properties b/fa/torbutton.properties
index f66c37adab..d2642137a4 100644
--- a/fa/torbutton.properties
+++ b/fa/torbutton.properties
@@ -11,10 +11,6 @@
# torbutton.circuit_display.click_to_copy = Click to Copy
# torbutton.circuit_display.copied = Copied!
# torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-# torbutton.panel.tooltip.disabled = Click to enable Tor
-# torbutton.panel.tooltip.enabled = Click to disable Tor
-# torbutton.panel.label.disabled = Tor Disabled
-# torbutton.panel.label.enabled = Tor Enabled
# extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
# torbutton.popup.external.title = Download an external file type?
# torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/fi/torbutton.properties b/fi/torbutton.properties
index a8006b70be..f6639a4ddf 100644
--- a/fi/torbutton.properties
+++ b/fi/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.unknown_country = Tuntematon maa
# torbutton.circuit_display.click_to_copy = Click to Copy
# torbutton.circuit_display.copied = Copied!
# torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Käynnistä Tor napsauttamalla.
-torbutton.panel.tooltip.enabled = Poista Tor käytöstä napsauttamalla
-torbutton.panel.label.disabled = Tor pois käytöstä
-torbutton.panel.label.enabled = Tor käytössä
extensions.torbutton(a)torproject.org.description = Torbutton lisää painikkeen, jolla voi muokata Tor-sovelluksen asetuksia sekä poistaa nopeasti ja helposti selaustiedot.
torbutton.popup.external.title = Lataa ulkoinen tiedostotyyppi?
torbutton.popup.external.app = Tor-selain ei pysty avamaan tätä tiedostoa. Sinun pitää avata tämä toisella sovelluksella.\n\n
diff --git a/fr/torbutton.properties b/fr/torbutton.properties
index 31afa22223..4d9a4b21f5 100644
--- a/fr/torbutton.properties
+++ b/fr/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = En apprendre davantage
torbutton.circuit_display.click_to_copy = Cliquer pour copier
torbutton.circuit_display.copied = A été copié
torbutton.content_sizer.margin_tooltip = Le Navigateur Tor ajoute cette marge pour rendre la largeur et la hauteur de votre fenêtre moins distinctives, et pour réduire par conséquent la possibilité que l’on vous suive à la trace en ligne.
-torbutton.panel.tooltip.disabled = Cliquer pour activer Tor
-torbutton.panel.tooltip.enabled = Cliquer pour désactiver Tor
-torbutton.panel.label.disabled = Tor est désactivé
-torbutton.panel.label.enabled = Tor est activé
extensions.torbutton(a)torproject.org.description = BoutonTor offre un bouton pour configurer les paramètres de Tor et effacer facilement les données de navigation privée.
torbutton.popup.external.title = Télécharger un type de fichier externe ?
torbutton.popup.external.app = Le Navigateur Tor ne peut pas afficher ce fichier. Vous devrez l’ouvrir avec une autre application.
diff --git a/ga-IE/torbutton.properties b/ga-IE/torbutton.properties
index 8623cabb21..fa76903211 100644
--- a/ga-IE/torbutton.properties
+++ b/ga-IE/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Tuilleadh eolais
torbutton.circuit_display.click_to_copy = Cliceáil le Cóipeáil
torbutton.circuit_display.copied = Cóipeáilte!
torbutton.content_sizer.margin_tooltip = Cuireann Brabhsálaí Tor an chiumhais seo leis an bhfuinneog ionas nach mbeidh leithead agus airde na fuinneoige chomh suntasach, sa chaoi go mbíonn sé níos deacra do ghníomhaíocht ar líne a lorg.
-torbutton.panel.tooltip.disabled = Cliceáil le Tor a chumasú
-torbutton.panel.tooltip.enabled = Cliceáil le Tor a dhíchumasú
-torbutton.panel.label.disabled = Tá Tor Díchumasaithe
-torbutton.panel.label.enabled = Tá Tor Cumasaithe
extensions.torbutton(a)torproject.org.description = Is féidir leat an cnaipe Tor a úsáid chun Tor a chumrú agus do chuid sonraí brabhsála príobháideacha a ghlanadh go tapa agus go héasca.
torbutton.popup.external.title = Íoslódáil cineál comhaid seachtrach?
torbutton.popup.external.app = Ní féidir le Brabhsálaí Tor an comhad seo a thaispeáint. Ní mór duit é a oscailt le feidhmchlár eile.\n\n
diff --git a/he/torbutton.properties b/he/torbutton.properties
index d94caa67c3..1ba4282528 100644
--- a/he/torbutton.properties
+++ b/he/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = למד עוד
# torbutton.circuit_display.click_to_copy = Click to Copy
# torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = דפדפן Tor מוסיף שול זה כדי להפוך את הגובה והרוחב של חלונך ליחודיים פחות, ובכך להפחית את היכולת של אנשים לעקוב אחריך באופן מקוון.
-torbutton.panel.tooltip.disabled = לחץ כדי לאפשר את Tor
-torbutton.panel.tooltip.enabled = לחץ כדי להשבית את Tor
-torbutton.panel.label.disabled = Tor מושבת
-torbutton.panel.label.enabled = Tor מאופשר
extensions.torbutton(a)torproject.org.description = Torbutton מספק כפתור כדי לתצר את הגדרות Tor וכדי לנקות במהירות ובקלות נתוני גלישה פרטיים.
torbutton.popup.external.title = להוריד סוג חיצוני של קובץ?
torbutton.popup.external.app = דפדפן Tor אינו יכול להציג קובץ זה. תצטרך לפתוח אותו באמצעות יישום אחר.\n\n
diff --git a/hr/torbutton.properties b/hr/torbutton.properties
index ffcf7c7e59..bf70230814 100644
--- a/hr/torbutton.properties
+++ b/hr/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Saznaj više
torbutton.circuit_display.click_to_copy = Pritisni za kopiranje
torbutton.circuit_display.copied = Kopirano!
torbutton.content_sizer.margin_tooltip = Tor preglednik dodaje ovu marginu kako bi učinio širinu i visinu tvog prozora manje uočljivim, te time smanjio mogućnost da te ljudi prate online.
-torbutton.panel.tooltip.disabled = Pritisni za aktiviranje Tora
-torbutton.panel.tooltip.enabled = Pritisni za deaktiviranje Tora
-torbutton.panel.label.disabled = Tor deaktiviran
-torbutton.panel.label.enabled = Tor aktiviran
extensions.torbutton(a)torproject.org.description = Torbutton omogućuje gumb za konfiguraciju postavki Tora i brzo i lako brisanje privatnih podataka o pregledavanju.
torbutton.popup.external.title = Preuzeti vanjsku vrstu datoteke?
torbutton.popup.external.app = Tor preglednik ne može prikazati ovu datoteku. Mora se otvoriti s jednim drugim programom.\n\n
diff --git a/hu/torbutton.properties b/hu/torbutton.properties
index e912451103..7743c2625f 100644
--- a/hu/torbutton.properties
+++ b/hu/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = További információ
torbutton.circuit_display.click_to_copy = Kattintson a másoláshoz
torbutton.circuit_display.copied = Másolva!
torbutton.content_sizer.margin_tooltip = A Tor Böngésző ezt a margót adja hozzá, hogy a magassága és a szélessége az ablaknak kevésbé eltérő legyen, így csökkenti az online tevékenységének nyomon követhetőségét.
-torbutton.panel.tooltip.disabled = Kattintson rá a Tor bekapcsolásához
-torbutton.panel.tooltip.enabled = Kattintson rá a Tor kikapcsolásához
-torbutton.panel.label.disabled = Tor kikapcsolva
-torbutton.panel.label.enabled = Tor bekapcsolva
extensions.torbutton(a)torproject.org.description = A Torbutton egy gombot biztosít a Tor beállítások módosításához és a gyors és könnyű takarításához a privát böngészési adatoknak.
torbutton.popup.external.title = Töltse le a külső fájl típust?
torbutton.popup.external.app = A Tor Böngésző nem tudja megjeleníteni ezt a fájlt. Egy másik alkalmazással kell megnyitnia.\n\n
diff --git a/is/torbutton.properties b/is/torbutton.properties
index f66c37adab..d2642137a4 100644
--- a/is/torbutton.properties
+++ b/is/torbutton.properties
@@ -11,10 +11,6 @@
# torbutton.circuit_display.click_to_copy = Click to Copy
# torbutton.circuit_display.copied = Copied!
# torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-# torbutton.panel.tooltip.disabled = Click to enable Tor
-# torbutton.panel.tooltip.enabled = Click to disable Tor
-# torbutton.panel.label.disabled = Tor Disabled
-# torbutton.panel.label.enabled = Tor Enabled
# extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
# torbutton.popup.external.title = Download an external file type?
# torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/it/torbutton.properties b/it/torbutton.properties
index 2944494389..98d73685ec 100644
--- a/it/torbutton.properties
+++ b/it/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Per saperne di più
torbutton.circuit_display.click_to_copy = Clicca per copiare
torbutton.circuit_display.copied = Copiato!
torbutton.content_sizer.margin_tooltip = Il browser Tor aggiunge questo margine per rendere l'ampiezza e altezza della tua finestra meno distintiva, così si riduce la possibilità di che tu sia tracciato in linea.
-torbutton.panel.tooltip.disabled = Fai clic per attivare Tor
-torbutton.panel.tooltip.enabled = Fai clic per disattivare Tor
-torbutton.panel.label.disabled = Tor Disattivato
-torbutton.panel.label.enabled = Tor Attivato
extensions.torbutton(a)torproject.org.description = Torbutton fornisce un pulsante per configurare le impostazioni di Tor e rimuovere velocemente e facilmente i dati di navigazione privati.
torbutton.popup.external.title = Si desidera scaricare un tipo di file esterno?
torbutton.popup.external.app = Tor Browser non è in grado di aprire questo file. Sarà necessario usare un'altra applicazione per aprirlo.\n\n
diff --git a/ja/torbutton.properties b/ja/torbutton.properties
index f66c37adab..d2642137a4 100644
--- a/ja/torbutton.properties
+++ b/ja/torbutton.properties
@@ -11,10 +11,6 @@
# torbutton.circuit_display.click_to_copy = Click to Copy
# torbutton.circuit_display.copied = Copied!
# torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-# torbutton.panel.tooltip.disabled = Click to enable Tor
-# torbutton.panel.tooltip.enabled = Click to disable Tor
-# torbutton.panel.label.disabled = Tor Disabled
-# torbutton.panel.label.enabled = Tor Enabled
# extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
# torbutton.popup.external.title = Download an external file type?
# torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/ka/torbutton.properties b/ka/torbutton.properties
index f66c37adab..d2642137a4 100644
--- a/ka/torbutton.properties
+++ b/ka/torbutton.properties
@@ -11,10 +11,6 @@
# torbutton.circuit_display.click_to_copy = Click to Copy
# torbutton.circuit_display.copied = Copied!
# torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-# torbutton.panel.tooltip.disabled = Click to enable Tor
-# torbutton.panel.tooltip.enabled = Click to disable Tor
-# torbutton.panel.label.disabled = Tor Disabled
-# torbutton.panel.label.enabled = Tor Enabled
# extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
# torbutton.popup.external.title = Download an external file type?
# torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/ko/torbutton.properties b/ko/torbutton.properties
index f66c37adab..d2642137a4 100644
--- a/ko/torbutton.properties
+++ b/ko/torbutton.properties
@@ -11,10 +11,6 @@
# torbutton.circuit_display.click_to_copy = Click to Copy
# torbutton.circuit_display.copied = Copied!
# torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-# torbutton.panel.tooltip.disabled = Click to enable Tor
-# torbutton.panel.tooltip.enabled = Click to disable Tor
-# torbutton.panel.label.disabled = Tor Disabled
-# torbutton.panel.label.enabled = Tor Enabled
# extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
# torbutton.popup.external.title = Download an external file type?
# torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/mk/torbutton.properties b/mk/torbutton.properties
index 1789493f37..a92218ccd4 100644
--- a/mk/torbutton.properties
+++ b/mk/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Научи повеќе
torbutton.circuit_display.click_to_copy = Кликни за Копирање
torbutton.circuit_display.copied = Копирано!
torbutton.content_sizer.margin_tooltip = Tor Browser ја додава ова маргина за ширината и висината на вашиот прозорец да биде постандарден, со што се намалува можноста луѓето да ве следат онлајн.
-torbutton.panel.tooltip.disabled = Кликнете за да го овозможите Tor
-torbutton.panel.tooltip.enabled = Кликнете за да го оневозможите Tor
-torbutton.panel.label.disabled = Tor е оневозможен
-torbutton.panel.label.enabled = Tor е овозможен
extensions.torbutton(a)torproject.org.description = Torbutton пружа копче за конфигурирање на Tor поставките и брзо и олеснето чисто приватно прелистување на податоци.
torbutton.popup.external.title = Преземање на надворешна датотека?
torbutton.popup.external.app = Tor прелистувачот не може да ја прикаже оваа датотека. Треба да ја отворите со друга апликација.\n\n
diff --git a/nl/torbutton.properties b/nl/torbutton.properties
index d2d4a00055..6b7fd70bc0 100644
--- a/nl/torbutton.properties
+++ b/nl/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.onion_site = Onion-website
# torbutton.circuit_display.click_to_copy = Click to Copy
# torbutton.circuit_display.copied = Copied!
# torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-# torbutton.panel.tooltip.disabled = Click to enable Tor
-# torbutton.panel.tooltip.enabled = Click to disable Tor
-# torbutton.panel.label.disabled = Tor Disabled
-# torbutton.panel.label.enabled = Tor Enabled
# extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
# torbutton.popup.external.title = Download an external file type?
# torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/pl/torbutton.properties b/pl/torbutton.properties
index 28b095eefd..b8529235b0 100644
--- a/pl/torbutton.properties
+++ b/pl/torbutton.properties
@@ -11,10 +11,6 @@
# torbutton.circuit_display.click_to_copy = Click to Copy
# torbutton.circuit_display.copied = Copied!
# torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Kliknij tutaj, aby włączyć Tora
-torbutton.panel.tooltip.enabled = Kliknij tutaj, aby wyłączyć Tora
-torbutton.panel.label.disabled = Tor wyłączony
-torbutton.panel.label.enabled = Tor włączony
extensions.torbutton(a)torproject.org.description = Torbutton udostępnia przycisk do konfiguracji ustawień Tora oraz szybkiego i łatwego usuwania prywatnych danych z przeglądarki.
torbutton.popup.external.title = Pobrać zewnętrzny typ pliku?
torbutton.popup.external.app = Tor Browser nie może wyświetlić tego pliku. Musisz otworzyć go z innej aplikacji\n\n
diff --git a/pt-BR/torbutton.properties b/pt-BR/torbutton.properties
index 14208566f2..ba9d1a3241 100644
--- a/pt-BR/torbutton.properties
+++ b/pt-BR/torbutton.properties
@@ -11,10 +11,6 @@
# torbutton.circuit_display.click_to_copy = Click to Copy
# torbutton.circuit_display.copied = Copied!
# torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Clique para habilitar o Tor
-torbutton.panel.tooltip.enabled = Clique para desabilitar o Tor
-torbutton.panel.label.disabled = O Tor está desabilitado
-torbutton.panel.label.enabled = O Tor está habilitado
extensions.torbutton(a)torproject.org.description = O Torbutton fornece uma opção para configurar as preferências do Tor e, com rapidez e facilidade, limpar os dados de navegação privada.
torbutton.popup.external.title = Fazer o download de um tipo de arquivo externo?
torbutton.popup.external.app = O Navegador Tor não pode exibir este arquivo. Você precisa abri-lo com um outro aplicativo.\n\n
diff --git a/pt-PT/torbutton.properties b/pt-PT/torbutton.properties
index 36ef8ffb08..aa32044d33 100644
--- a/pt-PT/torbutton.properties
+++ b/pt-PT/torbutton.properties
@@ -11,10 +11,6 @@
# torbutton.circuit_display.click_to_copy = Click to Copy
# torbutton.circuit_display.copied = Copied!
# torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Clique para ativar o Tor
-torbutton.panel.tooltip.enabled = Clique para desativar o Tor
-torbutton.panel.label.disabled = Tor Desativado
-torbutton.panel.label.enabled = Tor Ativado
extensions.torbutton(a)torproject.org.description = Torbutton proporciona um botão para configurar as definições do Tor, e para limpar facilmente e rapidamente os dados de navegação privados.
torbutton.popup.external.title = Transferir um tipo de ficheiro externo?
# torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/ro/torbutton.properties b/ro/torbutton.properties
index 23fa41d94e..c2c3a2fceb 100644
--- a/ro/torbutton.properties
+++ b/ro/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Află mai mult
# torbutton.circuit_display.click_to_copy = Click to Copy
# torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Navigatorul Tor Browser adaugă această margine pentru a face lățimea și înălțimea ferestrei tale mai puțin specifică, și astfel reduce abilitatea altora de a te urmări online.
-torbutton.panel.tooltip.disabled = Click pentru a activa Tor
-torbutton.panel.tooltip.enabled = Click pentru a dezactiva Tor
-torbutton.panel.label.disabled = Tor a fost dezactivat
-torbutton.panel.label.enabled = Tor a fost activat
extensions.torbutton(a)torproject.org.description = Torbutton oferă posibilitatea de a configura setările navigatorului si de a goli rapid şi ușor datele private ale navigării.
torbutton.popup.external.title = Descărcare fișier de tip extern?
torbutton.popup.external.app = Navigatorul Tor Browser nu poate afișa acest fișier. Va trebui să îl deschizi cu o altă aplicație.\n\n
diff --git a/ru/torbutton.properties b/ru/torbutton.properties
index f9577aca56..b933f1ea8b 100644
--- a/ru/torbutton.properties
+++ b/ru/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Узнать больше
torbutton.circuit_display.click_to_copy = Нажмите для копирования
torbutton.circuit_display.copied = Скопировано!
torbutton.content_sizer.margin_tooltip = Tor Browser добавляет этот отступ, чтобы ширина и высота окна были менее узнаваемыми. Это затрудняет отслеживание в интернете.
-torbutton.panel.tooltip.disabled = Нажмите, чтобы включить Tor
-torbutton.panel.tooltip.enabled = Нажмите, чтобы отключить Tor
-torbutton.panel.label.disabled = Tor отключен
-torbutton.panel.label.enabled = Tor включен
extensions.torbutton(a)torproject.org.description = Torbutton предлагает кнопку для настройки Tor. С помощью Torbutton можно быстро и легко очистить личные данные просмотра.
torbutton.popup.external.title = Скачать внешний файл?
torbutton.popup.external.app = Tor Browser не может отобразить этот файл. Придется открыть его с помощью другого приложения.\n\n
diff --git a/sv-SE/torbutton.properties b/sv-SE/torbutton.properties
index 5f3a14a620..6b9504b44d 100644
--- a/sv-SE/torbutton.properties
+++ b/sv-SE/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.unknown_country = Okänt land
# torbutton.circuit_display.click_to_copy = Click to Copy
# torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser lägger till denna marginal för att göra bredden och höjden på ditt fönster mindre tydlig. Därmed minskas möjligheten att spåra dig.
-torbutton.panel.tooltip.disabled = Klicka för att aktivera Tor
-torbutton.panel.tooltip.enabled = Klicka för att inaktivera Tor
-torbutton.panel.label.disabled = Tor inaktiv
-torbutton.panel.label.enabled = Tor aktiv
extensions.torbutton(a)torproject.org.description = Torbutton ger en knapp för att konfigurera Tor inställningar och snabbt och enkelt rensa privat surfdata.
torbutton.popup.external.title = Hämta en extern filtyp?
torbutton.popup.external.app = Tor Browser kan inte visa filen. Du behöver öppna den i ett annat program.\n\n
diff --git a/tr/torbutton.properties b/tr/torbutton.properties
index 30463c182f..2f838439b1 100644
--- a/tr/torbutton.properties
+++ b/tr/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Ayrıntılı bilgi alın
torbutton.circuit_display.click_to_copy = Kopyalamak için tıklayın
torbutton.circuit_display.copied = Kopyalandı!
torbutton.content_sizer.margin_tooltip = Tor Browser pencerenizin genişlik ve yüksekliğini daha az ayırt edilebilir duruma getirmek için kenar boşlukları ekleyerek kişilerin sizi çevrim içi olarak izleme yeteneğini azaltır.
-torbutton.panel.tooltip.disabled = Tor uygulamasını etkinleştirmek için tıklayın
-torbutton.panel.tooltip.enabled = Tor uygulamasını devre dışı bırakmak için tıklayın
-torbutton.panel.label.disabled = Tor Devre Dışı
-torbutton.panel.label.enabled = Tor Etkin
extensions.torbutton(a)torproject.org.description = Torbutton, Tor ayarlarını yapabileceğiniz ve kişisel tarama verilerinizi hızla ve kolayca silebileceğiniz bir düğme görüntüler.
torbutton.popup.external.title = Dış bir dosya türü indirilsin mi?
torbutton.popup.external.app = Tor Browser bu dosyayı görüntüleyemiyor. Başka bir uygulamayla açmanız gerekecek.\n
diff --git a/zh-CN/torbutton.properties b/zh-CN/torbutton.properties
index 17ea5d2ff8..f67bf83d5a 100644
--- a/zh-CN/torbutton.properties
+++ b/zh-CN/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = 详细了解
torbutton.circuit_display.click_to_copy = 点击以复制
torbutton.circuit_display.copied = 已复制!
torbutton.content_sizer.margin_tooltip = Tor 浏览器添加了一些边框,以降低窗口大小的独特性,令在线跟踪监控变得更加困难。
-torbutton.panel.tooltip.disabled = 点击启用 Tor
-torbutton.panel.tooltip.enabled = 点击禁用 Tor
-torbutton.panel.label.disabled = Tor 已禁用
-torbutton.panel.label.enabled = Tor 已启用
extensions.torbutton(a)torproject.org.description = Torbutton 是一个按钮,可对“Tor 设置”进行修改,并可快速而方便地清除浏览器隐私数据。
torbutton.popup.external.title = 下载一个外部文件类型?
torbutton.popup.external.app = Tor 浏览器无法显示此文件。您需要用其他应用程序打开它。\n\n
[View Less]
1
0

[translation/torbutton-torbuttonproperties] https://gitweb.torproject.org/translation.git/commit/?h=torbutton-torbuttonproperties
by translation@torproject.org 23 Feb '21
by translation@torproject.org 23 Feb '21
23 Feb '21
commit bed2b9c428adee24805f9da42b16d49f751bcf60
Author: Translation commit bot <translation(a)torproject.org>
Date: Tue Feb 23 10:48:24 2021 +0000
https://gitweb.torproject.org/translation.git/commit/?h=torbutton-torbutton…
---
ach/torbutton.properties | 4 ----
af/torbutton.properties | 4 ----
ar/torbutton.properties | 4 ----
ast/torbutton.properties | 4 ----
az/torbutton.properties | 4 ----
be/torbutton.properties | 4 ----
bg/torbutton.properties | 4 ----
…
[View More] bn-BD/torbutton.properties | 4 ----
br/torbutton.properties | 4 ----
bs/torbutton.properties | 4 ----
ca/torbutton.properties | 4 ----
cs/torbutton.properties | 4 ----
cy/torbutton.properties | 4 ----
da/torbutton.properties | 4 ----
de/torbutton.properties | 4 ----
el/torbutton.properties | 4 ----
en-GB/torbutton.properties | 4 ----
en-US/torbutton.properties | 4 ----
en/torbutton.properties | 4 ----
eo/torbutton.properties | 4 ----
es-AR/torbutton.properties | 4 ----
es-ES/torbutton.properties | 4 ----
es-MX/torbutton.properties | 4 ----
et/torbutton.properties | 4 ----
eu/torbutton.properties | 4 ----
fa/torbutton.properties | 4 ----
fi/torbutton.properties | 4 ----
fr/torbutton.properties | 4 ----
fy-NL/torbutton.properties | 4 ----
ga-IE/torbutton.properties | 4 ----
gd/torbutton.properties | 4 ----
gl/torbutton.properties | 4 ----
gu-IN/torbutton.properties | 4 ----
he/torbutton.properties | 4 ----
hi-IN/torbutton.properties | 4 ----
hr/torbutton.properties | 4 ----
hu/torbutton.properties | 4 ----
hy-AM/torbutton.properties | 4 ----
ia/torbutton.properties | 4 ----
id/torbutton.properties | 4 ----
is/torbutton.properties | 4 ----
it/torbutton.properties | 4 ----
ja/torbutton.properties | 4 ----
ka/torbutton.properties | 4 ----
kab/torbutton.properties | 4 ----
kk/torbutton.properties | 4 ----
km/torbutton.properties | 4 ----
kn/torbutton.properties | 4 ----
ko/torbutton.properties | 4 ----
lt/torbutton.properties | 4 ----
lv/torbutton.properties | 4 ----
mk/torbutton.properties | 4 ----
ml/torbutton.properties | 4 ----
mr/torbutton.properties | 4 ----
ms/torbutton.properties | 4 ----
my/torbutton.properties | 4 ----
nb-NO/torbutton.properties | 4 ----
ne/torbutton.properties | 4 ----
nl-BE/torbutton.properties | 4 ----
nl/torbutton.properties | 4 ----
nn-NO/torbutton.properties | 4 ----
oc/torbutton.properties | 4 ----
or/torbutton.properties | 4 ----
pa-IN/torbutton.properties | 4 ----
pl/torbutton.properties | 4 ----
pt-BR/torbutton.properties | 4 ----
pt-PT/torbutton.properties | 4 ----
ro/torbutton.properties | 4 ----
ru/torbutton.properties | 4 ----
si/torbutton.properties | 4 ----
sk/torbutton.properties | 4 ----
sl/torbutton.properties | 4 ----
son/torbutton.properties | 4 ----
sq/torbutton.properties | 4 ----
sr/torbutton.properties | 4 ----
sv-SE/torbutton.properties | 4 ----
sw/torbutton.properties | 4 ----
ta/torbutton.properties | 4 ----
te/torbutton.properties | 4 ----
th/torbutton.properties | 4 ----
tr/torbutton.properties | 4 ----
uk/torbutton.properties | 4 ----
ur/torbutton.properties | 4 ----
uz/torbutton.properties | 4 ----
vi/torbutton.properties | 4 ----
zh-CN/torbutton.properties | 4 ----
zh-HK/torbutton.properties | 4 ----
zh-TW/torbutton.properties | 4 ----
88 files changed, 352 deletions(-)
diff --git a/ach/torbutton.properties b/ach/torbutton.properties
index 53651280e8..632605f777 100644
--- a/ach/torbutton.properties
+++ b/ach/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Learn more
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Click to enable Tor
-torbutton.panel.tooltip.enabled = Click to disable Tor
-torbutton.panel.label.disabled = Tor Disabled
-torbutton.panel.label.enabled = Tor Enabled
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Download an external file type?
torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/af/torbutton.properties b/af/torbutton.properties
index 5222e570ae..a07e29a160 100644
--- a/af/torbutton.properties
+++ b/af/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Learn more
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Klil om Tor aan te sit
-torbutton.panel.tooltip.enabled = Klik om Tor af te sit
-torbutton.panel.label.disabled = Tor Disabled
-torbutton.panel.label.enabled = Tor Enabled
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Download an external file type?
torbutton.popup.external.app = Tor Browser kan hierdie lêer nie vertoon nie. Jy sal n ander program moet gebruik om dit oop te maak.\n\n
diff --git a/ar/torbutton.properties b/ar/torbutton.properties
index 34593ee30a..2e4927ea58 100644
--- a/ar/torbutton.properties
+++ b/ar/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = تعرّف على المزيد
torbutton.circuit_display.click_to_copy = انقر للنسخ
torbutton.circuit_display.copied = تم النسخ!
torbutton.content_sizer.margin_tooltip = يضيف متصفح تور هذا الهامش لجعل عرض وارتفاع نافذتك غير مميزين، لتقليل إمكانية اقتفاء أثرك عبر الإنترنت.
-torbutton.panel.tooltip.disabled = انقر لتفعيل تور
-torbutton.panel.tooltip.enabled = انقر لتعطيل تور
-torbutton.panel.label.disabled = تور معطّل
-torbutton.panel.label.enabled = تور مفعّل
extensions.torbutton(a)torproject.org.description = زر تور يوفر زر لتعديل إعدادات تور وايضاً لمسح بيانات التصفح الخاصة بك بسرعة وبسهولة.
torbutton.popup.external.title = هل تريد تنزيل ملف خارجي؟
torbutton.popup.external.app = لا يمكن لمتصفّح تور عرض هذه الملف، يجب عليك أن تفتحه باستعمال تطبيق آخر.\n\n
diff --git a/ast/torbutton.properties b/ast/torbutton.properties
index a815f54034..131d7da007 100644
--- a/ast/torbutton.properties
+++ b/ast/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Learn more
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Click to enable Tor
-torbutton.panel.tooltip.enabled = Click to disable Tor
-torbutton.panel.label.disabled = Tor Disabled
-torbutton.panel.label.enabled = Tor Enabled
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Download an external file type?
torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/az/torbutton.properties b/az/torbutton.properties
index bb818b238c..dccc84bf09 100644
--- a/az/torbutton.properties
+++ b/az/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Daha ətraflı öyrən
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Toru yandırmaq üçün kliklə
-torbutton.panel.tooltip.enabled = Toru söndürmək üçün kliklə
-torbutton.panel.label.disabled = Tor sönülüdür
-torbutton.panel.label.enabled = Tor yanılıdır
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Əlavə fayl tipi yüklənsin?
torbutton.popup.external.app = Tor brauzeri bu faylı göstərə bilmir. Siz bunu başqa proqramla açmalısınız.\n\n
diff --git a/be/torbutton.properties b/be/torbutton.properties
index b2324f06d0..aaa841b56d 100644
--- a/be/torbutton.properties
+++ b/be/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Даведайцеся больш
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Клікніце каб уключыць Tor
-torbutton.panel.tooltip.enabled = Клікніце каб выключыць Tor
-torbutton.panel.label.disabled = Tor Выключаны
-torbutton.panel.label.enabled = Tor Уключына
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Download an external file type?
torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/bg/torbutton.properties b/bg/torbutton.properties
index 84e07cacc1..b87b43cf12 100644
--- a/bg/torbutton.properties
+++ b/bg/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Научете повече
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser добавя тази граница, за да направи широчината и височината на прозореца по-малко отличителен, и по този начин намалява способността на хората да ви следят онлайн.
-torbutton.panel.tooltip.disabled = Натисни за да включиш Tor
-torbutton.panel.tooltip.enabled = Натисни за да изключиш Tor
-torbutton.panel.label.disabled = Tor Изключен
-torbutton.panel.label.enabled = Tor Включен
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Изтегли чужд тип файл?
torbutton.popup.external.app = Тор Браузърът неможе да покаже този файл. Трябва да го отвориш с друга програма.\n\n
diff --git a/bn-BD/torbutton.properties b/bn-BD/torbutton.properties
index e3e0e1cfde..78b6e90350 100644
--- a/bn-BD/torbutton.properties
+++ b/bn-BD/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = আরও জানুন
torbutton.circuit_display.click_to_copy = অনুলিপি করতে ক্লিক করো
torbutton.circuit_display.copied = অনুলিপিত!
torbutton.content_sizer.margin_tooltip = টর ব্রাউজার আপনার উইন্ডো প্রস্থ এবং উচ্চতা নিখুঁত করতে এই মার্জিন যোগ করে, এবং এইভাবে মানুষ আপনাকে অনলাইন ট্র্যাক করার ক্ষমতা হ্রাস করে।
-torbutton.panel.tooltip.disabled = টর সক্রিয় করতে ক্লিক করুন
-torbutton.panel.tooltip.enabled = টর অক্ষম করতে ক্লিক করুন
-torbutton.panel.label.disabled = টর অক্ষম
-torbutton.panel.label.enabled = Tor Enabled
extensions.torbutton(a)torproject.org.description = Torbutton টর সেটিংস কনফিগার করার জন্য একটি বোতাম সরবরাহ করে এবং ব্যক্তিগত ব্রাউজিং ডেটা দ্রুত এবং সহজে পরিষ্কার করে।
torbutton.popup.external.title = একটি বাহ্যিক ফাইল টাইপ ডাউনলোড করবেন?
torbutton.popup.external.app = টর ব্রাউজার এই ফাইলটি প্রদর্শন করতে পারে না। আপনি এটি অন্য অ্যাপ্লিকেশন দিয়ে খুলতে হবে।\n
diff --git a/br/torbutton.properties b/br/torbutton.properties
index 9929a0f516..ace839b8d7 100644
--- a/br/torbutton.properties
+++ b/br/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Gouzout hiroc'h
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Klikañ evit gweredekaat Tor
-torbutton.panel.tooltip.enabled = Klikañ evit diweredekaat Tor
-torbutton.panel.label.disabled = Diweredekaet eo Tor
-torbutton.panel.label.enabled = Gweredekaet eo Tor
extensions.torbutton(a)torproject.org.description = Pourchas a ra Torbutton ur bouton evit kefluniañ Tor ha riñsañ prim ha brav ar roadennoù merdeiñ prevez.
torbutton.popup.external.title = Download an external file type?
torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/bs/torbutton.properties b/bs/torbutton.properties
index 9ecc8785c7..d122156543 100644
--- a/bs/torbutton.properties
+++ b/bs/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Learn more
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Click to enable Tor
-torbutton.panel.tooltip.enabled = Click to disable Tor
-torbutton.panel.label.disabled = Tor Disabled
-torbutton.panel.label.enabled = Tor Enabled
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Download an external file type?
torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/ca/torbutton.properties b/ca/torbutton.properties
index 8698caba81..d2b65db43b 100644
--- a/ca/torbutton.properties
+++ b/ca/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Apreneu-ne més
torbutton.circuit_display.click_to_copy = Feu clic per a copiar
torbutton.circuit_display.copied = S'ha copiat!
torbutton.content_sizer.margin_tooltip = El navegador Tor afegeix aquest marge per a minorar la diferència de alçada i amplada de la finestra, això fa reduir la capacitat de rastrejar-te.
-torbutton.panel.tooltip.disabled = Feu clic per activar Tor
-torbutton.panel.tooltip.enabled = Feu clic per desactivar Tor
-torbutton.panel.label.disabled = Tor està desactivat
-torbutton.panel.label.enabled = Tor està activat
extensions.torbutton(a)torproject.org.description = Torbutton permet accedir a la configuració de Tor i esborrar fàcilment i ràpidament les dades privades de navegació per internet.
torbutton.popup.external.title = Voleu descarregar un tipus de fitxer extern?
torbutton.popup.external.app = Tor Browser no pot visualitzar aquest fitxer. Cal obrir-lo amb una altra aplicació.\n\n
diff --git a/cs/torbutton.properties b/cs/torbutton.properties
index 0a8c7af3b2..28ff96e606 100644
--- a/cs/torbutton.properties
+++ b/cs/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Zjistit více
torbutton.circuit_display.click_to_copy = Kliknutím zkopírujte
torbutton.circuit_display.copied = Zkopírováno!
torbutton.content_sizer.margin_tooltip = Prohlížeč Tor upravuje velikost vašeho okna, aby znesnadnil možnost vašeho vysledování.
-torbutton.panel.tooltip.disabled = Klepněte pro zapnutí Toru
-torbutton.panel.tooltip.enabled = Klepněte pro vypnutí Toru
-torbutton.panel.label.disabled = Tor vypnut
-torbutton.panel.label.enabled = Tor zapnut
extensions.torbutton(a)torproject.org.description = TorButton je tlačítko pro nastavení Toru a rychlé a jednoduché smazání soukromých údajů o vašem prohlížení.
torbutton.popup.external.title = Stáhnout externí soubor?
torbutton.popup.external.app = Prohlížeč Tor nemůže zobrazit tento soubor. Budete ho muset otevřít v jiné aplikaci.\n\n
diff --git a/cy/torbutton.properties b/cy/torbutton.properties
index 870c5dddad..3cddde5e78 100644
--- a/cy/torbutton.properties
+++ b/cy/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Learn more
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Cliciwch i alluogi Tor
-torbutton.panel.tooltip.enabled = Cliciwch i analluogu Tor
-torbutton.panel.label.disabled = Tor Anabl
-torbutton.panel.label.enabled = Tor Galluog
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Lawrlwythwch math ffeil allanol?
torbutton.popup.external.app = Ni all Porwr Tor llwytho'r fath ffeil hon. Mae'n rhaid i chithau ago'r ffeil gyda rhaglen arall.\n\n
diff --git a/da/torbutton.properties b/da/torbutton.properties
index d46feba96a..d702312753 100644
--- a/da/torbutton.properties
+++ b/da/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Lær mere
torbutton.circuit_display.click_to_copy = Klik for at kopiere
torbutton.circuit_display.copied = Kopieret!
torbutton.content_sizer.margin_tooltip = Tor Browser tilføjer margenen for at gøre dit vindues højde og bredde mindre genkendeligt, hvilket reducerer muligheden for at andre kan spore dig online.
-torbutton.panel.tooltip.disabled = Klik for at aktivere Tor
-torbutton.panel.tooltip.enabled = Klik for at deaktivere Tor
-torbutton.panel.label.disabled = Tor deaktiveret
-torbutton.panel.label.enabled = Tor aktiveret
extensions.torbutton(a)torproject.org.description = Torbutton giver en knap til at konfigurere Tor-indstillinger og til hurtigt og nemt at fjerne private browsingdata.
torbutton.popup.external.title = Download en ekstern filtype?
torbutton.popup.external.app = Tor Browser kan ikke vis filen. Du skal åbne den med et andet program.\n\n
diff --git a/de/torbutton.properties b/de/torbutton.properties
index f1e59a3835..2554e0b742 100644
--- a/de/torbutton.properties
+++ b/de/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Erfahre mehr
torbutton.circuit_display.click_to_copy = Zum Kopieren klicken
torbutton.circuit_display.copied = Kopiert!
torbutton.content_sizer.margin_tooltip = Tor Browser fügt diese Begrenzung hinzu, um die Breite und Höhe deines Fensters weniger einzigartig zu machen. Dadurch wird es anderen erschwert, dich im Internet zu verfolgen.
-torbutton.panel.tooltip.disabled = Klicken, um Tor zu aktivieren
-torbutton.panel.tooltip.enabled = Klicken, um Tor zu deaktivieren
-torbutton.panel.label.disabled = Tor ist deaktiviert
-torbutton.panel.label.enabled = Tor ist aktiviert
extensions.torbutton(a)torproject.org.description = Torbutton gibt dir die Möglichkeit, Einstellungen von Tor zu verändern und schnell und einfach die Internetdaten zu löschen.
torbutton.popup.external.title = Einen externen Dateitypen herunterladen?
torbutton.popup.external.app = Tor-Browser kann diese Datei nicht anzeigen. Du musst es mit einer anderen Anwendung öffnen.\n\n
diff --git a/el/torbutton.properties b/el/torbutton.properties
index 0bffb643c5..915ded9d5f 100644
--- a/el/torbutton.properties
+++ b/el/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Μάθετε περισσότερα
torbutton.circuit_display.click_to_copy = Κλίκ για αντιγραφή
torbutton.circuit_display.copied = Αντιγράφηκε!
torbutton.content_sizer.margin_tooltip = Ο Tor Browser προσθέτει αυτό το περιθώριο για να κάνει το πλάτος και το ύψος του παραθύρου σου λιγότερο ξεχωριστό, οπότε μειώνεται η ικανότητα των άλλων να σε παρακολουθούν διαδικτυακά.
-torbutton.panel.tooltip.disabled = Κάντε κλικ για να ενεργοποιήσετε το Tor
-torbutton.panel.tooltip.enabled = Κάντε κλικ για να απενεργοποιήσετε το Tor
-torbutton.panel.label.disabled = Το Tor είναι απενεργοποιημένο
-torbutton.panel.label.enabled = Το Tor είναι ενεργοποιημένο
extensions.torbutton(a)torproject.org.description = Το Torbutton προσφέρει ένα κουμπί για τη ρύθμιση των παραμέτρων του Tor και για τη γρήγορη και εύκολη εκκαθάριση των προσωπικών στοιχείων περιήγησης.
torbutton.popup.external.title = Λήψη ένος εξωτερικού τύπου αρχείου;
torbutton.popup.external.app = Ο Tor Browser δεν μπορεί να εμφανίσει αυτό το αρχείο. Θα χρειαστεί να το ανοίξετε με κάποια άλλη εφαρμογή.\n\n
diff --git a/en-GB/torbutton.properties b/en-GB/torbutton.properties
index 696b2c4579..77aefe1ab2 100644
--- a/en-GB/torbutton.properties
+++ b/en-GB/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Learn more
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Click to enable Tor
-torbutton.panel.tooltip.enabled = Click to disable Tor
-torbutton.panel.label.disabled = Tor Disabled
-torbutton.panel.label.enabled = Tor Enabled
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Download an external file type?
torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/en-US/torbutton.properties b/en-US/torbutton.properties
index 53651280e8..632605f777 100644
--- a/en-US/torbutton.properties
+++ b/en-US/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Learn more
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Click to enable Tor
-torbutton.panel.tooltip.enabled = Click to disable Tor
-torbutton.panel.label.disabled = Tor Disabled
-torbutton.panel.label.enabled = Tor Enabled
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Download an external file type?
torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/en/torbutton.properties b/en/torbutton.properties
index 53651280e8..632605f777 100644
--- a/en/torbutton.properties
+++ b/en/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Learn more
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Click to enable Tor
-torbutton.panel.tooltip.enabled = Click to disable Tor
-torbutton.panel.label.disabled = Tor Disabled
-torbutton.panel.label.enabled = Tor Enabled
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Download an external file type?
torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/eo/torbutton.properties b/eo/torbutton.properties
index 0b12c6e181..fa7027acf7 100644
--- a/eo/torbutton.properties
+++ b/eo/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Learn more
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Click to enable Tor
-torbutton.panel.tooltip.enabled = Click to disable Tor
-torbutton.panel.label.disabled = Tor Disabled
-torbutton.panel.label.enabled = Tor Enabled
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Ĉu elŝuti tipon de ekstera dosiero?
torbutton.popup.external.app = Tor-retumilo ne povas montri ĉi tiun dosieron. Vi bezonas alian aplikaĵon por malfermi ĝin.\n\n
diff --git a/es-AR/torbutton.properties b/es-AR/torbutton.properties
index 581e040973..70427f366b 100644
--- a/es-AR/torbutton.properties
+++ b/es-AR/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Más informacion
torbutton.circuit_display.click_to_copy = Cliquear para copiar
torbutton.circuit_display.copied = ¡Copiado!
torbutton.content_sizer.margin_tooltip = El Navegador Tor añade éste margen para hacer el ancho y alto de tu ventana menos distintivo, y de ésta manera reduce la habilidad de cualquiera para rastrearte en línea.
-torbutton.panel.tooltip.disabled = Cliquear para habilitar Tor
-torbutton.panel.tooltip.enabled = Cliquear para deshabilitar Tor
-torbutton.panel.label.disabled = Tor deshabilitado
-torbutton.panel.label.enabled = Tor habilitado
extensions.torbutton(a)torproject.org.description = Torbutton provee un botón para configurar ajustes de Tor, y rápida y fácilmente eliminar los datos de navegación privados.
torbutton.popup.external.title = ¿Descargar un tipo de archivo externo?
torbutton.popup.external.app = El Navegador Tor no puede mostrar este archivo. Vas a tener que abrirlo con otra aplicación.\n\n
diff --git a/es-ES/torbutton.properties b/es-ES/torbutton.properties
index 9338bc3a48..54a91b5240 100644
--- a/es-ES/torbutton.properties
+++ b/es-ES/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Conocer más
torbutton.circuit_display.click_to_copy = Click para copiar
torbutton.circuit_display.copied = ¡Copiado!
torbutton.content_sizer.margin_tooltip = El Tor Browser añade este margen para hacer el ancho y el alto de tu ventana menos especial, y reducir de esta forma la posibilidad de rastrearte en línea.
-torbutton.panel.tooltip.disabled = Haga clic para habilitar Tor
-torbutton.panel.tooltip.enabled = Haga clic para deshabilitar Tor
-torbutton.panel.label.disabled = Tor deshabilitado
-torbutton.panel.label.enabled = Tor habilitado
extensions.torbutton(a)torproject.org.description = Torbutton proporciona un botón para configurar las preferencias de Tor y limpiar rápida y fácilmente los datos de navegación privada.
torbutton.popup.external.title = ¿Descargar un tipo de fichero externo?
torbutton.popup.external.app = El Tor Browser no puede mostrar este fichero. Tendrás que abrirlo con otra aplicación.\n\n
diff --git a/es-MX/torbutton.properties b/es-MX/torbutton.properties
index 06e420ef38..c7bd8cfc74 100644
--- a/es-MX/torbutton.properties
+++ b/es-MX/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Learn more
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = El navegador agrega este margen para hacer que el tamaño de tu ventana sea indistinto y esto reduce el riesgo para que a otras personas te puedan localizar en linea.
-torbutton.panel.tooltip.disabled = Click para habilitar Tor
-torbutton.panel.tooltip.enabled = Click para deshabilitar Tor
-torbutton.panel.label.disabled = Tor deshabilitado
-torbutton.panel.label.enabled = Tor habilitado
extensions.torbutton(a)torproject.org.description = Torbutton provee un botón para configurar las preferencias de Tor y limpiar rápida y fácilmente datos privados de navegación
torbutton.popup.external.title = ¿Descargar un tipo archivo externo?
torbutton.popup.external.app = El navegador Tor no puede mostrar este archivo. Necesitará abrirlo en otra aplicación. \n
diff --git a/et/torbutton.properties b/et/torbutton.properties
index 1d12bb779e..1281c414a0 100644
--- a/et/torbutton.properties
+++ b/et/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Loe lisaks
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor brauser lisab selle äärise, et muuta su akna laius ja kõrgus vähem eristuvaks, mis omakorda vähendab teiste võimalust sind võrgus jälitamiseks.
-torbutton.panel.tooltip.disabled = Vajuta Tor\\'i lubamiseks
-torbutton.panel.tooltip.enabled = Vajuta Tor\\'i keelamiseks
-torbutton.panel.label.disabled = Tor on mitteaktiivne
-torbutton.panel.label.enabled = Tor on aktiivne
extensions.torbutton(a)torproject.org.description = Torbutton tagab nupu, millega muuta Tor\\'i seadeid ning kiiresti ja kergelt kustutada lehitsemise privaatseid andmeid.
torbutton.popup.external.title = Lae alla väline failitüüp?
torbutton.popup.external.app = Tor brauser ei suuda seda faili kuvada. Sa pead selle avama teise rakendusega.\n
diff --git a/eu/torbutton.properties b/eu/torbutton.properties
index fd06b66e32..5517992963 100644
--- a/eu/torbutton.properties
+++ b/eu/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Gehiago jakin
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor nabigatzaileak marjin hau gehitzen du zure lehioaren zabalera eta altuera ez hain bereizgarria egiteko, horrela norbaitek zure jarraipena egiteko gaitasuna murriztuz.
-torbutton.panel.tooltip.disabled = Sakatu Tor gaitzeko
-torbutton.panel.tooltip.enabled = Sakatu Tor ezgaitzeko
-torbutton.panel.label.disabled = Tor Ezgaitua
-torbutton.panel.label.enabled = Tor Gaitua
extensions.torbutton(a)torproject.org.description = Torbuttonek Tor ezarpenak konfiguratzeko eta nabigatze pribatuko datuak azkar eta erraz garbitzeko botoi bat hornitzen du
torbutton.popup.external.title = Kanpoko fitxategi mota bat desargatu?
torbutton.popup.external.app = Tor Nabigatzailea ezin du fitxategi hau bistaratu. Irekitzeko beste aplikazio bat behar izango duzu.\n\n
diff --git a/fa/torbutton.properties b/fa/torbutton.properties
index 3b87c048dd..3f574956a7 100644
--- a/fa/torbutton.properties
+++ b/fa/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = اطلاعات بیشتر
torbutton.circuit_display.click_to_copy = برای کپی کلیک کنید
torbutton.circuit_display.copied = کپیشد!
torbutton.content_sizer.margin_tooltip = مرورگر Tor اضافه می کند این حاشیه را به عرض و ارتفاع پنجره شما که کمتر مشخص شود، و در نتیجه باعث کاهش توانایی به ردیابی آنلاین شما شود.
-torbutton.panel.tooltip.disabled = برای فعال کردن Tor کليک کنيد
-torbutton.panel.tooltip.enabled = برای غيرفعال کردن Tor کليک کنيد
-torbutton.panel.label.disabled = Tor غیر فعال شد
-torbutton.panel.label.enabled = Tor فعال شد
extensions.torbutton(a)torproject.org.description = Torbutton دکمه ای را برای شما فراهم مینماید تا تنظیمات "تر" را پیکربندی کرده و بتوانید به راحتی و سرعت، داده های خصوصی مرورگرتان را پاک کنید.
torbutton.popup.external.title = میخواهید یک فایل نوع بیرونی دانلود شود؟
torbutton.popup.external.app = مرورگر نمیتواند این فایل را نمایش دهد، لازم است تا با برنامه دیگری آن را باز کنید.\n
diff --git a/fi/torbutton.properties b/fi/torbutton.properties
index ef483cff7a..91bf4a920b 100644
--- a/fi/torbutton.properties
+++ b/fi/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Opi lisää
torbutton.circuit_display.click_to_copy = Napsauta kopioidaksesi
torbutton.circuit_display.copied = Kopioitu!
torbutton.content_sizer.margin_tooltip = Tor-selain lisää tämän marginaalin tehdäksesi ikkunasi leveyden ja korkeuden vähemmän erottuvan ja näin ollen tekee seuraamisestasi verkossa vaikeampaa.
-torbutton.panel.tooltip.disabled = Käynnistä Tor napsauttamalla.
-torbutton.panel.tooltip.enabled = Poista Tor käytöstä napsauttamalla
-torbutton.panel.label.disabled = Tor pois käytöstä
-torbutton.panel.label.enabled = Tor käytössä
extensions.torbutton(a)torproject.org.description = Torbutton lisää painikkeen, jolla voi muokata Tor-sovelluksen asetuksia sekä poistaa nopeasti ja helposti selaustiedot.
torbutton.popup.external.title = Lataa ulkoinen tiedostotyyppi?
torbutton.popup.external.app = Tor-selain ei pysty avamaan tätä tiedostoa. Sinun pitää avata tämä toisella sovelluksella.\n\n
diff --git a/fr/torbutton.properties b/fr/torbutton.properties
index 31afa22223..4d9a4b21f5 100644
--- a/fr/torbutton.properties
+++ b/fr/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = En apprendre davantage
torbutton.circuit_display.click_to_copy = Cliquer pour copier
torbutton.circuit_display.copied = A été copié
torbutton.content_sizer.margin_tooltip = Le Navigateur Tor ajoute cette marge pour rendre la largeur et la hauteur de votre fenêtre moins distinctives, et pour réduire par conséquent la possibilité que l’on vous suive à la trace en ligne.
-torbutton.panel.tooltip.disabled = Cliquer pour activer Tor
-torbutton.panel.tooltip.enabled = Cliquer pour désactiver Tor
-torbutton.panel.label.disabled = Tor est désactivé
-torbutton.panel.label.enabled = Tor est activé
extensions.torbutton(a)torproject.org.description = BoutonTor offre un bouton pour configurer les paramètres de Tor et effacer facilement les données de navigation privée.
torbutton.popup.external.title = Télécharger un type de fichier externe ?
torbutton.popup.external.app = Le Navigateur Tor ne peut pas afficher ce fichier. Vous devrez l’ouvrir avec une autre application.
diff --git a/fy-NL/torbutton.properties b/fy-NL/torbutton.properties
index 157f56a4bd..4734e29095 100644
--- a/fy-NL/torbutton.properties
+++ b/fy-NL/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Learn more
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Klik om Tor oan te setten
-torbutton.panel.tooltip.enabled = Klik om Tor út te setten
-torbutton.panel.label.disabled = Tor stjit út
-torbutton.panel.label.enabled = Tor stjit oan
extensions.torbutton(a)torproject.org.description = Torbutton lit in knop sjen om Tor yn te stellen en om maklik de skiednis te ferwiderjen
torbutton.popup.external.title = Extern bestânstype downloade?
torbutton.popup.external.app = Tor Browser kin dit bestân net sjen litte. Jo hawwe in oar programma noadig om it te iepenjen.\n\n
diff --git a/ga-IE/torbutton.properties b/ga-IE/torbutton.properties
index 8623cabb21..fa76903211 100644
--- a/ga-IE/torbutton.properties
+++ b/ga-IE/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Tuilleadh eolais
torbutton.circuit_display.click_to_copy = Cliceáil le Cóipeáil
torbutton.circuit_display.copied = Cóipeáilte!
torbutton.content_sizer.margin_tooltip = Cuireann Brabhsálaí Tor an chiumhais seo leis an bhfuinneog ionas nach mbeidh leithead agus airde na fuinneoige chomh suntasach, sa chaoi go mbíonn sé níos deacra do ghníomhaíocht ar líne a lorg.
-torbutton.panel.tooltip.disabled = Cliceáil le Tor a chumasú
-torbutton.panel.tooltip.enabled = Cliceáil le Tor a dhíchumasú
-torbutton.panel.label.disabled = Tá Tor Díchumasaithe
-torbutton.panel.label.enabled = Tá Tor Cumasaithe
extensions.torbutton(a)torproject.org.description = Is féidir leat an cnaipe Tor a úsáid chun Tor a chumrú agus do chuid sonraí brabhsála príobháideacha a ghlanadh go tapa agus go héasca.
torbutton.popup.external.title = Íoslódáil cineál comhaid seachtrach?
torbutton.popup.external.app = Ní féidir le Brabhsálaí Tor an comhad seo a thaispeáint. Ní mór duit é a oscailt le feidhmchlár eile.\n\n
diff --git a/gd/torbutton.properties b/gd/torbutton.properties
index 53651280e8..632605f777 100644
--- a/gd/torbutton.properties
+++ b/gd/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Learn more
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Click to enable Tor
-torbutton.panel.tooltip.enabled = Click to disable Tor
-torbutton.panel.label.disabled = Tor Disabled
-torbutton.panel.label.enabled = Tor Enabled
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Download an external file type?
torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/gl/torbutton.properties b/gl/torbutton.properties
index c88e3a5a68..5220fdad4a 100644
--- a/gl/torbutton.properties
+++ b/gl/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Aprender máis
torbutton.circuit_display.click_to_copy = Prema para copiar
torbutton.circuit_display.copied = Copiado!
torbutton.content_sizer.margin_tooltip = O navegador Tor engade esta marxe para facer o largo e o alto da súa xanela menos distintiva e iso reduce ademais a capacidade de que o sigan en liña.
-torbutton.panel.tooltip.disabled = Click to enable Tor
-torbutton.panel.tooltip.enabled = Click to disable Tor
-torbutton.panel.label.disabled = Tor Disabled
-torbutton.panel.label.enabled = Tor Enabled
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Descargar un tipo de ficheiro externo?
torbutton.popup.external.app = O navegador de Tor non pode mostrar este ficheiro. Terá que abrilo con outro aplicativo.\n\n
diff --git a/gu-IN/torbutton.properties b/gu-IN/torbutton.properties
index 984baf6b7c..c8849fd9e1 100644
--- a/gu-IN/torbutton.properties
+++ b/gu-IN/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Learn more
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = ટોર સક્રિય કરવા ક્લિક કરો
-torbutton.panel.tooltip.enabled = ટોર નિષ્ક્રિય કરવા ક્લિક કરો
-torbutton.panel.label.disabled = ટોર નિષ્ક્રિય
-torbutton.panel.label.enabled = ટોર સક્રિય
extensions.torbutton(a)torproject.org.description = Torbutton ટોરનાં સેટિંગને બદલવા માટે અને ઝડપથી તથા સરળતાથી ખાનગી બ્રાઉઝીંગ વિગતો સાફ કરવા માટે એક બટન આપે છે.
torbutton.popup.external.title = બાહ્ય ફાઈલ પ્રકાર ડાઉનલોડ કરીએ?
torbutton.popup.external.app = ટોર બ્રાઉઝર આ ફાઈલ નથી ખોલી શકતું. તે ખોલવા માટે તમારે અન્ય એપ્લીકેશન વાપરવી પડશે.\n
diff --git a/he/torbutton.properties b/he/torbutton.properties
index bb2d2f7a5d..bb0b80ea2f 100644
--- a/he/torbutton.properties
+++ b/he/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = למד עוד
torbutton.circuit_display.click_to_copy = לחץ כדי להעתיק
torbutton.circuit_display.copied = הועתק!
torbutton.content_sizer.margin_tooltip = דפדפן Tor מוסיף שול זה כדי להפוך את הגובה והרוחב של חלונך ליחודיים פחות, ובכך להפחית את היכולת של אנשים לעקוב אחריך באופן מקוון.
-torbutton.panel.tooltip.disabled = לחץ כדי לאפשר את Tor
-torbutton.panel.tooltip.enabled = לחץ כדי להשבית את Tor
-torbutton.panel.label.disabled = Tor מושבת
-torbutton.panel.label.enabled = Tor מאופשר
extensions.torbutton(a)torproject.org.description = Torbutton מספק כפתור כדי לתצר את הגדרות Tor וכדי לנקות במהירות ובקלות נתוני גלישה פרטיים.
torbutton.popup.external.title = להוריד סוג חיצוני של קובץ?
torbutton.popup.external.app = דפדפן Tor אינו יכול להציג קובץ זה. תצטרך לפתוח אותו באמצעות יישום אחר.\n\n
diff --git a/hi-IN/torbutton.properties b/hi-IN/torbutton.properties
index 70bae422de..543b6a1cd8 100644
--- a/hi-IN/torbutton.properties
+++ b/hi-IN/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = और अधिक जानें
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = टोर ब्राउज़र आपकी खिड़की की चौड़ाई और ऊंचाई को कम विशिष्ट बनाने के लिए इस मार्जिन को जोड़ता है, और इस प्रकार लोगों को ऑनलाइन ट्रैक करने की क्षमता को कम करता है।
-torbutton.panel.tooltip.disabled = टॉर सक्षम करने के लिए क्लिक करें
-torbutton.panel.tooltip.enabled = टॉर अक्षम करने के लिए क्लिक करें
-torbutton.panel.label.disabled = Tor Disabled
-torbutton.panel.label.enabled = Tor Enabled
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = एक बाहरी प्रकार फ़ाइल डाउनलोड करें?
torbutton.popup.external.app = टोर ब्राउज़र इस फ़ाइल को प्रदर्शित नहीं कर सकता है। आपको इसे किसी अन्य एप्लिकेशन के साथ खोलने की आवश्यकता होगी।\n\n
diff --git a/hr/torbutton.properties b/hr/torbutton.properties
index ffcf7c7e59..bf70230814 100644
--- a/hr/torbutton.properties
+++ b/hr/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Saznaj više
torbutton.circuit_display.click_to_copy = Pritisni za kopiranje
torbutton.circuit_display.copied = Kopirano!
torbutton.content_sizer.margin_tooltip = Tor preglednik dodaje ovu marginu kako bi učinio širinu i visinu tvog prozora manje uočljivim, te time smanjio mogućnost da te ljudi prate online.
-torbutton.panel.tooltip.disabled = Pritisni za aktiviranje Tora
-torbutton.panel.tooltip.enabled = Pritisni za deaktiviranje Tora
-torbutton.panel.label.disabled = Tor deaktiviran
-torbutton.panel.label.enabled = Tor aktiviran
extensions.torbutton(a)torproject.org.description = Torbutton omogućuje gumb za konfiguraciju postavki Tora i brzo i lako brisanje privatnih podataka o pregledavanju.
torbutton.popup.external.title = Preuzeti vanjsku vrstu datoteke?
torbutton.popup.external.app = Tor preglednik ne može prikazati ovu datoteku. Mora se otvoriti s jednim drugim programom.\n\n
diff --git a/hu/torbutton.properties b/hu/torbutton.properties
index e912451103..7743c2625f 100644
--- a/hu/torbutton.properties
+++ b/hu/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = További információ
torbutton.circuit_display.click_to_copy = Kattintson a másoláshoz
torbutton.circuit_display.copied = Másolva!
torbutton.content_sizer.margin_tooltip = A Tor Böngésző ezt a margót adja hozzá, hogy a magassága és a szélessége az ablaknak kevésbé eltérő legyen, így csökkenti az online tevékenységének nyomon követhetőségét.
-torbutton.panel.tooltip.disabled = Kattintson rá a Tor bekapcsolásához
-torbutton.panel.tooltip.enabled = Kattintson rá a Tor kikapcsolásához
-torbutton.panel.label.disabled = Tor kikapcsolva
-torbutton.panel.label.enabled = Tor bekapcsolva
extensions.torbutton(a)torproject.org.description = A Torbutton egy gombot biztosít a Tor beállítások módosításához és a gyors és könnyű takarításához a privát böngészési adatoknak.
torbutton.popup.external.title = Töltse le a külső fájl típust?
torbutton.popup.external.app = A Tor Böngésző nem tudja megjeleníteni ezt a fájlt. Egy másik alkalmazással kell megnyitnia.\n\n
diff --git a/hy-AM/torbutton.properties b/hy-AM/torbutton.properties
index b0809cff9c..d5b941edf0 100644
--- a/hy-AM/torbutton.properties
+++ b/hy-AM/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Իմանալ ավելին
torbutton.circuit_display.click_to_copy = Սեղմեք պատճենելու համար
torbutton.circuit_display.copied = Պատճենվե՜ց:
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Սեղմեք Tor-ը կարողացնելու համար
-torbutton.panel.tooltip.enabled = Սեղմեք Tor-ը կարողազրկելու համար
-torbutton.panel.label.disabled = Tor-ը կարողազրկվեց
-torbutton.panel.label.enabled = Tor-ը կարողացվեց
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Download an external file type?
torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/ia/torbutton.properties b/ia/torbutton.properties
index 11d7b515c2..8549c8b78b 100644
--- a/ia/torbutton.properties
+++ b/ia/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Learn more
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Click to enable Tor
-torbutton.panel.tooltip.enabled = Click to disable Tor
-torbutton.panel.label.disabled = Tor Disabled
-torbutton.panel.label.enabled = Tor Enabled
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Download an external file type?
torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/id/torbutton.properties b/id/torbutton.properties
index ed472b9239..8b3be3e67d 100644
--- a/id/torbutton.properties
+++ b/id/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Pelajari lebih lanjut
torbutton.circuit_display.click_to_copy = Klik untuk Menyalin
torbutton.circuit_display.copied = Disalin!
torbutton.content_sizer.margin_tooltip = Adds Browser Tor margin ini untuk membuat Lebar dan tinggi dari window anda kurang khas
-torbutton.panel.tooltip.disabled = Klik untuk mengaktifkan Tor
-torbutton.panel.tooltip.enabled = Klik untuk menonaktifkan Tor
-torbutton.panel.label.disabled = Tor dinonaktifkan
-torbutton.panel.label.enabled = Tor diaktifkan
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Unduh sebuah tipe file eksternal?
torbutton.popup.external.app = Browser Tor tidak dapat menampilkan file ini. Anda butuh aplikasi lain untuk membukanya\n
diff --git a/is/torbutton.properties b/is/torbutton.properties
index 00a29f5822..3690094648 100644
--- a/is/torbutton.properties
+++ b/is/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Læra meira
torbutton.circuit_display.click_to_copy = Smelltu til að afrita
torbutton.circuit_display.copied = Afritað!
torbutton.content_sizer.margin_tooltip = Tor-vafrinn setur inn þessa spássíu til að gera hæð og breidd gluggans minna einkennandi, og þar með að gera erfiðara að fylgjast með þér á netinu.
-torbutton.panel.tooltip.disabled = Smelltu til að virkja Tor
-torbutton.panel.tooltip.enabled = Smelltu til að afvirkja Tor
-torbutton.panel.label.disabled = Tor óvirkt
-torbutton.panel.label.enabled = Tor virkt
extensions.torbutton(a)torproject.org.description = Torbutton útbýr hnapp til uppsetningar á stillingum Tor svo að einfalt og hraðvirkt sé að hreinsa út öll gögn vegna einkavafurs.
torbutton.popup.external.title = Sækja utanaðkomandi skráartegund?
torbutton.popup.external.app = Tor-vafrinn getur ekki birt þessa skrá. Þú verður að opna hana með öðru forriti.\n\n
diff --git a/it/torbutton.properties b/it/torbutton.properties
index 2944494389..98d73685ec 100644
--- a/it/torbutton.properties
+++ b/it/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Per saperne di più
torbutton.circuit_display.click_to_copy = Clicca per copiare
torbutton.circuit_display.copied = Copiato!
torbutton.content_sizer.margin_tooltip = Il browser Tor aggiunge questo margine per rendere l'ampiezza e altezza della tua finestra meno distintiva, così si riduce la possibilità di che tu sia tracciato in linea.
-torbutton.panel.tooltip.disabled = Fai clic per attivare Tor
-torbutton.panel.tooltip.enabled = Fai clic per disattivare Tor
-torbutton.panel.label.disabled = Tor Disattivato
-torbutton.panel.label.enabled = Tor Attivato
extensions.torbutton(a)torproject.org.description = Torbutton fornisce un pulsante per configurare le impostazioni di Tor e rimuovere velocemente e facilmente i dati di navigazione privati.
torbutton.popup.external.title = Si desidera scaricare un tipo di file esterno?
torbutton.popup.external.app = Tor Browser non è in grado di aprire questo file. Sarà necessario usare un'altra applicazione per aprirlo.\n\n
diff --git a/ja/torbutton.properties b/ja/torbutton.properties
index 82827ba43b..60eda03b78 100644
--- a/ja/torbutton.properties
+++ b/ja/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = 詳細情報
torbutton.circuit_display.click_to_copy = クリックしてコピー
torbutton.circuit_display.copied = コピーされました
torbutton.content_sizer.margin_tooltip = Tor Browser はウィンドウのサイズを平凡にするためにこのマージンを追加します。これにより、あなたのことをオンラインで追跡しにくくします。
-torbutton.panel.tooltip.disabled = クリックして Tor を有効にする
-torbutton.panel.tooltip.enabled = クリックして Tor を無効にする
-torbutton.panel.label.disabled = Tor 無効
-torbutton.panel.label.enabled = Tor 有効
extensions.torbutton(a)torproject.org.description = Torbutton は Tor の設定を構成し、素早くかつ容易にプライベートな閲覧データをクリアするボタンを提供します。
torbutton.popup.external.title = 外部ファイル種別をダウンロードしますか?
torbutton.popup.external.app = Tor Browser はこのファイルを表示できません。別のアプリケーションで開く必要があります。\n
diff --git a/ka/torbutton.properties b/ka/torbutton.properties
index c4c7219452..8aa349efb6 100644
--- a/ka/torbutton.properties
+++ b/ka/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = იხილეთ ვრცლად
torbutton.circuit_display.click_to_copy = დაწკაპეთ ასლისთვის
torbutton.circuit_display.copied = ასლი აღებულია!
torbutton.content_sizer.margin_tooltip = Tor-ბრაუზერი ამატებს მინდვრებს კიდეებზე, რომ თქვენი ფანჯრის სიგანე და სიმაღლე ნაკლებად გამორჩეული და შესამჩნევი იყოს, რაც შეუმცირებს სხვებს, ინტერნეტში თქვენი დევნის შესაძლებლობებს.
-torbutton.panel.tooltip.disabled = დაწკაპეთ, რომ ჩაირთოს Tor
-torbutton.panel.tooltip.enabled = დაწკაპეთ, რომ გამოირთოს Tor
-torbutton.panel.label.disabled = Tor გამორთულია
-torbutton.panel.label.enabled = Tor ჩართულია
extensions.torbutton(a)torproject.org.description = Torbutton საშუალებას გაძლევთ ერთი ღილაკით გამართოთ Tor-ის პარამეტრები და სწრაფად გაასუფთავოთ მონახულებული გვერდების მონაცემები.
torbutton.popup.external.title = ჩამოიტვირთოს ცალკეული სახის ფაილი?
torbutton.popup.external.app = Tor-ბრაუზერით ვერ ხერხდება ამ ფაილის გახსნა. სხვა პროგრამაა საჭირო მის გასახსნელად.\n\n
diff --git a/kab/torbutton.properties b/kab/torbutton.properties
index 53651280e8..632605f777 100644
--- a/kab/torbutton.properties
+++ b/kab/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Learn more
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Click to enable Tor
-torbutton.panel.tooltip.enabled = Click to disable Tor
-torbutton.panel.label.disabled = Tor Disabled
-torbutton.panel.label.enabled = Tor Enabled
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Download an external file type?
torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/kk/torbutton.properties b/kk/torbutton.properties
index b803a19514..b64a9afab5 100644
--- a/kk/torbutton.properties
+++ b/kk/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Толық оқу
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor браузері сіздің осы терезенің енін және биіктігін әр түрлі етіп жасау үшін осы маржаны қосады, осылайша, адамдардың онлайн режимінде қадағалау мүмкіндігін азайтады.
-torbutton.panel.tooltip.disabled = Қосу үшін басыңыз
-torbutton.panel.tooltip.enabled = Tor-ды өшіру үшін басыңыз
-torbutton.panel.label.disabled = Tor өшіру
-torbutton.panel.label.enabled = Tor қосу
extensions.torbutton(a)torproject.org.description = Tor түймешігі Tor параметрлерін конфигурациялауға және жеке шолу деректерін жылдам және оңай тазалауға арналған түйме ұсынады
torbutton.popup.external.title = Сыртқы файл түрін жүктеу керек пе?
torbutton.popup.external.app = Tor шолғышы бұл файлды көрсете алмайды. Сіз оны басқа бағдарламамен ашуыңыз керек.\n\n
diff --git a/km/torbutton.properties b/km/torbutton.properties
index 3a2b4a57b7..574154d01e 100644
--- a/km/torbutton.properties
+++ b/km/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = ស្វែងយល់បន្ថែ
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = ចុច ដើម្បីបើក Tor
-torbutton.panel.tooltip.enabled = ចុច ដើម្បីបិទ Tor
-torbutton.panel.label.disabled = Tor បានបិទ
-torbutton.panel.label.enabled = Tor បានបើក
extensions.torbutton(a)torproject.org.description = Torbutton ផ្ដល់ប៊ូតុងដើម្បីកំណត់រចនាសម្ព័ន្ធការកំណត់ Tor និងសម្អាតទិន្នន័យការរុករកឯកជនបានយ៉ាងងាយស្រួល និងរហ័ស។
torbutton.popup.external.title = ទាញយកប្រភេទឯកសារខាងក្រៅ?
torbutton.popup.external.app = Tor Browser មិនអាចបង្ហាញឯកសារនេះ។ អ្នកនឹងត្រូវបើកវាជាមួយកម្មវិធីផ្សេង។\n
diff --git a/kn/torbutton.properties b/kn/torbutton.properties
index 20bf4bc48e..326fbf2b9f 100644
--- a/kn/torbutton.properties
+++ b/kn/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = ಹೆಚ್ಚು ಕಲಿಯಿರಿ
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = ಟಾರ್ ಸಕ್ರಿಯಗೊಳಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ
-torbutton.panel.tooltip.enabled = ಟಾರ್ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ
-torbutton.panel.label.disabled = ಟಾರ್ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ
-torbutton.panel.label.enabled = ಟಾರ್ ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = ಬಾಹ್ಯ ಕಡತ ಪ್ರಕಾರವನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಬೇಕೆ?
torbutton.popup.external.app = ಟಾರ್ ಬ್ರೌಸರ್ ಈ ಕಡತವನ್ನು ಪ್ರದರ್ಶಿಸಲಾಗುವುದಿಲ್ಲ. ನೀವು ಇದನ್ನು ಇನ್ನೊಂದು ಅಪ್ಲಿಕೇಶನಿಂದ ಅದನ್ನು ತೆರೆಯಿರಿ.\n\n
diff --git a/ko/torbutton.properties b/ko/torbutton.properties
index 9bbb621027..8a46945f41 100644
--- a/ko/torbutton.properties
+++ b/ko/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = 더 알아보기
torbutton.circuit_display.click_to_copy = 클릭하여 복사하기
torbutton.circuit_display.copied = 복사됨!
torbutton.content_sizer.margin_tooltip = Tor 브라우저는 이 여백을 추가하여 창의 너비와 높이를 일반화 시켜 온라인에서 사용자를 추적하는 기능을 약화 시킵니다.
-torbutton.panel.tooltip.disabled = Tor를 활성화하려면 클릭
-torbutton.panel.tooltip.enabled = Tor를 비활성화하려면 클릭
-torbutton.panel.label.disabled = Tor 비활성화
-torbutton.panel.label.enabled = Tor 활성화
extensions.torbutton(a)torproject.org.description = Torbutton은 Tor 설정을 해 주는 버튼을 제공하고, 빠르고 쉽게 개인 브라우징 데이터를 지워 줍니다.
torbutton.popup.external.title = 외부 파일 유형을 다운로드 하시겠습니까?
torbutton.popup.external.app = Tor 브라우저는이 파일을 볼 수 없습니다. 다른 응용 프로그램에서 열어야합니다.\n\n
diff --git a/lt/torbutton.properties b/lt/torbutton.properties
index 23fa7d4aa0..ce606a43b3 100644
--- a/lt/torbutton.properties
+++ b/lt/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Sužinoti daugiau
torbutton.circuit_display.click_to_copy = Spustelėkite norėdami nukopijuoti
torbutton.circuit_display.copied = Nukopijuota!
torbutton.content_sizer.margin_tooltip = Tor Naršyklė prideda šią paraštę, kad jūsų lango plotis ir aukštis būtų mažiau atskiriami ir, tokiu būdu, žmonėms būtų sumažinta galimybė sekti jus internete.
-torbutton.panel.tooltip.disabled = Spustelėkite norėdami įjungti Tor
-torbutton.panel.tooltip.enabled = Spustelėkite norėdami išjungti Tor
-torbutton.panel.label.disabled = Tor išjungta
-torbutton.panel.label.enabled = Tor įjungta
extensions.torbutton(a)torproject.org.description = Torbutton pateikia mygtuką, skirtą konfigūruoti Tor nustatymus ir greitai bei lengvai išvalyti privačius naršymo duomenis.
torbutton.popup.external.title = Atsisiųsti išorinį failo tipą?
torbutton.popup.external.app = Tor Naršyklė negali atvaizduoti šio failo. Jums teks jį atverti, naudojant kitą programą.\n\n
diff --git a/lv/torbutton.properties b/lv/torbutton.properties
index 5b3d42dfe3..74351f51fc 100644
--- a/lv/torbutton.properties
+++ b/lv/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Uzzināt vairāk
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Pārlūks Tor pievieno šo apmali, lai Jūsu logu platums un garums mazāk izceltos un samazinātos iespēja izsekot Jūs tiešsaistē.
-torbutton.panel.tooltip.disabled = Noklikšķināt, lai iespējotu Tor
-torbutton.panel.tooltip.enabled = Noklikšķināt, lai atspējotu Tor
-torbutton.panel.label.disabled = Tor ir atspējots
-torbutton.panel.label.enabled = Tor ir iespējots
extensions.torbutton(a)torproject.org.description = Torbutton ir poga ar kuru konfigurēt Tor iestatījumus, kā arī ātri un ērti attīrīt personīgos pārlūkošanas datus.
torbutton.popup.external.title = Lejuplādēt kā ārēju datņu veidu?
torbutton.popup.external.app = Pārlūks Tor nevar parādīt šo datni. Jums nāksies to atvērt ar citu lietotni.\n\n
diff --git a/mk/torbutton.properties b/mk/torbutton.properties
index 1789493f37..a92218ccd4 100644
--- a/mk/torbutton.properties
+++ b/mk/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Научи повеќе
torbutton.circuit_display.click_to_copy = Кликни за Копирање
torbutton.circuit_display.copied = Копирано!
torbutton.content_sizer.margin_tooltip = Tor Browser ја додава ова маргина за ширината и висината на вашиот прозорец да биде постандарден, со што се намалува можноста луѓето да ве следат онлајн.
-torbutton.panel.tooltip.disabled = Кликнете за да го овозможите Tor
-torbutton.panel.tooltip.enabled = Кликнете за да го оневозможите Tor
-torbutton.panel.label.disabled = Tor е оневозможен
-torbutton.panel.label.enabled = Tor е овозможен
extensions.torbutton(a)torproject.org.description = Torbutton пружа копче за конфигурирање на Tor поставките и брзо и олеснето чисто приватно прелистување на податоци.
torbutton.popup.external.title = Преземање на надворешна датотека?
torbutton.popup.external.app = Tor прелистувачот не може да ја прикаже оваа датотека. Треба да ја отворите со друга апликација.\n\n
diff --git a/ml/torbutton.properties b/ml/torbutton.properties
index 03839728ff..0e3490c4fd 100644
--- a/ml/torbutton.properties
+++ b/ml/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = കൂടുതൽ അറിയാൻ
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = ടോർ ബ്രൌസർ ഈ മാർജിൻ കൂട്ടിച്ചേർത്തു നിങ്ങളുടെ ബ്രൗസെറിന്റെ ഉയരവും വീതിയും വ്യത്യസ്തമായ ഒരു രൂപം തോന്നാതെ സൂക്ഷിക്കുന്നു , അത് മറ്റുള്ള ആളുകൾ നിങ്ങളെ ഓൺലൈനിൽ പിന്തുടരുന്നത് ഒഴിവാക്കുന്നു
-torbutton.panel.tooltip.disabled = ടോർ അനുവദിക്കാൻ ക്ലിക്ക് ചെയുക
-torbutton.panel.tooltip.enabled = ടോർ പ്രവർത്തനരഹിതമാക്കാൻ ക്ലിക്ക് ചെയുക
-torbutton.panel.label.disabled = ടോർ പ്രവർത്തനരഹിതമാണ്
-torbutton.panel.label.enabled = ടോർ പ്രവർത്തനരഹിതമാണ്
extensions.torbutton(a)torproject.org.description = ടോർ ബട്ടൺ ടോർ സെറ്റിങ്ങ്സ് കോൺഫിഗർ ചെയ്യാനും എളുപ്പത്തിലും പെട്ടെന്നും ഹിസ്റ്ററി മായ്ച്ചു കളയാനും നൽകുന്ന ഒരു ബട്ടണാണ്
torbutton.popup.external.title = പുറമെ നിന്നുള്ള ഒരു ഫയൽ ടൈപ്പ് ഡൌൺലോഡ് ചെയ്യുക
torbutton.popup.external.app = ടോർ ബ്രൗസറിന് ഈ ഫയൽ തുറക്കാൻ സാധിക്കില്ല .നിങ്ങൾ മറ്റൊരു അപ്ലിക്കേഷൻ ഉപയോഗിച്ച് ഇത് തുറക്കേണ്ടി വരും \n
diff --git a/mr/torbutton.properties b/mr/torbutton.properties
index 332f5473d5..05964ae6b8 100644
--- a/mr/torbutton.properties
+++ b/mr/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = अधिक जाणून घ्या
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = टॉर सुरू करण्यासाठी क्लिक करा
-torbutton.panel.tooltip.enabled = टॉर बंद करण्यासाठी क्लिक करा
-torbutton.panel.label.disabled = टॉर बंद केले
-torbutton.panel.label.enabled = टॉर सुरू केले
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = बाहेरील फाइल प्रकार डाउनलोड करायचा का?
torbutton.popup.external.app = टॉर ब्राउझर ही फाइल दाखवू शकत नाही. तिला दुसर्या अॅप्लिकेशन द्वारे उघडावे लागेल.\n\n
diff --git a/ms/torbutton.properties b/ms/torbutton.properties
index 17e4fd2220..6c69ce76ea 100644
--- a/ms/torbutton.properties
+++ b/ms/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Ketahui lebih lanjut
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Pelayar Tor menambah jidar ini untuk memastikan tinggi dan lebar tetingkap anda kurang dikenali, dan seterusnya mengurangkan keupayaan orang lain menjejak anda ketika berada diatas-talian.
-torbutton.panel.tooltip.disabled = Klik untuk benarkan Tor
-torbutton.panel.tooltip.enabled = Klik untuk lumpuhkan Tor
-torbutton.panel.label.disabled = Tor Dilumpuhkan
-torbutton.panel.label.enabled = Tor Dibenarkan
extensions.torbutton(a)torproject.org.description = Torbutton menyediakan butang bagi mengkonfigur tetapan Tor secara pantas dan mudah membersihkan data pelayaran persendirian anda.
torbutton.popup.external.title = Muat turun jenis fail luar?
torbutton.popup.external.app = Pelayar Tor tidak dapat paparkan fail ini. Anda perlu membukanya dengan aplikasi lain.\n\n
diff --git a/my/torbutton.properties b/my/torbutton.properties
index 33dbe10401..4d07d77615 100644
--- a/my/torbutton.properties
+++ b/my/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Learn more
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Tor ကို ဖွင့်ရန် နှိပ်ပါ
-torbutton.panel.tooltip.enabled = Tor ကို ပိတ်ရန် နှိပ်ပါ
-torbutton.panel.label.disabled = ပိတ်ထားသော Tor
-torbutton.panel.label.enabled = ဖွင့်ထားသော Tor
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Download an external file type?
torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/nb-NO/torbutton.properties b/nb-NO/torbutton.properties
index 990db74261..df1b6132ee 100644
--- a/nb-NO/torbutton.properties
+++ b/nb-NO/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Lær mer
torbutton.circuit_display.click_to_copy = Trykk for å kopiere
torbutton.circuit_display.copied = Kopiert!
torbutton.content_sizer.margin_tooltip = Tor Nettleser legger til denne marginen for å gjøre bredden og høyden på vinduet ditt mindre særegent, og reduserer dermed muligheten for folk til å spore deg på nett.
-torbutton.panel.tooltip.disabled = Klikk for å aktivere Tor
-torbutton.panel.tooltip.enabled = Klikk for å skru av Tor
-torbutton.panel.label.disabled = Tor er avskrudd
-torbutton.panel.label.enabled = Tor er aktivert
extensions.torbutton(a)torproject.org.description = Torbutton tilbyr en knapp til å sette opp Tor-innstillinger, samt rask og enkel tilgang til å slette privat nettleserhistorikk.
torbutton.popup.external.title = Last ned en ekstern filtype?
torbutton.popup.external.app = Tor Nettleser kan ikke åpne denne filen. Du er nødt til å åpne den med et annet program.\n\n
diff --git a/ne/torbutton.properties b/ne/torbutton.properties
index 62bdff2227..9a79d40437 100644
--- a/ne/torbutton.properties
+++ b/ne/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Learn more
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Click to enable Tor
-torbutton.panel.tooltip.enabled = Click to disable Tor
-torbutton.panel.label.disabled = Tor Disabled
-torbutton.panel.label.enabled = Tor Enabled
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Download an external file type?
torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/nl-BE/torbutton.properties b/nl-BE/torbutton.properties
index 1b234672ce..0ee21c8776 100644
--- a/nl-BE/torbutton.properties
+++ b/nl-BE/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Learn more
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Klik om Tor in te schakelen
-torbutton.panel.tooltip.enabled = Klik om Tor uit te schakelen
-torbutton.panel.label.disabled = Tor uitgeschakels
-torbutton.panel.label.enabled = Tor ingeschakeld
extensions.torbutton(a)torproject.org.description = Torbutton voorziet een knop om Tor instellingen snel en gemakkelijk te configureren en uw private browsing gegevens te wissen.
torbutton.popup.external.title = Download een extern bestandstype?
torbutton.popup.external.app = Tor Browser kan dit bestand niet weergeven. Gelieve het bestand te openen met een andere applicatie.\n\n
diff --git a/nl/torbutton.properties b/nl/torbutton.properties
index 289200be9e..16d2852c08 100644
--- a/nl/torbutton.properties
+++ b/nl/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Meer info
torbutton.circuit_display.click_to_copy = Klik om te kopiëren
torbutton.circuit_display.copied = Gekopieerd!
torbutton.content_sizer.margin_tooltip = Tor Browser voegt deze rand toe om de afmetingen van het venster minder uit de toon te laten vallen. Dit maakt het moeilijker om u online te volgen.
-torbutton.panel.tooltip.disabled = Klik om Tor in te schakelen
-torbutton.panel.tooltip.enabled = Klik om Tor uit te schakelen
-torbutton.panel.label.disabled = Tor uitgeschakeld
-torbutton.panel.label.enabled = Tor ingeschakeld
extensions.torbutton(a)torproject.org.description = Torbutton biedt een knop om Tor-instellingen te configureren en snel en makkelijk privénavigatiegegevens te wissen.
torbutton.popup.external.title = Een extern bestandstype downloaden?
torbutton.popup.external.app = Tor Browser kan dit bestand niet weergeven. U dient het met een andere toepassing te openen.\n\n
diff --git a/nn-NO/torbutton.properties b/nn-NO/torbutton.properties
index ba286bb738..46d57a3ded 100644
--- a/nn-NO/torbutton.properties
+++ b/nn-NO/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Lær meir
torbutton.circuit_display.click_to_copy = Klikk for å kopiere
torbutton.circuit_display.copied = Kopiert!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Trykk for å slå på Tor
-torbutton.panel.tooltip.enabled = Trykk for å slå av Tor
-torbutton.panel.label.disabled = Tor avslått
-torbutton.panel.label.enabled = Tor påslått
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Laste ned ei ekstern filtype?
torbutton.popup.external.app = Tor Browser kan ikkje visa denne fila. Du må opna henne med eit anna program..\n\n
diff --git a/oc/torbutton.properties b/oc/torbutton.properties
index 102a093e3a..d960662969 100644
--- a/oc/torbutton.properties
+++ b/oc/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Learn more
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Click to enable Tor
-torbutton.panel.tooltip.enabled = Click to disable Tor
-torbutton.panel.label.disabled = Tor Disabled
-torbutton.panel.label.enabled = Tor Enabled
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Download an external file type?
torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/or/torbutton.properties b/or/torbutton.properties
index 53651280e8..632605f777 100644
--- a/or/torbutton.properties
+++ b/or/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Learn more
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Click to enable Tor
-torbutton.panel.tooltip.enabled = Click to disable Tor
-torbutton.panel.label.disabled = Tor Disabled
-torbutton.panel.label.enabled = Tor Enabled
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Download an external file type?
torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/pa-IN/torbutton.properties b/pa-IN/torbutton.properties
index 7cc0e3d45c..97cf1ebd7c 100644
--- a/pa-IN/torbutton.properties
+++ b/pa-IN/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = ਵਧੇਰੇ ਪੜੋ
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = ਟੌਰ ਬਰਾਊਜ਼ਰ ਨੇ ਇਸ ਹਾਸ਼ੀਏ ਨੂੰ ਤੁਹਾਡੀ ਵਿੰਡੋ ਦੀ ਚੌੜਾਈ ਅਤੇ ਉਚਾਈ ਨੂੰ ਘੱਟ ਵਿਲੱਖਣ ਬਣਾਉਣ ਲਈ ਜੋੜਦਾ ਹੈ, ਅਤੇ ਇਸ ਤਰ੍ਹਾਂ ਲੋਕਾਂ ਦੀ ਤੁਹਾਨੂੰ ਔਨਲਾਈਨ ਟ੍ਰੈਕ ਕਰਨ ਦੀ ਯੋਗਤਾ ਨੂੰ ਘਟਾਇਆ ਹੈ |
-torbutton.panel.tooltip.disabled = ਟੋਰ ਨੂੰ ਸਕ੍ਰਿਆ ਕਰਨ ਲਈ ਕਲਿੱਕ ਕਰੋ |
-torbutton.panel.tooltip.enabled = ਟੋਰ ਨੂੰ ਨਿਸਕ੍ਰਿਆ ਕਰਨ ਲਈ ਕਲਿੱਕ ਕਰੋ |
-torbutton.panel.label.disabled = ਟੋਰ ਨਿਸਕ੍ਰਿਆ ਹੋਈਆ |
-torbutton.panel.label.enabled = ਟੋਰ ਸਕ੍ਰਿਆ ਹੋਈਆ |
extensions.torbutton(a)torproject.org.description = ਟੋਰ-ਬਟਨ ਟੌਰ ਸੈਟਿੰਗ ਨੂੰ ਸੰਰਚਨਾ ਲਈ ਅਤੇ ਨਿੱਜੀ ਬ੍ਰਾਉਜ਼ਿੰਗ ਡਾਟਾ ਨੂੰ ਜਲਦੀ ਅਤੇ ਅਸਾਨ ਸਾਫ਼ ਕਰਨ ਲਈ ਇੱਕ ਬਟਨ ਪ੍ਰਦਾਨ ਕਰਦਾ ਹੈ |
torbutton.popup.external.title = ਇੱਕ ਬਾਹਰੀ ਕਿਸਮ ਦੀ ਫਾਇਲ ਡਾਊਨਲੋਡ ਕਰੀਏ ?
torbutton.popup.external.app = ਟੌਰ ਬਰਾਊਜ਼ਰ ਇਹ ਫਾਈਲ ਪ੍ਰਦਰਸ਼ਿਤ ਨਹੀਂ ਕਰ ਸਕਦਾ, ਤੁਹਾਨੂੰ ਇਸਨੂੰ ਖੋਲ੍ਹਣ ਲਈ ਕਿਸੇ ਹੋਰ ਐਪਲੀਕੇਸ਼ਨ ਦੀ ਜ਼ਰੂਰਤ ਹੋਏਗੀ |\n\n
diff --git a/pl/torbutton.properties b/pl/torbutton.properties
index f71b359db4..5d44ae8a7a 100644
--- a/pl/torbutton.properties
+++ b/pl/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Dowiedz się więcej
torbutton.circuit_display.click_to_copy = Kliknij, aby skopiować
torbutton.circuit_display.copied = Skopiowano!
torbutton.content_sizer.margin_tooltip = Tor Browser dodaje ten margines po to, aby szerokość i wysokość okna Twojej przeglądarki była mniej charakterystyczna, dzięki temu zmniejszysz szanse śledzenia Ciebie online.
-torbutton.panel.tooltip.disabled = Kliknij tutaj, aby włączyć Tora
-torbutton.panel.tooltip.enabled = Kliknij tutaj, aby wyłączyć Tora
-torbutton.panel.label.disabled = Tor wyłączony
-torbutton.panel.label.enabled = Tor włączony
extensions.torbutton(a)torproject.org.description = Torbutton udostępnia przycisk do konfiguracji ustawień Tora oraz szybkiego i łatwego usuwania prywatnych danych z przeglądarki.
torbutton.popup.external.title = Pobrać zewnętrzny typ pliku?
torbutton.popup.external.app = Tor Browser nie może wyświetlić tego pliku. Musisz otworzyć go z innej aplikacji\n\n
diff --git a/pt-BR/torbutton.properties b/pt-BR/torbutton.properties
index d2378e7ffa..7e3d430933 100644
--- a/pt-BR/torbutton.properties
+++ b/pt-BR/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Aprenda mais
torbutton.circuit_display.click_to_copy = Clique para copiar
torbutton.circuit_display.copied = Copiado!
torbutton.content_sizer.margin_tooltip = O Navegador Tor inclui esta margem para que a altura e a largura da janela sejam menos distinguíveis, o que reduz a possibilidade de que alguém rastreie a sua navegação .
-torbutton.panel.tooltip.disabled = Clique para habilitar o Tor
-torbutton.panel.tooltip.enabled = Clique para desabilitar o Tor
-torbutton.panel.label.disabled = O Tor está desabilitado
-torbutton.panel.label.enabled = O Tor está habilitado
extensions.torbutton(a)torproject.org.description = O Torbutton fornece uma opção para configurar as preferências do Tor e, com rapidez e facilidade, limpar os dados de navegação privada.
torbutton.popup.external.title = Fazer o download de um tipo de arquivo externo?
torbutton.popup.external.app = O Navegador Tor não pode exibir este arquivo. Você precisa abri-lo com um outro aplicativo.\n\n
diff --git a/pt-PT/torbutton.properties b/pt-PT/torbutton.properties
index 757e1e6e9a..8ffa835c6d 100644
--- a/pt-PT/torbutton.properties
+++ b/pt-PT/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Saber mais
torbutton.circuit_display.click_to_copy = Clique para Copiar
torbutton.circuit_display.copied = Copiado!
torbutton.content_sizer.margin_tooltip = O Tor Browser adiciona esta margem para tornar a altura e a largura da sua janela menos distinta, e com isso reduz a possibilidade de as pessoas o rastrearem on-line.
-torbutton.panel.tooltip.disabled = Clique para ativar o Tor
-torbutton.panel.tooltip.enabled = Clique para desativar o Tor
-torbutton.panel.label.disabled = Tor Desativado
-torbutton.panel.label.enabled = Tor Ativado
extensions.torbutton(a)torproject.org.description = Torbutton proporciona um botão para configurar as definições do Tor, e para limpar facilmente e rapidamente os dados de navegação privados.
torbutton.popup.external.title = Transferir um tipo de ficheiro externo?
torbutton.popup.external.app = O Tor Browser não consegue mostrar este ficheiro. Poderá ter que o abrir com outra aplicação.\n\n
diff --git a/ro/torbutton.properties b/ro/torbutton.properties
index 01b9ae0e06..ca44efae7b 100644
--- a/ro/torbutton.properties
+++ b/ro/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Află mai mult
torbutton.circuit_display.click_to_copy = Click pentru a copia
torbutton.circuit_display.copied = Copiat!
torbutton.content_sizer.margin_tooltip = Navigatorul Tor Browser adaugă această margine pentru a face lățimea și înălțimea ferestrei tale mai puțin specifică, și astfel reduce abilitatea altora de a te urmări online.
-torbutton.panel.tooltip.disabled = Click pentru a activa Tor
-torbutton.panel.tooltip.enabled = Click pentru a dezactiva Tor
-torbutton.panel.label.disabled = Tor a fost dezactivat
-torbutton.panel.label.enabled = Tor a fost activat
extensions.torbutton(a)torproject.org.description = Torbutton oferă posibilitatea de a configura setările navigatorului si de a goli rapid şi ușor datele private ale navigării.
torbutton.popup.external.title = Descărcare fișier de tip extern?
torbutton.popup.external.app = Navigatorul Tor Browser nu poate afișa acest fișier. Va trebui să îl deschizi cu o altă aplicație.\n\n
diff --git a/ru/torbutton.properties b/ru/torbutton.properties
index f9577aca56..b933f1ea8b 100644
--- a/ru/torbutton.properties
+++ b/ru/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Узнать больше
torbutton.circuit_display.click_to_copy = Нажмите для копирования
torbutton.circuit_display.copied = Скопировано!
torbutton.content_sizer.margin_tooltip = Tor Browser добавляет этот отступ, чтобы ширина и высота окна были менее узнаваемыми. Это затрудняет отслеживание в интернете.
-torbutton.panel.tooltip.disabled = Нажмите, чтобы включить Tor
-torbutton.panel.tooltip.enabled = Нажмите, чтобы отключить Tor
-torbutton.panel.label.disabled = Tor отключен
-torbutton.panel.label.enabled = Tor включен
extensions.torbutton(a)torproject.org.description = Torbutton предлагает кнопку для настройки Tor. С помощью Torbutton можно быстро и легко очистить личные данные просмотра.
torbutton.popup.external.title = Скачать внешний файл?
torbutton.popup.external.app = Tor Browser не может отобразить этот файл. Придется открыть его с помощью другого приложения.\n\n
diff --git a/si/torbutton.properties b/si/torbutton.properties
index 53651280e8..632605f777 100644
--- a/si/torbutton.properties
+++ b/si/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Learn more
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Click to enable Tor
-torbutton.panel.tooltip.enabled = Click to disable Tor
-torbutton.panel.label.disabled = Tor Disabled
-torbutton.panel.label.enabled = Tor Enabled
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Download an external file type?
torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/sk/torbutton.properties b/sk/torbutton.properties
index ec590d9189..6dd1506429 100644
--- a/sk/torbutton.properties
+++ b/sk/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Zistite viac
torbutton.circuit_display.click_to_copy = Kliknutím skopírujte
torbutton.circuit_display.copied = Skopírované!
torbutton.content_sizer.margin_tooltip = Tor Browser pridá okraj a urobí šírku a výšku vášho okna menej charakteristicku, tým znižuje schopnosť ľudí, aby vás sledovať on-line.
-torbutton.panel.tooltip.disabled = Kliknutím aktivujem Tor
-torbutton.panel.tooltip.enabled = Kliknutím deaktivujem Torr
-torbutton.panel.label.disabled = Tor je zablokovaný
-torbutton.panel.label.enabled = Tor je aktívny
extensions.torbutton(a)torproject.org.description = Torbutton poskytuje tlačidlo nastavenia Tora cez ktoré môžete ľahko vynulovať súkromné informácie surfovania.
torbutton.popup.external.title = Načítať externý obsah?
torbutton.popup.external.app = Externé aplikácie sa musia spracovať:\n\n
diff --git a/sl/torbutton.properties b/sl/torbutton.properties
index da3cc1e17b..64ca678e7b 100644
--- a/sl/torbutton.properties
+++ b/sl/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Več o tem
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Klikni za vklop anonimizacije
-torbutton.panel.tooltip.enabled = Klikni za izklop anonimizacije
-torbutton.panel.label.disabled = Anonimizacija izključena
-torbutton.panel.label.enabled = Anonimizacija vključena
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Prenesem zunanji tip datoteke?
torbutton.popup.external.app = Tor brskalnik ne more prikazati te datoteke. Odpreti jo morate v drugi aplikaciji.\n\n
diff --git a/son/torbutton.properties b/son/torbutton.properties
index 53651280e8..632605f777 100644
--- a/son/torbutton.properties
+++ b/son/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Learn more
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Click to enable Tor
-torbutton.panel.tooltip.enabled = Click to disable Tor
-torbutton.panel.label.disabled = Tor Disabled
-torbutton.panel.label.enabled = Tor Enabled
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Download an external file type?
torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/sq/torbutton.properties b/sq/torbutton.properties
index c632d14bf2..c66878e6ba 100644
--- a/sq/torbutton.properties
+++ b/sq/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Mësoni më tepër
torbutton.circuit_display.click_to_copy = Klikoni të Kopjohet
torbutton.circuit_display.copied = U kopjua!
torbutton.content_sizer.margin_tooltip = Shfletuesi Tor e shton këtë mënjanë për ta bërë më pak të dallueshme gjerësinë dhe lartësinë e dritares tuaj, duke zvogëluar kështu aftësinë e njerëzve t’ju gjurmojnë në internet.
-torbutton.panel.tooltip.disabled = Klikoni që të aktivizohet Tor-i
-torbutton.panel.tooltip.enabled = Klikoni që të çaktivizohet Tor-i
-torbutton.panel.label.disabled = Tor-i u Çaktivizua
-torbutton.panel.label.enabled = Tor-i u Aktivizua
extensions.torbutton(a)torproject.org.description = Torbutton-i ofron një buton për formësim të rregullimeve për Tor-in dhe për të spastruar shpejt dhe kollaj të dhëna shfletimi privat.
torbutton.popup.external.title = Të shkarkohet një lloj kartele e jashtme?
torbutton.popup.external.app = Shfletuesi Tor s’mundet ta shfaqë këtë kartelë. Do t’ju duhet ta hapni me një tjetër aplikacion.\n\n
diff --git a/sr/torbutton.properties b/sr/torbutton.properties
index 0794750e28..9b00f081fa 100644
--- a/sr/torbutton.properties
+++ b/sr/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Saznaj više
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Brauzer dodaje ovu marginu da bi visinu i širinu vašeg prozora učini manje određenom, a samim tim umanjuje mogućnost da vas neko prati na netu.
-torbutton.panel.tooltip.disabled = Кликните да бисте омогућили Тор
-torbutton.panel.tooltip.enabled = Кликните да бисте онемогућили Тор
-torbutton.panel.label.disabled = Тор је онемогућен
-torbutton.panel.label.enabled = Тор је омогућен
extensions.torbutton(a)torproject.org.description = Torbutton nudi dugme za konfiguraciju Tor postavki i lako i brzo ciscenje pretrazivackih informacija.
torbutton.popup.external.title = Downloadujte externi tip fajla
torbutton.popup.external.app = Tor Browser ne moze da prikaze ovaj fajl. Moracete da ga otvorite pomocu druge aplikacije.\n\n\n
diff --git a/sv-SE/torbutton.properties b/sv-SE/torbutton.properties
index 11ec279f74..d8657dfcc5 100644
--- a/sv-SE/torbutton.properties
+++ b/sv-SE/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Läs mer
torbutton.circuit_display.click_to_copy = Klicka för att kopiera
torbutton.circuit_display.copied = Kopierat!
torbutton.content_sizer.margin_tooltip = Tor Browser lägger till denna marginal för att göra bredden och höjden på ditt fönster mindre tydlig. Därmed minskas möjligheten att spåra dig.
-torbutton.panel.tooltip.disabled = Klicka för att aktivera Tor
-torbutton.panel.tooltip.enabled = Klicka för att inaktivera Tor
-torbutton.panel.label.disabled = Tor inaktiv
-torbutton.panel.label.enabled = Tor aktiv
extensions.torbutton(a)torproject.org.description = Torbutton ger en knapp för att konfigurera Tor inställningar och snabbt och enkelt rensa privat surfdata.
torbutton.popup.external.title = Hämta en extern filtyp?
torbutton.popup.external.app = Tor Browser kan inte visa filen. Du behöver öppna den i ett annat program.\n\n
diff --git a/sw/torbutton.properties b/sw/torbutton.properties
index 34e904a5b1..598cab0bba 100644
--- a/sw/torbutton.properties
+++ b/sw/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Kujifunza zaidi
torbutton.circuit_display.click_to_copy = Bonyeza Kunakili
torbutton.circuit_display.copied = Imenakili!
torbutton.content_sizer.margin_tooltip = Kivinjari cha Tor kimeongeza pambizo hili kwa kuweka upana na urefu kwenye window yako tofauti kidogo, na hii inapunguza uwezo wa watu kukufuatilia mkondoni.
-torbutton.panel.tooltip.disabled = Click to enable Tor
-torbutton.panel.tooltip.enabled = Click to disable Tor
-torbutton.panel.label.disabled = Tor Disabled
-torbutton.panel.label.enabled = Tor Enabled
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Pakua aina ya faili la ndani?
torbutton.popup.external.app = Kivinjari cha Tor hakiwezi kuonyesha faili hili. Unatakiwa kuifungua kwenye programu nyingine.\n\n
diff --git a/ta/torbutton.properties b/ta/torbutton.properties
index 0a4e6715de..0ada9df80c 100644
--- a/ta/torbutton.properties
+++ b/ta/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = மேலும் அறிய
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor உலாவி உங்கள் சாளரத்தின் அகலம் மற்றும் உயரத்தை குறைந்த வேறுபாடுடையதாக ஆக்குவதற்காக இந்த வரம்பைச் சேர்க்கிறது, இணையத்தில் உங்களைப் பின்தொடரும் திறனைக் குறைக்கிறது.
-torbutton.panel.tooltip.disabled = Click to enable Tor
-torbutton.panel.tooltip.enabled = Click to disable Tor
-torbutton.panel.label.disabled = Tor Disabled
-torbutton.panel.label.enabled = Tor Enabled
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = வெளி கோப்பு வகையை பதிவிறக்கவா?
torbutton.popup.external.app = Tor உலாவி இந்த கோப்புவகையை காட்சிப்படுத்தாது. நீங்கள் இதனை மற்றொரு பயன்பாட்டில் திறக்க வேண்டியிருக்கலாம்.\n\n
diff --git a/te/torbutton.properties b/te/torbutton.properties
index e1989ada7d..febfb2882e 100644
--- a/te/torbutton.properties
+++ b/te/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Learn more
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Click to enable Tor
-torbutton.panel.tooltip.enabled = Click to disable Tor
-torbutton.panel.label.disabled = Tor Disabled
-torbutton.panel.label.enabled = Tor Enabled
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Download an external file type?
torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/th/torbutton.properties b/th/torbutton.properties
index 5ebad60e58..5cff4ccaa3 100644
--- a/th/torbutton.properties
+++ b/th/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = เรียนรู้เพิ่ม
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser เพิ่มระยะขอบนี้เพื่อทำให้ความกว้างและความสูงของหน้าต่างคุณโดดเด่นน้อยลง และลดความสามารถของบุคคลอื่นในการติดตามคุณทางออนไลน์
-torbutton.panel.tooltip.disabled = คลิกเพื่อเปิดใช้ Tor
-torbutton.panel.tooltip.enabled = คลิกเพื่อปิด Tor
-torbutton.panel.label.disabled = ปิดใช้ Tor อยู่
-torbutton.panel.label.enabled = เปิดใช้ Tor อยู่
extensions.torbutton(a)torproject.org.description = Torbutton มีปุ่มให้ปรับแต่งการตั้งค่า Tor และล้างข้อมูลการดูเว็บส่วนบุคคลอย่างรวดเร็วและง่ายดาย
torbutton.popup.external.title = ดาวน์โหลดไฟล์ภายนอก
torbutton.popup.external.app = Tor Browser ไม่สามารถแสดงไฟล์นี้ คุณต้องเปิดมันในโปรแกรมอื่น\n\n
diff --git a/tr/torbutton.properties b/tr/torbutton.properties
index 30463c182f..2f838439b1 100644
--- a/tr/torbutton.properties
+++ b/tr/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Ayrıntılı bilgi alın
torbutton.circuit_display.click_to_copy = Kopyalamak için tıklayın
torbutton.circuit_display.copied = Kopyalandı!
torbutton.content_sizer.margin_tooltip = Tor Browser pencerenizin genişlik ve yüksekliğini daha az ayırt edilebilir duruma getirmek için kenar boşlukları ekleyerek kişilerin sizi çevrim içi olarak izleme yeteneğini azaltır.
-torbutton.panel.tooltip.disabled = Tor uygulamasını etkinleştirmek için tıklayın
-torbutton.panel.tooltip.enabled = Tor uygulamasını devre dışı bırakmak için tıklayın
-torbutton.panel.label.disabled = Tor Devre Dışı
-torbutton.panel.label.enabled = Tor Etkin
extensions.torbutton(a)torproject.org.description = Torbutton, Tor ayarlarını yapabileceğiniz ve kişisel tarama verilerinizi hızla ve kolayca silebileceğiniz bir düğme görüntüler.
torbutton.popup.external.title = Dış bir dosya türü indirilsin mi?
torbutton.popup.external.app = Tor Browser bu dosyayı görüntüleyemiyor. Başka bir uygulamayla açmanız gerekecek.\n
diff --git a/uk/torbutton.properties b/uk/torbutton.properties
index e085272eec..5ac8eea165 100644
--- a/uk/torbutton.properties
+++ b/uk/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Дізнатися більше
torbutton.circuit_display.click_to_copy = Клацніть, щоб скопіювати
torbutton.circuit_display.copied = Скопійовано!
torbutton.content_sizer.margin_tooltip = Tor Browser додає ці поля для того, щоб зробити висоту і ширину вікна менш відмінною, що зменшує можливість відстежувати вас.
-torbutton.panel.tooltip.disabled = Натисніть аби увімкнути Tor
-torbutton.panel.tooltip.enabled = Натисніть аби вимкнути Tor
-torbutton.panel.label.disabled = Tor Вимкнено
-torbutton.panel.label.enabled = Tor Увімкнено
extensions.torbutton(a)torproject.org.description = Torbutton передбачає кнопку, щоб налаштувати Tor і швидко та легко очистити особисті дані перегляду.
torbutton.popup.external.title = Завантажити зовнішній тип файлів?
torbutton.popup.external.app = Tor Browser не може відобразити цей файл. Вам необхідно буде відкрити його за допомогою іншої програми.\n
diff --git a/ur/torbutton.properties b/ur/torbutton.properties
index 0fedfc6641..7b8ced115b 100644
--- a/ur/torbutton.properties
+++ b/ur/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = مزید جانئیے
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = ٹار کو فعال کرنے کیلئے کلک کریں
-torbutton.panel.tooltip.enabled = ٹار کو غیر فعال کرنے کیلئے کلک کریں
-torbutton.panel.label.disabled = ٹار غیر فعال
-torbutton.panel.label.enabled = ٹار فعال
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Download an external file type?
torbutton.popup.external.app = ٹار براؤزر یہ فائل نہیں دکھا سکتا۔ آپ کو یہ فائل کھولنے کیلئے ایک اور اپلیکیشن کی ضرورت پڑے گی۔\n\n
diff --git a/uz/torbutton.properties b/uz/torbutton.properties
index c852403a28..96b109ce89 100644
--- a/uz/torbutton.properties
+++ b/uz/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Learn more
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor Browser adds this margin to make the width and height of your window less distinctive, and thus reduces the ability of people to track you online.
-torbutton.panel.tooltip.disabled = Click to enable Tor
-torbutton.panel.tooltip.enabled = Click to disable Tor
-torbutton.panel.label.disabled = Tor Disabled
-torbutton.panel.label.enabled = Tor Enabled
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Download an external file type?
torbutton.popup.external.app = Tor Browser cannot display this file. You will need to open it with another application.\n\n
diff --git a/vi/torbutton.properties b/vi/torbutton.properties
index 7cd3c34c69..3a3fe0e3ff 100644
--- a/vi/torbutton.properties
+++ b/vi/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = Biết thêm
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Trình duyệt Tor thêm lề này để làm cho chiều rộng và chiều cao của màn hình của bạn ít dễ bị phân biệt hơn, và vì thế giảm khả năng của những người theo dõi bạn trực tuyến.
-torbutton.panel.tooltip.disabled = Nhấn để bật Tor
-torbutton.panel.tooltip.enabled = Nhấn để tắt Tor
-torbutton.panel.label.disabled = Tor bị tắt
-torbutton.panel.label.enabled = Tor được bật
extensions.torbutton(a)torproject.org.description = Torbutton provides a button to configure Tor settings and quickly and easily clear private browsing data.
torbutton.popup.external.title = Tải về một loại tập tin bên ngoài?
torbutton.popup.external.app = Trình duyệt Tor không thể hiển thị tập tin này. Bạn cần mở nó với một ứng dụng khác.\n\n
diff --git a/zh-CN/torbutton.properties b/zh-CN/torbutton.properties
index 17ea5d2ff8..f67bf83d5a 100644
--- a/zh-CN/torbutton.properties
+++ b/zh-CN/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = 详细了解
torbutton.circuit_display.click_to_copy = 点击以复制
torbutton.circuit_display.copied = 已复制!
torbutton.content_sizer.margin_tooltip = Tor 浏览器添加了一些边框,以降低窗口大小的独特性,令在线跟踪监控变得更加困难。
-torbutton.panel.tooltip.disabled = 点击启用 Tor
-torbutton.panel.tooltip.enabled = 点击禁用 Tor
-torbutton.panel.label.disabled = Tor 已禁用
-torbutton.panel.label.enabled = Tor 已启用
extensions.torbutton(a)torproject.org.description = Torbutton 是一个按钮,可对“Tor 设置”进行修改,并可快速而方便地清除浏览器隐私数据。
torbutton.popup.external.title = 下载一个外部文件类型?
torbutton.popup.external.app = Tor 浏览器无法显示此文件。您需要用其他应用程序打开它。\n\n
diff --git a/zh-HK/torbutton.properties b/zh-HK/torbutton.properties
index 3a9dbd3f6d..75e62f471d 100644
--- a/zh-HK/torbutton.properties
+++ b/zh-HK/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = 更多
torbutton.circuit_display.click_to_copy = Click to Copy
torbutton.circuit_display.copied = Copied!
torbutton.content_sizer.margin_tooltip = Tor洋蔥路由瀏覽器特意將視窗邊框嘅闊度同高度重新設定,以使你嘅瀏覽器狀態資訊睇嚟更為普通,如此可減少你嘅網絡活動被識別並追蹤嘅可能性。
-torbutton.panel.tooltip.disabled = 撳落去啟用Tor洋蔥路由
-torbutton.panel.tooltip.enabled = 撳落去停用洋蔥路由
-torbutton.panel.label.disabled = 已停用Tor洋蔥路由
-torbutton.panel.label.enabled = 已啟用Tor洋蔥路由
extensions.torbutton(a)torproject.org.description = Torbutton提供一個按鈕嚟設定Tor洋蔥路由,畀你快捷、簡易咁清除私人瀏覽紀錄。
torbutton.popup.external.title = 下載外部檔案類型?
torbutton.popup.external.app = Tor洋蔥路由瀏覽器無法顯示呢個檔案,請使用其他應用程式開啟佢。\n\n
diff --git a/zh-TW/torbutton.properties b/zh-TW/torbutton.properties
index 70deb50988..b0ca4ab94f 100644
--- a/zh-TW/torbutton.properties
+++ b/zh-TW/torbutton.properties
@@ -11,10 +11,6 @@ torbutton.circuit_display.learn_more = 繼續閱讀
torbutton.circuit_display.click_to_copy = 按一下以複製
torbutton.circuit_display.copied = 已複製!
torbutton.content_sizer.margin_tooltip = 洋蔥路由瀏覽器特意將視窗邊框的寬度及高度重新設置,以便讓您的瀏覽器狀態資訊看起來更為普通,如此可以減少您的網路活動被識別並追蹤的可能性。
-torbutton.panel.tooltip.disabled = 按一下以啟用洋蔥路由
-torbutton.panel.tooltip.enabled = 按一下以停用洋蔥路由
-torbutton.panel.label.disabled = 洋蔥路由已停用
-torbutton.panel.label.enabled = 洋蔥路由已啟用
extensions.torbutton(a)torproject.org.description = Torbutton 提供一個按鈕來設定洋蔥路由,以及輕鬆便捷地清除私人瀏覽資料。
torbutton.popup.external.title = 下載外部檔案類型?
torbutton.popup.external.app = 洋蔥路由瀏覽器無法顯示這個檔案,您需要使用其他應用程式來開啟它。\n\n
[View Less]
1
0

[translation/snowflakeaddon-messages.json_completed] https://gitweb.torproject.org/translation.git/commit/?h=snowflakeaddon-messages.json_completed
by translation@torproject.org 23 Feb '21
by translation@torproject.org 23 Feb '21
23 Feb '21
commit 57423234fede48ce32e9f1fde6048025196d381c
Author: Translation commit bot <translation(a)torproject.org>
Date: Tue Feb 23 10:46:04 2021 +0000
https://gitweb.torproject.org/translation.git/commit/?h=snowflakeaddon-mess…
---
en/messages.json | 15 +++++++++------
messages.json | 15 +++++++++------
2 files changed, 18 insertions(+), 12 deletions(-)
diff --git a/en/messages.json b/en/messages.json
index ebeb1e9f92..0a8925ed8a 100644
--- a/en/messages.json
+++ b/en/messages.…
[View More]json
@@ -36,10 +36,7 @@
"message": "Cookies are not enabled."
},
"websiteIntro": {
- "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">documentation wiki</a>."
- },
- "docWiki": {
- "message": "documentation wiki"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Browser"
@@ -66,10 +63,10 @@
"message": "If you encounter problems with Snowflake as a client or a proxy, please consider filing a bug report. There are two ways to file a bug report:"
},
"sharedAccount": {
- "message": "Edit the <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">public bug-reporting pad</a> of the anti-censorship team."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Please try to be as descriptive as possible with your ticket and if possible include log messages that will help us reproduce the bug."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Which looks like this:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/messages.json b/messages.json
index ebeb1e9f92..0a8925ed8a 100644
--- a/messages.json
+++ b/messages.json
@@ -36,10 +36,7 @@
"message": "Cookies are not enabled."
},
"websiteIntro": {
- "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">documentation wiki</a>."
- },
- "docWiki": {
- "message": "documentation wiki"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Browser"
@@ -66,10 +63,10 @@
"message": "If you encounter problems with Snowflake as a client or a proxy, please consider filing a bug report. There are two ways to file a bug report:"
},
"sharedAccount": {
- "message": "Edit the <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">public bug-reporting pad</a> of the anti-censorship team."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Please try to be as descriptive as possible with your ticket and if possible include log messages that will help us reproduce the bug."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Which looks like this:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
[View Less]
1
0

[translation/snowflakeaddon-messages.json] https://gitweb.torproject.org/translation.git/commit/?h=snowflakeaddon-messages.json
by translation@torproject.org 23 Feb '21
by translation@torproject.org 23 Feb '21
23 Feb '21
commit 99a60b4f57e6b497ad6eebe3ea5fee40eaf96100
Author: Translation commit bot <translation(a)torproject.org>
Date: Tue Feb 23 10:46:02 2021 +0000
https://gitweb.torproject.org/translation.git/commit/?h=snowflakeaddon-mess…
---
ar/messages.json | 15 +++++++++------
bn_BD/messages.json | 15 +++++++++------
ca/messages.json | 15 +++++++++------
cs/messages.json | 15 +++++++++------
da/messages.json | 15 +++++++++------
de/messages.json | 15 +++++++++------
el/…
[View More]messages.json | 15 +++++++++------
en/messages.json | 15 +++++++++------
en_GB/messages.json | 15 +++++++++------
es_AR/messages.json | 15 +++++++++------
es_ES/messages.json | 15 +++++++++------
fa/messages.json | 15 +++++++++------
fi/messages.json | 15 +++++++++------
fr/messages.json | 15 +++++++++------
ga_IE/messages.json | 15 +++++++++------
gl/messages.json | 15 +++++++++------
he/messages.json | 15 +++++++++------
hr/messages.json | 15 +++++++++------
hu/messages.json | 15 +++++++++------
hy_AM/messages.json | 15 +++++++++------
id/messages.json | 15 +++++++++------
is/messages.json | 15 +++++++++------
it/messages.json | 15 +++++++++------
ja/messages.json | 15 +++++++++------
ka/messages.json | 15 +++++++++------
kk/messages.json | 15 +++++++++------
ko/messages.json | 15 +++++++++------
lt/messages.json | 15 +++++++++------
messages.json | 15 +++++++++------
mk/messages.json | 15 +++++++++------
ml/messages.json | 15 +++++++++------
mr/messages.json | 15 +++++++++------
nb_NO/messages.json | 15 +++++++++------
nl/messages.json | 15 +++++++++------
pl/messages.json | 15 +++++++++------
pt_BR/messages.json | 15 +++++++++------
pt_PT/messages.json | 15 +++++++++------
ro/messages.json | 15 +++++++++------
ru/messages.json | 15 +++++++++------
sk/messages.json | 15 +++++++++------
sq/messages.json | 15 +++++++++------
sv_SE/messages.json | 15 +++++++++------
sw/messages.json | 15 +++++++++------
ta/messages.json | 15 +++++++++------
th/messages.json | 15 +++++++++------
tr/messages.json | 15 +++++++++------
uk/messages.json | 15 +++++++++------
zh_CN/messages.json | 15 +++++++++------
zh_TW/messages.json | 15 +++++++++------
49 files changed, 441 insertions(+), 294 deletions(-)
diff --git a/ar/messages.json b/ar/messages.json
index 506daf7d28..933521af1a 100644
--- a/ar/messages.json
+++ b/ar/messages.json
@@ -36,10 +36,7 @@
"message": "ملفات تعريف الارتباط (كوكيز) غير مفعلة."
},
"websiteIntro": {
- "message": "Snowflake هو نظام لاحباط الرقابة على الانترنت. الأشخاص المراقبون يمكنهم استخدام Snowflake للدخول على الإنترنت. إتصالهم يمر عبر بروكسيهات Snowflake التى يتم تشغيلها عن طريق متطوعين. للمزيد من المعلومات عن طريقة عمل Snowflake اذهب إلى <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">توثيق الويكى</a> الخاص بنا."
- },
- "docWiki": {
- "message": "ويكي التوثيق"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "المتصفح"
@@ -66,10 +63,10 @@
"message": "إذا واجهت مشاكل مع Snowflake كعميل أو وكيل ، فالرجاء التفكير في إرسال تقرير خطأ. هناك طريقتان لتقديم تقرير خطأ:"
},
"sharedAccount": {
- "message": "قم بتحرير <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">لوحة الإبلاغ عن الأخطاء العامة</a> لفريق مكافحة الرقابة."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">اطلب حسابًا</a> في Tor Project GitLab ، ثم<a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…"> افتح إصدارًا جديدًا </a>في مشروع Snowflake."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "يرجى محاولة أن تكون وصفيًا قدر الإمكان مع تذكرتك ، وإذا أمكن ، قم بتضمين رسائل السجل التي ستساعدنا في إعادة إنتاج الخطأ."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "و التي تظهر على الشكل التالي:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/bn_BD/messages.json b/bn_BD/messages.json
index e2c78611e5..c8245054be 100644
--- a/bn_BD/messages.json
+++ b/bn_BD/messages.json
@@ -36,10 +36,7 @@
"message": "কুকিজ সক্রিয় নয়।"
},
"websiteIntro": {
- "message": "Snowflake ইন্টারনেট সেন্সরশিপকে পরাস্ত করার একটি ব্যবস্থা। সেন্সরযুক্ত লোকেরা ইন্টারনেট অ্যাক্সেস করতে Snowflake ব্যবহার করতে পারেন। তাদের সংযোগ Snowflake প্রক্সিগুলির মধ্য দিয়ে যায়, যা স্বেচ্ছাসেবীর মাধ্যমে চালিত হয়। Snowflake কীভাবে কাজ করে সে সম্পর্কে আরও বিস্তারিত তথ্যের জন্য আমাদের <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">ডকুমেন্টেশন উইকি</a> দেখুন।"
- },
- "docWiki": {
- "message": "ডকুমেন্টেশন উইকি"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "ব্রাউজার"
@@ -66,10 +63,10 @@
"message": "If you encounter problems with Snowflake as a client or a proxy, please consider filing a bug report. There are two ways to file a bug report:"
},
"sharedAccount": {
- "message": "Edit the <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">public bug-reporting pad</a> of the anti-censorship team."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Please try to be as descriptive as possible with your ticket and if possible include log messages that will help us reproduce the bug."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "যা দেখতে এরকম দেখাচ্ছে:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/ca/messages.json b/ca/messages.json
index 8de7b0ab01..969849a163 100644
--- a/ca/messages.json
+++ b/ca/messages.json
@@ -36,10 +36,7 @@
"message": "Les galetes no estan activades."
},
"websiteIntro": {
- "message": "Snowflake és un sistema per defensar-se contra la censura a Internet. La gent a qui s'aplica aquesta censura pot utilitzar Snowflake per accedir a Internet. La connexió funciona mitjançant servidors intermediaris de Snowflake, creats per voluntaris. Per a més informació quant al funcionament del Snowflake, veieu la <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentació al wiki</a>."
- },
- "docWiki": {
- "message": "Wiki de documentació"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Navegador"
@@ -66,10 +63,10 @@
"message": "Si trobeu problemes amb l'Snowlfake com a client o con a servidor intermediari, considereu enviar un informe d'error. Hi ha dues maneres de fer-ho:"
},
"sharedAccount": {
- "message": "Editeu el <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">panell públic d'informe d'errors</a> de l'equip d'anticensura."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Demaneu un compte</a> al GitLab del Tor Project, i després <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">obriu un Issue nou</a> en el projecte Snowflake."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Proveu de ser tan descriptius com us sigui possible i incloeu-hi, si és possible, un registre de missatges que ajudi a reproduir l'error."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "I es veurà d'aquesta manera:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/cs/messages.json b/cs/messages.json
index 66fb56da31..093eabe72b 100644
--- a/cs/messages.json
+++ b/cs/messages.json
@@ -36,10 +36,7 @@
"message": "Cookies nejsou povoleny."
},
"websiteIntro": {
- "message": "Snowflake je systém pro obcházení internetové cenzury. Lidé jej mohou použít pro přístup k internetu bez cenzury tak, že je jejich spojení vedeno přes proxy servery Snowflaku, které jsou provozované dobrovolníky. Podrobnější informace, jak Snowflake funguje, najdete na naší <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">wiki</a>."
- },
- "docWiki": {
- "message": "wiki"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Prohlížeč"
@@ -66,10 +63,10 @@
"message": "Pokud narazíte se Snowflakem na nějaký problém, ať už jako klient nebo proxy, zvažte prosím vyplnění bug reportu. Jsou dvě možnosti, jak to udělat:"
},
"sharedAccount": {
- "message": "Upravte <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">public bug-reporting pad</a> týmu proti cenzuře."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Požádejte o účet</a> v Tor Project na GitLabu a pak <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">založte nové issue</a> v projektu Snowflake."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Popište prosím svůj problém co nejpodrobněji a, pokud je to možné, připojte i zprávy z logů, které nám pomohou bug reprodukovat."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Který vypadá takto:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/da/messages.json b/da/messages.json
index 5572dd82ea..aa4ffc02d7 100644
--- a/da/messages.json
+++ b/da/messages.json
@@ -36,10 +36,7 @@
"message": "Cookies er ikke aktiveret."
},
"websiteIntro": {
- "message": "Snowflake er et system til at bekæmpe internetcensur. Personer som er udsat for censur kan bruge Snowflake til at tilgå internettet. Deres forbindelse går gennem Snowflake-proxier, som køres af frivillige. Se vores <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">dokumentationswiki</a> for mere information om hvordan Snowflake virker."
- },
- "docWiki": {
- "message": "dokumentationswiki"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Browser"
@@ -66,10 +63,10 @@
"message": "Venligst overvej at sende os en bug-rapport hvis du oplever problemer med Snowflake som en klient eller proxy. Der er to måder du kan udfylde en bug-rapport:"
},
"sharedAccount": {
- "message": "Rediger <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">anti-censur teamets offentlige bug-rapporteringshub</a>. "
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Anmod om en bruger</a> på Tor projektet's GitLab, <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">opret et nyt problem</a> i Snowflake projektet."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Venligst prøv på at beskrive problemet så grundigt som muligt og hvis muligt inkludera log-beskederne da det vil hjælpe os med at genskabe fejlen."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Som ser sådan her ud:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/de/messages.json b/de/messages.json
index 6b2fa0fec2..1aebfe2e35 100644
--- a/de/messages.json
+++ b/de/messages.json
@@ -36,10 +36,7 @@
"message": "Cookies sind nicht aktiviert."
},
"websiteIntro": {
- "message": "Snowflake ist ein System zur Umgehung von Internetzensur. Personen die Zensur ausgesetzt sind, können Snowflake verwenden, um auf das Internet zuzugreifen. Deren Verbindung läuft über Snowflake Proxies, welche von Freiwilligen betrieben werden. Für mehr Informationen zu Snowflake, besuchen Sie bitte das <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">Dokumentations-Wiki</a>."
- },
- "docWiki": {
- "message": "Wiki-Dokumentation"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Browser"
@@ -66,10 +63,10 @@
"message": "Wenn du Probleme mit Snowflake als Client oder Proxy hast, erwäge bitte, einen Fehlerbericht einzureichen. Es gibt zwei Möglichkeiten, eine Fehlermeldung einzureichen. Es gibt zwei Wege, dies zu tun:"
},
"sharedAccount": {
- "message": "Bearbeite das <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">öffentliche bug-reporting pad</a> des Anti-Zensur-Teams."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Beantrage ein Konto</a> beim Tor Project GitLab, dann <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">eröffne ein neues Thema</a> im Snowflake-Projekt."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Bitte versuche, dein Ticket so beschreibend wie möglich zu gestalten und füge wenn möglich Logmeldungen bei, die uns helfen, den Fehler zu reproduzieren."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Dieser sieht folgendermaßen aus:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/el/messages.json b/el/messages.json
index d81a9c2ddb..3a722ca5c0 100644
--- a/el/messages.json
+++ b/el/messages.json
@@ -36,10 +36,7 @@
"message": "Τα Cookies δεν είναι ενεργοποιημένα."
},
"websiteIntro": {
- "message": "Το Snowflake είναι ένα σύστημα για την καταπολέμηση της λογοκρισίας στο διαδίκτυο. Όσοι έχουν υποστεί λογοκρισία μπορούν να αποκτήσουν πρόσβαση στο διαδίκτυο χρησιμοποιώντας το Snowflake. Η σύνδεσή περνά μέσα από διαμεσολαβητές του Snowflake, οι οποίοι διατηρούνται από εθελοντές. Για περισσότερες πληροφορίες σχετικά με το πως λειτουργεί το Snowflake δείτε την <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">τεκμηρίωση στο wiki</a>."
- },
- "docWiki": {
- "message": "wiki τεκμηρίωσης"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Περιηγητής"
@@ -66,10 +63,10 @@
"message": "Αν αντιμετωπίζετε προβλήματα με το Snowflake ως πελάτη ή διαμεσολαβητή, παρακαλούμε υποβάλετε αναφορά σφάλματος. Υπάρχουν δύο τρόποι υποβολής σφάλματος:"
},
"sharedAccount": {
- "message": "Edit the <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">public bug-reporting pad</a> of the anti-censorship team."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Please try to be as descriptive as possible with your ticket and if possible include log messages that will help us reproduce the bug."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Που μοιάζει με αυτό:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/en/messages.json b/en/messages.json
index ebeb1e9f92..0a8925ed8a 100644
--- a/en/messages.json
+++ b/en/messages.json
@@ -36,10 +36,7 @@
"message": "Cookies are not enabled."
},
"websiteIntro": {
- "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">documentation wiki</a>."
- },
- "docWiki": {
- "message": "documentation wiki"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Browser"
@@ -66,10 +63,10 @@
"message": "If you encounter problems with Snowflake as a client or a proxy, please consider filing a bug report. There are two ways to file a bug report:"
},
"sharedAccount": {
- "message": "Edit the <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">public bug-reporting pad</a> of the anti-censorship team."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Please try to be as descriptive as possible with your ticket and if possible include log messages that will help us reproduce the bug."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Which looks like this:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/en_GB/messages.json b/en_GB/messages.json
index 7bc22f6d57..c7ef3470e7 100644
--- a/en_GB/messages.json
+++ b/en_GB/messages.json
@@ -36,10 +36,7 @@
"message": "Cookies are not enabled."
},
"websiteIntro": {
- "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the Internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">documentation wiki</a>."
- },
- "docWiki": {
- "message": "documentation wiki"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Browser"
@@ -66,10 +63,10 @@
"message": "If you encounter problems with Snowflake as a client or a proxy, please consider filing a bug report. There are two ways to file a bug report:"
},
"sharedAccount": {
- "message": "Edit the <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">public bug-reporting pad</a> of the anti-censorship team."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Please try to be as descriptive as possible with your ticket and if possible include log messages that will help us reproduce the bug."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Which looks like this:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/es_AR/messages.json b/es_AR/messages.json
index 5e9fc7c06c..20c3d859eb 100644
--- a/es_AR/messages.json
+++ b/es_AR/messages.json
@@ -36,10 +36,7 @@
"message": "Las cookies no están habilitadas."
},
"websiteIntro": {
- "message": "Snowflake es un sistema para derrotar la censura de internet. Las personas censuradas pueden usar Snowflake para acceder a Internet. Su conexión pasa por proxys Snowflake, que están a cargo de voluntarios. Para obtener información más detallada sobre cómo funciona Snowflake, consulte nuestra <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">documentación wiki</a>."
- },
- "docWiki": {
- "message": "documentación wiki"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Navegador"
@@ -66,10 +63,10 @@
"message": "Si tenés problemas con Snowflake como cliente o proxy, considerá la posibilidad de informar un error. Hay dos maneras de hacer esto:"
},
"sharedAccount": {
- "message": "Editá la <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">libreta pública de informe de errores</a> del equipo anticensura."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Solicitá una cuenta</a> en el GitLab del Tor Project, y después <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">abrí una cuestión nueva</a> en el proyecto Snowflake."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Intentá ser lo más descriptivo posible con tu tique, y si es posible, incluí mensajes de registro que nos ayuden a reproducir el error."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Que se ve así:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/es_ES/messages.json b/es_ES/messages.json
index 73cf3b4497..2aa45652c3 100644
--- a/es_ES/messages.json
+++ b/es_ES/messages.json
@@ -36,10 +36,7 @@
"message": "Las cookies no están habilitadas."
},
"websiteIntro": {
- "message": "Snowflake es un sistema para derrotar la censura en Internet. Las personas censuradas pueden usar Snowflake para acceder a Internet. Su conexión pasa por los proxies de Snowflake, que son administrados por voluntarios. Para obtener información más detallada sobre el funcionamiento de Snowflake, consulta nuestra <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">documentación en la wiki</a>."
- },
- "docWiki": {
- "message": "wiki de documentación"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Navegador"
@@ -66,10 +63,10 @@
"message": "Si tiene problemas con Snowflake como cliente o proxy, sopese la posibilidad de presentar un informe de errores. Hay dos maneras de presentar un informe de errores:"
},
"sharedAccount": {
- "message": "Edita el <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">public bug-reporting pad</a> del equipo anticensura."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Solicita una cuenta</a> en el Proyecto Tor GitLab, despues <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">abres una nueva cuenta</a> en el proyecto Snowflake."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Por favor, intenta ser lo más descriptivo posible con el ticket y si es posible incluye mensajes de registro que nos ayuden a reproducir el error."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Que se ve así:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/fa/messages.json b/fa/messages.json
index eee0f7062a..a9b0607b85 100644
--- a/fa/messages.json
+++ b/fa/messages.json
@@ -36,10 +36,7 @@
"message": "کوکی ها فعال نیستند."
},
"websiteIntro": {
- "message": "برفدانه سیستمی برای شکستن سانسور اینترنت است. افرادی که گرفتار سانسور شدهاند میتوانند از برفدانه برای دسترسی به اینترنت استفاده کنند. ارتباطات آنها از درون پراکسیهای برفدانه که توسط افراد داوطلب اجرا میشوند، عبور داده میشود. برای اطلاعات بیشتر دربارهی نحوه کار برفدانه مستندات ما را <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\"> در ویکی ببینید."
- },
- "docWiki": {
- "message": "ویکی راهنمای سندسازی "
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "مرورگر"
@@ -66,10 +63,10 @@
"message": "If you encounter problems with Snowflake as a client or a proxy, please consider filing a bug report. There are two ways to file a bug report:"
},
"sharedAccount": {
- "message": "Edit the <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">public bug-reporting pad</a> of the anti-censorship team."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Please try to be as descriptive as possible with your ticket and if possible include log messages that will help us reproduce the bug."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "که مانند این است:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/fi/messages.json b/fi/messages.json
index 696ad8eae2..f61b62c94d 100644
--- a/fi/messages.json
+++ b/fi/messages.json
@@ -36,10 +36,7 @@
"message": "Evästeet eivät ole käytössä."
},
"websiteIntro": {
- "message": "Snowflake on järjestelmä internet-sensuurin päihittämiseen. Sensuroidut henkilöt voivat käyttää Snowflakeä päästäkseen internetiin. Heidän yhteydensä kulkee vapaaehtoisten ylläpitämien Snowflake-välityspalvelinten kautta. Yksityiskohtaisempaa tietoa Snowflaken toiminnasta löytyy <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">dokumentaatiowikistämme</a>."
- },
- "docWiki": {
- "message": "dokumentaatiowiki"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Selain"
@@ -66,10 +63,10 @@
"message": "Jos Snowflake aiheuttaa ongelmia asiakasohjelmana tai välityspalvelimena, harkitse bugi-ilmoituksen tekemistä. On kaksi tapaa tehdä bugi-ilmoitus:"
},
"sharedAccount": {
- "message": "Muokkaa antisensuuritiimin <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">julkista bugi-ilmoitusalustaa</a>."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Pyydä tili</a> Tor-projektin GitLabistä ja <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">avaa sitten uusi ongelma</a> Snowflake-projektissa."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Ole hyvä ja kuvaile ongelmaa mahdollisimman tarkkaan ja, jos mahdollista, sisällytä lokiviestejä, jotka voivat auttaa bugin toistamisessa."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Joka näyttää tältä:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/fr/messages.json b/fr/messages.json
index b77d0b8ba1..d9e96469e7 100644
--- a/fr/messages.json
+++ b/fr/messages.json
@@ -36,10 +36,7 @@
"message": "Les témoins ne sont pas activés."
},
"websiteIntro": {
- "message": "Snowflake est un système pour contrecarrer la censure sur Internet. Les personnes victimes de censure peuvent utiliser Snowflake pour accéder à Internet. Leur connexion passe par des mandataires Snowflake dont les opérateurs sont des bénévoles. Pour de plus amples renseignements sur le fonctionnement de Snowflake, consultez notre <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">wiki de documentation</a> (page en anglais)."
- },
- "docWiki": {
- "message": "wiki de documentation"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Navigateur"
@@ -66,10 +63,10 @@
"message": "Si vous rencontrez des problèmes avec Snowflake comme client ou comme mandataire, veuillez envisager de remplir un relevé de bogue. Deux options s’offrent à vous :"
},
"sharedAccount": {
- "message": "Modifiez <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">le bloc-notes public de signalement de bogues</a> de l’équipe anticensure."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Demandez un compte</a> sur le GitLab du Projet Tor, puis <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">créez un nouveau ticket de problème</a> pour le projet Snowflake."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Veuillez essayer de créer un ticket des plus descriptif et si possible, joignez-y des messages de journalisation qui nous aideront à reproduire le bogue."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Qui ressemble à ceci :"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/ga_IE/messages.json b/ga_IE/messages.json
index 08993fd53e..d6905c9b02 100644
--- a/ga_IE/messages.json
+++ b/ga_IE/messages.json
@@ -36,10 +36,7 @@
"message": "Níl fianáin ar siúl."
},
"websiteIntro": {
- "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">documentation wiki</a>."
- },
- "docWiki": {
- "message": "vicí doiciméadaithe"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Brabhsálaí"
@@ -66,10 +63,10 @@
"message": "If you encounter problems with Snowflake as a client or a proxy, please consider filing a bug report. There are two ways to file a bug report:"
},
"sharedAccount": {
- "message": "Edit the <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">public bug-reporting pad</a> of the anti-censorship team."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Please try to be as descriptive as possible with your ticket and if possible include log messages that will help us reproduce the bug."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "A bhfuil an chuma seo air:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/gl/messages.json b/gl/messages.json
index d0a80411cf..ba2a97cc23 100644
--- a/gl/messages.json
+++ b/gl/messages.json
@@ -36,10 +36,7 @@
"message": "Os rastros non están activados."
},
"websiteIntro": {
- "message": "Snowflake é un sistema que derrota a censura na Internet. As persoas que sofren censura poden utilizar Snowflake para acceder á Internet. A súa conexión vai a través dos servidores intermedios de Snowflake, que son xestionados por voluntarios. Para unha información máis detallada sobre como funciona Snowflake, véxase a documentación <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">do wiki</a>."
- },
- "docWiki": {
- "message": "wiki de documentación"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Navegador"
@@ -66,10 +63,10 @@
"message": "Se atopa problemas con Snowflake como cliente ou como servidor intermedio, considere enviarnos un informe de fallos. Hai dúas maneiras de remitir un informe de fallos."
},
"sharedAccount": {
- "message": "Editar o <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">panel público de informe de fallo</a>no equipo anticensura. "
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Solicitar unha conta</a> no GitLab do Proxecto Tor, e logo<a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">abrir unha nova incidencia</a> no proxecto Snowflake."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Tente ser o máis descritivo posíbel co seu tícket e se é posíbel inclúa mensaxes de rexistro que nos axuden a reproducir o fallo."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Que loce así:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/he/messages.json b/he/messages.json
index eaff3acdc5..43e861b78b 100644
--- a/he/messages.json
+++ b/he/messages.json
@@ -36,10 +36,7 @@
"message": "עוגיות אינן מאופשרות."
},
"websiteIntro": {
- "message": "Snowflake הוא מערכת להבסת צנזורת אינטרנט. אנשים שהם מצונזרים יכולים להשתמש ב־Snowflake כדי להשיג גישה אל האינטרנט. החיבור עובר דרך יפויי כוח Snowflake, שהם מופעלים על ידי מתנדבים. לעוד מידע מפורט על איך Snowflake עובד ראה את <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">תיעוד וויקי</a>."
- },
- "docWiki": {
- "message": "תיעוד וויקי"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "דפדפן"
@@ -66,10 +63,10 @@
"message": "אם אתה נתקל בבעיות עם Snowflake כלקוח או כייפוי כוח, אנא שקול הגשת דוח תקל. יש שתי דרכים להגיש דוח תקל:"
},
"sharedAccount": {
- "message": "ערוך את <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">הפנקס הציבורי של דיווח תקלים</a> של צוות הנגד־צנזורה."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">בקש חשבון</a> ב־GitLab של מיזם Tor, לאחר מכן <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">פתח סוגייה חדשה</a> במיזם Snowflake."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "אנא נסה להיות מפורט ככל האפשר עם הכרטיס שלך ואם אפשר כלול הודעות יומן שיעזרו לנו להפיק מחדש את התקל."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "שנראה כך:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/hr/messages.json b/hr/messages.json
index 9249dc7105..ff086124a3 100644
--- a/hr/messages.json
+++ b/hr/messages.json
@@ -36,10 +36,7 @@
"message": "Kolačići nisu aktivirani."
},
"websiteIntro": {
- "message": "Snowflake (snježna pahuljica) je sustav za nadvladavanje internetske cenzure. Osobe pod cenzurom mogu koristiti Snowflake za pristup internetu. Njihova veza prolazi kroz Snowflake poslužitelje, kojima upravljaju volonteri. Za detaljnije informacije o tome kako radi Snowflake, pogledaj našu <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">wiki dokumentaciju</a>."
- },
- "docWiki": {
- "message": "wiki dokumentacija"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Preglednik"
@@ -66,10 +63,10 @@
"message": "Ako imaš problema sa Snowflakeom kao klijentom ili poslužiteljem, prijavi grešku. Za prijavljivanje greške postoje dvije mogućnosti:"
},
"sharedAccount": {
- "message": "Uredi <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">ploču za prijavljivanje grešaka</a> tima za anticenzuru."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Zatraži račun</a> u Tor Project GitLab, a zatim <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">otvori novi problem</a> u projektu Snowflake."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Opiši problem što opširnije i po mogućnosti uključi poruke log-zapisa koje će nam pomoći reproducirati grešku."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Izgleda ovako:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/hu/messages.json b/hu/messages.json
index 7d5e051e54..7de5b3d550 100644
--- a/hu/messages.json
+++ b/hu/messages.json
@@ -36,10 +36,7 @@
"message": "A cookie-k nincsenek engedélyezve."
},
"websiteIntro": {
- "message": "A Snowflake egy cenzúra elleni rendszer. Azok, akiket cenzúráznak a Snowflake-et használhatják az internet elérésére. A kapcsolatuk Snowflake proxykon megy keresztül, amiket önkéntesek futtatnak. Részletesebb információkért, arról, hogy a Snowflake hogyan működik látogassa meg a <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">dokumentáció wiki</a>-t."
- },
- "docWiki": {
- "message": "dokumentáció wiki"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Böngésző"
@@ -66,10 +63,10 @@
"message": "Ha problémát tapasztal a Snowflake-kel, mint kliens vagy proxy, gondoljon arra, hogy beküldjön egy hibát. Két módja van a hiba beküldésének:"
},
"sharedAccount": {
- "message": "Szerkessze a <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">nyilvános hibabjelentő felületét</a> az anti cenzúra csapatnak."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Igényeljen egy fiókot</a>a Tor Project GitLabjához, majd <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">nyisson egy hibajegyet</a> a Snowflake projektben."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Kérjük legyen annyira leíró, amennyire lehet a hibajegyében és ha van rá lehetősége csatolja a logot, ami segítheti a probléma reprodukálását."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Amely így néz ki:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/hy_AM/messages.json b/hy_AM/messages.json
index e2c4d4f545..f7ab7d90e3 100644
--- a/hy_AM/messages.json
+++ b/hy_AM/messages.json
@@ -36,10 +36,7 @@
"message": "«Cookie»-ները չեն կարողազրկվել:"
},
"websiteIntro": {
- "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">documentation wiki</a>."
- },
- "docWiki": {
- "message": "documentation wiki"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Դիտարկիչ"
@@ -66,10 +63,10 @@
"message": "If you encounter problems with Snowflake as a client or a proxy, please consider filing a bug report. There are two ways to file a bug report:"
},
"sharedAccount": {
- "message": "Edit the <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">public bug-reporting pad</a> of the anti-censorship team."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Please try to be as descriptive as possible with your ticket and if possible include log messages that will help us reproduce the bug."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Which looks like this:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/id/messages.json b/id/messages.json
index 6b5bd37792..2de668985e 100644
--- a/id/messages.json
+++ b/id/messages.json
@@ -36,10 +36,7 @@
"message": "Cookies tidak aktif."
},
"websiteIntro": {
- "message": "Snowflake adalah sebuah sistem untuk mengalahkan penyensoran internet. Orang-orang yang tersensor internetnya dapat menggunakan Snowflake untuk mengakses internet. Mereka tersambung melalui proksi Snowflake yang dijalankan oleh sukarelawan. Untuk informasi lebih lanjut mengenai bagaimana Snowflake bekerja lihat <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">wiki dokumentasi</a> kami."
- },
- "docWiki": {
- "message": "wiki dokumentasi"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Peramban"
@@ -66,10 +63,10 @@
"message": "Jika Anda mengalami kendala dengan Snowflake sebagai pengguna atau proksi, mohon pertimbangkan untuk melaporkan bug. Ada dua cara untuk melakukan pelaporan bug:"
},
"sharedAccount": {
- "message": "Sunting<a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">pad pelaporan-publik-bug</a>dari tim anti-sensor."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Ajukan sebuah akun</a>pada Tor Project GitLab, lalu <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">buka isu baru </a>dalam proyek Snowflake."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Mohon untuk sedeskriptif mungkin dengan tiket Anda dan bila memungkinkan catat pesan yang akan membantu kami meniru bug."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Yang terlihat seperti ini:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/is/messages.json b/is/messages.json
index 80c8f1b682..a302679657 100644
--- a/is/messages.json
+++ b/is/messages.json
@@ -36,10 +36,7 @@
"message": "Vefkökur eru ekki virkar."
},
"websiteIntro": {
- "message": "Snowflake er kerfi til að komast í kringum ritskoðun á internetinu. Fólk sem verður fyrir ritskoðun getur notað Snowflake til að komast á internetið. Tengingin þeirra fer þá í gegnum Snowflake-milliþjóna, sem eru reknir af sjálfboðaliðum. Til að sjá nánari upplýsingar um hvernig Snowflake virkar <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">wiki-vefinn með hjálparskjölunum</a>."
- },
- "docWiki": {
- "message": "wiki-vefur með hjálparskjölum"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Vafri"
@@ -66,10 +63,10 @@
"message": "Ef þú rekst á vandamál í Snowflake sem biðlara eða milliþjón, skaltu endilega tilkynna vandamálið. Það eru tvær leiðir til að tilkynna galla:"
},
"sharedAccount": {
- "message": "Gerðu breytingar á <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">opinbera villutilkynningasvæðinu</a> hjá teyminu sem berst gegn ritskoðun."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Reyndu að gera verkbeiðnina eins greinargóða og lýsandi og auðið er, hafa jafnvel með þau skilaboð úr atvikaskráningu (log) sem geta hjálpað við að endurgera villuna."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Sem lítur þá svona út:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/it/messages.json b/it/messages.json
index 62f2463eab..dc988babf6 100644
--- a/it/messages.json
+++ b/it/messages.json
@@ -36,10 +36,7 @@
"message": "I cookie non sono attivati."
},
"websiteIntro": {
- "message": "Snowflake è un sistema per sconfiggere la censura di internet. Le persone che sono sottoposte a censura possono usare Snowflake per accedere ad internet. Le loro connessioni passano attraverso i proxy Snowflake, che sono gestiti da volontari. Per informazioni più dettagliate su come funziona Snowflake leggi la nostra <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">wiki di documentazione</a>."
- },
- "docWiki": {
- "message": "wiki della documentazione"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Browser"
@@ -66,10 +63,10 @@
"message": "Se incappi in qualche problema con Snowflake, sia come client che come proxy, considera di segnalare l'errore. Ci sono due modi per farlo:"
},
"sharedAccount": {
- "message": "Modifica il <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">pad di segnalazione pubblico</a> del team anti-censura."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Richiedi un account</a> nel GitLab di Tor Project, poi <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">apri una segnalazione</a> nel progetto Snowflake."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Cerca di essere il più descrittivo possibile nel tuo ticket e se possibile includi messaggi di log che possano aiutarci a riprodurre l'errore."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Che ha questo aspetto:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/ja/messages.json b/ja/messages.json
index ac1b7d2aaa..1d8e913a78 100644
--- a/ja/messages.json
+++ b/ja/messages.json
@@ -36,10 +36,7 @@
"message": "クッキーが有効になっていません。"
},
"websiteIntro": {
- "message": "Snowflake は、インターネット検閲を無効化するシステムです。 検閲さている人々は、Snowflake を使用してインターネットにアクセスすることができます。 これらの接続は、沢山のボランティアによって運営されている Snowflake プロキシを経由します。 Snowflake の仕組みの詳細については、<a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">Wiki ドキュメント</a>を参照してください。"
- },
- "docWiki": {
- "message": "Wikiドキュメント"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "ブラウザ"
@@ -66,10 +63,10 @@
"message": "Snowflake にクライアントまたはプロキシとして問題が発生した場合は、バグ報告の提出を検討してください。 バグ報告の提出には、次の2つの方法があります:"
},
"sharedAccount": {
- "message": "対検閲チーム(Anti-censorship team)の<a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">バグ報告用公開パッド</a>を編集する。"
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "Tor Project の GitLab に<a href=\"https://gitlab.torproject.org/\">アカウントをリクエスト</a>して、Snowflake プロジェクトで<a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">新しく issue を開く</a>。"
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "バグに関する情報をできるだけ詳細に説明するようにしてください。可能であればバグを再現するのに役立つログメッセージも記載してください。"
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "これは次のようになります:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/ka/messages.json b/ka/messages.json
index ba79a93156..e355f288c6 100644
--- a/ka/messages.json
+++ b/ka/messages.json
@@ -36,10 +36,7 @@
"message": "ფუნთუშები არაა ჩართული."
},
"websiteIntro": {
- "message": "Snowflake წარმოადგენს სისტემას ინტერნეტში ცენზურის მოსასპობად. ხალხს რომლებიც ცენზურის ქვეშ არიან, შეუძლიათ გამოიყენონ Snowflake ინტერნეტთან წვდომისთვის. მათი კავშირი გადამისამართდება Snowflake-პროქსებით, რომლებსაც ამუშავებენ მოხალისეები. Snowflake-ის მუშაობის შესახებ ვრცლად, იხილეთ ჩვენი <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">მასალების ვიკიში</a>."
- },
- "docWiki": {
- "message": "დამხმარე მასალების ვიკი"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "ბრაუზერი"
@@ -66,10 +63,10 @@
"message": "თუ რამე ხარვეზს გადააწყდით Snowflake-ის კლიენტის ან პროქსის გამოყენებისას, გთხოვთ, გვაცნობოთ. ორი გზა გაქვთ, ხარვეზის მოსახსენებლად:"
},
"sharedAccount": {
- "message": "ჩასწორება <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">საჯარო ხარვეზების-მოხსენების წიგნაკი</a>, ცენზურის მოწინააღმდეგეთა გუნდის."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">ანგარიშის მოთხოვნა</a> Tor-პროექტისთვის GitLab-ზე, შემდეგ <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">კი ახალი განხილვის დამატება</a> Snowflake-პროექტში."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "გთხოვთ, შეეცადოთ მეტად ვრცლად აღწეროთ საკითხი ბილეთში და თუ შესაძლებელია დაურთოთ აღრიცხვის შეტყობინებები, რაც დაგვეხმარება გადავამოწმოთ ხარვეზი."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "რომელიც გამოიყურება ასე:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/kk/messages.json b/kk/messages.json
index 9e53e8daef..173c065dcf 100644
--- a/kk/messages.json
+++ b/kk/messages.json
@@ -36,10 +36,7 @@
"message": "Cookie файлдары қосылмаған."
},
"websiteIntro": {
- "message": "Snowflake - бұл интернет цензурасын жеңетін жүйе. Цензураға ұшыраған адамдар интернетке кіру үшін Snowflake қолдана алады. Олардың байланысы еріктілер басқаратын Snowflake прокси-бағдарламалары арқылы өтеді. Snowflake қалай жұмыс істейтіні туралы толығырақ ақпарат алу үшін біздің <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">құжаттамалық викиді</a> қараңыз"
- },
- "docWiki": {
- "message": "құжаттамалық вики"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Браузер"
@@ -66,10 +63,10 @@
"message": "If you encounter problems with Snowflake as a client or a proxy, please consider filing a bug report. There are two ways to file a bug report:"
},
"sharedAccount": {
- "message": "Edit the <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">public bug-reporting pad</a> of the anti-censorship team."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Please try to be as descriptive as possible with your ticket and if possible include log messages that will help us reproduce the bug."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Бұл қалай көрінеді:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/ko/messages.json b/ko/messages.json
index 1a3b415e80..0bc53021df 100644
--- a/ko/messages.json
+++ b/ko/messages.json
@@ -36,10 +36,7 @@
"message": "쿠키가 활성화되지 않았습니다."
},
"websiteIntro": {
- "message": "Snowflake는 인터넷 검열을 물리치기 위한 시스템입니다. 검열을 받은 사람들은 인터넷에 접속하기 위해 Snowflake를 사용할 수 있습니다. 그들의 연결은 자원봉사자들에 의해 운영되는 Snowflake 프록시를 통해 이루어집니다. Snowflake의 작동 방식에 대한 자세한 내용은 <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">문서 wiki</a>를 참조하시기 바랍니다."
- },
- "docWiki": {
- "message": "문서 위키"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "브라우저"
@@ -66,10 +63,10 @@
"message": "Snowflake에서 클라이언트 또는 프록시로 문제가 발생하면 버그 리포트를 제출하는 것을 고려해 주십시오. 버그 리포트를 제출하는 방법에는 두 가지가 있습니다:"
},
"sharedAccount": {
- "message": "검열방지팀의 <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">공개 버그신고 패드</a>를 편집합니다."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "Tor Project GitLab에서 <a href=\"https://gitlab.torproject.org/\">계정을 요청</a>한 다음 Snowflake 프로젝트에서 <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">새 이슈</a>를 엽니다."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "가능한 한 티켓에 대해 설명해주십시오. 가능하다면 버그를 재실행하는 데 도움이 되는 로그 메시지를 포함시키십시오."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "이렇게 보입니다:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/lt/messages.json b/lt/messages.json
index 89a633cd39..592eed0ee4 100644
--- a/lt/messages.json
+++ b/lt/messages.json
@@ -36,10 +36,7 @@
"message": "Slapukai nėra įjungti."
},
"websiteIntro": {
- "message": "Snowflake yra sistema, skirta nugalėti interneto cenzūrą. Cenzūruojami žmonės gali naudotis Snowflake, kad gautų prieigą prie interneto. Jų ryšys jungiasi per įgaliotuosius Snowflake serverius, kurie veikia savanorių dėka. Daugiau išsamesnės informacijos apie tai, kaip veikia Snowflake, rasite mūsų <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">dokumentacijos vikyje</a>."
- },
- "docWiki": {
- "message": "dokumentacijos vikis"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Naršyklė"
@@ -66,10 +63,10 @@
"message": "If you encounter problems with Snowflake as a client or a proxy, please consider filing a bug report. There are two ways to file a bug report:"
},
"sharedAccount": {
- "message": "Edit the <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">public bug-reporting pad</a> of the anti-censorship team."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Please try to be as descriptive as possible with your ticket and if possible include log messages that will help us reproduce the bug."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Kuris atrodo štai taip:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/messages.json b/messages.json
index ebeb1e9f92..0a8925ed8a 100644
--- a/messages.json
+++ b/messages.json
@@ -36,10 +36,7 @@
"message": "Cookies are not enabled."
},
"websiteIntro": {
- "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">documentation wiki</a>."
- },
- "docWiki": {
- "message": "documentation wiki"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Browser"
@@ -66,10 +63,10 @@
"message": "If you encounter problems with Snowflake as a client or a proxy, please consider filing a bug report. There are two ways to file a bug report:"
},
"sharedAccount": {
- "message": "Edit the <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">public bug-reporting pad</a> of the anti-censorship team."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Please try to be as descriptive as possible with your ticket and if possible include log messages that will help us reproduce the bug."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Which looks like this:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/mk/messages.json b/mk/messages.json
index d066e2a1db..9af848c012 100644
--- a/mk/messages.json
+++ b/mk/messages.json
@@ -36,10 +36,7 @@
"message": "Колачињата не се овозможени."
},
"websiteIntro": {
- "message": "Snowflake е систем кој ја поразува интернет цензурата. Луѓето кои се цензурирани може да го користат Snowflake за да пристапуваат на Интернет. Нивното поврзување оди преку Snowflake проксија, кои се водени од волонтери. За подетални информации за тоа како работи Snowflake видете ја нашата <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">wiki документација</a>."
- },
- "docWiki": {
- "message": "wiki документација"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Прелистувач"
@@ -66,10 +63,10 @@
"message": "Ако се судрите со проблеми со Snowflake како клиент или како пркси, ве молиме размислете да пријавите грешка. Има два начина да поднесете извештај за грешка:"
},
"sharedAccount": {
- "message": "Уредете го <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">јавниот пад за пријавување грешки</a> на тимот за анти-цензура."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Побарајте сметка</a> на Tor Project GitLab, потоа <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">отворете нов проблем</a> во Snowflake проектот."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Ве молиме обидете се да бидете што е можно појасни во вашиот извештај и ако е можно вклучете ги логовите кои ќе ни помогнат да ја произведеме истата грешка."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Кој изгледа вака:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/ml/messages.json b/ml/messages.json
index 6cfaa1c7bd..cd6be7f105 100644
--- a/ml/messages.json
+++ b/ml/messages.json
@@ -36,10 +36,7 @@
"message": "കുകീസ് അനുവദിച്ചിട്ടില്ല "
},
"websiteIntro": {
- "message": "ഇന്റർനെറ്റ് സെൻസർഷിപ്പിനെ പരാജയപ്പെടുത്താനുള്ള ഒരു സംവിധാനമാണ് സ്നോഫ്ലേക്ക്. സെൻസർ ചെയ്ത ആളുകൾക്ക് ഇന്റർനെറ്റ് ആക്സസ് ചെയ്യുന്നതിന് സ്നോഫ്ലേക്ക് ഉപയോഗിക്കാം. സന്നദ്ധപ്രവർത്തകർ നടത്തുന്ന സ്നോഫ്ലേക്ക് പ്രോക്സികളിലൂടെയാണ് അവരുടെ കണക്ഷൻ. സ്നോഫ്ലേക്ക് എങ്ങനെ പ്രവർത്തിക്കുന്നു എന്നതിനെക്കുറിച്ചുള്ള കൂടുതൽ വിവരങ്ങൾക്ക് ഞങ്ങളുടെ <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\"
data-msgid=\"__MSG_docWiki__\">ഡോക്യുമെന്റേഷൻ വിക്കി കാണുക</a>."
- },
- "docWiki": {
- "message": "ഡോക്യുമെന്റേഷൻ വിക്കി"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "ബ്രൌസർ "
@@ -66,10 +63,10 @@
"message": "If you encounter problems with Snowflake as a client or a proxy, please consider filing a bug report. There are two ways to file a bug report:"
},
"sharedAccount": {
- "message": "Edit the <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">public bug-reporting pad</a> of the anti-censorship team."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Please try to be as descriptive as possible with your ticket and if possible include log messages that will help us reproduce the bug."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "അത് ഇങ്ങനെ കാണാൻ സാധിക്കും :"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/mr/messages.json b/mr/messages.json
index c80d29d047..fc00a684cf 100644
--- a/mr/messages.json
+++ b/mr/messages.json
@@ -36,10 +36,7 @@
"message": "कुकीज सक्षम नाहीत."
},
"websiteIntro": {
- "message": "इंटरनेट सेन्सॉरशिपचा पराभव करण्यासाठी स्नोफ्लेक ही एक प्रणाली आहे. सेन्सर केलेले लोक इंटरनेटमध्ये प्रवेश करण्यासाठी स्नोफ्लेक वापरू शकतात. त्यांचे कनेक्शन स्नोफ्लेक प्रॉक्सीद्वारे जाते जे स्वयंसेवक चालवतात. स्नोफ्लेक कसे कार्य करते याविषयी अधिक माहितीसाठी आमचे<a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\"> दस्तऐवजीकरण विकी</a> पहा."
- },
- "docWiki": {
- "message": "दस्तऐवजीकरण विकी"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "ब्राउझर"
@@ -66,10 +63,10 @@
"message": "आपल्याकडे क्लायंट किंवा प्रॉक्सी म्हणून स्नोफ्लेकमध्ये समस्या येत असल्यास, कृपया दोष नोंदविण्याचा करण्याचा विचार करा. दोष नोंदविण्याचे दोन मार्ग आहेत:"
},
"sharedAccount": {
- "message": "सेन्सरशीप कार्यसंघाचा <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">सार्वजनिक दोष-अहवाल</a> पॅड संपादित करा."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "टॉर प्रोजेक्ट गिटलाबमध्ये <a href=\"https://gitlab.torproject.org/\">खात्याची विनंती करा</a>, त्यानंतर स्नोफ्लेक प्रोजेक्टमध्ये <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">एक नवीन समस्या उघडा</a>."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "कृपया आपल्या तिकिटसह शक्य तितके वर्णनात्मक होण्याचा प्रयत्न करा आणि शक्य असल्यास लॉग संदेश समाविष्ट करा जे आम्हाला दोष पुनरुत्पादित करण्यात मदत करेल."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "हे असे दिसतेः"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/nb_NO/messages.json b/nb_NO/messages.json
index 9854dbe71c..786287ccab 100644
--- a/nb_NO/messages.json
+++ b/nb_NO/messages.json
@@ -36,10 +36,7 @@
"message": "Cookies are not enabled."
},
"websiteIntro": {
- "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">documentation wiki</a>."
- },
- "docWiki": {
- "message": "dokumentasjon wiki"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Nettleser"
@@ -66,10 +63,10 @@
"message": "If you encounter problems with Snowflake as a client or a proxy, please consider filing a bug report. There are two ways to file a bug report:"
},
"sharedAccount": {
- "message": "Edit the <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">public bug-reporting pad</a> of the anti-censorship team."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Please try to be as descriptive as possible with your ticket and if possible include log messages that will help us reproduce the bug."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Som ser slik ut:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/nl/messages.json b/nl/messages.json
index c0d8b24190..bd9552ef75 100644
--- a/nl/messages.json
+++ b/nl/messages.json
@@ -36,10 +36,7 @@
"message": "Cookies zijn niet ingeschakeld."
},
"websiteIntro": {
- "message": "Snowflake is een systeem om internetcensuur te verslaan. Gecensureerde personen kunnen Snowflake gebruiken om toegang te krijgen tot het internet. Hun verbinding loopt via Snowflake-proxy’s, die door vrijwilligers worden beheerd. Bekijk onze <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">documentatie-wiki</a> voor meer informatie over de werking van Snowflake."
- },
- "docWiki": {
- "message": "documentatie-wiki"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Browser"
@@ -66,10 +63,10 @@
"message": "Als u problemen tegenkomt met Snowflake als client of proxy, overweeg dan een bug te melden. Er zijn 2 manieren om een bug te melden:"
},
"sharedAccount": {
- "message": "Bewerk de <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">publieke bug-rapportage pad</a>van het anti-censuur team."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Vraag een account aan</a>op de GitLab van het Tor Project, <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">rapporteer daarna een bug</a> in het Snowflake project."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Probeer zo uitvoerig mogelijk te zijn in uw ticket en sluit zo mogelijk logboekberichten bij die ons kunnen helpen de bug te reproduceren. "
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Die ziet er zo uit:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/pl/messages.json b/pl/messages.json
index 6120f45783..bdbbad08a7 100644
--- a/pl/messages.json
+++ b/pl/messages.json
@@ -36,10 +36,7 @@
"message": "Ciasteczka nie są włączone"
},
"websiteIntro": {
- "message": "Snowflake jest systemem, którego zadaniem jest zwalczanie internetowej cenzury. Ludzie, których ona dotyka mogą użyć Snowflake, aby uzyskać dostęp do internetu. Ich połączenie odbywa się za pośrednictwem proxy Snowflake, które są zarządzane przez wolontariuszy. Więcej informacji na temat Snowflake znajdziesz na stronie <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">dokumentacji wiki</a>."
- },
- "docWiki": {
- "message": "dokumentacja wiki"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Przeglądarka"
@@ -66,10 +63,10 @@
"message": "Jeśli napotkasz problemy ze Snowflake jako klientem lub serwerem proxy, rozważ zgłoszenie błędu. Są dwa dostępne sposoby zgłoszenia błędu:"
},
"sharedAccount": {
- "message": "Edytuj <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">publiczną notatkę zgłoszeniową</a> zespołu przeciwdziałania cenzurze."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Poproś o konto</a> w Tor Project GitLab, a następnie<a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">otwórz nowe zgłoszenie</a> w projekcie Snowflake."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Postaraj się opisać błąd dokładnie i szczegółowo. Jeżeli to możliwe dołącz logi i inne komunikaty, które mogą nam pomóc zreprodukować błąd."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Tak to wygląda:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/pt_BR/messages.json b/pt_BR/messages.json
index 1bb70c65ca..4c6d3ae4f9 100644
--- a/pt_BR/messages.json
+++ b/pt_BR/messages.json
@@ -36,10 +36,7 @@
"message": "Cookies não estão habilitados."
},
"websiteIntro": {
- "message": "Snowflake é um sistema para acabar com a censura na Internet. As pessoas que sofrem censura podem usar o Snowflake para acessar a Internet. A conexão delas passará por proxies do Snowflake, que são executados por voluntários. Para informações mais detalhadas sobre como o Snowflake funciona, consulte nossa <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">wiki de documentação</a>."
- },
- "docWiki": {
- "message": "wiki de documentação"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Navegador"
@@ -66,10 +63,10 @@
"message": "Se você encontrar problemas com o Snowflake como cliente ou proxy, considere preencher um relatório de bug. Existem duas maneiras de enviar um relatório de bug:"
},
"sharedAccount": {
- "message": "Edite o <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">painel público de relatórios de bugs</a> da equipe anti-censura."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Solicite uma conta</a> no Tor Project GitLab, então </a>abra um novo problema</a> no projeto Snowflake."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Por favor, tente ser o mais descritivo possível com o seu tíquete e, se possível, inclua mensagens de log que nos ajudarão a reproduzir o bug."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Que aparece assim:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/pt_PT/messages.json b/pt_PT/messages.json
index 62369cd6a9..47a4011645 100644
--- a/pt_PT/messages.json
+++ b/pt_PT/messages.json
@@ -36,10 +36,7 @@
"message": "Os cookies não estão ativados."
},
"websiteIntro": {
- "message": "Snowflake é um sistema para derrotar a censura na Internet. As pessoas que são censuradas podem utilizar Snowflake para acederem à Internet. As suas ligações são efetuadas através de proxies do Snowflake, que são executados por voluntários. Para informação mais detalhada sobre o funcionamento do Snowflake consulte a <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">documentação da Wiki</a>"
- },
- "docWiki": {
- "message": "Documentação da Wiki"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Navegador"
@@ -66,10 +63,10 @@
"message": "Se encontrar problemas com o Sowflake como um cliente ou um proxy, por favor, considere submeter um relatório de erros. Existem duas maneiras de enviar um relatório de erros"
},
"sharedAccount": {
- "message": "Edite o texto público de relatórios de erros da equipa de anti-censura."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "Solicite uma conta no Projeco Tor no repositório GitLab e, em seguida, abra um novo problema no projeto Snowflake."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Tente ser o mais descritivo possível no seu pedido e, se possível, inclua mensagens de registo que nos ajudarão a reproduzir o erro."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Que se parece com isto:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/ro/messages.json b/ro/messages.json
index 55b4fbefeb..9b96e248dd 100644
--- a/ro/messages.json
+++ b/ro/messages.json
@@ -36,10 +36,7 @@
"message": "Cookie-urile nu sunt activate."
},
"websiteIntro": {
- "message": "Snowflake este un sistem pentru a învinge cenzura pe internet. Oamenii care sunt pentru a învinge cenzura pe internet. Oameni care sunt cenzurați pot folosi Snowflake, pentru a accesa Internetul. Conexiunea lor trece prin proxy Snowflake, care cunt rulate de voluntari. Pentru informații detaliate despre modul de lucru al Snowflake accesați <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">documentația wiki</a>."
- },
- "docWiki": {
- "message": "documentare wiki"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Bowser"
@@ -66,10 +63,10 @@
"message": "Dacă apar probleme cu Snowflake ca și client sau proxy, vă rugăm să ne trimiteți eroarea. Sunt doua modalitati pentru a trimite eroarea: "
},
"sharedAccount": {
- "message": "Edit the <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">public bug-reporting pad</a> of the anti-censorship team."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Vă rugăm să fiți cât mai detaliat cu privire la eroare și să scrieți, dacă este posibil, si un mesaj pentru a ne ajuta să indentificăm eroarea."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Care arată astfel:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/ru/messages.json b/ru/messages.json
index 5d452d6115..c8c6ff3702 100644
--- a/ru/messages.json
+++ b/ru/messages.json
@@ -36,10 +36,7 @@
"message": "Файлы-куки не включены."
},
"websiteIntro": {
- "message": "Snowflake – средство борьбы с интернет-цензурой. Если человеку мешает цензура, он может использовать Snowflake для доступа к интернету. Тогда соединение пройдет через прокси-серверы Snowflake. Этими серверами управляют волонтеры. Подробнее о том, как работает Snowflake, рассказано в нашей <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">вики-документации</a>."
- },
- "docWiki": {
- "message": "вики-документация"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Браузер"
@@ -66,10 +63,10 @@
"message": "Если у вас возникли проблемы со Snowflake в качестве клиента или прокси-сервера, пожалуйста, рассмотрите возможность отправки отчета об ошибке. Есть два способа отправить отчет об ошибке:"
},
"sharedAccount": {
- "message": "Редактировать <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\"> общедоступную панель сообщений об ошибках </a> от группы по борьбе с цензурой."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Запросите учетную запись</a> в Tor Project GitLab, затем<a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…"> откройте новую задачу</a> в проекте Snowflake."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Пожалуйста, постарайтесь быть как можно более описательным в своем заявлении и, если возможно, включите сообщения журнала, которые помогут нам воспроизвести ошибку."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Выглядеть будет примерно так:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/sk/messages.json b/sk/messages.json
index 062abcdd2d..9daadd383b 100644
--- a/sk/messages.json
+++ b/sk/messages.json
@@ -36,10 +36,7 @@
"message": "Súbory Cookies niesú povolené."
},
"websiteIntro": {
- "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">documentation wiki</a>."
- },
- "docWiki": {
- "message": "dokumentácia wiki"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Prehliadač"
@@ -66,10 +63,10 @@
"message": "If you encounter problems with Snowflake as a client or a proxy, please consider filing a bug report. There are two ways to file a bug report:"
},
"sharedAccount": {
- "message": "Edit the <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">public bug-reporting pad</a> of the anti-censorship team."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Please try to be as descriptive as possible with your ticket and if possible include log messages that will help us reproduce the bug."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Ktorý vyzerá takto:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/sq/messages.json b/sq/messages.json
index 5165994a98..c5a697a505 100644
--- a/sq/messages.json
+++ b/sq/messages.json
@@ -36,10 +36,7 @@
"message": "Cookie-t s’janë të aktivizuara."
},
"websiteIntro": {
- "message": "Snowflake-u është një sistem për të mposhtur censurën internetore. Personat që censurohen mund të përdorin Snowflake-un për të hyrë në internet. Lidhja e tyre kalon përmes ndërmjetësish Snowflake, të cilët mbahen në këmbë nga vullnetarë. Për informacion më të hollësishëm rreth Snowflake-ut, shihni <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">wiki-n tonë të dokumentimit</a>."
- },
- "docWiki": {
- "message": "wiki dokumentimi"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Shfletues"
@@ -66,10 +63,10 @@
"message": "Nëse hasni probleme me Snowflake-un si klient apo so ndërmjetës, ju lutemi, shihni mundësinë e njoftimit të një të mete. Ka dy rrugë për të njoftuar të meta:"
},
"sharedAccount": {
- "message": "Përpunoni <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">bllokun publik të njoftimit të të metave</a> të ekipit kundër censurës."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Kërkoni një llogari</a> te Tor Project GitLab, mandej <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">hapni një çështje të re</a> te projekti Snowflake."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Ju lutemi, përpiquni të jeni sa më i hollësishëm sa mundet me çështjen tuaj, dhe mundësisht përfshini mesazhe regjistri, të cilat do të na ndihmojnë të riprodhojmë të metën."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Që duket diçka e tillë:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/sv_SE/messages.json b/sv_SE/messages.json
index d176990fa8..b9b242a757 100644
--- a/sv_SE/messages.json
+++ b/sv_SE/messages.json
@@ -36,10 +36,7 @@
"message": "Kakor är inte aktiverade."
},
"websiteIntro": {
- "message": "Snowflake är ett system för att besegra internetcensur. Personer som censureras kan använda Snowflake för att komma åt internet. Deras anslutning går igenom Snowflake-proxyservrar, som drivs av volontärer. För mer detaljerad information om hur Snowflake fungerar se vår <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">dokumentations wiki</a>."
- },
- "docWiki": {
- "message": "dokumentations wiki"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Webbläsare"
@@ -66,10 +63,10 @@
"message": "Om du stöter på problem med Snowflake som klient eller proxy kan du överväga att skicka en felrapport. Det finns två sätt att skicka en felrapport:"
},
"sharedAccount": {
- "message": "Redigera den <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">offentliga felrapporteringsplattan</a> för anticensursteamet."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Begär ett konto</a> på Tor Project GitLab och <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">öppna sedan ett nytt ärende</a> i Snowflake-projektet."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Försök att vara så beskrivande som möjligt med ditt ärende och om möjligt inkludera loggmeddelanden som hjälper oss att reproducera felet."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Som ser ut så här:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/sw/messages.json b/sw/messages.json
index 15b7770815..7e2b7e08bb 100644
--- a/sw/messages.json
+++ b/sw/messages.json
@@ -36,10 +36,7 @@
"message": "Kuki hazijawezeshwa"
},
"websiteIntro": {
- "message": "Theluji ni mfumo unaoshindwa kuthibiti mtandao. Watu ambao hukagua wanaweza kutumia theluji kupata mtandao. Muungniko wao huenda kupitia theluji ya wakala inayoendeshwa na wanaojitolea. Kwa taarifa zaidi kuhusu utendaji kazi wa theluji angalia <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">makala yetu ya wiki </a>"
- },
- "docWiki": {
- "message": "wiki ya kuandika"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Kivinjari"
@@ -66,10 +63,10 @@
"message": "Kama umekutana na matatizo katika theruji ukiwa kama mteja au wakala, tafadhali fikiria kufungua ripoti ya hitilafu. Kuna nyia mbili kwenye faili ya ripoti ya hitilafu:"
},
"sharedAccount": {
- "message": "Hariri <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">ripoti-hitilafu ya padi ya umma</a> kwa kupambana na timu ya udhibiti."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Maombi ya akaunti</a> katika Mradi wa GitLab ya Tor, tena <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">fungua suala jipya</a> kwenye mradi wa Theruji."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Tafadhali jaribu kua kama kuelezea kuwezekana katika tiketi yako na kama inawezekana ni pamoja na ujumbe wa logi ambayo itatusaidia kupata hitilafu."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Ambayo inaonekana hivi"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/ta/messages.json b/ta/messages.json
index f617a0b5ed..8abd82cb96 100644
--- a/ta/messages.json
+++ b/ta/messages.json
@@ -36,10 +36,7 @@
"message": "நினைவிகள் செயல்படுத்தப்படவில்லை."
},
"websiteIntro": {
- "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">documentation wiki</a>."
- },
- "docWiki": {
- "message": "documentation wiki"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "உலாவி"
@@ -66,10 +63,10 @@
"message": "If you encounter problems with Snowflake as a client or a proxy, please consider filing a bug report. There are two ways to file a bug report:"
},
"sharedAccount": {
- "message": "Edit the <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">public bug-reporting pad</a> of the anti-censorship team."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Please try to be as descriptive as possible with your ticket and if possible include log messages that will help us reproduce the bug."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "அது இவ்வாறு தோற்றமளிக்கும்:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/th/messages.json b/th/messages.json
index 4122110fb5..4f9728caa2 100644
--- a/th/messages.json
+++ b/th/messages.json
@@ -36,10 +36,7 @@
"message": "คุกกี้ไม่ได้ถูกเปิดใช้งาน"
},
"websiteIntro": {
- "message": "Snowflake เป็นระบบเพื่อเอาชนะการปิดกั้นอินเทอร์เน็ต ผู้คนที่ถูกปิดกั้นสามารถใช้ Snowflake เพื่อเข้าถึงอินเทอร์เน็ต การเชื่อมต่อของพวกเขาจะวิ่งผ่านพร็อกซี Snowflake ซึ่งเปิดทำงานโดยอาสาสมัคร สำหรับข้อมูลรายละเอียดเพิ่มเติมว่า Snowflake ทำงานอย่างไร ดูที่<a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">วิกิเอกสาร</a>ของเรา"
- },
- "docWiki": {
- "message": "วิกิเอกสาร"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "เบราว์เซอร์"
@@ -66,10 +63,10 @@
"message": "If you encounter problems with Snowflake as a client or a proxy, please consider filing a bug report. There are two ways to file a bug report:"
},
"sharedAccount": {
- "message": "Edit the <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">public bug-reporting pad</a> of the anti-censorship team."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Please try to be as descriptive as possible with your ticket and if possible include log messages that will help us reproduce the bug."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "ซึ่งจะมีหน้าตาแบบนี้:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/tr/messages.json b/tr/messages.json
index 5e781d8b49..a770ddc89b 100644
--- a/tr/messages.json
+++ b/tr/messages.json
@@ -36,10 +36,7 @@
"message": "Çerezler etkin değil."
},
"websiteIntro": {
- "message": "Snowflake İnternet sansürünü aşmaya yönelik bir sistemdir. Sansüre uğrayan kişiler, Snowflake kullanarak İnternete erişebilir. Bağlantı, gönüllüler tarafından işletilen Snowflake vekil sunucuları üzerinden kurulur. Snowflake hakkında ayrıntılı bilgi almak için <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">Viki</a> sayfamıza bakabilirsiniz."
- },
- "docWiki": {
- "message": "Viki sayfası"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Tarayıcı"
@@ -66,10 +63,10 @@
"message": "Bir istemci ya da vekil sunucu olarak Snowflake kullanırken sorun yaşarsanız, hata bildiriminde bulunmanız iyi olur. Hata bildirimini iki şekilde gönderebilirsiniz:"
},
"sharedAccount": {
- "message": "Anti sansür ekibinin <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">herkese açık hata bildirimi panosunu</a> kullanabilirsiniz."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "Tor Project GitLab üzerinde <a href=\"https://gitlab.torproject.org/\">bir hesap açılmasını istedikten</a> sonra Snowflake projesinde <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">yeni bir sorun bildirebilirsiniz</a>."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Lütfen bildirim kaydında olabildiğince açıklayıcı olun ve yapabiliyorsanız hatayı yeniden oluşturmamıza yardımcı olabilecek günlük kayıtlarını ekleyin."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Şu şekilde görüntülenir:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/uk/messages.json b/uk/messages.json
index c2716a68d4..250bc8353e 100644
--- a/uk/messages.json
+++ b/uk/messages.json
@@ -36,10 +36,7 @@
"message": "Куки не увімкнено."
},
"websiteIntro": {
- "message": "Snowflake - це система проти інтернет-цензури. Цензуровані люди можуть використовувати Snowflake для доступу до інтернету. Їхнє з'єднання проходить через проксі-сервери Snowflake, які були надані волонтерами. Детальніше про те, як працює Snowflake дивіться <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">вікі документацію</a>."
- },
- "docWiki": {
- "message": "вікі документація"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "Вебоглядач"
@@ -66,10 +63,10 @@
"message": "Якщо у вас виникли проблеми з використанням Snowflake як клієнта або проксі, будь ласка, прозвітуйте про помилку. Є два способи повідомлення про помилку:"
},
"sharedAccount": {
- "message": "Відредагувати <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">публічний записник звітів про помилки</a>, який належить антицензурній команді."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Створити обліковий запис</a> на GitLab проєкту Tor, потім <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">відкрити нову гілку</a> про проблему в розділі issue проєкту Snowflake."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Прохання описувати якомога точніше і по можливості вкажіть повідомлення лоґів, це допоможе нам точніше відтворити помилку."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "Він матиме такий вигляд:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/zh_CN/messages.json b/zh_CN/messages.json
index 87f48eba40..2d68f68531 100644
--- a/zh_CN/messages.json
+++ b/zh_CN/messages.json
@@ -36,10 +36,7 @@
"message": "Cookie 未启用。"
},
"websiteIntro": {
- "message": "Snowflake 是一个用来对抗互联网审查的系统。被审查的人们可以使用 Snowflake 来访问互联网。他们的连接将通过由志愿者们所运行的 Snowflake 代理来访问网络。了解更多关于 Snowflake 如何运行的资讯,请参阅<a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">文档 wiki</a>。"
- },
- "docWiki": {
- "message": "文档 wiki"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "浏览器"
@@ -66,10 +63,10 @@
"message": "如果您在用 Snowflake 作为客户端或代理时遇到问题或任何漏洞,请考虑提交错误报告。 提交错误报告文件的方式有两种:"
},
"sharedAccount": {
- "message": "编辑反审查团队的<a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">漏洞汇报告示板</a>。"
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">在 Tor 项目的 Gitlab 申请一个账号</a>,然后在 Snowflake 项目中<a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">打开一个新的问题。</a>"
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "请尽量客观地描述您的情况,如果可能,请同时报告您的日志文件,这将帮助我们重现漏洞。"
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "看起来是这样的:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
diff --git a/zh_TW/messages.json b/zh_TW/messages.json
index cf66eedf07..cce7292cce 100644
--- a/zh_TW/messages.json
+++ b/zh_TW/messages.json
@@ -36,10 +36,7 @@
"message": "Cookie 功能未啟用。"
},
"websiteIntro": {
- "message": "Snowflake 是用來反制網路審查過濾機制的系統。若使用者的網路有受到審查過濾的話,可以藉由此方式來上網,它會讓使用者的網路連線轉跳過好幾個由志願者架設營運的 Snowflake 代理伺服器。若想了解 Snowflake 的運作原理,請參考我們的<a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\" data-msgid=\"__MSG_docWiki__\">文件 Wiki</a>。"
- },
- "docWiki": {
- "message": "文件 Wiki"
+ "message": "Snowflake is a system to defeat internet censorship. People who are censored can use Snowflake to access the internet. Their connection goes through Snowflake proxies, which are run by volunteers. For more detailed information about how Snowflake works see our <a href=\"https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/\">documentation wiki</a>."
},
"browser": {
"message": "瀏覧器"
@@ -66,10 +63,10 @@
"message": "If you encounter problems with Snowflake as a client or a proxy, please consider filing a bug report. There are two ways to file a bug report:"
},
"sharedAccount": {
- "message": "Edit the <a href=\"https://pad.riseup.net/p/tor-anti-censorship-bugs-keep\">public bug-reporting pad</a> of the anti-censorship team."
+ "message": "File an <a href=\"https://anonticket.onionize.space/\">anonymous ticket</a> by generating an identifier and logging in with it. Then, find the Snowflake project in the <strong>List of all projects</strong> and create a new issue."
},
"bugTracker": {
- "message": "<a href=\"https://gitlab.torproject.org/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
+ "message": "<a href=\"https://gitlab.onionize.space/\">Request an account</a> at the Tor Project GitLab, then <a href=\"https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snow…">open a new issue</a> in the Snowflake project."
},
"descriptive": {
"message": "Please try to be as descriptive as possible with your ticket and if possible include log messages that will help us reproduce the bug."
@@ -82,5 +79,11 @@
},
"looksLike": {
"message": "看起來像這樣:"
+ },
+ "faq": {
+ "message": "FAQ"
+ },
+ "support": {
+ "message": "See the <a href=\"https://support.torproject.org/censorship/\">Censorship</a> topic in Tor's <a href=\"https://support.torproject.org/\">Support Portal</a>."
}
}
[View Less]
1
0

23 Feb '21
commit cd9f82fbbe6ec4205fa3c8695cd277a03da39833
Author: juga0 <juga(a)riseup.net>
Date: Mon Feb 8 15:04:58 2021 +0000
fix: relaylist: Remove duplicated can exit methods
After refactoring and making clear when we were using exit(s) that can
exit to all public IPs (and a port) or only some, refactor them
removing the duplicated code and adding the `strict` argument.
---
sbws/core/scanner.py | 8 ++--
sbws/lib/relaylist.py | …
[View More]64 +++++++++++--------------------
tests/integration/lib/test_destination.py | 6 +--
3 files changed, 29 insertions(+), 49 deletions(-)
diff --git a/sbws/core/scanner.py b/sbws/core/scanner.py
index 1499264..903f09f 100644
--- a/sbws/core/scanner.py
+++ b/sbws/core/scanner.py
@@ -215,7 +215,7 @@ def _pick_ideal_second_hop(relay, dest, rl, cont, is_exit):
# In the case that a concrete exit can't exit to the Web server, it is not
# a problem since the relay will be measured in the next loop with other
# random exit.
- candidates = rl.exits_not_bad_allowing_port_some_ips(dest.port) \
+ candidates = rl.exits_not_bad_allowing_port(dest.port) \
if is_exit else rl.non_exits
if not len(candidates):
return None
@@ -340,7 +340,7 @@ def measure_relay(args, conf, destinations, cb, rl, relay):
# exit, then pick a non-exit. Otherwise pick an exit.
# Instead of ensuring that the relay can exit to all IPs, try first with
# the relay as an exit, if it can exit to some IPs.
- if relay.is_exit_not_bad_allowing_port_some_ips(dest.port):
+ if relay.is_exit_not_bad_allowing_port(dest.port):
circ_fps, nicknames = create_path_relay_as_exit(relay, dest, rl, cb)
else:
circ_fps, nicknames = create_path_relay_as_entry(relay, dest, rl, cb)
@@ -365,7 +365,7 @@ def measure_relay(args, conf, destinations, cb, rl, relay):
# to the Web server, try again using it as entry, to avoid that it would
# always fail when there's only one Web server.
if not is_usable and \
- relay.is_exit_not_bad_allowing_port_all_ips(dest.port):
+ relay.is_exit_not_bad_allowing_port(dest.port):
log.info(
"Exit %s (%s) that can't exit all ips failed to connect to "
" %s via circuit %s (%s). Trying again with it as entry.",
@@ -377,7 +377,7 @@ def measure_relay(args, conf, destinations, cb, rl, relay):
"Exit %s (%s) that can't exit all ips, failed to create "
" circuit as entry: %s (%s).", relay.fingerprint,
relay.nickname, circ_fps, nicknames)
- return error_no_circuit(relay, circ_fps, nicknames, reason, dest,
+ return error_no_circuit(circ_fps, nicknames, reason, relay, dest,
our_nick)
log.debug('Built circuit with path %s (%s) to measure %s (%s)',
diff --git a/sbws/lib/relaylist.py b/sbws/lib/relaylist.py
index 3ff1f73..9c6d12a 100644
--- a/sbws/lib/relaylist.py
+++ b/sbws/lib/relaylist.py
@@ -178,21 +178,32 @@ class Relay:
"""Number of times the relay was in a conensus."""
return len(self.relay_in_recent_consensus)
- def can_exit_to_port_all_ips(self, port):
+ def can_exit_to_port(self, port, strict=False):
"""
Returns True if the relay has an exit policy and the policy accepts
- exiting to the given portself or False otherwise.
+ exiting to the given port or False otherwise.
+
+ If ``strict`` is true, it only returns the exits that can exit to all
+ IPs and that port.
The exits that are IPv6 only or IPv4 but rejecting some public networks
will return false.
On July 2020, there were 67 out of 1095 exits like this.
+
+ If ``strict`` is false, it returns any exit that can exit to some
+ public IPs and that port.
+
+ Note that the EXIT flag exists when the relay can exit to 443 **and**
+ 80. Currently all Web servers are using 443, so it would not be needed
+ to check the EXIT flag too, using this function.
+
"""
assert isinstance(port, int)
# if dind't get the descriptor, there isn't exit policy
# When the attribute is gotten in getattr(self._desc, "exit_policy"),
# is possible that stem's _input_rules is None and raises an exception
# (#29899):
- # File "/usr/lib/python3/dist-packages/sbws/lib/relaylist.py", line 117, in can_exit_to_port_all_ips # noqa
+ # File "/usr/lib/python3/dist-packages/sbws/lib/relaylist.py", line 117, in can_exit_to_port # noqa
# if not self.exit_policy:
# File "/usr/lib/python3/dist-packages/stem/exit_policy.py", line 512, in __len__ # noqa
# return len(self._get_rules())
@@ -202,50 +213,23 @@ class Relay:
# Therefore, catch the exception here.
try:
if self.exit_policy:
- # Using `strict` to ensure it can exit to ALL domains
- # and ips and that port. See #40006.
# Using `strip_private` to ignore reject rules to private
# networks.
- # We could increase the chances that the exit can exit
- # checking IPv6 with:
- # ``or self.exit_policy_v6.can_exit_to(port=443, strict=True)``
- # But if it can still not exit to our Web server, then we
- # should retry to measure it as entry.
- return (
- self.exit_policy.strip_private()
- .can_exit_to(port=port, strict=True)
- )
- except TypeError:
- return False
- return False
-
- def can_exit_to_port_some_ips(self, port):
- """
- Returns True if the relay has an exit policy and the policy accepts
- exiting to the given port and some public IPs or False otherwise.
- """
- assert isinstance(port, int)
- try:
- if self.exit_policy:
- # Not using argument `strict`, to know whether it can exit
- # some public IPs, though not all.
+ # When ``strict`` is true, We could increase the chances that
+ # the exit can exit via IPv6 too (``exit_policy_v6``). However,
+ # in theory that is only known using microdescriptors.
return (
self.exit_policy.strip_private()
- .can_exit_to(port=port)
+ .can_exit_to(port=port, strict=strict)
)
except TypeError:
return False
return False
- def is_exit_not_bad_allowing_port_all_ips(self, port):
+ def is_exit_not_bad_allowing_port(self, port, strict=False):
return (Flag.BADEXIT not in self.flags and
Flag.EXIT in self.flags and
- self.can_exit_to_port_all_ips(port))
-
- def is_exit_not_bad_allowing_port_some_ips(self, port):
- return (Flag.BADEXIT not in self.flags and
- Flag.EXIT in self.flags and
- self.can_exit_to_port_some_ips(port))
+ self.can_exit_to_port(port, strict))
def increment_relay_recent_measurement_attempt(self):
"""
@@ -476,13 +460,9 @@ class RelayList:
"""Number of times a new consensus was obtained."""
return len(self._recent_consensus)
- def exits_not_bad_allowing_port_all_ips(self, port):
- return [r for r in self.exits
- if r.is_exit_not_bad_allowing_port_all_ips(port)]
-
- def exits_not_bad_allowing_port_some_ips(self, port):
+ def exits_not_bad_allowing_port(self, port, strict=False):
return [r for r in self.exits
- if r.is_exit_not_bad_allowing_port_some_ips(port)]
+ if r.is_exit_not_bad_allowing_port(port, strict)]
def increment_recent_measurement_attempt(self):
"""
diff --git a/tests/integration/lib/test_destination.py b/tests/integration/lib/test_destination.py
index d305b0e..98ed89f 100644
--- a/tests/integration/lib/test_destination.py
+++ b/tests/integration/lib/test_destination.py
@@ -26,7 +26,7 @@ def test_connect_to_destination_over_circuit_success(persistent_launch_tor,
relay = [r for r in rl.relays
if r.nickname == 'relay1mbyteMAB'][0]
# Choose an exit, for this test it does not matter the bandwidth
- helper = rl.exits_not_bad_allowing_port_some_ips(destination.port)[0]
+ helper = rl.exits_not_bad_allowing_port(destination.port)[0]
circuit_path = [relay.fingerprint, helper.fingerprint]
# build a circuit
circuit_id, _ = cb.build_circuit(circuit_path)
@@ -46,7 +46,7 @@ def test_connect_to_destination_over_circuit_fail(persistent_launch_tor,
relay = [r for r in rl.relays
if r.nickname == 'relay1mbyteMAB'][0]
# Choose an exit, for this test it does not matter the bandwidth
- helper = rl.exits_not_bad_allowing_port_some_ips(bad_destination.port)[0]
+ helper = rl.exits_not_bad_allowing_port(bad_destination.port)[0]
circuit_path = [relay.fingerprint, helper.fingerprint]
# Build a circuit.
circuit_id, _ = cb.build_circuit(circuit_path)
@@ -75,7 +75,7 @@ def test_functional_destinations(conf, cb, rl, persistent_launch_tor):
relay = [r for r in rl.relays
if r.nickname == 'relay1mbyteMAB'][0]
# Choose an exit, for this test it does not matter the bandwidth
- helper = rl.exits_not_bad_allowing_port_some_ips(bad_destination.port)[0]
+ helper = rl.exits_not_bad_allowing_port(bad_destination.port)[0]
circuit_path = [relay.fingerprint, helper.fingerprint]
# Build a circuit.
circuit_id, _ = cb.build_circuit(circuit_path)
[View Less]
1
0

23 Feb '21
commit 50377680448d66bc95a09fc5333da9465bd1b791
Author: juga0 <juga(a)riseup.net>
Date: Mon Feb 8 16:24:11 2021 +0000
fix: scanner: remove relay to measure as helper
---
sbws/core/scanner.py | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/sbws/core/scanner.py b/sbws/core/scanner.py
index c7ee1ee..40e3093 100644
--- a/sbws/core/scanner.py
+++ b/sbws/core/scanner.py
@@ -219,6 +219,12 @@ def _pick_ideal_second_hop(relay, dest, rl, cont, is_exit):
if is_exit else rl.…
[View More]non_exits
if not len(candidates):
return None
+ # In the case the helper is an exit, the entry could be an exit too
+ # (#40041), so ensure the helper is not the same as the entry, likely to
+ # happen in a test network.
+ if is_exit:
+ candidates = [c for c in candidates
+ if c.fingerprint != relay.fingerprint]
min_relay_bw = rl.exit_min_bw() if is_exit else rl.non_exit_min_bw()
log.debug('Picking a 2nd hop to measure %s from %d choices. is_exit=%s',
relay.nickname, len(candidates), is_exit)
[View Less]
1
0