tor-commits
Threads by month
- ----- 2025 -----
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
June 2019
- 21 participants
- 1482 discussions
commit 0a4e68e4e24849a8d95dfa9ca0eb773b2cda6ebf
Author: rl1987 <rl1987(a)sdf.lonestar.org>
Date: Sat May 11 19:03:46 2019 +0300
Add changes file
---
changes/bug30286 | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/changes/bug30286 b/changes/bug30286
new file mode 100644
index 000000000..f2fc67a48
--- /dev/null
+++ b/changes/bug30286
@@ -0,0 +1,4 @@
+ o Minor bugfixes (developer tooling):
+ - Fix pre-push hook to refrain from rejecting fixup and squash commits
+ when pushing to non-upstream git remote. Fixes bug 30286; bugfix on
+ 0.4.0.1-alpha.
1
0
commit 5cbd71b977f1c3ae0b9dc0f9e63094941ece015c
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Wed May 29 11:00:09 2019 -0400
Make get_proxy_type() connection-specific
Previously, we were looking at our global settings to see what kind
of proxy we had. But doing this would sometimes give us the wrong
results when we had ClientTransportPlugin configured but we weren't
using it for a particular connection. In several places in the
code, we had added checks to see if we were _really_ using a PT or
whether we were using a socks proxy, but we had forgotten to do so
in at least once case. Instead, since every time we call this
function we are asking about a single connection, it is probably
best just to make this function connection-specific.
Fixes bug 29670; bugfix on 0.2.6.2-alpha.
---
changes/bug29670 | 4 ++++
src/core/mainloop/connection.c | 33 +++++++++++++++++++++------------
2 files changed, 25 insertions(+), 12 deletions(-)
diff --git a/changes/bug29670 b/changes/bug29670
new file mode 100644
index 000000000..00b0c3332
--- /dev/null
+++ b/changes/bug29670
@@ -0,0 +1,4 @@
+ o Minor bugfixes (configuration, proxies):
+ - Fix a bug that prevented us from supporting SOCKS5 proxies that want
+ authentication along with configued (but unused!)
+ ClientTransportPlugins. Fixes bug 29670; bugfix on 0.2.6.1-alpha.
diff --git a/src/core/mainloop/connection.c b/src/core/mainloop/connection.c
index 7b8dc7f36..29ef26ca5 100644
--- a/src/core/mainloop/connection.c
+++ b/src/core/mainloop/connection.c
@@ -182,7 +182,7 @@ static const char *connection_proxy_state_to_string(int state);
static int connection_read_https_proxy_response(connection_t *conn);
static void connection_send_socks5_connect(connection_t *conn);
static const char *proxy_type_to_string(int proxy_type);
-static int get_proxy_type(void);
+static int conn_get_proxy_type(const connection_t *conn);
const tor_addr_t *conn_get_outbound_address(sa_family_t family,
const or_options_t *options, unsigned int conn_type);
static void reenable_blocked_connection_init(const or_options_t *options);
@@ -2260,18 +2260,27 @@ connection_proxy_state_to_string(int state)
return states[state];
}
-/** Returns the global proxy type used by tor. Use this function for
- * logging or high-level purposes, don't use it to fill the
+/** Returns the proxy type used by tor for a single connection, for
+ * logging or high-level purposes. Don't use it to fill the
* <b>proxy_type</b> field of or_connection_t; use the actual proxy
* protocol instead.*/
static int
-get_proxy_type(void)
+conn_get_proxy_type(const connection_t *conn)
{
const or_options_t *options = get_options();
- if (options->ClientTransportPlugin)
- return PROXY_PLUGGABLE;
- else if (options->HTTPSProxy)
+ if (options->ClientTransportPlugin) {
+ /* If we have plugins configured *and* this addr/port is a known bridge
+ * with a transport, then we should be PROXY_PLUGGABLE. */
+ const transport_t *transport = NULL;
+ int r;
+ r = get_transport_by_bridge_addrport(&conn->addr, conn->port, &transport);
+ if (r == 0 && transport)
+ return PROXY_PLUGGABLE;
+ }
+
+ /* In all other cases, we're using a global proxy. */
+ if (options->HTTPSProxy)
return PROXY_CONNECT;
else if (options->Socks4Proxy)
return PROXY_SOCKS4;
@@ -2358,7 +2367,7 @@ connection_proxy_connect(connection_t *conn, int type)
arguments to transmit. If we do, compress all arguments to
a single string in 'socks_args_string': */
- if (get_proxy_type() == PROXY_PLUGGABLE) {
+ if (conn_get_proxy_type(conn) == PROXY_PLUGGABLE) {
socks_args_string =
pt_get_socks_args_for_proxy_addrport(&conn->addr, conn->port);
if (socks_args_string)
@@ -2418,7 +2427,7 @@ connection_proxy_connect(connection_t *conn, int type)
Socks5ProxyUsername or if we want to pass arguments to our
pluggable transport proxy: */
if ((options->Socks5ProxyUsername) ||
- (get_proxy_type() == PROXY_PLUGGABLE &&
+ (conn_get_proxy_type(conn) == PROXY_PLUGGABLE &&
(get_socks_args_by_bridge_addrport(&conn->addr, conn->port)))) {
/* number of auth methods */
buf[1] = 2;
@@ -2611,16 +2620,16 @@ connection_read_proxy_handshake(connection_t *conn)
const char *user, *pass;
char *socks_args_string = NULL;
- if (get_proxy_type() == PROXY_PLUGGABLE) {
+ if (conn_get_proxy_type(conn) == PROXY_PLUGGABLE) {
socks_args_string =
pt_get_socks_args_for_proxy_addrport(&conn->addr, conn->port);
if (!socks_args_string) {
- log_warn(LD_NET, "Could not create SOCKS args string.");
+ log_warn(LD_NET, "Could not create SOCKS args string for PT.");
ret = -1;
break;
}
- log_debug(LD_NET, "SOCKS5 arguments: %s", socks_args_string);
+ log_debug(LD_NET, "PT SOCKS5 arguments: %s", socks_args_string);
tor_assert(strlen(socks_args_string) > 0);
tor_assert(strlen(socks_args_string) <= MAX_SOCKS5_AUTH_SIZE_TOTAL);
1
0
commit dc5cdde60c5efb1a37d919134e28b6445e235765
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Tue Jun 4 08:29:43 2019 -0400
update practracker
---
scripts/maint/practracker/exceptions.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/maint/practracker/exceptions.txt b/scripts/maint/practracker/exceptions.txt
index 3a32e97be..e0db60efb 100644
--- a/scripts/maint/practracker/exceptions.txt
+++ b/scripts/maint/practracker/exceptions.txt
@@ -54,7 +54,7 @@ problem function-size /src/app/main/main.c:sandbox_init_filter() 291
problem function-size /src/app/main/main.c:run_tor_main_loop() 105
problem function-size /src/app/main/ntmain.c:nt_service_install() 125
problem include-count /src/app/main/shutdown.c 52
-problem file-size /src/core/mainloop/connection.c 5560
+problem file-size /src/core/mainloop/connection.c 5570
problem include-count /src/core/mainloop/connection.c 62
problem function-size /src/core/mainloop/connection.c:connection_free_minimal() 185
problem function-size /src/core/mainloop/connection.c:connection_listener_new() 328
1
0
commit 8cb6b2b9ab74d187e4839d298fbce06dafeb33f0
Author: George Kadianakis <desnacked(a)riseup.net>
Date: Wed Jun 5 14:56:28 2019 +0300
Fix typo in #29670 changes file.
---
changes/bug29670 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/changes/bug29670 b/changes/bug29670
index 00b0c3332..288bbbf62 100644
--- a/changes/bug29670
+++ b/changes/bug29670
@@ -1,4 +1,4 @@
o Minor bugfixes (configuration, proxies):
- Fix a bug that prevented us from supporting SOCKS5 proxies that want
- authentication along with configued (but unused!)
+ authentication along with configured (but unused!)
ClientTransportPlugins. Fixes bug 29670; bugfix on 0.2.6.1-alpha.
1
0
commit 99bf3d8e145b1e68ababa06bd233c2aaba10da95
Merge: a63c5f844 dc5cdde60
Author: George Kadianakis <desnacked(a)riseup.net>
Date: Wed Jun 5 14:40:38 2019 +0300
Merge branch 'tor-github/pr/1072'
changes/bug29670 | 4 ++++
scripts/maint/practracker/exceptions.txt | 2 +-
src/core/mainloop/connection.c | 33 ++++++++++++++++++++------------
3 files changed, 26 insertions(+), 13 deletions(-)
1
0

05 Jun '19
commit 4022b6d6b7a2b5e1260c4bccbad119e8461c0b84
Merge: 180048e01 5cbd71b97
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Tue Jun 4 08:29:05 2019 -0400
Merge branch 'bug29670_035' into bug29670_041
changes/bug29670 | 4 ++++
src/core/mainloop/connection.c | 33 +++++++++++++++++++++------------
2 files changed, 25 insertions(+), 12 deletions(-)
1
0

05 Jun '19
commit 2dfd5f76ead3b6613e7f9009634de4a1568462b4
Author: emma peel <emma.peel(a)riseup.net>
Date: Wed Jun 5 13:13:36 2019 +0200
translate sponsors overview page (ref: #30583)
---
content/menu/contents.lr | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/content/menu/contents.lr b/content/menu/contents.lr
index 105278d..42d2091 100644
--- a/content/menu/contents.lr
+++ b/content/menu/contents.lr
@@ -4,7 +4,7 @@ section: About
---
color: primary
---
-title: About
+title: Sponsors
---
body:
1
0

[translation/tpo-web_completed] Update translations for tpo-web_completed
by translation@torproject.org 05 Jun '19
by translation@torproject.org 05 Jun '19
05 Jun '19
commit 2e6ffdc1e8517daf899e499c18e39b25407f3583
Author: Translation commit bot <translation(a)torproject.org>
Date: Wed Jun 5 10:51:38 2019 +0000
Update translations for tpo-web_completed
---
contents+de.po | 13 ++++++++-----
contents+es.po | 13 ++++++++-----
contents+fr.po | 9 ++++++---
contents+is.po | 9 ++++++---
contents+it.po | 13 ++++++++-----
contents+ka.po | 9 ++++++---
contents+ms.po | 9 ++++++---
contents+pl.po | 13 ++++++++-----
contents+pt-BR.po | 13 ++++++++-----
contents+pt-PT.po | 13 ++++++++-----
contents+ro.po | 13 ++++++++-----
contents+ru.po | 9 ++++++---
contents+tr.po | 9 ++++++---
contents+zh-CN.po | 13 ++++++++-----
contents.pot | 9 ++++++---
15 files changed, 106 insertions(+), 61 deletions(-)
diff --git a/contents+de.po b/contents+de.po
index b16a74dc2..3b693d642 100644
--- a/contents+de.po
+++ b/contents+de.po
@@ -3,20 +3,20 @@
# Ikono Gangansi <ikonogangansi(a)gmail.com>, 2019
# ducki2p <ducki2p(a)gmail.com>, 2019
# Lars Schimmer <echelon(a)i2pmail.org>, 2019
-# erinm, 2019
# Cat C <cat.cozzi(a)gmx.de>, 2019
# Felix W <felix(a)elanfesi.de>, 2019
# Emma Peel, 2019
# Marcel Haring <getting(a)autistici.org>, 2019
# Curtis Baltimore <curtisbaltimore(a)protonmail.com>, 2019
+# erinm, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Curtis Baltimore <curtisbaltimore(a)protonmail.com>, 2019\n"
+"Last-Translator: erinm, 2019\n"
"Language-Team: German (https://www.transifex.com/otf/teams/1519/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,8 +98,11 @@ msgid "Download"
msgstr "Herunterladen"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Sponsoren"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+es.po b/contents+es.po
index bc7ffc9b3..d6d48bf80 100644
--- a/contents+es.po
+++ b/contents+es.po
@@ -2,20 +2,20 @@
# Edward Navarro, 2019
# Martus Translations <translations(a)martus.org>, 2019
# strel, 2019
-# erinm, 2019
# eulalio barbero espinosa <eulaliob(a)gmail.com>, 2019
# Zuhualime Akoochimoya, 2019
# simranjit singh, 2019
# francesco ercolani <erco99(a)live.it>, 2019
# Emma Peel, 2019
+# erinm, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Emma Peel, 2019\n"
+"Last-Translator: erinm, 2019\n"
"Language-Team: Spanish (https://www.transifex.com/otf/teams/1519/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -95,8 +95,11 @@ msgid "Download"
msgstr "Descarga"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Patrocinadores"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+fr.po b/contents+fr.po
index 19d4c9cde..3dafb3559 100644
--- a/contents+fr.po
+++ b/contents+fr.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: AO <ao(a)localizationlab.org>, 2019\n"
"Language-Team: French (https://www.transifex.com/otf/teams/1519/fr/)\n"
@@ -98,8 +98,11 @@ msgid "Download"
msgstr "Téléchargement"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Commanditaires"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+is.po b/contents+is.po
index f735987f6..8c8a8b29e 100644
--- a/contents+is.po
+++ b/contents+is.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: Sveinn í Felli <sv1(a)fellsnet.is>, 2019\n"
"Language-Team: Icelandic (https://www.transifex.com/otf/teams/1519/is/)\n"
@@ -92,8 +92,11 @@ msgid "Download"
msgstr "Niðurhal"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Styrktaraðilar"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+it.po b/contents+it.po
index 4736630a0..65bec9448 100644
--- a/contents+it.po
+++ b/contents+it.po
@@ -4,21 +4,21 @@
# Sebastiano Pistore <SebastianoPistore.info(a)protonmail.ch>, 2019
# danimoth <kronat(a)tiscali.it>, 2019
# VaiTon86 <eyadlorenzo(a)gmail.com>, 2019
-# erinm, 2019
# Davide Sant <spuuu(a)outlook.it>, 2019
# Giandomenico Lombardi <transifex.com(a)l1t.it>, 2019
# francesco ercolani <erco99(a)live.it>, 2019
# Hiro 7 <hiro(a)torproject.org>, 2019
# Random_R, 2019
# Emma Peel, 2019
+# erinm, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Emma Peel, 2019\n"
+"Last-Translator: erinm, 2019\n"
"Language-Team: Italian (https://www.transifex.com/otf/teams/1519/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -99,8 +99,11 @@ msgid "Download"
msgstr "Download"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Sponsor"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+ka.po b/contents+ka.po
index f50a51b03..154fc11ad 100644
--- a/contents+ka.po
+++ b/contents+ka.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: Georgianization, 2019\n"
"Language-Team: Georgian (https://www.transifex.com/otf/teams/1519/ka/)\n"
@@ -93,8 +93,11 @@ msgid "Download"
msgstr "ჩამოტვირთვა"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "დამფინანსებლები"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+ms.po b/contents+ms.po
index 4d05f6bf1..6a9c50cb0 100644
--- a/contents+ms.po
+++ b/contents+ms.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: abuyop <abuyop(a)gmail.com>, 2019\n"
"Language-Team: Malay (Malaysia) (https://www.transifex.com/otf/teams/1519/ms_MY/)\n"
@@ -91,8 +91,11 @@ msgid "Download"
msgstr "Muat Turun"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+pl.po b/contents+pl.po
index ab157fbbc..f38a032ea 100644
--- a/contents+pl.po
+++ b/contents+pl.po
@@ -3,20 +3,20 @@
# Marcin Januchta <marcin.januchta(a)gmail.com>, 2019
# Verdulo :-), 2019
# Dawid Job <hoek(a)tuta.io>, 2019
-# erinm, 2019
# wigatesi, 2019
# Filip <filipiczesio(a)vp.pl>, 2019
# Emma Peel, 2019
# Waldemar Stoczkowski, 2019
# Dawid Potocki <dpot(a)disroot.org>, 2019
+# erinm, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Dawid Potocki <dpot(a)disroot.org>, 2019\n"
+"Last-Translator: erinm, 2019\n"
"Language-Team: Polish (https://www.transifex.com/otf/teams/1519/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,8 +98,11 @@ msgid "Download"
msgstr "Pobierz"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Sponsorzy"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+pt-BR.po b/contents+pt-BR.po
index 451130660..0bf9847de 100644
--- a/contents+pt-BR.po
+++ b/contents+pt-BR.po
@@ -2,7 +2,6 @@
# Danton Medrado, 2019
# Joeffison Silvério de Andrade <joeffison(a)gmail.com>, 2019
# Gutem <gutemhc(a)gmail.com>, 2019
-# erinm, 2019
# Greg Strider <gboufleur(a)gmail.com>, 2019
# Hildeberto Abreu Magalhães <hildeberto(a)gmail.com>, 2019
# Anna e só <contraexemplos(a)gmail.com>, 2019
@@ -12,14 +11,15 @@
# Emma Peel, 2019
# Chacal E., 2019
# Eduardo Addad de Oliveira <eduardoaddad(a)hotmail.com>, 2019
+# erinm, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Eduardo Addad de Oliveira <eduardoaddad(a)hotmail.com>, 2019\n"
+"Last-Translator: erinm, 2019\n"
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/otf/teams/1519/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -103,8 +103,11 @@ msgid "Download"
msgstr "Baixar"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Patrocinadores"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+pt-PT.po b/contents+pt-PT.po
index a1c00e2ba..87603c8ef 100644
--- a/contents+pt-PT.po
+++ b/contents+pt-PT.po
@@ -1,19 +1,19 @@
# Translators:
# alfalb_mansil, 2019
# erinm, 2019
-# Manuela Silva <inactive+h_manuela_rodsilva(a)transifex.com>, 2019
# Rui Melo <viper5000pt(a)gmail.com>, 2019
# Rui <xymarior(a)yandex.com>, 2019
# Manuela Silva <manuelarodsilva(a)gmail.com>, 2019
# Hugo9191 <hugoncosta(a)gmail.com>, 2019
+# Manuela Silva <inactive+h_manuela_rodsilva(a)transifex.com>, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Hugo9191 <hugoncosta(a)gmail.com>, 2019\n"
+"Last-Translator: Manuela Silva <inactive+h_manuela_rodsilva(a)transifex.com>, 2019\n"
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/otf/teams/1519/pt_PT/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -95,8 +95,11 @@ msgid "Download"
msgstr "Transferir"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Patrocinadores"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+ro.po b/contents+ro.po
index 2cded8a9a..c100dd502 100644
--- a/contents+ro.po
+++ b/contents+ro.po
@@ -2,19 +2,19 @@
# titus <titus0818(a)gmail.com>, 2019
# Inpresentia I., 2019
# pol polearnik <polearnik(a)mail.ru>, 2019
-# erinm, 2019
# k piticu <k.piticu(a)gmail.com>, 2019
# Emma Peel, 2019
# A C <ana(a)shiftout.net>, 2019
# eduard pintilie <eduard.pintilie(a)gmail.com>, 2019
+# erinm, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: eduard pintilie <eduard.pintilie(a)gmail.com>, 2019\n"
+"Last-Translator: erinm, 2019\n"
"Language-Team: Romanian (https://www.transifex.com/otf/teams/1519/ro/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -95,8 +95,11 @@ msgid "Download"
msgstr "Descărcare"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Sponsori"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+ru.po b/contents+ru.po
index 6cb143e82..3f8e3fa86 100644
--- a/contents+ru.po
+++ b/contents+ru.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: Sergey Smirnov <cj75300(a)gmail.com>, 2019\n"
"Language-Team: Russian (https://www.transifex.com/otf/teams/1519/ru/)\n"
@@ -97,8 +97,11 @@ msgid "Download"
msgstr "Скачать"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Спонсоры"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+tr.po b/contents+tr.po
index 3a0ea5fed..259f7cfe3 100644
--- a/contents+tr.po
+++ b/contents+tr.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: Kaya Zeren <kayazeren(a)gmail.com>, 2019\n"
"Language-Team: Turkish (https://www.transifex.com/otf/teams/1519/tr/)\n"
@@ -92,8 +92,11 @@ msgid "Download"
msgstr "İndir"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Destekçiler"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+zh-CN.po b/contents+zh-CN.po
index 94936b112..2e6724eca 100644
--- a/contents+zh-CN.po
+++ b/contents+zh-CN.po
@@ -2,7 +2,6 @@
# Chi-Hsun Tsai, 2019
# Xiaoyu Huang <007pig(a)gmail.com>, 2019
# ducki2p <ducki2p(a)gmail.com>, 2019
-# erinm, 2019
# shenzhui007 <12231252(a)bjtu.edu.cn>, 2019
# ciaran <ciaranchen(a)qq.com>, 2019
# ヨイツの賢狼ホロ, 2019
@@ -10,14 +9,15 @@
# Dianyu Liu <liudianyu5(a)gmail.com>, 2019
# Emma Peel, 2019
# Yikai Yang <ff98sha(a)gmail.com>, 2019
+# erinm, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Yikai Yang <ff98sha(a)gmail.com>, 2019\n"
+"Last-Translator: erinm, 2019\n"
"Language-Team: Chinese (China) (https://www.transifex.com/otf/teams/1519/zh_CN/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -91,8 +91,11 @@ msgid "Download"
msgstr "下载"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "赞助方"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents.pot b/contents.pot
index 5671f443b..4d885ea1c 100644
--- a/contents.pot
+++ b/contents.pot
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: en <LL(a)li.org>\n"
@@ -83,8 +83,11 @@ msgid "Download"
msgstr "Download"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Sponsors"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
1
0

05 Jun '19
commit 6f8df76796fd50b0eb0ce0871084272558a7069d
Author: Translation commit bot <translation(a)torproject.org>
Date: Wed Jun 5 10:51:19 2019 +0000
Update translations for tpo-web
---
contents+am.po | 9 ++++++---
contents+ar.po | 13 ++++++++-----
contents+az.po | 9 ++++++---
contents+be.po | 9 ++++++---
contents+bg.po | 9 ++++++---
contents+bn.po | 13 ++++++++-----
contents+bo.po | 9 ++++++---
contents+ca.po | 13 ++++++++-----
contents+cs.po | 13 ++++++++-----
contents+cy.po | 9 ++++++---
contents+da.po | 9 ++++++---
contents+de.po | 13 ++++++++-----
contents+el.po | 13 ++++++++-----
contents+en_GB.po | 9 ++++++---
contents+eo.po | 9 ++++++---
contents+es-AR.po | 9 ++++++---
contents+es.po | 13 ++++++++-----
contents+et.po | 9 ++++++---
contents+eu.po | 9 ++++++---
contents+fa.po | 12 ++++++++----
contents+fi.po | 13 ++++++++-----
contents+fil.po | 9 ++++++---
contents+fr.po | 9 ++++++---
contents+ga.po | 9 ++++++---
contents+gl.po | 9 ++++++---
contents+he.po | 9 ++++++---
contents+hi.po | 9 ++++++---
contents+hr.po | 9 ++++++---
contents+hu.po | 9 ++++++---
contents+id.po | 13 ++++++++-----
contents+is.po | 9 ++++++---
contents+it.po | 13 ++++++++-----
contents+ja.po | 12 ++++++++----
contents+ka.po | 9 ++++++---
contents+kk.po | 9 ++++++---
contents+km.po | 9 ++++++---
contents+ko.po | 13 ++++++++-----
contents+ku_IQ.po | 9 ++++++---
contents+lt.po | 9 ++++++---
contents+lv.po | 9 ++++++---
contents+mk.po | 9 ++++++---
contents+ms.po | 9 ++++++---
contents+my.po | 9 ++++++---
contents+nb.po | 9 ++++++---
contents+nl.po | 13 ++++++++-----
contents+nn.po | 9 ++++++---
contents+pl.po | 13 ++++++++-----
contents+pt-BR.po | 13 ++++++++-----
contents+pt-PT.po | 13 ++++++++-----
contents+ro.po | 13 ++++++++-----
contents+ru.po | 9 ++++++---
contents+sk.po | 9 ++++++---
contents+sl.po | 9 ++++++---
contents+sq.po | 9 ++++++---
contents+sr.po | 9 ++++++---
contents+sv.po | 13 ++++++++-----
contents+sw.po | 9 ++++++---
contents+ta.po | 9 ++++++---
contents+th.po | 9 ++++++---
contents+tr.po | 9 ++++++---
contents+uk.po | 13 ++++++++-----
contents+ur.po | 9 ++++++---
contents+uz.po | 9 ++++++---
contents+vi.po | 9 ++++++---
contents+zh-CN.po | 13 ++++++++-----
contents+zh-TW.po | 13 ++++++++-----
contents.pot | 9 ++++++---
67 files changed, 446 insertions(+), 243 deletions(-)
diff --git a/contents+am.po b/contents+am.po
index 7e0ac6b5f..73a6c3422 100644
--- a/contents+am.po
+++ b/contents+am.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Amharic (https://www.transifex.com/otf/teams/1519/am/)\n"
@@ -83,8 +83,11 @@ msgid "Download"
msgstr "አውርድ "
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+ar.po b/contents+ar.po
index a2a61c3f2..bc747881b 100644
--- a/contents+ar.po
+++ b/contents+ar.po
@@ -2,17 +2,17 @@
# Martus Translations <translations(a)martus.org>, 2019
# erinm, 2019
# Ahmed A. <6622227a(a)gmail.com>, 2019
-# ButterflyOfFire, 2019
# Khaled Hosny, 2019
# Emma Peel, 2019
+# ButterflyOfFire, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Emma Peel, 2019\n"
+"Last-Translator: ButterflyOfFire, 2019\n"
"Language-Team: Arabic (https://www.transifex.com/otf/teams/1519/ar/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -85,8 +85,11 @@ msgid "Download"
msgstr "تحميل"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "الرعاة"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+az.po b/contents+az.po
index f56284177..bd472f4b1 100644
--- a/contents+az.po
+++ b/contents+az.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Azerbaijani (https://www.transifex.com/otf/teams/1519/az/)\n"
@@ -81,8 +81,11 @@ msgid "Download"
msgstr "Endir"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+be.po b/contents+be.po
index 245df8052..723d6ce40 100644
--- a/contents+be.po
+++ b/contents+be.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Belarusian (https://www.transifex.com/otf/teams/1519/be/)\n"
@@ -82,8 +82,11 @@ msgid "Download"
msgstr "Спампаваць"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+bg.po b/contents+bg.po
index 9e17e3479..8a3c34d30 100644
--- a/contents+bg.po
+++ b/contents+bg.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Bulgarian (https://www.transifex.com/otf/teams/1519/bg/)\n"
@@ -81,8 +81,11 @@ msgid "Download"
msgstr "Изтегли"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+bn.po b/contents+bn.po
index 913e9f3f2..c7fa24544 100644
--- a/contents+bn.po
+++ b/contents+bn.po
@@ -2,17 +2,17 @@
# Al Shahrior Hasan Sagor <shahrior3814(a)gmail.com>, 2019
# lisa hayat, 2019
# code smite <codesmite(a)gmail.com>, 2019
-# Tabiha Tanha <tabihatanha(a)yandex.com>, 2019
# erinm, 2019
# Emma Peel, 2019
+# Tabiha Tanha <tabihatanha(a)yandex.com>, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Emma Peel, 2019\n"
+"Last-Translator: Tabiha Tanha <tabihatanha(a)yandex.com>, 2019\n"
"Language-Team: Bengali (https://www.transifex.com/otf/teams/1519/bn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -91,8 +91,11 @@ msgid "Download"
msgstr "ডাউনলোড"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "উদ্যোক্তা"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+bo.po b/contents+bo.po
index da6bebfb4..47be7c6da 100644
--- a/contents+bo.po
+++ b/contents+bo.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Tibetan (https://www.transifex.com/otf/teams/1519/bo/)\n"
@@ -82,8 +82,11 @@ msgid "Download"
msgstr "Download"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+ca.po b/contents+ca.po
index 46e7994a9..6eea88be7 100644
--- a/contents+ca.po
+++ b/contents+ca.po
@@ -1,16 +1,16 @@
# Translators:
# Jaime Muñoz Martín <jmmartin_5(a)outlook.com>, 2019
-# erinm, 2019
# Emma Peel, 2019
# Marc Ripoll <markripesp(a)gmail.com>, 2019
+# erinm, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Marc Ripoll <markripesp(a)gmail.com>, 2019\n"
+"Last-Translator: erinm, 2019\n"
"Language-Team: Catalan (https://www.transifex.com/otf/teams/1519/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -83,8 +83,11 @@ msgid "Download"
msgstr "Baixada"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Patrocinadors"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+cs.po b/contents+cs.po
index a78b5b860..177ba1d7f 100644
--- a/contents+cs.po
+++ b/contents+cs.po
@@ -1,14 +1,14 @@
# Translators:
-# erinm, 2019
# Michal Stanke <mstanke(a)mozilla.cz>, 2019
+# erinm, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Michal Stanke <mstanke(a)mozilla.cz>, 2019\n"
+"Last-Translator: erinm, 2019\n"
"Language-Team: Czech (https://www.transifex.com/otf/teams/1519/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -81,8 +81,11 @@ msgid "Download"
msgstr "Stáhnout"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Sponzoři"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+cy.po b/contents+cy.po
index d98a7afd0..faef87af0 100644
--- a/contents+cy.po
+++ b/contents+cy.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Welsh (https://www.transifex.com/otf/teams/1519/cy/)\n"
@@ -81,8 +81,11 @@ msgid "Download"
msgstr "Lawrlwytho"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+da.po b/contents+da.po
index 955221f8e..43580b3bf 100644
--- a/contents+da.po
+++ b/contents+da.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: scootergrisen, 2019\n"
"Language-Team: Danish (https://www.transifex.com/otf/teams/1519/da/)\n"
@@ -87,8 +87,11 @@ msgid "Download"
msgstr "Download"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Sponsorere"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+de.po b/contents+de.po
index b16a74dc2..3b693d642 100644
--- a/contents+de.po
+++ b/contents+de.po
@@ -3,20 +3,20 @@
# Ikono Gangansi <ikonogangansi(a)gmail.com>, 2019
# ducki2p <ducki2p(a)gmail.com>, 2019
# Lars Schimmer <echelon(a)i2pmail.org>, 2019
-# erinm, 2019
# Cat C <cat.cozzi(a)gmx.de>, 2019
# Felix W <felix(a)elanfesi.de>, 2019
# Emma Peel, 2019
# Marcel Haring <getting(a)autistici.org>, 2019
# Curtis Baltimore <curtisbaltimore(a)protonmail.com>, 2019
+# erinm, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Curtis Baltimore <curtisbaltimore(a)protonmail.com>, 2019\n"
+"Last-Translator: erinm, 2019\n"
"Language-Team: German (https://www.transifex.com/otf/teams/1519/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,8 +98,11 @@ msgid "Download"
msgstr "Herunterladen"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Sponsoren"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+el.po b/contents+el.po
index b081792ca..39e7fd708 100644
--- a/contents+el.po
+++ b/contents+el.po
@@ -1,6 +1,5 @@
# Translators:
# Nikos Tsirakis <>, 2019
-# LaScapigliata <ditri2000(a)hotmail.com>, 2019
# Wasilis Mandratzis-Walz <inactive+beonex123(a)transifex.com>, 2019
# Alex <hestia(a)riseup.net>, 2019
# A Papac <ap909219(a)protonmail.com>, 2019
@@ -9,14 +8,15 @@
# Emma Peel, 2019
# Sofia K., 2019
# Adrian Pappas <pappasadrian(a)gmail.com>, 2019
+# LaScapigliata <ditri2000(a)hotmail.com>, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Adrian Pappas <pappasadrian(a)gmail.com>, 2019\n"
+"Last-Translator: LaScapigliata <ditri2000(a)hotmail.com>, 2019\n"
"Language-Team: Greek (https://www.transifex.com/otf/teams/1519/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -91,8 +91,11 @@ msgid "Download"
msgstr "Λήψη"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Χορηγοί"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+en_GB.po b/contents+en_GB.po
index 94016f674..be769dafe 100644
--- a/contents+en_GB.po
+++ b/contents+en_GB.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: Andi Chandler <andi(a)gowling.com>, 2019\n"
"Language-Team: English (United Kingdom) (https://www.transifex.com/otf/teams/1519/en_GB/)\n"
@@ -82,8 +82,11 @@ msgid "Download"
msgstr "Download"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+eo.po b/contents+eo.po
index 938f3bc90..72369565f 100644
--- a/contents+eo.po
+++ b/contents+eo.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Esperanto (https://www.transifex.com/otf/teams/1519/eo/)\n"
@@ -82,8 +82,11 @@ msgid "Download"
msgstr "Elŝutado"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+es-AR.po b/contents+es-AR.po
index 2f7390a99..d51a9959b 100644
--- a/contents+es-AR.po
+++ b/contents+es-AR.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: Zuhualime Akoochimoya, 2019\n"
"Language-Team: Spanish (Argentina) (https://www.transifex.com/otf/teams/1519/es_AR/)\n"
@@ -92,8 +92,11 @@ msgid "Download"
msgstr "Descargar"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Auspiciantes"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+es.po b/contents+es.po
index bc7ffc9b3..d6d48bf80 100644
--- a/contents+es.po
+++ b/contents+es.po
@@ -2,20 +2,20 @@
# Edward Navarro, 2019
# Martus Translations <translations(a)martus.org>, 2019
# strel, 2019
-# erinm, 2019
# eulalio barbero espinosa <eulaliob(a)gmail.com>, 2019
# Zuhualime Akoochimoya, 2019
# simranjit singh, 2019
# francesco ercolani <erco99(a)live.it>, 2019
# Emma Peel, 2019
+# erinm, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Emma Peel, 2019\n"
+"Last-Translator: erinm, 2019\n"
"Language-Team: Spanish (https://www.transifex.com/otf/teams/1519/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -95,8 +95,11 @@ msgid "Download"
msgstr "Descarga"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Patrocinadores"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+et.po b/contents+et.po
index b2db1b68e..9a28b492f 100644
--- a/contents+et.po
+++ b/contents+et.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Estonian (https://www.transifex.com/otf/teams/1519/et/)\n"
@@ -83,8 +83,11 @@ msgid "Download"
msgstr "Lae alla"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+eu.po b/contents+eu.po
index 44b3a85af..1d668ab57 100644
--- a/contents+eu.po
+++ b/contents+eu.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: Osoitz <oelkoro(a)gmail.com>, 2019\n"
"Language-Team: Basque (https://www.transifex.com/otf/teams/1519/eu/)\n"
@@ -81,8 +81,11 @@ msgid "Download"
msgstr "Jaitsiera"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+fa.po b/contents+fa.po
index 6dab0e98a..46f1bf4a0 100644
--- a/contents+fa.po
+++ b/contents+fa.po
@@ -7,14 +7,15 @@
# A.Mehraban <Mehr.Ban(a)chmail.ir>, 2019
# Emma Peel, 2019
# Goudarz Jafari <goudarz.jafari(a)gmail.com>, 2019
+# Reza Ghasemi, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Goudarz Jafari <goudarz.jafari(a)gmail.com>, 2019\n"
+"Last-Translator: Reza Ghasemi, 2019\n"
"Language-Team: Persian (https://www.transifex.com/otf/teams/1519/fa/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -95,8 +96,11 @@ msgid "Download"
msgstr "دانلود"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "حامیان"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+fi.po b/contents+fi.po
index 8ce52199d..d56182d85 100644
--- a/contents+fi.po
+++ b/contents+fi.po
@@ -1,16 +1,16 @@
# Translators:
# Juhana Uuttu <juhana.uuttu(a)gmail.com>, 2019
# Mikko Päivärinta <paivarinta.mikko.o(a)gmail.com>, 2019
-# erinm, 2019
# Jorma Karvonen <karvonen.jorma(a)gmail.com>, 2019
+# erinm, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Jorma Karvonen <karvonen.jorma(a)gmail.com>, 2019\n"
+"Last-Translator: erinm, 2019\n"
"Language-Team: Finnish (https://www.transifex.com/otf/teams/1519/fi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -83,8 +83,11 @@ msgid "Download"
msgstr "Lataa"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Sponsorit"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+fil.po b/contents+fil.po
index bab378908..d8eb702f5 100644
--- a/contents+fil.po
+++ b/contents+fil.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Filipino (https://www.transifex.com/otf/teams/1519/fil/)\n"
@@ -82,8 +82,11 @@ msgid "Download"
msgstr "Download"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+fr.po b/contents+fr.po
index 19d4c9cde..3dafb3559 100644
--- a/contents+fr.po
+++ b/contents+fr.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: AO <ao(a)localizationlab.org>, 2019\n"
"Language-Team: French (https://www.transifex.com/otf/teams/1519/fr/)\n"
@@ -98,8 +98,11 @@ msgid "Download"
msgstr "Téléchargement"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Commanditaires"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+ga.po b/contents+ga.po
index 90a7f2533..cea54a63e 100644
--- a/contents+ga.po
+++ b/contents+ga.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: Kevin Scannell <kscanne(a)gmail.com>, 2019\n"
"Language-Team: Irish (https://www.transifex.com/otf/teams/1519/ga/)\n"
@@ -83,8 +83,11 @@ msgid "Download"
msgstr "Íoslódáil"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+gl.po b/contents+gl.po
index 864d1f4da..c2f37355c 100644
--- a/contents+gl.po
+++ b/contents+gl.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Galician (https://www.transifex.com/otf/teams/1519/gl/)\n"
@@ -81,8 +81,11 @@ msgid "Download"
msgstr "Descargar"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+he.po b/contents+he.po
index 34c21e25d..7dd99f70d 100644
--- a/contents+he.po
+++ b/contents+he.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: ION, 2019\n"
"Language-Team: Hebrew (https://www.transifex.com/otf/teams/1519/he/)\n"
@@ -84,8 +84,11 @@ msgid "Download"
msgstr "הורד"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "נותני חסות"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+hi.po b/contents+hi.po
index c0e397ee8..e913767d6 100644
--- a/contents+hi.po
+++ b/contents+hi.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: Emma Peel, 2019\n"
"Language-Team: Hindi (https://www.transifex.com/otf/teams/1519/hi/)\n"
@@ -82,8 +82,11 @@ msgid "Download"
msgstr "डाउनलोड"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+hr.po b/contents+hr.po
index 9afc67f31..32861594a 100644
--- a/contents+hr.po
+++ b/contents+hr.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Croatian (https://www.transifex.com/otf/teams/1519/hr/)\n"
@@ -83,8 +83,11 @@ msgid "Download"
msgstr "Preuzmi"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+hu.po b/contents+hu.po
index 4dd7e48cb..133795fac 100644
--- a/contents+hu.po
+++ b/contents+hu.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: vargaviktor <viktor.varga(a)gmail.com>, 2019\n"
"Language-Team: Hungarian (https://www.transifex.com/otf/teams/1519/hu/)\n"
@@ -83,8 +83,11 @@ msgid "Download"
msgstr "Letöltés"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Támogatók"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+id.po b/contents+id.po
index 6146ae403..2bf4cdca6 100644
--- a/contents+id.po
+++ b/contents+id.po
@@ -3,16 +3,16 @@
# Muhammad Yusuf <myusuffin(a)gmail.com>, 2019
# erinm, 2019
# Robert Dafis <robertdafis(a)gmail.com>, 2019
-# ical, 2019
# Emma Peel, 2019
+# ical, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Emma Peel, 2019\n"
+"Last-Translator: ical, 2019\n"
"Language-Team: Indonesian (https://www.transifex.com/otf/teams/1519/id/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -93,8 +93,11 @@ msgid "Download"
msgstr "Unduh"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Sponsor"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+is.po b/contents+is.po
index f735987f6..8c8a8b29e 100644
--- a/contents+is.po
+++ b/contents+is.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: Sveinn í Felli <sv1(a)fellsnet.is>, 2019\n"
"Language-Team: Icelandic (https://www.transifex.com/otf/teams/1519/is/)\n"
@@ -92,8 +92,11 @@ msgid "Download"
msgstr "Niðurhal"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Styrktaraðilar"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+it.po b/contents+it.po
index 4736630a0..65bec9448 100644
--- a/contents+it.po
+++ b/contents+it.po
@@ -4,21 +4,21 @@
# Sebastiano Pistore <SebastianoPistore.info(a)protonmail.ch>, 2019
# danimoth <kronat(a)tiscali.it>, 2019
# VaiTon86 <eyadlorenzo(a)gmail.com>, 2019
-# erinm, 2019
# Davide Sant <spuuu(a)outlook.it>, 2019
# Giandomenico Lombardi <transifex.com(a)l1t.it>, 2019
# francesco ercolani <erco99(a)live.it>, 2019
# Hiro 7 <hiro(a)torproject.org>, 2019
# Random_R, 2019
# Emma Peel, 2019
+# erinm, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Emma Peel, 2019\n"
+"Last-Translator: erinm, 2019\n"
"Language-Team: Italian (https://www.transifex.com/otf/teams/1519/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -99,8 +99,11 @@ msgid "Download"
msgstr "Download"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Sponsor"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+ja.po b/contents+ja.po
index 98711b758..6106f442f 100644
--- a/contents+ja.po
+++ b/contents+ja.po
@@ -4,14 +4,15 @@
# Emma Peel, 2019
# Tokumei Nanashi, 2019
# 323484, 2019
+# Windymelt <qwilas(a)mail.3qe.us>, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: 323484, 2019\n"
+"Last-Translator: Windymelt <qwilas(a)mail.3qe.us>, 2019\n"
"Language-Team: Japanese (https://www.transifex.com/otf/teams/1519/ja/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -84,8 +85,11 @@ msgid "Download"
msgstr "ダウンロード"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "支援者"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+ka.po b/contents+ka.po
index f50a51b03..154fc11ad 100644
--- a/contents+ka.po
+++ b/contents+ka.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: Georgianization, 2019\n"
"Language-Team: Georgian (https://www.transifex.com/otf/teams/1519/ka/)\n"
@@ -93,8 +93,11 @@ msgid "Download"
msgstr "ჩამოტვირთვა"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "დამფინანსებლები"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+kk.po b/contents+kk.po
index 1a9fa5f56..60464fa40 100644
--- a/contents+kk.po
+++ b/contents+kk.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Kazakh (https://www.transifex.com/otf/teams/1519/kk/)\n"
@@ -82,8 +82,11 @@ msgid "Download"
msgstr "Жүктеп алу"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+km.po b/contents+km.po
index e12e315ca..1e171c519 100644
--- a/contents+km.po
+++ b/contents+km.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Khmer (https://www.transifex.com/otf/teams/1519/km/)\n"
@@ -83,8 +83,11 @@ msgid "Download"
msgstr "ទាញយក"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+ko.po b/contents+ko.po
index 002642c67..733ead777 100644
--- a/contents+ko.po
+++ b/contents+ko.po
@@ -2,16 +2,16 @@
# VictoriaKim <sis2468(a)hotmail.co.kr>, 2019
# SEPT____ <xpressengine3(a)mail.beo.kr>, 2019
# erinm, 2019
-# Johnny Cho <popeye92(a)gmail.com>, 2019
# Emma Peel, 2019
+# Johnny Cho <popeye92(a)gmail.com>, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Emma Peel, 2019\n"
+"Last-Translator: Johnny Cho <popeye92(a)gmail.com>, 2019\n"
"Language-Team: Korean (https://www.transifex.com/otf/teams/1519/ko/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -88,8 +88,11 @@ msgid "Download"
msgstr "다운로드"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "도와주신 분들"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+ku_IQ.po b/contents+ku_IQ.po
index c478ee209..2f33803a9 100644
--- a/contents+ku_IQ.po
+++ b/contents+ku_IQ.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Kurdish (Iraq) (https://www.transifex.com/otf/teams/1519/ku_IQ/)\n"
@@ -81,8 +81,11 @@ msgid "Download"
msgstr "داگرتن"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+lt.po b/contents+lt.po
index f78b5d964..0401ced8e 100644
--- a/contents+lt.po
+++ b/contents+lt.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: Benas Buivydas <benas(a)perfitect.net>, 2019\n"
"Language-Team: Lithuanian (https://www.transifex.com/otf/teams/1519/lt/)\n"
@@ -82,8 +82,11 @@ msgid "Download"
msgstr "Atsisiųsti"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+lv.po b/contents+lv.po
index 83cefa148..515fffe05 100644
--- a/contents+lv.po
+++ b/contents+lv.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Latvian (https://www.transifex.com/otf/teams/1519/lv/)\n"
@@ -82,8 +82,11 @@ msgid "Download"
msgstr "Lejupielāde"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+mk.po b/contents+mk.po
index 152f717b3..ba09ed193 100644
--- a/contents+mk.po
+++ b/contents+mk.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: Zarko Gjurov <zarkogjurov(a)gmail.com>, 2019\n"
"Language-Team: Macedonian (https://www.transifex.com/otf/teams/1519/mk/)\n"
@@ -84,8 +84,11 @@ msgid "Download"
msgstr "Преземи"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+ms.po b/contents+ms.po
index 4d05f6bf1..6a9c50cb0 100644
--- a/contents+ms.po
+++ b/contents+ms.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: abuyop <abuyop(a)gmail.com>, 2019\n"
"Language-Team: Malay (Malaysia) (https://www.transifex.com/otf/teams/1519/ms_MY/)\n"
@@ -91,8 +91,11 @@ msgid "Download"
msgstr "Muat Turun"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+my.po b/contents+my.po
index 9d432059f..5a7a2e936 100644
--- a/contents+my.po
+++ b/contents+my.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Burmese (https://www.transifex.com/otf/teams/1519/my/)\n"
@@ -81,8 +81,11 @@ msgid "Download"
msgstr "ဒေါင်းလုပ်"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+nb.po b/contents+nb.po
index ea8a9131f..eaee960ca 100644
--- a/contents+nb.po
+++ b/contents+nb.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: a356f726dcd9c475642ac26af10009cc, 2019\n"
"Language-Team: Norwegian Bokmål (https://www.transifex.com/otf/teams/1519/nb/)\n"
@@ -82,8 +82,11 @@ msgid "Download"
msgstr "Nedlasting"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+nl.po b/contents+nl.po
index c9c3bcbd1..3eebf63e7 100644
--- a/contents+nl.po
+++ b/contents+nl.po
@@ -4,17 +4,17 @@
# jessesteinen <inactive+jessesteinen(a)transifex.com>, 2019
# ducki2p <ducki2p(a)gmail.com>, 2019
# Meteor0id, 2019
-# erinm, 2019
# Emma Peel, 2019
# bacovane <bart-ts(a)tushmail.com>, 2019
+# erinm, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: bacovane <bart-ts(a)tushmail.com>, 2019\n"
+"Last-Translator: erinm, 2019\n"
"Language-Team: Dutch (https://www.transifex.com/otf/teams/1519/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -87,8 +87,11 @@ msgid "Download"
msgstr "Download"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Sponsors"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+nn.po b/contents+nn.po
index 0ff7ff76e..c0e22a601 100644
--- a/contents+nn.po
+++ b/contents+nn.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Norwegian Nynorsk (https://www.transifex.com/otf/teams/1519/nn/)\n"
@@ -82,8 +82,11 @@ msgid "Download"
msgstr ""
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+pl.po b/contents+pl.po
index ab157fbbc..f38a032ea 100644
--- a/contents+pl.po
+++ b/contents+pl.po
@@ -3,20 +3,20 @@
# Marcin Januchta <marcin.januchta(a)gmail.com>, 2019
# Verdulo :-), 2019
# Dawid Job <hoek(a)tuta.io>, 2019
-# erinm, 2019
# wigatesi, 2019
# Filip <filipiczesio(a)vp.pl>, 2019
# Emma Peel, 2019
# Waldemar Stoczkowski, 2019
# Dawid Potocki <dpot(a)disroot.org>, 2019
+# erinm, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Dawid Potocki <dpot(a)disroot.org>, 2019\n"
+"Last-Translator: erinm, 2019\n"
"Language-Team: Polish (https://www.transifex.com/otf/teams/1519/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,8 +98,11 @@ msgid "Download"
msgstr "Pobierz"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Sponsorzy"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+pt-BR.po b/contents+pt-BR.po
index 451130660..0bf9847de 100644
--- a/contents+pt-BR.po
+++ b/contents+pt-BR.po
@@ -2,7 +2,6 @@
# Danton Medrado, 2019
# Joeffison Silvério de Andrade <joeffison(a)gmail.com>, 2019
# Gutem <gutemhc(a)gmail.com>, 2019
-# erinm, 2019
# Greg Strider <gboufleur(a)gmail.com>, 2019
# Hildeberto Abreu Magalhães <hildeberto(a)gmail.com>, 2019
# Anna e só <contraexemplos(a)gmail.com>, 2019
@@ -12,14 +11,15 @@
# Emma Peel, 2019
# Chacal E., 2019
# Eduardo Addad de Oliveira <eduardoaddad(a)hotmail.com>, 2019
+# erinm, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Eduardo Addad de Oliveira <eduardoaddad(a)hotmail.com>, 2019\n"
+"Last-Translator: erinm, 2019\n"
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/otf/teams/1519/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -103,8 +103,11 @@ msgid "Download"
msgstr "Baixar"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Patrocinadores"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+pt-PT.po b/contents+pt-PT.po
index a1c00e2ba..87603c8ef 100644
--- a/contents+pt-PT.po
+++ b/contents+pt-PT.po
@@ -1,19 +1,19 @@
# Translators:
# alfalb_mansil, 2019
# erinm, 2019
-# Manuela Silva <inactive+h_manuela_rodsilva(a)transifex.com>, 2019
# Rui Melo <viper5000pt(a)gmail.com>, 2019
# Rui <xymarior(a)yandex.com>, 2019
# Manuela Silva <manuelarodsilva(a)gmail.com>, 2019
# Hugo9191 <hugoncosta(a)gmail.com>, 2019
+# Manuela Silva <inactive+h_manuela_rodsilva(a)transifex.com>, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Hugo9191 <hugoncosta(a)gmail.com>, 2019\n"
+"Last-Translator: Manuela Silva <inactive+h_manuela_rodsilva(a)transifex.com>, 2019\n"
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/otf/teams/1519/pt_PT/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -95,8 +95,11 @@ msgid "Download"
msgstr "Transferir"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Patrocinadores"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+ro.po b/contents+ro.po
index 2cded8a9a..c100dd502 100644
--- a/contents+ro.po
+++ b/contents+ro.po
@@ -2,19 +2,19 @@
# titus <titus0818(a)gmail.com>, 2019
# Inpresentia I., 2019
# pol polearnik <polearnik(a)mail.ru>, 2019
-# erinm, 2019
# k piticu <k.piticu(a)gmail.com>, 2019
# Emma Peel, 2019
# A C <ana(a)shiftout.net>, 2019
# eduard pintilie <eduard.pintilie(a)gmail.com>, 2019
+# erinm, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: eduard pintilie <eduard.pintilie(a)gmail.com>, 2019\n"
+"Last-Translator: erinm, 2019\n"
"Language-Team: Romanian (https://www.transifex.com/otf/teams/1519/ro/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -95,8 +95,11 @@ msgid "Download"
msgstr "Descărcare"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Sponsori"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+ru.po b/contents+ru.po
index 6cb143e82..3f8e3fa86 100644
--- a/contents+ru.po
+++ b/contents+ru.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: Sergey Smirnov <cj75300(a)gmail.com>, 2019\n"
"Language-Team: Russian (https://www.transifex.com/otf/teams/1519/ru/)\n"
@@ -97,8 +97,11 @@ msgid "Download"
msgstr "Скачать"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Спонсоры"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+sk.po b/contents+sk.po
index cef185016..aad989b41 100644
--- a/contents+sk.po
+++ b/contents+sk.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: Marek Čápek <capek.marek(a)gmail.com>, 2019\n"
"Language-Team: Slovak (https://www.transifex.com/otf/teams/1519/sk/)\n"
@@ -84,8 +84,11 @@ msgid "Download"
msgstr "Stiahnuť"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+sl.po b/contents+sl.po
index c5f90d773..cb51feb6a 100644
--- a/contents+sl.po
+++ b/contents+sl.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Slovenian (https://www.transifex.com/otf/teams/1519/sl/)\n"
@@ -81,8 +81,11 @@ msgid "Download"
msgstr "Prenesi"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+sq.po b/contents+sq.po
index ea698d180..c37f0e249 100644
--- a/contents+sq.po
+++ b/contents+sq.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Albanian (https://www.transifex.com/otf/teams/1519/sq/)\n"
@@ -83,8 +83,11 @@ msgid "Download"
msgstr "Shkarkim"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+sr.po b/contents+sr.po
index 74b0f7620..92e628642 100644
--- a/contents+sr.po
+++ b/contents+sr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Serbian (https://www.transifex.com/otf/teams/1519/sr/)\n"
@@ -82,8 +82,11 @@ msgid "Download"
msgstr "Преузимање"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+sv.po b/contents+sv.po
index cd198d60b..e8d896698 100644
--- a/contents+sv.po
+++ b/contents+sv.po
@@ -2,16 +2,16 @@
# Anton Strömkvist <inactive+Lumen(a)transifex.com>, 2019
# Martin Coborn <inactive+martincoborn(a)transifex.com>, 2019
# Jonas Franzén, 2019
-# erinm, 2019
# Jonatan Nyberg, 2019
+# erinm, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Jonatan Nyberg, 2019\n"
+"Last-Translator: erinm, 2019\n"
"Language-Team: Swedish (https://www.transifex.com/otf/teams/1519/sv/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -84,8 +84,11 @@ msgid "Download"
msgstr "Ladda ned"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Sponsorer"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+sw.po b/contents+sw.po
index b41f1df78..5832dae2e 100644
--- a/contents+sw.po
+++ b/contents+sw.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: Zaituni Njovu <zaituni(a)zainafoundationtz.org>, 2019\n"
"Language-Team: Swahili (https://www.transifex.com/otf/teams/1519/sw/)\n"
@@ -81,8 +81,11 @@ msgid "Download"
msgstr ""
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+ta.po b/contents+ta.po
index cce26521e..795f87ffd 100644
--- a/contents+ta.po
+++ b/contents+ta.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: Mohammed Ammar K S <ksmammar(a)gmail.com>, 2019\n"
"Language-Team: Tamil (https://www.transifex.com/otf/teams/1519/ta/)\n"
@@ -85,8 +85,11 @@ msgid "Download"
msgstr "பதிவிறக்கம்"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+th.po b/contents+th.po
index 5a0999d01..1d1ffa527 100644
--- a/contents+th.po
+++ b/contents+th.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: Kunanyaporn Jirasamatakij <kunanyaporn(a)gmail.com>, 2019\n"
"Language-Team: Thai (https://www.transifex.com/otf/teams/1519/th/)\n"
@@ -88,8 +88,11 @@ msgid "Download"
msgstr "ดาวน์โหลด"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+tr.po b/contents+tr.po
index 3a0ea5fed..259f7cfe3 100644
--- a/contents+tr.po
+++ b/contents+tr.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: Kaya Zeren <kayazeren(a)gmail.com>, 2019\n"
"Language-Team: Turkish (https://www.transifex.com/otf/teams/1519/tr/)\n"
@@ -92,8 +92,11 @@ msgid "Download"
msgstr "İndir"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Destekçiler"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+uk.po b/contents+uk.po
index 95d96c737..2028bde19 100644
--- a/contents+uk.po
+++ b/contents+uk.po
@@ -2,16 +2,16 @@
# Андрій Бандура <andriykopanytsia(a)gmail.com>, 2019
# Любомир <n.lyubomyr(a)gmail.com>, 2019
# nobik <nobikik9(a)gmail.com>, 2019
-# erinm, 2019
# Sergio Thirdlingson <serge3ling(a)gmail.com>, 2019
+# erinm, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Sergio Thirdlingson <serge3ling(a)gmail.com>, 2019\n"
+"Last-Translator: erinm, 2019\n"
"Language-Team: Ukrainian (https://www.transifex.com/otf/teams/1519/uk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -84,8 +84,11 @@ msgid "Download"
msgstr "Завантажити"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Спонсори"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+ur.po b/contents+ur.po
index 3574cd523..6fcaae441 100644
--- a/contents+ur.po
+++ b/contents+ur.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Urdu (https://www.transifex.com/otf/teams/1519/ur/)\n"
@@ -82,8 +82,11 @@ msgid "Download"
msgstr "ڈاؤن لوڈ کریں"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+uz.po b/contents+uz.po
index 6a9089165..073fe635b 100644
--- a/contents+uz.po
+++ b/contents+uz.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Uzbek (https://www.transifex.com/otf/teams/1519/uz/)\n"
@@ -83,8 +83,11 @@ msgid "Download"
msgstr "Yuklab olish"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+vi.po b/contents+vi.po
index f249d1d7f..6abddb209 100644
--- a/contents+vi.po
+++ b/contents+vi.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
"Last-Translator: Henry Tran <henry.trancsr(a)gmail.com>, 2019\n"
"Language-Team: Vietnamese (https://www.transifex.com/otf/teams/1519/vi/)\n"
@@ -84,8 +84,11 @@ msgid "Download"
msgstr "Tải về"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr ""
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+zh-CN.po b/contents+zh-CN.po
index 94936b112..2e6724eca 100644
--- a/contents+zh-CN.po
+++ b/contents+zh-CN.po
@@ -2,7 +2,6 @@
# Chi-Hsun Tsai, 2019
# Xiaoyu Huang <007pig(a)gmail.com>, 2019
# ducki2p <ducki2p(a)gmail.com>, 2019
-# erinm, 2019
# shenzhui007 <12231252(a)bjtu.edu.cn>, 2019
# ciaran <ciaranchen(a)qq.com>, 2019
# ヨイツの賢狼ホロ, 2019
@@ -10,14 +9,15 @@
# Dianyu Liu <liudianyu5(a)gmail.com>, 2019
# Emma Peel, 2019
# Yikai Yang <ff98sha(a)gmail.com>, 2019
+# erinm, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Yikai Yang <ff98sha(a)gmail.com>, 2019\n"
+"Last-Translator: erinm, 2019\n"
"Language-Team: Chinese (China) (https://www.transifex.com/otf/teams/1519/zh_CN/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -91,8 +91,11 @@ msgid "Download"
msgstr "下载"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "赞助方"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents+zh-TW.po b/contents+zh-TW.po
index 5a083a523..56366bed5 100644
--- a/contents+zh-TW.po
+++ b/contents+zh-TW.po
@@ -1,18 +1,18 @@
# Translators:
# Chi-Hsun Tsai, 2019
# Mingye Wang <arthur200126(a)gmail.com>, 2019
-# erinm, 2019
# ian chou <ertiach(a)hotmail.com>, 2019
# 孟邦 王, 2019
# Hsiu-Ming Chang <cges30901(a)gmail.com>, 2019
+# erinm, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: 2019-03-09 10:41+0000\n"
-"Last-Translator: Hsiu-Ming Chang <cges30901(a)gmail.com>, 2019\n"
+"Last-Translator: erinm, 2019\n"
"Language-Team: Chinese (Taiwan) (https://www.transifex.com/otf/teams/1519/zh_TW/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -87,8 +87,11 @@ msgid "Download"
msgstr "下載"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "贊助"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
diff --git a/contents.pot b/contents.pot
index 5671f443b..4d885ea1c 100644
--- a/contents.pot
+++ b/contents.pot
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-05 10:12+CET\n"
+"POT-Creation-Date: 2019-06-05 12:03+CET\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: en <LL(a)li.org>\n"
@@ -83,8 +83,11 @@ msgid "Download"
msgstr "Download"
#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.title)
-#: (content/menu/contents+en.lrpage.section) https//www.torproject.org/about/
-#: (content/about/contents+en.lrpage.section)
+msgid "Sponsors"
+msgstr "Sponsors"
+
+#: https//www.torproject.org/menu/ (content/menu/contents+en.lrpage.section)
+#: https//www.torproject.org/about/ (content/about/contents+en.lrpage.section)
#: https//www.torproject.org/about/history/
#: (content/about/history/contents+en.lrpage.section)
#: https//www.torproject.org/about/people/
1
0

[translation/bridgedb_completed] Update translations for bridgedb_completed
by translation@torproject.org 05 Jun '19
by translation@torproject.org 05 Jun '19
05 Jun '19
commit b35e416e26bca94f54e74bf9d7861dcde4a62623
Author: Translation commit bot <translation(a)torproject.org>
Date: Wed Jun 5 09:45:23 2019 +0000
Update translations for bridgedb_completed
---
it/LC_MESSAGES/bridgedb.po | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/it/LC_MESSAGES/bridgedb.po b/it/LC_MESSAGES/bridgedb.po
index 10857dd4e..b42d64ec0 100644
--- a/it/LC_MESSAGES/bridgedb.po
+++ b/it/LC_MESSAGES/bridgedb.po
@@ -27,8 +27,8 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: 'https://trac.torproject.org/projects/tor/newticket?component=BridgeDB&keywo…'\n"
"POT-Creation-Date: 2015-07-25 03:40+0000\n"
-"PO-Revision-Date: 2019-04-13 09:03+0000\n"
-"Last-Translator: mattia_b89 <mattia.b89(a)gmail.com>\n"
+"PO-Revision-Date: 2019-06-05 09:40+0000\n"
+"Last-Translator: Gio Doro <CyberMatique(a)protonmail.com>\n"
"Language-Team: Italian (http://www.transifex.com/otf/torproject/language/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
1
0