aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Sapiro <mark@msapiro.net>2020-05-07 06:53:40 -0700
committerMark Sapiro <mark@msapiro.net>2020-05-07 06:53:40 -0700
commit80d4f2a79a1e461a9e434062e02239ccc2448749 (patch)
treea62517448a4d7945995f74e9739d0574ba5d7033
parentf7ec5a7da93b99d385b353ac6505719834cb764e (diff)
downloadmailman2-80d4f2a79a1e461a9e434062e02239ccc2448749.tar.gz
mailman2-80d4f2a79a1e461a9e434062e02239ccc2448749.tar.xz
mailman2-80d4f2a79a1e461a9e434062e02239ccc2448749.zip
Fixed content injection vulnerability via the private login page.
-rw-r--r--Mailman/Cgi/private.py10
-rw-r--r--NEWS7
-rwxr-xr-xmessages/ar/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/ast/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/ca/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/cs/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/da/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/de/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/el/LC_MESSAGES/mailman.po6
-rw-r--r--messages/eo/LC_MESSAGES/mailman.po6
-rw-r--r--messages/es/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/et/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/eu/LC_MESSAGES/mailman.po6
-rw-r--r--messages/fa/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/fi/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/fr/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/gl/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/he/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/hr/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/hu/LC_MESSAGES/mailman.po6
-rw-r--r--messages/ia/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/it/LC_MESSAGES/mailman.po6
-rw-r--r--messages/ja/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/ko/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/lt/LC_MESSAGES/mailman.po6
-rw-r--r--messages/mailman.pot6
-rwxr-xr-xmessages/nl/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/no/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/pl/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/pt/LC_MESSAGES/mailman.po6
-rw-r--r--messages/pt_BR/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/ro/LC_MESSAGES/mailman.po6
-rw-r--r--messages/ru/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/sk/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/sl/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/sr/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/sv/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/tr/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/uk/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/vi/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/zh_CN/LC_MESSAGES/mailman.po6
-rwxr-xr-xmessages/zh_TW/LC_MESSAGES/mailman.po6
42 files changed, 130 insertions, 127 deletions
diff --git a/Mailman/Cgi/private.py b/Mailman/Cgi/private.py
index 731e2d19..4b6f2501 100644
--- a/Mailman/Cgi/private.py
+++ b/Mailman/Cgi/private.py
@@ -162,13 +162,9 @@ def main():
if mlist.isMember(username):
mlist.MailUserPassword(username)
elif username:
- # Not a member
- if mlist.private_roster == 0:
- # Public rosters
- safeuser = Utils.websafe(username)
- message = Bold(FontSize('+1',
- _('No such member: %(safeuser)s.'))).Format()
- else:
+ # Not a member. Don't report address in any case. It leads to
+ # Content injection. Just log if roster is not public.
+ if mlist.private_roster != 0:
syslog('mischief',
'Reminder attempt of non-member w/ private rosters: %s',
username)
diff --git a/NEWS b/NEWS
index fb8baa05..9208567a 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,13 @@ Copyright (C) 1998-2018 by the Free Software Foundation, Inc.
Here is a history of user visible changes to Mailman.
+2.1.33 (07-May-2020)
+
+ Security
+
+ - A content injection vulnerability via the private login page has been
+ fixed. (LP: #1877379)
+
2.1.32 (05-May-2020)
i18n
diff --git a/messages/ar/LC_MESSAGES/mailman.po b/messages/ar/LC_MESSAGES/mailman.po
index 65f79532..fe74cf1d 100755
--- a/messages/ar/LC_MESSAGES/mailman.po
+++ b/messages/ar/LC_MESSAGES/mailman.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: mailman_ar\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2006-03-19 17:06+0300\n"
"Last-Translator: Munzir Taha <munzirtaha@newhorizons.com.sa>\n"
"Language-Team: Arabic\n"
@@ -2460,7 +2460,7 @@ msgid "Illegal Email Address"
msgstr "عنوان بريد إلكتروني غير نظامي"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "لا يوجد مثل هذ العضو: %(safeuser)s"
@@ -2870,7 +2870,7 @@ msgstr "رسالة تذكيرية لكلمة سرك قد أرسلت إليك."
msgid "Please enter your email address"
msgstr "عنوانك الإلكتروني:"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "ملف الأرشيف الخاص غير موجود"
diff --git a/messages/ast/LC_MESSAGES/mailman.po b/messages/ast/LC_MESSAGES/mailman.po
index d112948e..2506ac37 100755
--- a/messages/ast/LC_MESSAGES/mailman.po
+++ b/messages/ast/LC_MESSAGES/mailman.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mailman\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2009-12-07 17:01+0100\n"
"Last-Translator: astur <malditoastur@gmail.com>\n"
"Language-Team: Asturian <alministradores@softastur.org>\n"
@@ -2602,7 +2602,7 @@ msgid "Illegal Email Address"
msgstr "Direicin de corru electrnicu incorreuta"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Nun esiste soscritor: %(safeuser)s."
@@ -3047,7 +3047,7 @@ msgstr "Unvise un recordatoriu de la to contrasea al to corru-e."
msgid "Please enter your email address"
msgstr "La to direicin de corru electrnicu:"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Archivu privu nun alcontru"
diff --git a/messages/ca/LC_MESSAGES/mailman.po b/messages/ca/LC_MESSAGES/mailman.po
index f7f7fe34..4460de21 100755
--- a/messages/ca/LC_MESSAGES/mailman.po
+++ b/messages/ca/LC_MESSAGES/mailman.po
@@ -14,7 +14,7 @@
msgid ""
msgstr ""
"Project-Id-Version: mailman 2.1.11\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2009-01-28 01:23+0100\n"
"Last-Translator: David Planella <david.planella@gmail.com>\n"
"Language-Team: Catalan <mailman@llistes.softcatala.org>\n"
@@ -2642,7 +2642,7 @@ msgid "Illegal Email Address"
msgstr "Adreça de correu electrònic errònia"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "El membre no existeix: %(safeuser)s."
@@ -3104,7 +3104,7 @@ msgstr ""
msgid "Please enter your email address"
msgstr "La vostra adreça de correu electrònic:"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "No s'ha trobat el l'arxiu privat"
diff --git a/messages/cs/LC_MESSAGES/mailman.po b/messages/cs/LC_MESSAGES/mailman.po
index cb928094..c57cb136 100755
--- a/messages/cs/LC_MESSAGES/mailman.po
+++ b/messages/cs/LC_MESSAGES/mailman.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: a\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2007-03-23 11:26+0100\n"
"Last-Translator: Dan Ohnesorg <dan@ohnesorg.cz>\n"
"Language-Team: <cs@li.org>\n"
@@ -2545,7 +2545,7 @@ msgid "Illegal Email Address"
msgstr "Neplatn emailov adresa"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Nenalezl jsem astnka: %(safeuser)s."
@@ -2981,7 +2981,7 @@ msgstr "Bylo Vm zaslno pipomenut Vaeho hesla."
msgid "Please enter your email address"
msgstr "Vae e-mailov adresa: "
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Nebyl nalezen soubor privtnho archivu."
diff --git a/messages/da/LC_MESSAGES/mailman.po b/messages/da/LC_MESSAGES/mailman.po
index 6704fc6d..dc53e177 100755
--- a/messages/da/LC_MESSAGES/mailman.po
+++ b/messages/da/LC_MESSAGES/mailman.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: mailman\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2013-10-16 13:55+0200\n"
"Last-Translator: Tom G. Christensen <tgc@statsbiblioteket.dk>\n"
"Language-Team: Dansk mailman <mm-da@statsbiblioteket.dk>\n"
@@ -2596,7 +2596,7 @@ msgid "Illegal Email Address"
msgstr "Forkert/Ugyldig e-mailadresse"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Medlemmet findes ikke: %(safeuser)s."
@@ -3035,7 +3035,7 @@ msgstr ""
msgid "Please enter your email address"
msgstr "Din e-mail adresse:"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Arkivfilen ikke fundet"
diff --git a/messages/de/LC_MESSAGES/mailman.po b/messages/de/LC_MESSAGES/mailman.po
index 93a03d2b..8cfd866c 100755
--- a/messages/de/LC_MESSAGES/mailman.po
+++ b/messages/de/LC_MESSAGES/mailman.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: mailman\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2020-02-19 11:57+0100\n"
"Last-Translator: Mirian Margiani <mirian@margiani.ch>\n"
"Language-Team: German <mailman-i18n@python.org>\n"
@@ -2915,7 +2915,7 @@ msgstr "Ungltige E-Mail-Adresse"
# Mailman/Cgi/options.py:93
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr " %(safeuser)s ist nicht Abonnent."
@@ -3421,7 +3421,7 @@ msgid "Please enter your email address"
msgstr "Bitte Ihre E-Mail-Adresse eingeben"
# Mailman/Cgi/private.py:155
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Archivdatei nicht gefunden"
diff --git a/messages/el/LC_MESSAGES/mailman.po b/messages/el/LC_MESSAGES/mailman.po
index 412e63f6..6b9ed55d 100755
--- a/messages/el/LC_MESSAGES/mailman.po
+++ b/messages/el/LC_MESSAGES/mailman.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: tuxpaint-2.1pre\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2011-09-15 11:53+0800\n"
"Last-Translator: Limperis Antonis <limperis@cti.gr>\n"
"Language-Team: Greek <listmaster@sch.gr>\n"
@@ -2670,7 +2670,7 @@ msgid "Illegal Email Address"
msgstr " Email "
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr " : %(safeuser)s."
@@ -3119,7 +3119,7 @@ msgstr " ."
msgid "Please enter your email address"
msgstr " email :"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr " "
diff --git a/messages/eo/LC_MESSAGES/mailman.po b/messages/eo/LC_MESSAGES/mailman.po
index 2989e34c..4e9cdff7 100644
--- a/messages/eo/LC_MESSAGES/mailman.po
+++ b/messages/eo/LC_MESSAGES/mailman.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: 2.1.27\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2018-06-02 08:56\n"
"Last-Translator: Rubén Fernández Asensio <rubeno@esperanto.cat>\n"
"Language-Team: Esperanto <listestro@esperanto.cat>\n"
@@ -2403,7 +2403,7 @@ msgid "Illegal Email Address"
msgstr "Retpoŝtadreso nevalida"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Membro neekzistanta: %(safeuser)s."
@@ -2835,7 +2835,7 @@ msgstr ""
msgid "Please enter your email address"
msgstr "Enskribu vian retpoŝtadreson"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Dosiero de la privata arĥivo ne trovita"
diff --git a/messages/es/LC_MESSAGES/mailman.po b/messages/es/LC_MESSAGES/mailman.po
index f214fa71..92f5012a 100644
--- a/messages/es/LC_MESSAGES/mailman.po
+++ b/messages/es/LC_MESSAGES/mailman.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mailman\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2020-04-12 00:00+0000\n"
"Last-Translator: Omar Walid Llorente <omar.wllorente@upm.es>\n"
"Language-Team: Espaol <es@li.org>\n"
@@ -2608,7 +2608,7 @@ msgid "Illegal Email Address"
msgstr "Direccin de correo electrnico incorrecta"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "No existe tal suscriptor: %(safeuser)s."
@@ -3061,7 +3061,7 @@ msgstr ""
msgid "Please enter your email address"
msgstr "Por favor, introduzca su direccin de correo electrnico:"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Fichero de archivo privado no encontrado"
diff --git a/messages/et/LC_MESSAGES/mailman.po b/messages/et/LC_MESSAGES/mailman.po
index 9fb40aab..9caae501 100755
--- a/messages/et/LC_MESSAGES/mailman.po
+++ b/messages/et/LC_MESSAGES/mailman.po
@@ -3,7 +3,7 @@
msgid ""
msgstr ""
"Project-Id-Version: mailman\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2005-04-14 10:45+0300\n"
"Last-Translator: Anti Veeranna <duke@linux.ee>\n"
"Language-Team: Estonian <et@li.org>\n"
@@ -2509,7 +2509,7 @@ msgid "Illegal Email Address"
msgstr "Viga aadressis"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Sellist liiget pole: %(safeuser)s."
@@ -2929,7 +2929,7 @@ msgstr "Sinu parool saadeti sulle meiliga."
msgid "Please enter your email address"
msgstr "Sinu meiliaadress:"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Privaatarhiivi faili ei leitud"
diff --git a/messages/eu/LC_MESSAGES/mailman.po b/messages/eu/LC_MESSAGES/mailman.po
index 1fd0acc0..a33b883a 100755
--- a/messages/eu/LC_MESSAGES/mailman.po
+++ b/messages/eu/LC_MESSAGES/mailman.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: mailman\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2016-10-10 16:24+0200\n"
"Last-Translator: Gari Araolaza <garaolaza@codesyntax.com>\n"
"Language-Team: Euskara <eu@li.org>\n"
@@ -2569,7 +2569,7 @@ msgid "Illegal Email Address"
msgstr "ePosta helbide okerra"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Harpidedun ezezaguna: %(safeuser)s."
@@ -3009,7 +3009,7 @@ msgstr ""
msgid "Please enter your email address"
msgstr "Zure ePosta helbidea:"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Artxibo Pribatua ez da aurkitu"
diff --git a/messages/fa/LC_MESSAGES/mailman.po b/messages/fa/LC_MESSAGES/mailman.po
index 5e1349cf..8343acc7 100644
--- a/messages/fa/LC_MESSAGES/mailman.po
+++ b/messages/fa/LC_MESSAGES/mailman.po
@@ -2,7 +2,7 @@
msgid ""
msgstr ""
"Project-Id-Version: 2.14\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2013-07-20 13:40+0330\n"
"Last-Translator: \n"
"Language-Team: fa <translate@ifsug.org>\n"
@@ -2498,7 +2498,7 @@ msgid "Illegal Email Address"
msgstr "نشانی رایا‌نامه‌ی غیرمجاز"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr ""
@@ -2898,7 +2898,7 @@ msgstr ""
msgid "Please enter your email address"
msgstr "لطفاً نشانی رایا‌نامه خود را وارد کنید"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "پرونده‌ی بایگانی خصوصی پیدا نشد"
diff --git a/messages/fi/LC_MESSAGES/mailman.po b/messages/fi/LC_MESSAGES/mailman.po
index fd36e2d2..b0a4ecb5 100755
--- a/messages/fi/LC_MESSAGES/mailman.po
+++ b/messages/fi/LC_MESSAGES/mailman.po
@@ -13,7 +13,7 @@
msgid ""
msgstr ""
"Project-Id-Version: 2.15\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2010-07-26 10:25+0300\n"
"Last-Translator: Joni Tyryl <joni.toyryla@stonelake.fi>\n"
"Language-Team: Finnish Language Team\n"
@@ -2565,7 +2565,7 @@ msgid "Illegal Email Address"
msgstr "Virheellinen shkpostiosoite"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Ei sellaista jsent: %(safeuser)s."
@@ -3011,7 +3011,7 @@ msgstr "Muistutus salasanastasi on lhetetty shkpostiisi."
msgid "Please enter your email address"
msgstr "Shkpostiosoitteesi:"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Yksityist arkistointitiedostoa ei lydy"
diff --git a/messages/fr/LC_MESSAGES/mailman.po b/messages/fr/LC_MESSAGES/mailman.po
index 552a534e..17574a1f 100755
--- a/messages/fr/LC_MESSAGES/mailman.po
+++ b/messages/fr/LC_MESSAGES/mailman.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mailman 2.1b6\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2003-01-22 12:50-0500\n"
"Last-Translator: Pascal George <george@lyon.inserm.fr>\n"
"Language-Team: fr <traduc@traduc.org>\n"
@@ -2580,7 +2580,7 @@ msgid "Illegal Email Address"
msgstr "Adresse courriel invalide"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Abonn inconnu : %(safeuser)s."
@@ -3016,7 +3016,7 @@ msgstr "Un rappel de votre mot de passe vous a t envoy."
msgid "Please enter your email address"
msgstr "Votre adresse courriel :"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Fichier archive priv non trouv"
diff --git a/messages/gl/LC_MESSAGES/mailman.po b/messages/gl/LC_MESSAGES/mailman.po
index 47e6d270..3771ba8c 100755
--- a/messages/gl/LC_MESSAGES/mailman.po
+++ b/messages/gl/LC_MESSAGES/mailman.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: mailman_src\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2007-10-19 14:01+0200\n"
"Last-Translator: Frco. Javier Rial Rodríguez <fjrial@cesga.es>\n"
"Language-Team: Galician <mancomun@mancomun.org>\n"
@@ -2576,7 +2576,7 @@ msgid "Illegal Email Address"
msgstr "O enderezo de correo electrónico é incorrecto"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Non existe ese subscritor: %(safeuser)s."
@@ -3011,7 +3011,7 @@ msgstr "Envióuselle un lembranza do seu contrasinal por correo electrónico.<p>
msgid "Please enter your email address"
msgstr "O seu enderezo de correo electrónico:"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Non se achou o ficheiro do arquivo privado"
diff --git a/messages/he/LC_MESSAGES/mailman.po b/messages/he/LC_MESSAGES/mailman.po
index d1c860de..7db8f768 100755
--- a/messages/he/LC_MESSAGES/mailman.po
+++ b/messages/he/LC_MESSAGES/mailman.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: mailman v2.1.8\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2007-04-05 21:33+0300\n"
"Last-Translator: Dov Zamir <linux@zamirfamily.com>\n"
"Language-Team: Hebrew\n"
@@ -2518,7 +2518,7 @@ msgid "Illegal Email Address"
msgstr "כתובת דוא\"ל לא חוקית"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "אין כזה מנוי: %(safeuser)s."
@@ -2948,7 +2948,7 @@ msgstr "תזכורת עם סיסמתך נשלחה אליך."
msgid "Please enter your email address"
msgstr "כתובת דוא\"ל שלך:"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "קובץ ארכיון פרטי לא נמצא"
diff --git a/messages/hr/LC_MESSAGES/mailman.po b/messages/hr/LC_MESSAGES/mailman.po
index 7d1fb1e0..9a88d863 100755
--- a/messages/hr/LC_MESSAGES/mailman.po
+++ b/messages/hr/LC_MESSAGES/mailman.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: 1.2\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2004-06-15 12:00+1\n"
"Last-Translator: Nino Katic <nkatic@jagor.srce.hr>\n"
"Language-Team: Croatian <nkatic@jagor.srce.hr>\n"
@@ -2594,7 +2594,7 @@ msgid "Illegal Email Address"
msgstr "Pogrena Email Adresa"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Nema takvog lana: %(safeuser)s."
@@ -3028,7 +3028,7 @@ msgstr "Podsjetnik vae lozinke poslan vam je mailom."
msgid "Please enter your email address"
msgstr "Vaa e-mail adresa:"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Datoteka sa privatnom arhivom nije pronaena"
diff --git a/messages/hu/LC_MESSAGES/mailman.po b/messages/hu/LC_MESSAGES/mailman.po
index dc577d6d..b94ca785 100755
--- a/messages/hu/LC_MESSAGES/mailman.po
+++ b/messages/hu/LC_MESSAGES/mailman.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mailman\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2004-03-23 14:55--100\n"
"Last-Translator: Szilrd Vizi <vizisz@freemail.hu>\n"
"Language-Team: Hungarian <LL@li.org>\n"
@@ -2546,7 +2546,7 @@ msgid "Illegal Email Address"
msgstr "rvnytelen e-mail cm"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Nem tallhat %(safeuser)s cmmel tag."
@@ -2977,7 +2977,7 @@ msgstr "Az emlkeztet a jelszavadrl e-mailben el lett kldve."
msgid "Please enter your email address"
msgstr "E-mail cmed:"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Nem tallhat a privt archvum llomnya"
diff --git a/messages/ia/LC_MESSAGES/mailman.po b/messages/ia/LC_MESSAGES/mailman.po
index 1421b246..bac41fd0 100644
--- a/messages/ia/LC_MESSAGES/mailman.po
+++ b/messages/ia/LC_MESSAGES/mailman.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: mailman\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: Wed Feb 18 19:50:26 2015\n"
"Last-Translator: Martijn Dekker <vice-secretario@interlingua.com>\n"
"Language-Team: Interlingua <TradSoft@interlingua.com>\n"
@@ -2586,7 +2586,7 @@ msgid "Illegal Email Address"
msgstr "Adresse de e-mail invalide"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Membro inexistente: %(safeuser)s."
@@ -3017,7 +3017,7 @@ msgstr ""
msgid "Please enter your email address"
msgstr "Scribe tu adresse de e-mail"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "File del archivo private non trovate"
diff --git a/messages/it/LC_MESSAGES/mailman.po b/messages/it/LC_MESSAGES/mailman.po
index 6f8f3af6..5193a37c 100755
--- a/messages/it/LC_MESSAGES/mailman.po
+++ b/messages/it/LC_MESSAGES/mailman.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: mailman\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2008-03-24 19:19+0100\n"
"Last-Translator: Simone Piunno <pioppo@ferrara.linux.it>\n"
"Language-Team: <it@li.org>\n"
@@ -2822,7 +2822,7 @@ msgid "Illegal Email Address"
msgstr "Indirizzo email errato/non valido"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Nessun iscritto: %(safeuser)s."
@@ -3290,7 +3290,7 @@ msgid "Please enter your email address"
msgstr "Il tuo indirizzo email:"
# /home/mailman/Mailman/Cgi/private.py:154
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "File di archivio privato non trovato"
diff --git a/messages/ja/LC_MESSAGES/mailman.po b/messages/ja/LC_MESSAGES/mailman.po
index 7b59b2e8..9db6b6cd 100644
--- a/messages/ja/LC_MESSAGES/mailman.po
+++ b/messages/ja/LC_MESSAGES/mailman.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mailman 2.1.30rc1\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2020-01-13 09:16+09:00\n"
"Last-Translator: Yasuhito FUTATSUKI at POEM <futatuki@poem.co.jp>\n"
"Language-Team: Japanese <mailman-users-jp@googlegroups.com>\n"
@@ -2482,7 +2482,7 @@ msgid "Illegal Email Address"
msgstr "ѤǤʤ᡼륢ɥ쥹"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Τ褦ʲϤޤ: %(safeuser)s."
@@ -2900,7 +2900,7 @@ msgstr ""
msgid "Please enter your email address"
msgstr "᡼륢ɥ쥹:"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "¸ե뤬Ĥޤ"
diff --git a/messages/ko/LC_MESSAGES/mailman.po b/messages/ko/LC_MESSAGES/mailman.po
index 9eecb8d2..005bf82d 100755
--- a/messages/ko/LC_MESSAGES/mailman.po
+++ b/messages/ko/LC_MESSAGES/mailman.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2002-03-28 19:21+09:00\n"
"Last-Translator: Hyejin Soang, Wongyo Jung<redcloak@igrus.inha.ac.kr, "
"andsoon@igrus.inha.ac.kr>\n"
@@ -2514,7 +2514,7 @@ msgid "Illegal Email Address"
msgstr "̻ E ּҸ ּ̽ϴ."
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "%(safeuser)s ڰ ϴ."
@@ -2935,7 +2935,7 @@ msgstr " н带 ſ ޵Ǿϴ"
msgid "Please enter your email address"
msgstr " E ּ:"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr " ã ϴ."
diff --git a/messages/lt/LC_MESSAGES/mailman.po b/messages/lt/LC_MESSAGES/mailman.po
index b95f2966..7a382ae1 100755
--- a/messages/lt/LC_MESSAGES/mailman.po
+++ b/messages/lt/LC_MESSAGES/mailman.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mailman 2.1\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2002-12-26 09:07+0200\n"
"Last-Translator: Mantas Kriauciunas <mantas@akl.lt>\n"
"Language-Team: Lithuanian <info@akl.lt>\n"
@@ -2510,7 +2510,7 @@ msgid "Illegal Email Address"
msgstr "Neteisingas adresas"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Nra tokio vartotojo: %(safeuser)s."
@@ -2907,7 +2907,7 @@ msgstr "Jums isistas slaptaodio priminimas."
msgid "Please enter your email address"
msgstr "Js el. pato adresas:"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Nerastas privataus archyvo failas"
diff --git a/messages/mailman.pot b/messages/mailman.pot
index 5821822b..83edc4d9 100644
--- a/messages/mailman.pot
+++ b/messages/mailman.pot
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2202,7 +2202,7 @@ msgid "Illegal Email Address"
msgstr ""
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr ""
@@ -2560,7 +2560,7 @@ msgstr ""
msgid "Please enter your email address"
msgstr ""
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr ""
diff --git a/messages/nl/LC_MESSAGES/mailman.po b/messages/nl/LC_MESSAGES/mailman.po
index 0fbe5e6d..4e19647a 100755
--- a/messages/nl/LC_MESSAGES/mailman.po
+++ b/messages/nl/LC_MESSAGES/mailman.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mailman 2.1.14\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2010-07-07 14:17+0100\n"
"Last-Translator: Jan Veuger <info@janveuger.com>\n"
"Language-Team: Dutch <info@janveuger.com>\n"
@@ -2581,7 +2581,7 @@ msgid "Illegal Email Address"
msgstr "Ongeldig e-mailadres"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Niet bestaand lid: %(safeuser)s."
@@ -3022,7 +3022,7 @@ msgstr ""
msgid "Please enter your email address"
msgstr "Geef uw e-mailadres:"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Besloten archief bestand niet gevonden"
diff --git a/messages/no/LC_MESSAGES/mailman.po b/messages/no/LC_MESSAGES/mailman.po
index 669dbb5f..e020ce28 100755
--- a/messages/no/LC_MESSAGES/mailman.po
+++ b/messages/no/LC_MESSAGES/mailman.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mailman 2.1.5\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2005-05-07 23:27+0200\n"
"Last-Translator: Daniel Buchmann <Daniel.Buchmann@bibsys.no>\n"
"Language-Team: Norwegian <i18n-no@lister.ping.uio.no>\n"
@@ -2579,7 +2579,7 @@ msgid "Illegal Email Address"
msgstr "Feil/Ugyldig epostadresse"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Medlemmet finnes ikke: %(safeuser)s."
@@ -3014,7 +3014,7 @@ msgstr "En epost med passordet er sendt til deg."
msgid "Please enter your email address"
msgstr "Din epostadresse:"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Finner ikke arkivfilen"
diff --git a/messages/pl/LC_MESSAGES/mailman.po b/messages/pl/LC_MESSAGES/mailman.po
index 9ed6d50f..e9686141 100755
--- a/messages/pl/LC_MESSAGES/mailman.po
+++ b/messages/pl/LC_MESSAGES/mailman.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mailman 2.1\n"
"Report-Msgid-Bugs-To: https://github.com/aviarypl/mailman-l10n-pl/issues\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2016-02-15 17:11+0100\n"
"Last-Translator: Stefan Plewako <splewako@aviary.pl>\n"
"Language-Team: Polish <community-poland@mozilla.org>\n"
@@ -2548,7 +2548,7 @@ msgid "Illegal Email Address"
msgstr "Nieprawidowy adres"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Nie znaleziono prenumeratora: %(safeuser)s."
@@ -2978,7 +2978,7 @@ msgstr "E-mail z przypomnieniem hasa zosta wysany."
msgid "Please enter your email address"
msgstr "Wprowad adres e-mail"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Plik archiwum nie znaleziony"
diff --git a/messages/pt/LC_MESSAGES/mailman.po b/messages/pt/LC_MESSAGES/mailman.po
index 3c225bca..7982f70c 100755
--- a/messages/pt/LC_MESSAGES/mailman.po
+++ b/messages/pt/LC_MESSAGES/mailman.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: mailman\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2003-02-19 10:14GMT\n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -2571,7 +2571,7 @@ msgid "Illegal Email Address"
msgstr "Endereo de email incorrecto/invlido"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Membro inexistente: %(safeuser)s"
@@ -3011,7 +3011,7 @@ msgstr "Foi-lhe enviada uma nota com a sua password"
msgid "Please enter your email address"
msgstr "O seu endereo de email:"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Arquivo privado no encontrado"
diff --git a/messages/pt_BR/LC_MESSAGES/mailman.po b/messages/pt_BR/LC_MESSAGES/mailman.po
index 76ab712f..b1a2dcad 100644
--- a/messages/pt_BR/LC_MESSAGES/mailman.po
+++ b/messages/pt_BR/LC_MESSAGES/mailman.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: mailman\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2020-04-11 20:56-0300\n"
"Last-Translator: Emerson Ribeiro de Mello <emerson_ml@yahoo.com.br>\n"
"Language-Team: Brazilian Portuguese <pt_BR@li.org>\n"
@@ -2571,7 +2571,7 @@ msgid "Illegal Email Address"
msgstr "Endereo de email incorreto/invlido"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Membro inexistente: %(safeuser)s."
@@ -3008,7 +3008,7 @@ msgstr ""
msgid "Please enter your email address"
msgstr "Por favor, entre com seu endereo de email"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Arquivo privado arquivo no encontrado"
diff --git a/messages/ro/LC_MESSAGES/mailman.po b/messages/ro/LC_MESSAGES/mailman.po
index 07f0dc44..aec58dd4 100755
--- a/messages/ro/LC_MESSAGES/mailman.po
+++ b/messages/ro/LC_MESSAGES/mailman.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: mailman\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2005-05-12 07:35+0300\n"
"Last-Translator: Stefaniu Criste <gupi@hangar.ro>\n"
"Language-Team: Romanian <en@li.org>\n"
@@ -2603,7 +2603,7 @@ msgid "Illegal Email Address"
msgstr "Adresă de email ilegală"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Nu există un astfel de membru: %(safeuser)s."
@@ -3038,7 +3038,7 @@ msgstr ""
msgid "Please enter your email address"
msgstr "Vă rugăm, introducei adresa de email:"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Fişierul de arhivă privată nu a fost găsit"
diff --git a/messages/ru/LC_MESSAGES/mailman.po b/messages/ru/LC_MESSAGES/mailman.po
index 1c24e1fd..86c27379 100644
--- a/messages/ru/LC_MESSAGES/mailman.po
+++ b/messages/ru/LC_MESSAGES/mailman.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: mailman v2.1\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2018-03-18 13:49+0200\n"
"Last-Translator: Danil Smirnov <danil@smirnov.la>\n"
"Language-Team: Russian <danil@smirnov.la>\n"
@@ -2595,7 +2595,7 @@ msgstr "Неверный адрес"
# MSS: было "Подписчик отсутствует: %(safeuser)s."... надо думать.. слушать...
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Такого пользователя не существует: %(safeuser)s."
@@ -3033,7 +3033,7 @@ msgstr ""
msgid "Please enter your email address"
msgstr "Введите Ваш почтовый адрес"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Файл закрытого архива не найден"
diff --git a/messages/sk/LC_MESSAGES/mailman.po b/messages/sk/LC_MESSAGES/mailman.po
index 561a9a42..516d26f4 100755
--- a/messages/sk/LC_MESSAGES/mailman.po
+++ b/messages/sk/LC_MESSAGES/mailman.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: mailman\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2007-11-26 12:21+0100\n"
"Last-Translator: Martin Matuška <martin@matuska.org>\n"
"Language-Team: Slovak\n"
@@ -2548,7 +2548,7 @@ msgid "Illegal Email Address"
msgstr "Neplatná e-mailová adresa"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Neznámy účastník: %(safeuser)s."
@@ -2984,7 +2984,7 @@ msgstr "Správa s vašim heslom vám bola zaslaná."
msgid "Please enter your email address"
msgstr "Vaša e-mailová adresa:"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Súbor súkromného archivu nebol nájdený."
diff --git a/messages/sl/LC_MESSAGES/mailman.po b/messages/sl/LC_MESSAGES/mailman.po
index 6230183b..f9bb674c 100755
--- a/messages/sl/LC_MESSAGES/mailman.po
+++ b/messages/sl/LC_MESSAGES/mailman.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: mailman_new_popr\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2003-09-30 11:18+0200\n"
"Last-Translator: Urska Colner <urska.colner@agenda.si>\n"
"Language-Team: Slovenina <sl@li.org>\n"
@@ -2933,7 +2933,7 @@ msgstr "Neveljavni e-potni naslov"
# Mailman/Cgi/options.py:93
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "lan ne obstaja: %(safeuser)s."
@@ -3428,7 +3428,7 @@ msgid "Please enter your email address"
msgstr "Va e-potni naslov:"
# Mailman/Cgi/private.py:155
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Ni mogoe najti datoteke z zasebnim arhivom"
diff --git a/messages/sr/LC_MESSAGES/mailman.po b/messages/sr/LC_MESSAGES/mailman.po
index 6848a3fe..ddd618bf 100755
--- a/messages/sr/LC_MESSAGES/mailman.po
+++ b/messages/sr/LC_MESSAGES/mailman.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mailman 2.1\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2003-07-02 14:50+0100\n"
"Last-Translator: Bojan Suzic <bojans@teol.net>\n"
"Language-Team: Trust-b [Serbian] <kontakt@trust-b.com>\n"
@@ -2381,7 +2381,7 @@ msgid "Illegal Email Address"
msgstr "Лоша е-адреса"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Нема корисника %(safeuser)s."
@@ -2751,7 +2751,7 @@ msgstr "Порука са вашом лозинком вам је послана
msgid "Please enter your email address"
msgstr "Ваша е-адреса:"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Фајл приватне архиве није пронађен"
diff --git a/messages/sv/LC_MESSAGES/mailman.po b/messages/sv/LC_MESSAGES/mailman.po
index 89c4eefd..0a13c69e 100755
--- a/messages/sv/LC_MESSAGES/mailman.po
+++ b/messages/sv/LC_MESSAGES/mailman.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mailman 2.1b1\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2002-12-24 14:35+0100\n"
"Last-Translator: Eva sterlind <eva.osterlind@arvika.se>\n"
"Language-Team: Swedish <information@arvika.se>\n"
@@ -3517,7 +3517,7 @@ msgstr "Fel/Ogiltig e-postadress"
# Mailman/Cgi/options.py:107 Mailman/Cgi/options.py:154
# Mailman/Cgi/options.py:176
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Medlemmen finns inte: %(safeuser)s."
@@ -4093,7 +4093,7 @@ msgstr "Din e-postadress:"
# Mailman/Cgi/private.py:154
# Mailman/Cgi/private.py:154
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Hittar inte arkivfilen"
diff --git a/messages/tr/LC_MESSAGES/mailman.po b/messages/tr/LC_MESSAGES/mailman.po
index 8b4b2b52..420e2acf 100755
--- a/messages/tr/LC_MESSAGES/mailman.po
+++ b/messages/tr/LC_MESSAGES/mailman.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Kerem Erkan <kerem.erkan@hacettepe.edu.tr>\n"
"Language-Team: Turkish <LL@li.org>\n"
@@ -2588,7 +2588,7 @@ msgid "Illegal Email Address"
msgstr "Geersiz e-posta adresi"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Byle bir ye yok: %(safeuser)s."
@@ -3027,7 +3027,7 @@ msgstr "ifreniz iin bir hatrlatc e-posta adresinize gnderildi"
msgid "Please enter your email address"
msgstr "E-posta adresiniz:"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "zel ariv dosyas bulunamad"
diff --git a/messages/uk/LC_MESSAGES/mailman.po b/messages/uk/LC_MESSAGES/mailman.po
index f224293a..2d49c302 100755
--- a/messages/uk/LC_MESSAGES/mailman.po
+++ b/messages/uk/LC_MESSAGES/mailman.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: mailman v2.1.5\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2005-02-24 17:37+0200\n"
"Last-Translator: Maxim Dzumanenko <mvd@mylinux.com.ua>\n"
"Language-Team: Ukrainian <uk@li.org>\n"
@@ -2556,7 +2556,7 @@ msgid "Illegal Email Address"
msgstr "Неправильна адреса"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Такий користувач відсутній: %(safeuser)s."
@@ -2985,7 +2985,7 @@ msgstr "Лист з нагадуванням паролю успішно вам
msgid "Please enter your email address"
msgstr "Ваша поштова адреса:"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Файл приватного архіву не існує"
diff --git a/messages/vi/LC_MESSAGES/mailman.po b/messages/vi/LC_MESSAGES/mailman.po
index 13138d80..d74e1eeb 100755
--- a/messages/vi/LC_MESSAGES/mailman.po
+++ b/messages/vi/LC_MESSAGES/mailman.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: mailman-2.1.10\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2008-01-03 22:05+1030\n"
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
"Language-Team: Vietnamese <vi-VN@googlegroups.com>\n"
@@ -2556,7 +2556,7 @@ msgid "Illegal Email Address"
msgstr "Không cho phép địa chỉ"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "Không có thành viên như vậy: %(safeuser)s."
@@ -2991,7 +2991,7 @@ msgstr "Lời nhắc nhở mật khẩu đã được gởi cho bạn trong thư
msgid "Please enter your email address"
msgstr "Địa chỉ thư của bạn:"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "Không tìm thấy tập tin kho riêng."
diff --git a/messages/zh_CN/LC_MESSAGES/mailman.po b/messages/zh_CN/LC_MESSAGES/mailman.po
index 0fd7f7a1..ab428f51 100755
--- a/messages/zh_CN/LC_MESSAGES/mailman.po
+++ b/messages/zh_CN/LC_MESSAGES/mailman.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: mailman\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: 2005-05-14 12:07+0800\n"
"Last-Translator: Dai Xiaoguang <leona@cs.hit.edu.cn>\n"
"Language-Team: <mailman-cn@mail.cs.hit.edu.cn>\n"
@@ -2482,7 +2482,7 @@ msgid "Illegal Email Address"
msgstr "非法的邮件地址"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "不存在 %(safeuser)s 这个成员."
@@ -2893,7 +2893,7 @@ msgstr "您的密码提示已经发送到您的电子信箱了"
msgid "Please enter your email address"
msgstr "您的邮件地址:"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "没有找到内部存档文件"
diff --git a/messages/zh_TW/LC_MESSAGES/mailman.po b/messages/zh_TW/LC_MESSAGES/mailman.po
index f485faea..f1adc49e 100755
--- a/messages/zh_TW/LC_MESSAGES/mailman.po
+++ b/messages/zh_TW/LC_MESSAGES/mailman.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: mailman-2.0\n"
-"POT-Creation-Date: Tue May 5 11:55:48 2020\n"
+"POT-Creation-Date: Thu May 7 06:49:22 2020\n"
"PO-Revision-Date: Tue Jan 16 10:00:00 2001\n"
"Last-Translator: Yuan-Chen Cheng <ycheng@slat.org>\n"
"Language-Team: Chinese (traditional) <zh-L10n@linux.org.tw>\n"
@@ -2431,7 +2431,7 @@ msgid "Illegal Email Address"
msgstr "非法的 email 地址"
#: Mailman/Cgi/options.py:183 Mailman/Cgi/options.py:237
-#: Mailman/Cgi/options.py:261 Mailman/Cgi/private.py:170
+#: Mailman/Cgi/options.py:261
msgid "No such member: %(safeuser)s."
msgstr "沒有此訂戶:%(safeuser)s。"
@@ -2841,7 +2841,7 @@ msgstr "您的密碼提醒信件已經寄給您"
msgid "Please enter your email address"
msgstr "您的 email 地址:"
-#: Mailman/Cgi/private.py:222
+#: Mailman/Cgi/private.py:218
msgid "Private archive file not found"
msgstr "找不到祕密歸檔"